diff --git a/crates/fmw-noise/src/fixtures.rs b/crates/fmw-noise/src/fixtures.rs index 9a45a85f..2a3f7e7c 100644 --- a/crates/fmw-noise/src/fixtures.rs +++ b/crates/fmw-noise/src/fixtures.rs @@ -4279,6 +4279,315 @@ fn places_every_vulcanus_cliff_where_the_game_places_it() { ); } +/// One region of one volcanism arm, in the four counts #84 and #307 track, +/// plus the cells those counts leave out. +/// +/// **Same definitions as +/// [`the_apply_stage_beats_the_crossing_stage_on_three_counts_and_loses_on_none`]**, +/// so a row here reads against that table directly. `missing` is NOT +/// `game - matched` from [`CliffScore`]: that counts every `cliff-vulcanus` +/// the game placed, and 38 of the 1569 at the default sit OUTSIDE the region - +/// `find_entities_filtered{area}` selects on the entity's bounding box, so a +/// cliff centred just past the edge is in the dump. Measured 2026-09-07: all +/// 38 are boundary cells and none carries an orientation the port lacks. +/// #307's table scores the 1531 whose centres are inside and this does too; +/// `unscored` keeps the dropped ones visible per arm rather than silently +/// absorbed, and the filter on orientation stays so a new game orientation +/// would land there rather than in `missing`. +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +struct SweepRow { + /// Right place, right orientation. + matched: usize, + /// Right place, wrong orientation. + wrong: usize, + /// A cell the game does not have. + surplus: usize, + /// A cell the game has, with a codeable orientation, that the port lacks. + missing: usize, + /// Game cells outside the comparison: an orientation the port has no code + /// for, or a position outside the region bounds. + unscored: usize, +} + +impl SweepRow { + const ZERO: Self = Self { + matched: 0, + wrong: 0, + surplus: 0, + missing: 0, + unscored: 0, + }; + + fn add(self, other: Self) -> Self { + Self { + matched: self.matched + other.matched, + wrong: self.wrong + other.wrong, + surplus: self.surplus + other.surplus, + missing: self.missing + other.missing, + unscored: self.unscored + other.unscored, + } + } +} + +/// Score one region under the SHIPPING model at the sliders `ctx` carries. +/// +/// The placement is built exactly as [`score_vulcanus_cliffs`]'s `Shipping` +/// arm builds it; only the counting differs, per [`SweepRow`]. +fn sweep_score(region: &Json, cliffs: &[Json], ctx: &crate::eval::ctx::EvalCtx) -> SweepRow { + let seed0 = ctx.seed0; + let base = VulcanusBase::with_host_trig(ctx); + let biomes = base.biomes_with_host_trig(); + let stack = VulcanusStack::with_host_trig(&base, &biomes); + let fields = VulcanusCliffFields::new(&stack, seed0); + let lava = VulcanusLavaTiles::new(&stack); + let ore = VulcanusOreRejection::new(&stack, &ctx.vulcanus_resource_controls); + let bands = CliffBands { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, + reject_at_crossing_stage: true, + ..CliffBands::default() + }; + let (x0, y0) = (region.get("x0").as_f64(), region.get("y0").as_f64()); + let (x1, y1) = (region.get("x1").as_f64(), region.get("y1").as_f64()); + + let mut row = SweepRow::ZERO; + let mut game: BTreeMap<(u64, u64), u8> = BTreeMap::new(); + for e in cliffs { + if e.get("name").as_str() != "cliff-vulcanus" { + continue; + } + let (x, y) = (e.get("x").as_f64(), e.get("y").as_f64()); + let want = e.get("orientation").as_str(); + let id = CLIFF_ORIENTATION_NAMES.iter().position(|n| *n == want); + match id { + Some(id) if x >= x0 && x < x1 && y >= y0 && y < y1 => { + game.insert((x.to_bits(), y.to_bits()), id as u8); + } + _ => row.unscored += 1, + } + } + + let port: BTreeMap<(u64, u64), u8> = CliffPlacement::new(&fields, bands) + .with_tile_collision(&lava) + .with_cell_rejection(&ore) + .placed_cells(x0, y0, x1, y1) + .iter() + .filter_map(|c| cliff_orientation_for_code(c.code).map(|id| (cell_key(c), id))) + .collect(); + + for (k, id) in &port { + match game.get(k) { + None => row.surplus += 1, + Some(want) if want == id => row.matched += 1, + Some(_) => row.wrong += 1, + } + } + row.missing = game.keys().filter(|k| !port.contains_key(*k)).count(); + row +} + +/// The Vulcanus cliff placement under the VOLCANISM sweep - the same three +/// regions as [`places_every_vulcanus_cliff_where_the_game_places_it`], captured +/// at four settings of the `vulcanus_volcanism` control (#84). +/// +/// Neither volcanism slider touches the cliff rule. Frequency is the input +/// scale of the mountain and crack noise; size sets the volcano spot radius, +/// spacing and density. Both move the ELEVATION the cliff bands sit on and +/// nothing else, so the sweep changes the input to the cliff rule while the +/// rule, both collision tests and the ore rule stay fixed. That makes it a +/// control that can fail: if the residual scales with the arm, it lives on the +/// elevation or multisample side; if it stays flat, it lives in placement or +/// connection (#307). +/// +/// Three things are asserted before any count is read: +/// +/// - **The default arm IS the 2.1.12 fixture**, cell for cell and in the same +/// order, at 2.1.17. So the game did not move on these regions between the +/// two versions, and this capture's protocol is the old one's. +/// - **R1 `[0,0]` is the control, on BOTH sides.** It sits inside the starting +/// area, where the volcano spots are excluded and the mountain noise is +/// flattened, so the game places the same 283 cliffs in every arm and the +/// port scores the same row in every arm. A sweep that graded R1 would grade +/// nothing, which is the window rule again. +/// - **R2 and R3 really moved on the game side** in every non-default arm, or +/// the override never reached the generator. +#[test] +fn vulcanus_cliffs_track_the_volcanism_sliders() { + let sweep = load_captured_at( + "test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json", + "2.1.17", + ); + let reference = load_captured_at( + "test/fixtures/oracle-vulcanus-cliff-entities.seed123456.json", + "2.1.12", + ); + #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)] + let seed0 = sweep.get("seed").as_f64() as u32; + assert_eq!( + seed0, + reference.get("seed").as_f64() as u32, + "same forced seed" + ); + + let arms = sweep.get("arms").as_array(); + assert_eq!(arms.len(), 4, "default, frequency 0.5, frequency 2, size 3"); + + // A game cliff as the port would key it, orientation included. + 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() + }; + + // The default arm is the 2.1.12 capture, cell for cell and in order. + let default_arm = &arms[0]; + assert_eq!(default_arm.get("label").as_str(), "default"); + let default_cases = default_arm.get("cases").as_array(); + let reference_cases = reference.get("cases").as_array(); + assert_eq!(default_cases.len(), 3); + assert_eq!(reference_cases.len(), 3); + for (i, (a, b)) in default_cases.iter().zip(reference_cases).enumerate() { + assert_eq!( + game_cells(a), + game_cells(b), + "region {i}: the 2.1.17 default arm must reproduce the 2.1.12 capture" + ); + } + let r1_game = game_cells(&default_cases[0]); + let r2_game = game_cells(&default_cases[1]); + let r3_game = game_cells(&default_cases[2]); + + let mut rows: Vec<(String, [SweepRow; 3], 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(); + // The surface's own read-back, so an override that did not apply cannot + // pass as a setting that does not matter. + let reported = arm.get("reported"); + assert_eq!( + reported.get("frequency").as_f64(), + frequency, + "{label}: read-back" + ); + assert_eq!(reported.get("size").as_f64(), size, "{label}: read-back"); + + let cases = arm.get("cases").as_array(); + assert_eq!(cases.len(), 3, "{label}: three regions"); + assert_eq!(game_cells(&cases[0]), r1_game, "{label}: R1 is the control"); + if label != "default" { + assert_ne!(game_cells(&cases[1]), r2_game, "{label}: R2 must move"); + assert_ne!(game_cells(&cases[2]), r3_game, "{label}: R3 must move"); + } + + let mut ctx = crate::eval::ctx::EvalCtx::new(seed0); + ctx.vulcanus_volcanism_frequency = frequency; + ctx.vulcanus_volcanism_size = size; + let mut per_region = [SweepRow::ZERO; 3]; + for (i, case) in cases.iter().enumerate() { + per_region[i] = sweep_score(case.get("region"), case.get("cliffs").as_array(), &ctx); + } + let total = per_region[0].add(per_region[1]).add(per_region[2]); + eprintln!( + "{label:>14}: R1 {:?} R2 {:?} R3 {:?} total {:?}", + per_region[0], per_region[1], per_region[2], total + ); + rows.push((label, per_region, total)); + } + + // The port agrees R1 is blind: the same row in every arm. + let r1_default = rows[0].1[0]; + for (label, per_region, _) in &rows { + assert_eq!( + per_region[0], r1_default, + "{label}: the port's R1 row must not move either" + ); + } + // The default arm's totals are #307's shipping row, restated - the same + // 1504 / 21 / 22 / 6 over the same 1531 comparable cells, with the 38 the + // table leaves out now counted. + let row = |matched, wrong, surplus, missing, unscored| SweepRow { + matched, + wrong, + surplus, + missing, + unscored, + }; + assert_eq!(rows[0].2, row(1504, 21, 22, 6, 38), "default arm totals"); + + // The frozen sweep, measured 2026-09-07. Read a moved number, do not + // adjust it. + // + // | arm | R2 (matched/wrong/surplus/missing) | R3 | total, of comparable cells | + // | ------------- | ---------------------------------- | ------------- | -------------------------- | + // | default | 842 / 16 / 19 / 3 | 385 / 1 / 1 / 1 | 49 of 1531 = 3.2% | + // | frequency 0.5 | 720 / 7 / 10 / 2 | 628 / 2 / 0 / 0 | 29 of 1642 = 1.8% | + // | frequency 2 | 252 / 4 / 4 / 0 | 528 / 8 / 6 / 1 | 31 of 1076 = 2.9% | + // | size 3 | 531 / 5 / 4 / 2 | 419 / 1 / 1 / 1 | 22 of 1242 = 1.8% | + // + // 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", + // 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`. + let expected: [(&str, [SweepRow; 3]); 4] = [ + ( + "default", + [ + row(277, 4, 2, 2, 0), + row(842, 16, 19, 3, 24), + row(385, 1, 1, 1, 14), + ], + ), + ( + "frequency 0.5", + [ + row(277, 4, 2, 2, 0), + row(720, 7, 10, 2, 15), + row(628, 2, 0, 0, 12), + ], + ), + ( + "frequency 2", + [ + row(277, 4, 2, 2, 0), + row(252, 4, 4, 0, 10), + row(528, 8, 6, 1, 12), + ], + ), + ( + "size 3", + [ + row(277, 4, 2, 2, 0), + row(531, 5, 4, 2, 26), + row(419, 1, 1, 1, 14), + ], + ), + ]; + for ((label, per_region, total), (want_label, want)) in rows.iter().zip(expected) { + assert_eq!(label, want_label); + assert_eq!(*per_region, want, "{label}: per-region rows"); + assert_eq!(*total, want[0].add(want[1]).add(want[2]), "{label}: totals"); + } +} + /// 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 5c4aa4f6..4ac2baa2 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -4626,3 +4626,91 @@ sweep's `L, T, R, B` clear order. from one sample, and its Bonferroni note was the right caution about the wrong risk - the multiple-comparison correction survived, and it was the SAMPLE that did not. Raise n before slicing again. + +## The VOLCANISM sweep: the residual moves with the field, and the origin region is blind (2026-09-07, #84) + +A lever on the INPUT to the cliff rule, with the rule held fixed. Read off +`planet-vulcanus-map-gen.lua` at 2.1.17, neither `vulcanus_volcanism` slider +touches the cliff rule: `frequency` is the input scale of the mountain and crack +noise (`vulcanus_scale_multiplier`, line 51) and `size` sets the volcano spot +radius, spacing and density (lines 322-337). Both move the elevation the cliff +bands sit on and nothing else. So a sweep over them changes the field while the +rule, both collision tests and the ore rule stay put - if the residual tracks +the arm, it lives on the elevation side; if it stays flat, it lives in placement +or connection (#307). Either way the arm can fail. + +**Probe:** `scripts/probes/vulcanus-cliff-volcanism/capture.ts`, the first +cliff capture through `factorio-oracle`. It reuses `buildCliffControlLua` from +`test/oracle/oracle.ts` verbatim - same forced-seed `create_surface()`, same +one-drain chunk protocol, same read-back of `autoplace_controls` off the surface +so an override that did not land cannot pass as a lever that does not matter - +and runs one `create` per arm and region at 2.1.17. Four arms (default, +frequency 0.5, frequency 2, size 3) over the three regions of +`oracle-vulcanus-cliff-entities`, 2 seconds per region. Fixture: +`oracle-vulcanus-cliff-volcanism-sweep.seed123456.json`. Graded by +`vulcanus_cliffs_track_the_volcanism_sliders` in `fixtures.rs`, with the same +four counts #307's table uses. + +### Three things settled before any count was read + +- **The game did not move 2.1.12 -> 2.1.17 on these regions.** The default + arm reproduces the 2.1.12 fixture cell for cell, in the same order, + 283/885/409. The 2.1.12 fixture keeps its stamp and its provenance line + records the reproduction. +- **R1 `[0,0]` is blind to volcanism on BOTH sides.** Measured on the engine + first: rendering the cliffs view over each region at 1 tile/px, R1 moves 0 of + 65,536 pixels for any of five slider settings, because the whole 256-tile + square sits inside the starting area, where the volcano spots are excluded and + the mountain noise is flattened. The game agrees: all four arms place the same + 283 cliffs in R1, and the port scores the same 277 / 4 / 2 / 2 row in every + arm. R1 is the control, and a sweep graded on it would grade nothing. (The + same window trap cost the first draft of `vulcanusVolcanismDispatch.spec.ts` + in #401 - the `square at origin` tier-3 window is inside the same blind zone.) +- **The 38 cells #307's table leaves out are ALL boundary cells.** + `find_entities_filtered{area}` selects on the bounding box, so a cliff centred + just outside the region is in the dump; #307 filters those and cells whose + orientation the port has no code for. Measured: every one of the 38 is a + boundary cell and none has an unknown orientation, so the "6 missing" is + honest. They are counted per arm as `unscored` rather than dropped. + +### The sweep + +Shipping model, per region, `matched / wrong / surplus / missing`. Comparable +cells are the game's in-bounds `cliff-vulcanus` entities; the error rate is +`(wrong + surplus + missing) / (matched + wrong + missing)`. + +| arm | R2 `[1500,1500]` | R3 `[-1200,800]` | R2 + R3 errors | rate | +| ------------- | ------------------ | ---------------- | -------------: | --------: | +| default | 842 / 16 / 19 / 3 | 385 / 1 / 1 / 1 | 41 of 1248 | **3.29%** | +| frequency 0.5 | 720 / 7 / 10 / 2 | 628 / 2 / 0 / 0 | 21 of 1359 | **1.55%** | +| frequency 2 | 252 / 4 / 4 / 0 | 528 / 8 / 6 / 1 | 23 of 793 | 2.90% | +| size 3 | 531 / 5 / 4 / 2 | 419 / 1 / 1 / 1 | 14 of 959 | **1.46%** | + +Per region, as a rate: R2 goes 4.4% / 2.6% / 3.1% / 2.0% and R3 goes 0.8% / +0.3% / 2.8% / 0.7% across the four arms in that order. + +### What it says + +- **The residual is not flat.** Two arms halve the rate against the default, + and each is about 2.9 sigma from it on a two-proportion test (41/1248 against + 21/1359, and against 14/959). So the residual depends on the elevation input; + it is not a fixed placement-side defect that the field leaves alone. +- **It is not monotonic in feature scale either.** A scale-proportional field + error - the shape #83's grid-units multisample would give, where halving the + feature size doubles the gradients the offsets act on - predicts frequency 2 + as the worst arm in both regions. It is the worst arm in R3 (2.8% against + 0.8%) and BETTER than default in R2 (3.1% against 4.4%); overall it sits 0.5 + sigma from default. That prediction fails on this sample. Not a refutation of + #83 at n = 23, but not support. +- **The per-region pattern is mixed**, which is what "depends on where the + field's near-ties fall" looks like rather than "depends on one global term". + R2 improves under every arm; R3 worsens under frequency 2 only. + +### What it cannot say, and what would + +The residual events per arm are 14 to 41. That resolves a factor of two at +about 2.9 sigma and nothing finer, and it is one seed. The cheap next +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. diff --git a/scripts/probes/vulcanus-cliff-volcanism/capture.ts b/scripts/probes/vulcanus-cliff-volcanism/capture.ts new file mode 100644 index 00000000..c54da1ea --- /dev/null +++ b/scripts/probes/vulcanus-cliff-volcanism/capture.ts @@ -0,0 +1,247 @@ +/** + * The Vulcanus cliff VOLCANISM sweep - the game's cliff entities in the three + * 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 + * + * ## Why this lever + * + * Read off `space-age/prototypes/planet/planet-vulcanus-map-gen.lua` at 2.1.17, + * neither volcanism slider touches the cliff rule. `frequency` is the input + * scale of the mountain and crack noise (`vulcanus_scale_multiplier`, line 51) + * and `size` sets the volcano spot radius, spacing and density (lines 322-337). + * Both move the ELEVATION the cliff bands sit on, and nothing else - so a sweep + * over them changes the input to the cliff rule while the rule, both collision + * tests and the ore rule stay fixed. If the residual the port carries at the + * default (21 wrong orientations, 22 surplus, 6 missing of 1569) scales with + * the arm, it lives on the elevation or multisample side; if it stays flat, it + * lives in placement or connection (#307). Either way the arm can fail, which + * is what `factorio-oracle`'s method.md asks of a probe. + * + * ## Which arms, and why frequency carries the sweep + * + * Measured on the engine before any capture, cliffs-view pixels moved per + * region (65,536 each) when one lever leaves 1: + * + * | region | size 0.5 | size 2 | size 3 | freq 2 | freq 0.5 | + * | ------------------ | -------: | -----: | -----: | -----: | -------: | + * | R1 `[0,0]` | 0 | 0 | 0 | 0 | 0 | + * | R2 `[1500,1500]` | 36,731 | 33,115 | 43,364 | 60,130 | 36,152 | + * | R3 `[-1200,800]` | 0 | 298 | 5,288 | 55,351 | 43,964 | + * + * R1 is inside the starting area and cannot see either slider, so it is the + * CONTROL in every arm: the game must place the same 283 cliffs cell for cell + * whatever the slider says, or the engine's starting-area blindness is wrong. + * R3 barely sees `size`, so frequency is the lever that reaches both regions + * the residual lives in; `size 3` is the one size setting R3 sees at all. + * + * The default arm is not redundant. It re-captures the three regions at the + * installed version, so it either reproduces the 2.1.12 fixture cell for cell + * or shows the game moved underneath it - a version check that costs nothing + * extra. + * + * ## What is reused, and what is new + * + * The Lua comes from `test/oracle/oracle.ts`'s `buildCliffControlLua`, which + * already overrides `map_gen_settings.autoplace_controls` on a forced-seed + * Vulcanus surface, generates the region's chunks with the same one-drain + * protocol every committed cliff fixture used, and reads the controls BACK off + * the surface - so an override that silently failed to apply cannot pass as a + * setting that does not matter. Only the runner is new: each arm and region is + * one `factorio-oracle run`, which records provenance and enforces a timeout. + * + * `alsoResources` is on ONLY because the read-back of `autoplace_controls` + * rides that block in the builder; the resources and prototype geometry it + * also dumps are dropped before the fixture is written. + */ +import { execFile } from "node:child_process"; +import { mkdtemp, readFile, rm, writeFile } from "node:fs/promises"; +import { homedir, tmpdir } from "node:os"; +import { dirname, join } from "node:path"; +import { fileURLToPath } from "node:url"; +import { promisify } from "node:util"; + +import { + buildCliffControlLua, + parseCliffDumpFull, + type Position, + type Region, +} from "../../../test/oracle/oracle.ts"; + +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; + +interface Arm { + readonly label: string; + readonly frequency: number; + readonly size: number; +} + +/** + * Slider values are GUI notches (the app's own `PERCENT_STEPS` carry 0.5, 2 and + * 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[] = [ + { 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 Case { + readonly region: Region; + readonly cliffs: Position[]; +} + +interface CapturedArm extends Arm { + /** `map_gen_settings.autoplace_controls.vulcanus_volcanism` read back off the surface. */ + readonly reported: { frequency: number; size: number; richness: number }; + readonly cases: Case[]; +} + +/** The installed game's version, read off the binary rather than assumed. */ +async function installedVersion(): Promise { + const { stdout } = await run(ORACLE, ["installs", "list"]); + const parsed = JSON.parse(stdout) as { installs: { version: string }[] }; + const versions = new Set(parsed.installs.map((i) => i.version)); + if (versions.size !== 1) { + throw new Error(`expected exactly one install, found ${[...versions].join(", ")}`); + } + return parsed.installs[0].version; +} + +/** + * One region of one arm, through the oracle. + * + * `error("DUMPED-OK")` makes Factorio exit non-zero on a SUCCESSFUL run and the + * tool keys success off the dump file, so a throw from `run` is expected and + * the dump read is the real check. The dump name is the tool's contract. + */ +async function captureRegion(arm: Arm, region: Region, version: string) { + const probeDir = await mkdtemp(join(tmpdir(), "volcanism-probe-")); + const workDir = await mkdtemp(join(tmpdir(), "volcanism-work-")); + try { + const controlPath = join(probeDir, "control.lua"); + await writeFile( + controlPath, + buildCliffControlLua(region, { + dumpFile: "oracle-dump.json", + planet: "vulcanus", + seed: SEED, + alsoResources: true, + autoplaceControls: + arm.label === "default" + ? undefined + : { vulcanus_volcanism: { frequency: arm.frequency, size: arm.size, richness: 1 } }, + }), + ); + const probePath = join(probeDir, "probe.json"); + await writeFile( + probePath, + JSON.stringify( + { + mode: "create", + mod: { + name: "vulcanus_cliff_volcanism_probe", + version: "0.0.1", + dependencies: ["base", "space-age"], + control_lua_file: controlPath, + }, + seed: SEED, + timeout_seconds: 600, + }, + null, + 2, + ), + ); + try { + await run( + ORACLE, + ["run", "--probe", probePath, "--work-dir", workDir, "--version", version], + { maxBuffer: 64 * 1024 * 1024 }, + ); + } catch { + // Expected: see the DUMPED-OK note above. + } + const dumpPath = join(workDir, "write", "script-output", "oracle-dump.json"); + const dump = parseCliffDumpFull(await readFile(dumpPath, "utf8")); + const reported = dump.autoplaceControls?.vulcanus_volcanism; + if (reported === undefined) { + throw new Error(`${arm.label}: the surface reported no vulcanus_volcanism control`); + } + return { cliffs: dump.cliffs, reported }; + } finally { + await rm(probeDir, { recursive: true, force: true }); + await rm(workDir, { recursive: true, force: true }); + } +} + +async function main(): Promise { + const version = await installedVersion(); + console.log(`capturing against Factorio ${version}`); + const arms: CapturedArm[] = []; + for (const arm of ARMS) { + const cases: Case[] = []; + let reported: CapturedArm["reported"] | undefined; + for (const region of 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 + // the arm. The default arm's read-back is the planet's own value. + if (got.reported.frequency !== arm.frequency || got.reported.size !== arm.size) { + throw new Error( + `${arm.label} [${String(region.x0)},${String(region.y0)}]: surface reported ` + + `${JSON.stringify(got.reported)}, wanted frequency ${String(arm.frequency)} ` + + `size ${String(arm.size)}`, + ); + } + reported ??= got.reported; + cases.push({ region, cliffs: got.cliffs }); + console.log( + ` ${arm.label} [${String(region.x0)},${String(region.y0)}]: ` + + `${String(got.cliffs.length)} cliffs in ${String(Math.round((Date.now() - started) / 1000))}s`, + ); + } + if (reported === undefined) throw new Error(`${arm.label}: no region captured`); + arms.push({ ...arm, reported, cases }); + } + + 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", + _factorioVersion: version, + seed: SEED, + arms, + }; + const out = join(FIXTURES, OUT); + await writeFile(out, `${JSON.stringify(fixture, null, 2)}\n`); + console.log(`wrote ${out} (${String(arms.length)} arms x ${String(REGIONS.length)} regions)`); +} + +await main(); diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index d5f692c6..f0df2981 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -303,7 +303,11 @@ }, "oracle-vulcanus-cliff-entities.seed123456.json": { "factorioVersion": "2.1.12", - "evidence": "re-captured 2026-07-30 by test/oracle/capture.ts vulcanus-cliff-entities against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Supersedes the 2026-07-28 capture, which it reproduced exactly (283/885/409 positions). The re-capture adds each entity's cliff_orientation - see test/cliffOrientationOracle.spec.ts." + "evidence": "re-captured 2026-07-30 by test/oracle/capture.ts vulcanus-cliff-entities against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Supersedes the 2026-07-28 capture, which it reproduced exactly (283/885/409 positions). The re-capture adds each entity's cliff_orientation - see test/cliffOrientationOracle.spec.ts.\n\nReproduced cell for cell, in the same order, at 2.1.17 (build 87315) on 2026-09-07 by the default arm of scripts/probes/vulcanus-cliff-volcanism/capture.ts (283/885/409) - so the game did not move on these three regions between 2.1.12 and 2.1.17. Kept at 2.1.12 rather than re-stamped, because every frozen count that reads it was measured against this capture and the numbers did not change." + }, + "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." }, "oracle-vulcanus-cliff-fine-sweep.seed123456.json": { "factorioVersion": "2.1.12", diff --git a/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json new file mode 100644 index 00000000..6c7136dc --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json @@ -0,0 +1,34177 @@ +{ + "_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", + "_factorioVersion": "2.1.17", + "seed": 123456, + "arms": [ + { + "label": "default", + "frequency": 1, + "size": 1, + "reported": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "cases": [ + { + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffs": [ + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 98, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 6, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 10, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 30, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 18, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 6, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 6, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 6, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + }, + { + "region": { + "x0": -1200, + "y0": 800, + "x1": -944, + "y1": 1056 + }, + "cliffs": [ + { + "x": -1018, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1014, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1010, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1002, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1018, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1002, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1006, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1002, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1184.375, + "y": 814.98828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1050, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1046, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1006, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1189.32421875, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1179.42578125, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1191.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1177.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1006, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1002, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1189.32421875, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1179.42578125, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -1050, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1184.375, + "y": 824.88671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1050, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1006, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1002, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1054, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1050, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1042, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1014, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1006, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1002, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1054, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1014, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1010, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1046, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1006, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1046, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1006, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1002, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -990, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -986, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1066, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1062, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1194, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1182, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1066, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1058, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1194, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1070, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1066, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1058, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1070, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1058, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1202, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1082, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1078, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1074, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1058, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1082, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1066, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1062, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1174, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1170, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1154, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1150, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1082, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1078, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1066, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1062, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1178, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1170, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1154, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1146, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1142, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1078, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1062, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1058, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1198, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1178, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1174, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1198, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1174, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1170, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1154, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1150, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1118, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1114, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1202, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1194, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1114, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1106, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1114, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1106, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1114, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1114, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1110, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1110, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1050, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -950, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -954, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -950, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1198, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1194, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1190, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1050, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -950, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -942, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1050, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -958, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -954, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -950, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1170, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -958, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -954, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1170, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1166, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1162, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -954, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -950, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1178, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1174, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1162, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1158, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1090, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1086, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1082, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1042, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -946, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1194, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1190, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1170, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1166, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1158, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -966, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -962, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1038, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -962, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1198, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1194, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1058, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -962, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1158, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1158, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1178, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1174, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1170, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -946, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1198, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1162, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1158, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1170, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1166, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1154, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1150, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -970, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -966, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1186, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1170, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1154, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1150, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1186, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1182, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1170, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1146, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1162, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1158, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1142, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1138, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1166, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1162, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1138, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1134, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1066, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1062, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1058, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1170, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1166, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1142, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1138, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1066, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1058, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1054, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1170, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1154, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1146, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1142, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1070, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1066, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1054, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1050, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1194, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1190, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1174, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1146, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1070, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1150, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1174, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1042, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -946, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1178, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1174, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1058, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1054, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1186, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1178, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1062, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1058, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1054, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1202, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1178, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1062, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1046, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1038, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1194, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1182, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1062, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1046, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1186, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1182, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1054, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1050, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1046, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1070, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1050, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1070, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1066, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1054, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1050, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1058, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -962, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -970, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -974, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -970, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "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": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffs": [ + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 98, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 6, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 10, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 30, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 18, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 6, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 6, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 6, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1590, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1654, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1662, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1670, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1694, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1698, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1590, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1694, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1578, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1714, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1586, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1606, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1626, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1630, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1678, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1682, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1686, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1714, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1598, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1642, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1646, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1650, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1714, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1634, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1710, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1714, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1546, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1658, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1526, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1542, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1658, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1694, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1542, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1686, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1742, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1550, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1670, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1530, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1534, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1718, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1662, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1538, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1666, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1678, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1682, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1734, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1538, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1722, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1738, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1530, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1722, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1530, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1614, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1630, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1638, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1646, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1654, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1658, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1722, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1726, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1734, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1738, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1642, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1522, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1610, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1670, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1702, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1638, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1642, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1670, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1718, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1722, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1670, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1698, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1714, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1642, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1542, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1638, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1534, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1638, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1646, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1534, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1638, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1642, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1534, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1538, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1622, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1638, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1642, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1622, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1634, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1646, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1646, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1642, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1626, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1630, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1642, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1654, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1522, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1530, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1750, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1546, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1750, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1538, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1578, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1734, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1738, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1682, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1742, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1570, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1538, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1698, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1710, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1746, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1538, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1558, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1582, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1590, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1542, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1574, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1614, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1689.17578125, + "y": 1687.8125, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1694.125, + "y": 1686.36328125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1699.07421875, + "y": 1687.8125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1738, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1562, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1566, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1582, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1614, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1687.125, + "y": 1691.3125, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1701.125, + "y": 1691.3125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1714, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1734, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1546, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1730, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1758, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1558, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1570, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1754, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1554, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1562, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1734, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1738, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1558, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1562, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1566, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1570, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1582, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1558, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1566, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1570, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1594, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1734, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1558, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1562, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1574, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1590, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1606, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1618, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1566, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1570, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1618, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1582, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1586, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1618, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1566, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1594, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1598, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1602, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1606, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1602, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1610, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1610, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1614, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1754, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + } + ] + }, + { + "region": { + "x0": -1200, + "y0": 800, + "x1": -944, + "y1": 1056 + }, + "cliffs": [ + { + "x": -1198, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1014, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -990, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -986, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1102, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1098, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1014, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -954, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -950, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1102, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1094, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1090, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1086, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1082, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1014, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -954, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1184.375, + "y": 814.98828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1102, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1098, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1094, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1090, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1086, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1082, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1014, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -998, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -958, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1189.32421875, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1179.42578125, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1191.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1177.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1098, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1094, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1078, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1046, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -998, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -962, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1189.32421875, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1179.42578125, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -1098, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1094, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1082, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1078, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1046, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -970, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -954, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -950, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1184.375, + "y": 824.88671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1094, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1082, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -962, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1058, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1054, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1050, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1046, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1022, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1010, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1006, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -994, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1174, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1030, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1026, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1022, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1014, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1010, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1002, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -998, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -994, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1174, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1170, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1034, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1030, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1014, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -994, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1170, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1162, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1158, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1034, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1018, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1014, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -986, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1190, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1162, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1158, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1154, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1038, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1026, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1022, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -986, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1198, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1190, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1162, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1158, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1154, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1038, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1034, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1026, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -986, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -982, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1202, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1198, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1190, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1186, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1162, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1158, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1034, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -982, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1158, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1070, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1066, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1034, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1030, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1026, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1018, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -990, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -982, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -970, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1202, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1198, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1182, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1142, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1070, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1066, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1034, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1026, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -990, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -982, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -970, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1194, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1146, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1082, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1066, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1034, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -990, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -982, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -970, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1194, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1110, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1082, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1078, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1074, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1066, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1062, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1034, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1026, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -986, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -982, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -974, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -970, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1198, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1194, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1150, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1146, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1110, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1082, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1078, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1074, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -986, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -978, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -974, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1198, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1154, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1090, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1086, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1082, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1078, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1070, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1062, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1038, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -994, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -990, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -986, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -978, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1154, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1094, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1090, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1086, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1082, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1078, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1070, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1062, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1034, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1030, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1026, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -998, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -994, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -978, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -974, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1178, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1174, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1166, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1154, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1094, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1090, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1086, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1082, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1078, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1062, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1058, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1038, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1010, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1006, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -990, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -974, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -970, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -966, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1178, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1058, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1054, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1038, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1010, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -966, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -962, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -958, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1202, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1198, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1194, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1190, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1178, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1174, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1170, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1162, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1154, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1054, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1038, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1034, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1030, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1018, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1014, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -998, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -994, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -958, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1178, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1174, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1170, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1154, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1018, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1014, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -998, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -958, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1162, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1158, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1014, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -958, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1198, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1186, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1182, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1178, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1174, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1170, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -958, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1198, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1190, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1186, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -958, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1190, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1010, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -998, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -994, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1194, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1050, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1002, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -994, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -990, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -962, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1046, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -994, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -990, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -986, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -962, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1038, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -990, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -986, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -954, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -950, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -946, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -942, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1038, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -994, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -990, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1038, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1034, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -978, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -974, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -970, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1034, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1006, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1002, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -978, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -970, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -962, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -958, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -954, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -950, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -946, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -942, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1078, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1034, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1074, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1070, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1034, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1030, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -998, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -994, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1070, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1066, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1062, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1026, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1022, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -974, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -970, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -966, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -962, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1074, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1070, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1066, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1062, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1058, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1014, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1078, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1074, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1070, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1066, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1062, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1058, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1034, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1030, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1018, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1014, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -946, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -942, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1074, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1070, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1058, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1030, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1014, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1074, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1058, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1030, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1010, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1006, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -970, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1030, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1006, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1002, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -970, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -966, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1046, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1030, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -998, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -994, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -966, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -962, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -946, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1078, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1074, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1050, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1046, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1030, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1026, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1022, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1018, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1014, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -998, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -994, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1066, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1050, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1042, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1030, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1026, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1014, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1010, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -998, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1058, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1042, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1038, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1034, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1026, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -998, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1042, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1038, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1034, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1030, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1026, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1022, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1006, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -994, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1054, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1042, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1038, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1026, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1018, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1014, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1006, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1002, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1054, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1050, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1042, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1038, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1010, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1002, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1050, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1042, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1038, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1030, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1026, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1022, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -958, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1050, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1014, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1010, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -958, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1018, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1014, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -974, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -958, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -954, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -950, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1050, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1046, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1030, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1026, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1022, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1014, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1010, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1006, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -950, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1034, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1030, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1022, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1014, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1010, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1006, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -986, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -982, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -974, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -970, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1046, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1042, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1038, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1034, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1030, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1010, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1006, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -986, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -982, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -978, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -974, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -970, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1038, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1034, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1030, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1026, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1022, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1018, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1014, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1010, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -978, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -974, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -970, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1034, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1030, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1010, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -978, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1026, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1022, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1022, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1018, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -990, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -986, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -982, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -978, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -974, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -990, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -974, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -970, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -970, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + } + ] + } + ] + }, + { + "label": "frequency 2", + "frequency": 2, + "size": 1, + "reported": { + "frequency": 2, + "size": 1, + "richness": 1 + }, + "cases": [ + { + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffs": [ + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 98, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 6, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 10, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 30, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 18, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 6, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 6, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 6, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1530, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1590, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1682, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1686, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1510, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1518, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1698, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1674, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1682, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1674, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1686, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1526, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1530, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1710, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1498, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1714, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1534, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1698, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1702, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1710, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1530, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1674, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1534, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1534, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1698, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1702, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1522, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1662, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1662, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1666, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1686, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1686, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1690, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1498, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1502, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1502, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1498, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1538, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1542, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1546, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1510, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1530, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1750, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1750, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1754, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1758, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1550, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1550, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1598, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": -1200, + "y0": 800, + "x1": -944, + "y1": 1056 + }, + "cliffs": [ + { + "x": -1022, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1018, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -994, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -990, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -986, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1022, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1018, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -954, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -950, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1018, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1014, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -978, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -966, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -962, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1184.375, + "y": 814.98828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1046, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1014, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1010, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -998, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -986, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -982, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -970, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -966, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1189.32421875, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1179.42578125, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1191.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1177.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1046, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1002, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1189.32421875, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1179.42578125, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1058, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1042, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1034, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1010, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1002, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -966, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -954, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -950, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1184.375, + "y": 824.88671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1038, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1010, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1002, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -958, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -954, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1058, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1054, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1042, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1038, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1034, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1026, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1018, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1014, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1010, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1006, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1042, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1038, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1010, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1038, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1026, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1014, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1010, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1038, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1026, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -990, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1046, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1042, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1038, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1026, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1014, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1038, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1034, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1030, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1018, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -978, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1038, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1034, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1026, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1018, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -978, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1066, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1062, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1038, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1034, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1030, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1026, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -978, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -970, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1194, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1066, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1046, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1034, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1030, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1026, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1018, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -986, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -982, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -970, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1186, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1066, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1062, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1050, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1046, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1038, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1026, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -986, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -982, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -970, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1118, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1114, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1062, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1026, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -982, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -962, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1142, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1118, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1114, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1110, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1086, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1082, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1074, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1070, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1062, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1050, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1042, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1026, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -978, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -970, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1170, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1146, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1142, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1082, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1074, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1070, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1046, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1022, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -998, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -990, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -978, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -974, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -958, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1170, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1146, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1082, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1074, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1070, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1062, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1046, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1006, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1002, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -978, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -974, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -970, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -958, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -954, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1178, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1170, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1154, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1150, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1146, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1142, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1082, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1062, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1054, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1046, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1026, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1022, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1014, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1010, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1006, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -990, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -978, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -970, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -962, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -954, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -950, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1178, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1154, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1146, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1054, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1026, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -998, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -990, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -958, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -950, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1182, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1178, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1174, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1170, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1154, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1146, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1118, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1054, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1050, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1046, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1042, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1026, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1014, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -998, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -994, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -990, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1178, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1174, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1154, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1146, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1122, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1118, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1114, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1110, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1022, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1014, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -990, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1178, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1170, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1166, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1154, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1122, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1110, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1106, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1022, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1014, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -990, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -978, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -958, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1174, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1170, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1122, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1118, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1114, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -990, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -986, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -978, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1190, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1114, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1110, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1106, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -986, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -978, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -974, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -958, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -946, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1194, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1190, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1178, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1174, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1158, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1050, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1046, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1042, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1038, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -986, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -982, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -970, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -962, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -958, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -946, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1182, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1158, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1006, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1002, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -994, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -982, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -966, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -962, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1198, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1194, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1190, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1158, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1050, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1046, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1042, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1006, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -994, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -978, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -974, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -966, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -962, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1198, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1190, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1158, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1154, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1010, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1006, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -994, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -974, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -950, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -946, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -942, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1022, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1010, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1006, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1002, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -998, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -990, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -970, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -950, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -946, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -942, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1022, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1010, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -998, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -990, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -986, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -970, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -966, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1202, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1022, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1018, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1014, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1010, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1002, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -998, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -966, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -962, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1018, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1014, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1010, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1006, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1002, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -994, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -954, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -950, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1006, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -998, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -994, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -950, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -946, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -942, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1006, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1002, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -998, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -974, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -970, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -966, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -962, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1006, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1002, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -998, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -994, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -998, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -994, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -946, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -942, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -994, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -974, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -970, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -966, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -994, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -990, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -974, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -966, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -962, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -990, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -974, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -970, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -962, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -958, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -946, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -942, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -970, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -966, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1090, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1086, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1186, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1086, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1190, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1186, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1090, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1086, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -966, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -962, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1126, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1122, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1118, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -962, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -958, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -954, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -946, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1126, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1022, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1126, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1026, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1022, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1126, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1126, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1126, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1122, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1118, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1154, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1086, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1194, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1154, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1150, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1134, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1086, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1194, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1190, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1150, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1146, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1142, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1134, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1090, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1086, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1142, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1134, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1090, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1198, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1194, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1186, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1142, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1138, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1134, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -942, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + } + ] + }, + { + "label": "size 3", + "frequency": 1, + "size": 3, + "reported": { + "frequency": 1, + "size": 3, + "richness": 1 + }, + "cases": [ + { + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffs": [ + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 98, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 6, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 10, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 30, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 18, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 6, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 6, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 6, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffs": [ + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1658, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1666, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1626, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1646, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1590, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1638, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1654, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1626, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1714, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1606, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1662, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1678, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1682, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1686, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1698, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1662, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1666, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1690, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1506, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1690, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1498, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1502, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1542, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1690, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1542, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1546, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1739.98828125, + "y": 1539, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1498, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1694, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1706, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1710, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1737.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1751.9375, + "y": 1542.5, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1739.98828125, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1749.88671875, + "y": 1545.99609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1554, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1694, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1714, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1744.9375, + "y": 1547.44921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1534, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1694, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1698, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1734, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1722, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1738, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1718, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1718, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1734, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1738, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1578, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1498, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1594, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1498, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1502, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1594, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1514, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1594, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1590, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1514, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1598, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1630, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1634, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1630, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1500.125, + "y": 1639.05078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1495.17578125, + "y": 1640.5, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1530, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1507.125, + "y": 1644, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1495.17578125, + "y": 1647.49609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1505.07421875, + "y": 1647.49609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1500.125, + "y": 1648.94921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1530, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1570, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1586, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1574, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1578, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1574, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1754, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1542, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1546, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1746, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1746, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1550, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1606, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1698, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1710, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1714, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1566, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1606, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1730, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1566, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1618, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1618, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1734, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1538, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1562, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1566, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1734, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1738, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1734, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1570, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1574, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1626, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1730, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1498, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1502, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1570, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1742, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1598, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1606, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1546, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1550, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1578, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1742, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1582, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1742, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1754, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1578, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1582, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1582, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1590, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1730, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1746, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1498, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1630, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1510, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1606, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1718, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": -1200, + "y0": 800, + "x1": -944, + "y1": 1056 + }, + "cliffs": [ + { + "x": -1010, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1006, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -994, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -978, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1102, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1014, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1010, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -994, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -982, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -978, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -958, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -954, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1102, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1018, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1014, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -998, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -994, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -982, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -954, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -950, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1184.375, + "y": 814.98828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -1102, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1046, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1002, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -998, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -986, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -982, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1189.32421875, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": -1179.42578125, + "y": 816.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -1191.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -1177.375, + "y": 819.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -1050, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1046, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1002, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -998, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1189.32421875, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -1179.42578125, + "y": 823.43359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -1054, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1050, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1034, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -998, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1184.375, + "y": 824.88671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -1058, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1054, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1038, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1014, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1038, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1030, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1026, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1022, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1014, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1054, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1050, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1046, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1042, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1038, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1034, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1030, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1022, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1014, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1010, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1034, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1022, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1018, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1010, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1006, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -990, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1038, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1034, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1042, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1018, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1014, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1042, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1014, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1010, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1006, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1002, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -998, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -994, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -990, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -986, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -986, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -982, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -978, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -974, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1062, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1194, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1182, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1066, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1062, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1194, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1066, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1054, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1198, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1070, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1066, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1058, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1054, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1078, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1074, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1058, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1082, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1078, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1066, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1062, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1174, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1170, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1154, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1150, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1082, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1078, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1066, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1062, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1178, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1170, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1166, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1154, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1146, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1142, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1078, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1062, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1058, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1198, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1178, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1174, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1198, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1174, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1170, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1154, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1150, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1146, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1142, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1118, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1114, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1202, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1198, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1194, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1118, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1114, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1106, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1198, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1114, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1106, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1114, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1114, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1110, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1110, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1050, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1042, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1038, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -950, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -958, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -954, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -950, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1202, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1198, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1194, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1190, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1050, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -958, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -950, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -946, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -942, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1050, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -958, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -954, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -950, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1170, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -958, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -954, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1186, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1170, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1166, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1162, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -970, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -966, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -954, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -950, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1190, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1178, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1174, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1162, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1158, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1090, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1086, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1082, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1042, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -950, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -946, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1194, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1190, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1174, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1170, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1166, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1158, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -966, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -962, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -946, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1042, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1038, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -962, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1198, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1194, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1062, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1058, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -962, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1202, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1198, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1166, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1158, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1158, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1166, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -962, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -946, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -942, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1178, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1174, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1170, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1166, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -966, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -962, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -946, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1202, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1198, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1194, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1182, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1162, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1158, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1186, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1170, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1166, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1154, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1150, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -970, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -966, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1186, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1182, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1170, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1154, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1150, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1186, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1182, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1170, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1158, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1146, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1162, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1158, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1142, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1138, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1170, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1166, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1162, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1138, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1134, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1066, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1062, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1058, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1170, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1166, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1162, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1158, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1142, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1138, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1066, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1058, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1054, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1170, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1158, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1154, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1146, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1142, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1070, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1066, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1054, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1050, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1194, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1190, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1186, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1182, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1174, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1150, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1146, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1070, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1050, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1046, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1174, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1154, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1150, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1042, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -946, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1174, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1042, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -946, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -942, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1178, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1174, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1058, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1054, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1042, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1186, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1178, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1062, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1058, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1054, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1042, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1038, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1202, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1186, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1178, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1074, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1062, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1046, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1042, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1038, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1194, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1190, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1182, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1178, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1066, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1062, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1046, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1186, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1182, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1046, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1194, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1190, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1186, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1074, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1070, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1058, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1054, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -1050, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1046, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1198, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1194, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1070, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1050, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1198, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1070, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1066, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1062, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1054, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1050, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1202, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1198, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1062, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1058, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1054, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -966, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -962, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -970, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -966, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -974, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -970, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -962, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + } + ] + } + ] +}