diff --git a/docs/noise/cliffs-NOTES.md b/docs/noise/cliffs-NOTES.md index 0dbd92b..f4274b0 100644 --- a/docs/noise/cliffs-NOTES.md +++ b/docs/noise/cliffs-NOTES.md @@ -633,6 +633,69 @@ here refutes the multisample port; what has never been tested is whether it behaves the same when the calling program's grid is 4 tiles rather than 1. `test/vulcanusCliffCollapsed.spec.ts` pins all of the above. +### The level-set inversion - #18 is ONE TERM of `vulcanus_elev` (2026-08-01) + +The collapsed rule is also an **instrument**. A cell carries a cliff exactly when +its corner elevations straddle `cliff_elevation_0`, so sweeping that threshold +measures the elevation field **the generator itself reads** - the one thing an +expression sample cannot do, since `calculate_tile_properties` answers for its +own channel and whether the two agree was precisely the open question. + +19 levels, `cliff_elevation_0` 20..200 step 10, region `[0,0]`: + +| `cliff_elevation_0` | game | ours | ours/game | +| --- | --- | --- | --- | +| 20 | 658 | 979 | 1.49 | +| 40 | 603 | 816 | 1.35 | +| 70 | 335 | 463 | 1.38 | +| 110 | 142 | 200 | 1.41 | +| **120** | 122 | 126 | **1.03** | +| 150 | 117 | 117 | **1.00** | +| 200 | 97 | 97 | **1.00** | + +**There is a clean edge at 120**: every level at or above it is 1.00-1.04 (and +the same CELLS, `both/game > 0.9`, not merely the same count), every level below +it is 1.20-1.49. The worst high level is 1.04 and the best low level is 1.20, so +this is a threshold, not a drift. + +That edge is not arbitrary. `vulcanus_elev` is + +``` +vulcanus_elevation_offset + + lerp(lerp(120 * vulcanus_basalt_lakes_multisample, + 20 + vulcanus_mountains_func * vulcanus_mountains_elevation_multiplier, + vulcanus_mountains_biome), + vulcanus_ashlands_func, + vulcanus_ashlands_biome) +``` + +and `vulcanus_basalt_lakes` is a `min(1, ...)`, so **the basalt-lakes branch +saturates at exactly 120**. Everything above 120 comes from the mountains and +ashlands branches - which contain no `multisample` - and the port reproduces +those *exactly*. Everything below is governed by +`vulcanus_basalt_lakes_multisample`, which is the only `multisample` in the chain +and the only term with no Nauvis counterpart. + +**So the residual is that one term, and the port is exact everywhere else in the +field.** `test/vulcanusElevationLevels.spec.ts` pins the threshold and its +separation. + +The mechanism to suspect is the one the primitive's own docs describe: it +evaluates "in a separate noise program with a larger grid" whose "sub-grids are +copied to the main program". The cliff generator's program walks the 4-tile +corner lattice; `calculate_tile_properties` does not - and that is the channel +`vulcanus-multisample-NOTES.md` measured `multisample(e,dx,dy) == e(x+dx,y+dy)` +through, and the channel every elevation fixture was captured through. A `min()` +of four samples is an erosion operator, so a coarser effective grid in the +generator smooths the field exactly the way a 40% over-placement implies. + +Note what this does NOT say: the multisample port is not refuted, and neither is +the corner-fields fixture. Both are correct **in their channel**. What has never +been tested is whether the primitive behaves the same when the calling program's +grid is 4 tiles rather than 1 - and the tile renderer, which consumes +`vulcanus_elevation` through the same 1-tile channel the fixtures use, is not +implicated by any of this. + #### Where that leaves #18 The residual survives with smoothing disabled, so it is in something Nauvis and diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index c82742f..6b04519 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -275,6 +275,10 @@ "oracle-vulcanus-cliff-collapsed.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-cliff-collapsed against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] with the placement rule collapsed a term at a time via map_gen_settings.cliff_settings (smoothing 0, a single contour via cliff_elevation_interval = 1e6, the cliffiness gate held open via richness = 4), plus Nauvis control arms in [512,1024) at the default settings and at cliff_elevation_interval = 80. Each case records the cliff_settings the SURFACE reported back, so every override is proven to have applied." + }, + "oracle-vulcanus-elevation-levels.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-elevation-levels against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] at 19 values of cliff_elevation_0 (20..200 step 10) with the rule collapsed (cliff_smoothing=0, cliff_elevation_interval=1e6, richness=4), so a cell carries a cliff exactly when its corner elevations straddle the level - inverting the elevation field the generator itself reads. Each case records the cliff_settings the SURFACE reported back." } } } diff --git a/test/fixtures/oracle-vulcanus-elevation-levels.seed123456.json b/test/fixtures/oracle-vulcanus-elevation-levels.seed123456.json new file mode 100644 index 0000000..edb1816 --- /dev/null +++ b/test/fixtures/oracle-vulcanus-elevation-levels.seed123456.json @@ -0,0 +1,30678 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 via test/oracle. The Vulcanus region [0,0]-[256,256] captured at 19 values of cliff_elevation_0 (20..200 step 10) with the placement rule COLLAPSED: cliff_smoothing=0 (raw elevation), cliff_elevation_interval=1e6 (a single contour at cliff_elevation_0, no band arithmetic) and richness=4 (cliffiness_basic saturates at 1.5 so its >0.5 gate is always open). Under those settings a cell carries a cliff exactly when its corner elevations STRADDLE cliff_elevation_0, so the set of levels at which a cell appears brackets (min corner, max corner] - i.e. this fixture INVERTS the elevation field the generator itself reads, which no expression sample can do because calculate_tile_properties answers for a different channel. Exists to measure the per-cell corner spread against ours: the collapsed arm shows we place 463 cliffs where the game places 335, implying our field is rougher at the 4-tile scale. `effective` is the cliff_settings the SURFACE reported back. Sampled on a create_surface() surface whose seed is FORCED to `seed`. Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-elevation-levels", + "seed": 123456, + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cases": [ + { + "elevation0": 20, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 20, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 202, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 206, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 138, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 146, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 166, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 190, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 206, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 222, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 250, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 146, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 190, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 218, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 222, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 238, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 250, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 254, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 166, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 238, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 242, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 246, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 146, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 150, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 166, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 214, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 122, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 214, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 122, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 198, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 202, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 122, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 126, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 130, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 134, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 158, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 162, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 242, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 158, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 162, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 166, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 170, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 222, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 226, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 242, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 194, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 222, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 226, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 242, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 246, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 250, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 194, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 150, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 202, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 206, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 98, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 114, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 118, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 122, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 126, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 130, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 142, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 146, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 150, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 202, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 206, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 10, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 22, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 102, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 106, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 110, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 130, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 138, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 142, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 158, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 162, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 10, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 30, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 110, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 154, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 158, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 166, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 202, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 14, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 142, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 150, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 166, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 202, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 18, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 34, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 214, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 218, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 250, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 254, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 210, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 214, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 218, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 222, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 246, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 254, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 42, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 110, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 246, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 106, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 130, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 206, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 210, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 226, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 242, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 246, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 42, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 142, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 146, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 214, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 218, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 226, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 230, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 242, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 254, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 146, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 174, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 178, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 218, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 222, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 242, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 246, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 254, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 102, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 194, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 198, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 222, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 246, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 254, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 170, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 30, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 86, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 166, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 174, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 178, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 226, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 230, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 70, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 178, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 58, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 62, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 214, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 246, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 250, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 254, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 66, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 78, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 118, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 122, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 126, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 162, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 166, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 178, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 78, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 94, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 118, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 122, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 126, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 158, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 162, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 166, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 182, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 214, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 46, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 94, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 154, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 158, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 162, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 186, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 190, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 202, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 206, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 210, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 46, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 134, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 138, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 154, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 158, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 162, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 194, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 202, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 254, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 154, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 158, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 254, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 46, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 62, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 114, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 118, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 122, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 158, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 174, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 178, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 210, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 214, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 122, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 174, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 178, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 182, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 206, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 210, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 214, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 74, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 122, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 198, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 206, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 94, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 198, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 202, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 78, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 82, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 114, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 134, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 150, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 74, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 78, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 110, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 134, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 138, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 150, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 250, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 70, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 74, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 106, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 110, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 134, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 146, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 246, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 250, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 254, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 102, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 130, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 134, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 146, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 254, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 130, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 102, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 190, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 102, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 182, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 190, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 102, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 114, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 182, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 46, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 54, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 58, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 126, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 130, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 162, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 166, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 22, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 50, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 126, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 166, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 170, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 174, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 54, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 130, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 158, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 174, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 178, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 158, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 162, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 178, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 74, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 162, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 166, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 178, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 206, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 14, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 58, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 62, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 206, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 6, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 14, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 50, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 54, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 74, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 118, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 174, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 42, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 54, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 62, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 74, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 86, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 118, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 174, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 178, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 30, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 54, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 74, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 78, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 86, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 110, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 118, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 42, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 86, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 118, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 46, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 86, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 46, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 62, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 86, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 34, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 38, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 62, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 90, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 138, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 154, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 86, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 102, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 138, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 154, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 182, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 94, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 150, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 154, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 178, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 186, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 82, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 94, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 114, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 134, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 150, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 178, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 190, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 62, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 74, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 78, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 94, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 114, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 150, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 190, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 226, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 230, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 46, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 94, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 114, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 130, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 154, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 158, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 170, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 234, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 50, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 94, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 118, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 130, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 170, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 174, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 214, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 218, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 234, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 66, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 122, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 154, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 158, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 186, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 198, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 202, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 214, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 222, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + }, + { + "elevation0": 30, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 30, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 170, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 178, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 202, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 206, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 218, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 138, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 146, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 166, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 170, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 190, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 206, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 218, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 242, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 246, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 146, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 190, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 218, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 238, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 242, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 246, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 254, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 146, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 166, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 214, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 238, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 242, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 246, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 146, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 150, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 166, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 210, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 122, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 178, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 118, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 122, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 178, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 122, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 126, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 130, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 134, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 158, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 162, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 166, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 246, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 158, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 162, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 166, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 170, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 246, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 122, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 194, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 122, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 150, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 202, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 206, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 94, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 122, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 126, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 130, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 134, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 138, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 142, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 146, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 150, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 202, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 206, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 46, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 106, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "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": 26, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 30, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 106, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 154, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 158, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 162, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 166, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 110, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 146, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 150, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 154, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 166, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 194, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 198, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 34, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 134, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 194, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 214, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 218, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 250, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 210, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 218, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 250, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 254, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 38, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 42, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 110, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 206, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 210, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 218, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 42, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 106, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 130, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 138, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 206, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 214, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 218, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 222, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 242, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 246, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 138, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 142, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 146, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 218, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 222, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 226, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 230, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 242, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 254, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 146, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 174, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 178, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 218, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 222, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 242, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 246, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 254, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 170, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 190, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 194, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 222, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 246, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 254, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 170, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 86, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 102, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 174, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 178, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 226, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 230, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 90, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 214, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 218, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 30, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 58, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 214, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 246, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 250, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 254, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 118, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 122, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 126, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 162, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 178, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 86, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 90, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 118, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 122, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 126, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 158, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 162, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 214, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 46, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 78, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 154, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 158, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 162, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 190, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 210, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 154, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 158, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 162, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 250, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 154, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 158, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 254, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 46, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 114, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 122, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 154, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 158, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 202, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 210, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 50, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 54, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 58, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 114, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 122, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 178, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 182, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 198, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 202, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 206, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 210, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 118, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 186, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 198, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 202, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 74, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 90, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 94, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 110, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 106, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 110, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 134, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 86, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 134, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 126, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 130, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 134, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 78, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 130, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 70, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 114, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 122, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 126, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 130, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 30, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 126, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 130, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 162, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 166, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 22, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 58, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 126, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 166, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 170, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 174, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 174, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 178, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 126, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 170, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 174, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 178, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 130, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 134, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 162, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 166, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 170, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 58, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 62, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 122, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 126, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 130, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 46, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 54, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 118, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 42, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 118, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 30, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 114, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 42, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 86, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 118, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 46, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 86, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 62, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 86, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 38, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 42, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 62, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 102, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 142, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 146, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 86, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 150, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 182, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 150, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 186, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 114, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 134, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 138, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 150, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 186, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 190, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 58, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 62, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 78, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 106, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 110, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 114, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 150, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 46, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 94, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 130, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 154, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 154, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 158, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 162, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 166, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 170, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 174, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 90, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 94, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 122, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 154, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 158, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 162, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 174, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 202, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 206, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 214, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 218, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + } + ] + }, + { + "elevation0": 40, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 40, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 170, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 178, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 186, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 206, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 218, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 142, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 170, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 190, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 206, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 218, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 142, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 190, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 206, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 210, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 142, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 166, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 210, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 166, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 170, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 178, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 166, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 170, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 178, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 118, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 122, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 126, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 130, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 134, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 166, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 170, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 174, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 118, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 170, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 118, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-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-none" + }, + { + "x": 118, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 122, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 126, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 130, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 194, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 130, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 94, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 130, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 138, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 106, + "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": 30, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 154, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 158, + "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": 38, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 110, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 146, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 150, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 154, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 158, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 162, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 166, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 194, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 198, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 38, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 134, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 146, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 150, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 154, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 38, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 110, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 146, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 154, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 158, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 210, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 218, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 250, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 42, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "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": 74, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 130, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 210, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 106, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 134, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 210, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 142, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 146, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 218, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 222, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 226, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 246, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 254, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 174, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 178, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 218, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 222, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 226, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 254, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 82, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 170, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 186, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 222, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 226, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 170, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 178, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 70, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 86, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 102, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 178, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 30, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 214, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 58, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 214, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 250, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 182, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 214, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 46, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 78, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 190, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 210, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 246, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 250, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 110, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 114, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 118, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 182, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 58, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 62, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 118, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 186, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 66, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 114, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 94, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 110, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 130, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 134, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 86, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 110, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 130, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 66, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 98, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 126, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 130, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 58, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 102, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 114, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 110, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 114, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 118, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 126, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 126, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 54, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 126, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 166, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 170, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 170, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 174, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 78, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 126, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 166, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 170, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 126, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 122, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 126, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 102, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 106, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 110, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 118, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 62, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 70, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 118, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 42, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 86, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 46, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 86, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 86, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 142, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 146, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 142, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 182, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 142, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 150, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 186, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 82, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 150, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 50, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 74, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 78, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 150, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 98, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 130, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 94, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 154, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 158, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 162, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 166, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 170, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 174, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 94, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 154, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 158, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 162, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 174, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + }, + { + "elevation0": 50, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 50, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 174, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 178, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 186, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 218, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 142, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 174, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 186, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 218, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 174, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 178, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 170, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 178, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 178, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 174, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 178, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 126, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 130, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 134, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 170, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 126, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 130, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 138, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 142, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 130, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 142, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 194, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 194, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 130, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 94, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 98, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 82, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "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-south" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "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": 38, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 42, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 106, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 146, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 150, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 158, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 162, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 194, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 198, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 42, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 146, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 150, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 158, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 162, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 38, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 42, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 134, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 214, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 218, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 210, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 214, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 218, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 254, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 174, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 222, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 226, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 246, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 254, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 174, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 178, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 222, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 226, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 178, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "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": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 214, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 214, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 58, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 214, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 254, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 254, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 214, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 246, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 190, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 202, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 38, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 82, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 62, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 182, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 58, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 186, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 190, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 110, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 110, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 114, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 98, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 50, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 98, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 114, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 102, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 126, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 114, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 126, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 70, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 166, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 170, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 126, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 162, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 170, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 174, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 122, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 126, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 162, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 166, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 170, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 122, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 102, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 114, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 122, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 106, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 110, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 114, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 38, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 42, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 38, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 114, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 170, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 62, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 162, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 166, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 170, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + }, + { + "elevation0": 60, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 60, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 174, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 178, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 210, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 218, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 174, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 186, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 210, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 218, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 174, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 214, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 218, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 178, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 170, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 178, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 178, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 174, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 178, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 170, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 130, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 134, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 138, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 86, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 130, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 138, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 142, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 130, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 134, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 138, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 42, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 158, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 162, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 158, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 162, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 142, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 78, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 142, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 210, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 250, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 254, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 246, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 250, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 254, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 170, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 174, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 178, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 182, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 170, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 174, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 178, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "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": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 210, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 214, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 214, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 62, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 202, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 206, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 214, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 214, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 190, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 254, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "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": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 74, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 70, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 154.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-east" + }, + { + "x": 66, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 46, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 118, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 70, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 118, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 122, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 118, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 122, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 166, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 170, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 174, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 118, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 166, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 170, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 174, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 106, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 118, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 110, + "y": 202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 78, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 98, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 118, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 70, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 210, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 142, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 202, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 206, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 202, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 34, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 106, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 110, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 110, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 80, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 80, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 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-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "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": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 98, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 102, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "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": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 194, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 198, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 26, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 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-north" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 86, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 90, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 90, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 98, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "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": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 54, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 58, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 50, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 54, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 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": "north-to-none" + }, + { + "x": 50, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 54, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 58, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 62, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 190, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 194, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 194, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 194, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 22, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 58, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "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": 82, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 94, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "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": 82, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 142, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "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": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "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": 110, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 100, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 100, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 98, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 86, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 58, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "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": "north-to-east" + }, + { + "x": 50, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 54, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 62, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 186, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 190, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 190, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 50, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 54, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "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-east" + }, + { + "x": 82, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 70, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 142, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 110, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "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-north" + } + ] + }, + { + "elevation0": 110, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 110, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 98, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 66, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 74, + "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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 66, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 62, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 90, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "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-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + } + ] + }, + { + "elevation0": 120, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 120, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 98, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 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-east" + }, + { + "x": 74, + "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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 62, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 18, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 42, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 50, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 46, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 130, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 130, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 98, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 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-east" + }, + { + "x": 74, + "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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 62, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 46, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 42, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 140, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 140, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 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-east" + }, + { + "x": 74, + "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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 62, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 42, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 38, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 38, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 34, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 150, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 150, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "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-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 74, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 66, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 34, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 38, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 42, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 42, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 38, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 38, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 38, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 34, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 160, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 160, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "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-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 14, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 34, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 34, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 10, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 170, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 170, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "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-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 18, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 14, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 34, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-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-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 180, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 180, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": 94, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-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-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 6, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 6, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 14, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 18, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 18, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 14, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 30, + "y": 166.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-east" + }, + { + "x": 26, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-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-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 190, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 190, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": "south-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-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-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-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "west-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": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 14, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 34, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 34, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 166.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-north" + }, + { + "x": 14, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 18, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-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-east" + }, + { + "x": 14, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "elevation0": 200, + "effective": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 200, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-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": "south-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-east" + }, + { + "x": 102, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 82, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-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-north" + }, + { + "x": 2, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-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-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "north-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-east" + }, + { + "x": 18, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 22, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 6, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 6, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 10, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 10, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 10, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 10, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 10, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 6, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 14, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 26, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 26, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 30, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 30, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 30, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 22, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 166.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-north" + }, + { + "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": 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" + } + ] + } + ] +} diff --git a/test/oracle/capture.ts b/test/oracle/capture.ts index 8b729ff..9671f8e 100644 --- a/test/oracle/capture.ts +++ b/test/oracle/capture.ts @@ -2802,6 +2802,94 @@ async function captureVulcanusCliffCollapsed(): Promise { console.log(`wrote ${out} (${String(cases.length)} arms)`); } +/** + * **A level-set sweep that INVERTS the generator's own elevation field** (#18). + * + * With the rule collapsed (`cliff_smoothing = 0`, a single contour via + * `cliff_elevation_interval = 1e6`, the cliffiness gate held open by + * `richness = 4`), a cell carries a cliff exactly when its corner elevations + * **straddle** `cliff_elevation_0`. Sweeping that threshold therefore brackets + * every cell: the set of levels at which a cell is "mixed" is + * `(min of its corners, max of its corners]`, to the resolution of the step. + * + * That converts the game's cliffs into a **measurement of the elevation field + * the generator actually reads**, which is the one thing no expression sample + * can give - `calculate_tile_properties` answers for its own channel, and the + * open question is precisely whether the generator's channel agrees. + * + * The quantity to compare is the per-cell corner SPREAD (`max - min`), because + * that is what the collapsed arm's over-placement implicates: we place 463 + * cliffs where the game places 335, so our 70-contour is ~38% longer, i.e. our + * field is rougher at the 4-tile scale. If our spreads come out systematically + * wider than the game's, that is the roughness difference quantified rather + * than inferred, and it bounds how much smoothing the generator applies. + * + * Step 10 over `[20, 200]` is chosen against the field itself: adjacent corners + * (4 tiles apart) differ by tens of units, so a step of 10 resolves a spread + * difference well below the effect being measured, and 19 levels keeps the + * capture near ten minutes. + */ +async function captureVulcanusElevationLevels(): Promise { + const region: Region = { x0: 0, y0: 0, x1: 256, y1: 256 }; + const seed = 123456; + const ONE_BAND = 1000000; + const levels: number[] = []; + for (let e0 = 20; e0 <= 200; e0 += 10) levels.push(e0); + + const cases: { + elevation0: number; + effective: DumpedCliffSettings | undefined; + cliffs: Position[]; + }[] = []; + for (const elevation0 of levels) { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + cliffSettings: { + cliff_smoothing: 0, + cliff_elevation_interval: ONE_BAND, + cliff_elevation_0: elevation0, + richness: 4, + }, + }); + cases.push({ elevation0, effective: dump.cliffSettings, cliffs: dump.cliffs }); + console.log( + ` level ${String(elevation0)} -> ${String(dump.cliffs.length)} cliffs ` + + `(effective e0=${String(dump.cliffSettings?.cliff_elevation_0)})`, + ); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 via test/oracle. The Vulcanus region [0,0]-[256,256] " + + "captured at 19 values of cliff_elevation_0 (20..200 step 10) with the placement rule " + + "COLLAPSED: cliff_smoothing=0 (raw elevation), cliff_elevation_interval=1e6 (a single " + + "contour at cliff_elevation_0, no band arithmetic) and richness=4 (cliffiness_basic " + + "saturates at 1.5 so its >0.5 gate is always open). Under those settings a cell carries a " + + "cliff exactly when its corner elevations STRADDLE cliff_elevation_0, so the set of levels " + + "at which a cell appears brackets (min corner, max corner] - i.e. this fixture INVERTS the " + + "elevation field the generator itself reads, which no expression sample can do because " + + "calculate_tile_properties answers for a different channel. Exists to measure the per-cell " + + "corner spread against ours: the collapsed arm shows we place 463 cliffs where the game " + + "places 335, implying our field is rougher at the 4-tile scale. `effective` is the " + + "cliff_settings the SURFACE reported back. Sampled on a create_surface() surface whose seed " + + "is FORCED to `seed`. Regenerate: node --experimental-strip-types test/oracle/capture.ts " + + "vulcanus-elevation-levels", + seed, + region, + cases, + }; + const out = join(FIXTURES, "oracle-vulcanus-elevation-levels.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} levels)`); +} + /** * Every ACTUAL Vulcanus RESOURCE entity in the same three regions * `captureVulcanusCliffEntities` covers, so the two dumps can be compared @@ -3162,6 +3250,7 @@ if (want("rocks")) await captureRocks(); if (want("vulcanus-cliff-entities")) await captureVulcanusCliffEntities(); if (want("vulcanus-cliff-smoothing")) await captureVulcanusCliffSmoothing(); if (want("vulcanus-cliff-collapsed")) await captureVulcanusCliffCollapsed(); +if (want("vulcanus-elevation-levels")) await captureVulcanusElevationLevels(); if (want("vulcanus-resource-entities")) await captureVulcanusResourceEntities(); if (want("multisample")) await captureMultisample(); if (want("vulcanus-smoke")) await captureVulcanusSmoke(); diff --git a/test/vulcanusElevationLevels.spec.ts b/test/vulcanusElevationLevels.spec.ts new file mode 100644 index 0000000..4e5054a --- /dev/null +++ b/test/vulcanusElevationLevels.spec.ts @@ -0,0 +1,136 @@ +import { describe, expect, it } from "vite-plus/test"; + +import fx from "./fixtures/oracle-vulcanus-elevation-levels.seed123456.json"; +import { makeCliffPlacementFromFields } from "../src/noise/cliffs/cliffPlacement"; +import { + makeCliffinessBasic, + makeVulcanusCliffFields, +} from "../src/noise/cliffs/vulcanusCliffFields"; +import { withCtxDefaults } from "../src/noise/eval/ctx"; + +const key = (x: number, y: number): string => `${String(x)},${String(y)}`; + +const ctx = withCtxDefaults({ seed0: fx.seed, startingPositions: [{ x: 0, y: 0 }] }); +const base = makeVulcanusCliffFields(ctx); +const fields = { + cliffElevation: base.cliffElevation, + // richness 4 in the capture, so cliffiness_basic saturates and its gate is open. + cliffiness: makeCliffinessBasic(fx.seed, 4), +}; + +/** Per level: how many cells the game placed, how many we place, and the overlap. */ +const atLevel = (index: number): { level: number; game: number; ours: number; both: number } => { + const c = fx.cases[index]; + const r = fx.region; + const game = new Set(); + for (const p of c.cliffs.filter((q) => q.name === "cliff-vulcanus")) + game.add(key(Math.round((p.x - 2) / 4), Math.round((p.y - 2.5) / 4))); + const cells = makeCliffPlacementFromFields(fields, { + elevation0: c.elevation0, + interval: c.effective?.cliff_elevation_interval ?? 1000000, + smoothing: 0, + }).placedCells(r.x0, r.y0, r.x1, r.y1); + let both = 0; + const ours = new Set(); + for (const p of cells) { + const k = key(Math.round((p.x - 2) / 4), Math.round((p.y - 2.5) / 4)); + ours.add(k); + if (game.has(k)) both++; + } + return { level: c.elevation0, game: game.size, ours: ours.size, both }; +}; + +/** + * **The elevation LEVEL SET, which localises #18 to a single term of + * `vulcanus_elev`.** + * + * With the rule collapsed (`cliff_smoothing = 0`, one contour via + * `cliff_elevation_interval = 1e6`, the cliffiness gate held open by + * `richness = 4`) a cell carries a cliff exactly when its corner elevations + * straddle `cliff_elevation_0`. Sweeping that threshold therefore measures the + * elevation field **the generator itself reads** - something no expression + * sample can do, because `calculate_tile_properties` answers for a different + * channel and the open question was precisely whether the two agree. + * + * The answer has a sharp edge at **120**: + * + * | `cliff_elevation_0` | game | ours | ours/game | + * | --- | --- | --- | --- | + * | 20 - 110 | 658 -> 142 | 979 -> 200 | **1.20 - 1.49** | + * | 120 - 200 | 122 -> 97 | 126 -> 97 | **1.00 - 1.04** | + * + * Above 120 the port reproduces the game essentially exactly; below it we + * over-place by 20-50%. That edge is not arbitrary. `vulcanus_elev` is + * + * ``` + * vulcanus_elevation_offset + * + lerp(lerp(120 * vulcanus_basalt_lakes_multisample, + * 20 + vulcanus_mountains_func * vulcanus_mountains_elevation_multiplier, + * vulcanus_mountains_biome), + * vulcanus_ashlands_func, + * vulcanus_ashlands_biome) + * ``` + * + * and `vulcanus_basalt_lakes` is a `min(1, ...)`, so the basalt-lakes branch + * **saturates at exactly 120**. Elevations above 120 come from the mountains and + * ashlands branches, which contain no `multisample`; elevations below it are + * governed by `vulcanus_basalt_lakes_multisample`, the only `multisample` in the + * chain and the only term with no counterpart on Nauvis - which the port + * reproduces 334/334. + * + * So the residual is in that one term, and the mechanism to suspect is the one + * its own documentation describes: `multisample` evaluates "in a separate noise + * program with a larger grid" whose "sub-grids are copied to the main program". + * The cliff generator's program walks the 4-tile corner lattice; + * `calculate_tile_properties` - the channel + * `docs/noise/vulcanus-multisample-NOTES.md` measured the primitive through, and + * the channel every elevation fixture was captured through - does not. A `min()` + * of four samples is an erosion operator, so a coarser effective grid in the + * generator would smooth the field exactly the way this over-placement implies. + */ +describe("Vulcanus elevation, inverted through a cliff_elevation_0 sweep", () => { + const rows = fx.cases.map((_, i) => atLevel(i)); + + it("swept 19 levels and every override applied", () => { + expect(rows.map((r) => r.level)).toEqual(fx.cases.map((c) => c.elevation0)); + for (const c of fx.cases) { + expect(c.effective?.cliff_elevation_0).toBe(c.elevation0); + expect(c.effective?.cliff_smoothing).toBe(0); + expect(c.effective?.richness).toBe(4); + } + // Non-vacuity: every level placed a substantial number of cliffs, so no row + // below is comparing empty sets. + for (const r of rows) expect(r.game).toBeGreaterThan(90); + }); + + it("matches the game ABOVE the basalt-lakes saturation point of 120", () => { + const high = rows.filter((r) => r.level >= 120); + expect(high.length).toBe(9); + for (const r of high) { + // Measured 1.00 - 1.04. + expect(r.ours / r.game).toBeLessThanOrEqual(1.1); + // And it is the same cells, not merely the same count. + expect(r.both / r.game).toBeGreaterThan(0.9); + } + }); + + it("over-places BELOW it, where 120 * vulcanus_basalt_lakes_multisample governs", () => { + const low = rows.filter((r) => r.level <= 110); + expect(low.length).toBe(10); + for (const r of low) { + // Measured 1.20 - 1.49. The separation from the >= 120 arm is clean: + // the worst high level is 1.04 and the best low level is 1.20. + expect(r.ours / r.game).toBeGreaterThan(1.15); + } + }); + + it("separates the two regimes with no overlap - the edge is real, not a trend", () => { + const worstHigh = Math.max(...rows.filter((r) => r.level >= 120).map((r) => r.ours / r.game)); + const bestLow = Math.min(...rows.filter((r) => r.level <= 110).map((r) => r.ours / r.game)); + // Measured 1.04 vs 1.20. Asserting the gap rather than the two bounds + // separately is what makes this a statement about a THRESHOLD: a smooth + // drift in accuracy with elevation would not produce a gap. + expect(bestLow).toBeGreaterThan(worstHigh); + expect(bestLow - worstHigh).toBeGreaterThan(0.1); + }); +});