Widget:Interactive map data builder/input.js

From Guild Wars 2 Wiki
Jump to navigationJump to search
/* <nowiki> */
console.log('[[Widget:Interactive map data builder/input.js]] loaded successfully.');

// Most of the maps in the API are garbage story instances that we don't care about
var wiki_map_whitelist = {
    1: [ 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 39, 50, 51, 53, 54, 62, 65, 73, 91, 139, 218, 326, 698, 807, 873, 912, 915, 922, 929, 943, 988, 1015, 1041, 1043, 1045, 1052, 1062, 1068, 1069, 1149, 1155, 1156, 1165, 1175, 1178, 1185, 1188, 1195, 1203, 1210, 1211, 1214, 1226, 1228, 1248, 1263, 1268, 1271, 1288, 1301, 1310, 1317, 1323, 1330, 1343, 1370, 1371, 1419, 1422, 1428, 1438, 1442, 1452, 1465, 1482, 1483, 1490, 1509, 1510, 1517, 1526, 36, 64, 67, 69, 71, 76, 82, 111, 112, 776, 1016],
    2: [ 38, 95, 96, 350, 549, 554, 795, 866, 875, 894, 899, 900, 968, 984, 1011, 1099, 1163, 1171, 1200, 1305, 1315, 1328 ]
};

// Some maps we do not want to appear on floor 1, and require completely over-writing. Others we do want to appear on floor 1, and their other floors can go away.
var wiki_map_floor_coercion = {
    1: {
        "776": { "default_floor": -8, "floors": [-8] }, // Temple of the Forgotten God
        "1016": { "default_floor": -14, "floors": [-13,-14] }, // Hidden Arcana (zone)
        "1068": { "default_floor": 1, "floors": [0,1,2,3] }, // Gilded Hollow
        "1069": { "default_floor": 1, "floors": [0,1,2,3] }, // Lost Precipice
        "1155": { "default_floor": 1, "floors": [0,1,2,3] }, // Lion's Arch Aerodrome
        "1214": { "default_floor": 1, "floors": [0,1,2,3] }, // Windswept Haven
        "1419": { "default_floor": 1, "floors": [0,1,2,3] }, // Isle of Reflection
        "1465": { "default_floor": 1, "floors": [0,1,2,3] }, // Thousand Seas Pavilion
        "1482": { "default_floor": 18, "floors": [18] }, // The Battle for Lion's Arch
        "1483": { "default_floor": 43, "floors": [43] } // Memory of Old Lion's Arch
    },
    2: {
        "38": { "default_floor": 1, "floors": [1] }, // Eternal Battlegrounds
        "95": { "default_floor": 1, "floors": [1] }, // Alpine Borderlands
        "96": { "default_floor": 1, "floors": [1] }, // Alpine Borderlands
        "549": { "default_floor": 1, "floors": [1] }, // Battle of Kyhlo
        "554": { "default_floor": 1, "floors": [1] }, // Forest of Niflhel
        "795": { "default_floor": 1, "floors": [1] }, // Legacy of the Foefire
        "875": { "default_floor": 1, "floors": [1] }, // Temple of the Silent Storm
        "894": { "default_floor": 1, "floors": [1] }, // Spirit Watch
        "899": { "default_floor": 1, "floors": [1] }, // Obsidian Sanctum
        "900": { "default_floor": 1, "floors": [1] }, // Skyhammer
        "968": { "default_floor": 1, "floors": [1] }, // Edge of the Mists
        "984": { "default_floor": 1, "floors": [1] }, // Courtyard
        "1011": { "default_floor": 1, "floors": [1] }, // Battle of Champion's Dusk
        "1099": { "default_floor": 1, "floors": [1] }, // Desert Borderlands
        "1163": { "default_floor": 1, "floors": [1] }, // Revenge of the Capricorn
        "1171": { "default_floor": 1, "floors": [1] }, // Eternal Coliseum
        "1200": { "default_floor": 1, "floors": [1] }, // Hall of the Mists
        "1305": { "default_floor": 1, "floors": [1] }, // Djinn's Dominion
        "1315": { "default_floor": 1, "floors": [1] }, // Armistice Bastion
        "1328": { "default_floor": 1, "floors": [1] } // Auric Span
    }
};

// ... and some maps just have additional bogus floors added with HOT, POF and LWS5.
var wiki_map_floor_blacklist = {
    1: [47, 48, 49, 55, 56, 57, 58, 64, 65, 66, 67, 69, 80],
    2: []
};

// there's a few maps that aren't on floor 1, and we need to ignore them when defining maps to accept for determining valid wiki tiles
var wiki_tile_blacklist = {
    1: [36, 64, 67, 69, 71, 76, 82, 111, 112, // dungeons
        336, 929, 1264, 1303], // Chantry of Secrets / The Crown Pavilion (zone) / Hall of Chains / Mythwright Gambit - not listed in whitelist above as contains no useful markers
    2: [872, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 1164, 1177, 1205, 1206, 1267, 1290, 1309, 1362, 1384] // fractals - not whitelist above as contains no useful markers
};

var wiki_maps = {
    1: {
        "111": { "link": "Victory or Death (zone)" },
        "776": { "link": "Temple of the Forgotten God (zone)" },
        "943": { "link": "Tower of Nightmares (zone)" },
        "988": { "name": "Dry Top", "continent_rect": [[36608,32128], [38656,33536]] },
        "1016": { "link": "Hidden Arcana (zone)" },
        "1062": { "name": "Spirit Vale", "continent_rect": [[36392,28544], [37112,30592]] },
        "1149": { "name": "Salvation Pass", "continent_rect": [[35582,28544], [36392,30338]] },
        "1155": { "name": "Lion's Arch Aerodrome", "continent_rect": [[49054,31868], [49641,32374]] },
        "1156": { "name": "Stronghold of the Faithful", "continent_rect": [[34729,28544], [35582,30338]] },
        "1175": { "name": "Ember Bay", "continent_rect": [[37374,44676], [41214,47358]] },
        "1195": { "name": "Draconis Mons", "continent_rect": [[34716,40034], [38560,43134]] },
        "1428": { "name": "Arborstone", "continent_rect": [[29185,100890], [30141, 101657]] },
        "1482": { "name": "The Battle For Lion's Arch", "continent_rect": [[48000, 30720], [50432, 32256]] },
        "1483": { "name": "Memory of Old Lion's Arch", "continent_rect": [[48000, 30720], [50432, 32256]] }
    },
    2: {
        "95": { "name": "Green Alpine Borderlands" },
        "96": { "name": "Blue Alpine Borderlands" },
        "899": { "link": "Obsidian Sanctum (zone)", "continent_rect": [[11083, 13077], [12194, 14131]] },
        "947": { "name": "Uncategorized Fractal" },
        "948": { "name": "Snowblind Fractal" },
        "949": { "name": "Swampland Fractal" },
        "950": { "name": "Urban Battleground Fractal" },
        "951": { "name": "Aquatic Ruins Fractal" },
        "952": { "name": "Cliffside Fractal" },
        "953": { "name": "Underground Facility Fractal" },
        "954": { "name": "Volcanic Fractal" },
        "955": { "name": "Molten Furnace Fractal" },
        "956": { "name": "Aetherblade Fractal" },
        "957": { "name": "Thaumanova Reactor Fractal" },
        "958": { "name": "Solid Ocean Fractal" },
        "959": { "name": "Molten Boss Fractal" },
        "960": { "name": "Captain Mai Trin Boss Fractal" },
        "1099": { "name": "Red Desert Borderlands" },
        "1164": { "name": "Chaos Fractal" },
        "1177": { "name": "Nightmare Fractal" },
        "1205": { "name": "Shattered Observatory Fractal" },
        "1267": { "name": "Twilight Oasis Fractal" },
        "1290": { "name": "Deepstone Fractal" },
        "1309": { "name": "Siren's Reef Fractal" },
        "1384": { "name": "Sunqua Peak Fractal" }
    }
};

var wiki_sectors = {
    1: {
        "17": {
           "350": { "name": "Guardian Lake", "coord": [47947, 28244] }
        },
        "18": {
           "722": { "name": "District Promenade", "coord": [44015, 27403] }
        },
        "19": {
           "272": { "name": "Victor's Presidium", "bounds": [[58377.7, 31462.3], [58107, 31444.8], [58067.5, 31084.7], [58154.6, 31026.6], [58424.9, 31119], [58528.8, 30853.1], [58778.9, 31012.2], [58980.7, 30847.4], [58980.7, 31205.4], [59145.5, 31508.3], [59152.1, 31641.5], [59030.3, 31713.5], [58675.4, 31650.2], [58573.1, 31815.7], [58477, 31779.6], [58501.8, 31530], [58377.7, 31462.3]] }
        },
        "21": {
           "385": { "name": "Tanglerot Hills", "coord": [64250, 32932] }
        },
        "24": {
           "257": { "name": "Lake Gendarran", "coord": [48372, 29701] },
           "948": { "name": "Vigil Keep", "coord": [49256, 28810] }
        },
        "25": {
           "450": { "name": "Lake Carnifex", "coord": [60403, 27220] }
        },
        "27": {
           "947": { "link": "Durmand Priory (location)" }
        },
        "31": {
           "237": { "link": "Griffonfall (Snowden Drifts)" }
        },
        "32": {
           "29": { "name": "Blackblade Lake", "coord": [58727, 28167] }
        },
        "34": {
           "95": { "name": "Ventry Bay", "coord": [43119.62, 34719.32] },
           "110": { "link": "Dominion of Winds (area)" }
        },
        "39": {
            "631": { "name": "Treacherous Depths" },
            "651": { "name": "Infinite Coil Reactor" }
        },
        "62": {
            "704": { "name": "Fields of Gold", "coord": [43955, 42319] }
        },
        "65": {
            "593": { "name": "Crusted Shoals" }
        },
        "73": {
            "296": { "name": "Mournful Depths", "coord": [49149, 35237] }
        },
        "81": {
            "392": { "name": "Independent Research Sector" },
            "393": { "name": "Subject Preparation Vaults" },
            "395": { "name": "Psychoarcanic Monitoring Complex" },
            "407": { "name": "The Aquarium" }
        },
        "91": {
            "910": { "name": "Omphalos Chamber" }
        },
        "139": {
            "922": { "name": "Idea Incubation Lab" },
            "929": { "name": "Interdisciplinary Accessium", "coord": [38680, 37070] },
            "933": { "name": "The Golem Mines", "coord": [38734, 37032] },
            "935": { "name": "Creator's Commons", "coord": [38799, 37134] }
        },
        "218": {
            "817": { "name": "Perimeter Loop", "coord": [57155, 30807] }
        },
        "326": {
            "853": { "link": "Hunter's Hearth", "coord": [53375, 31198] }
        },
        "1016": {
            "1207": { "link": "Glint's Lair (Hidden Arcana)" }
        },
        "1203": {
            "1481": { "name": "Choking Depths", "coord": [49328, 41741] },
            "1477": { "name": "Dwayna's Reliquary", "coord": [47235, 42218] }
        },
        "1041": {
            "1297": { "link": "Bitter Harvest (area)", "coord": [36301, 38458] }
        },
        "1043": {
            "1248": { "link": "Griffonfall (Auric Basin)" }
        },
        "1068": {
            "1299": { "name": "Gilded Hollow" }
        },
        "1069": {
            "1289": { "name": "Lost Precipice" }
        },
        "1155": {
            "1361": { "name": "Lion's Arch Aerodrome" }
        },
        "1175": {
            "1408": { "name": "Sulfurous Deep", "coord": [39016, 46795] }
        },
        "1185": {
            "1432": { "name": "Eastern Divinity Reservoir", "coord": [45137, 27868] }
        },
        "1214": {
            "1518": { "name": "Windswept Haven" }
        },
        "1228": {
            "1544": { "name": "Skyward Reach", "coord": [59986, 45049] },
            "1591": { "name": "Skimshallow Cove", "coord": [58724, 46983], "bounds": [[58294,46688], [58715,46693], [58847,46618], [58864,46711], [59223,46900], [59333,47038], [59302,47156], [58988,47485], [58424,47255], [58429,47188], [58407,47078], [58294,47040], [58294,46688]] }
        },
        "1263": {
            "1605": { "name": "Corsair Flotilla", "coord": [56801, 60549] },
            "1609": { "name": "Mordant Crescent Great Hall" },
            "1618": { "name": "Issnur Bay", "coord": [56934, 62786] },
            "1619": { "name": "Sea of Istan", "coord": [58681, 61606] },
            "1623": { "name": "Plains of Jarin", "coord": [56534, 61215] }
        },
        "1301": {
            "1664": { "name": "???", "link": "Unknown (Jahai Bluffs)" }
        },
        "1303": {
            "1680": { "name": "Mystic Forge Acquisition Piles" }
        },
        "1330": {
            "1764": { "name": "Lower Blood Keep", "coord": [60468, 19181] },
            "1748": { "name": "Kralkatorrik's Emergence Zone", "coord": [62270, 19675] }
        },
        "1343": {
            "1781": { "name": "Frozen Pass", "coord": [58645, 18225] },
            "1787": { "name": "Jora's Keep", "coord": [59031, 18365] }
        },
        "1419": {
            "1854": { "name": "Isle of Reflection" }
        },
        "1442": {
            "1877": { "link": "Training Grounds (Seitung Province)" }
        },
        "1452": {
            "1918": { "name": "Zu Heltzer Historical Site", "coord": [29751, 101864] }
        },
        "1482": {
            "1935": { "name": "Inner Harbor", "link": "Inner Harbor (The Battle For Lion's Arch)", "coord": [49686, 31437], "bounds": [[49315.4, 31516.2], [49368, 31360], [49545.3, 31251.1], [49590.2, 31289.6], [49719.3, 31205.8], [49659.8, 31135.9], [49665.3, 31041.3], [49714.3, 31016.3], [49831.4, 31047.4], [49880.1, 31099.1], [49843.1, 31163.8], [49856.6, 31242.5], [49928.2, 31332], [49978.7, 31346.7], [50018.7, 31508.4], [49812.1, 31754.6], [49723.9, 31788.4], [49361.6, 31626], [49315.4, 31516.2]], "floors": [18] },
            "1936": { "name": "White Crane Terrace", "link": "White Crane Terrace (The Battle For Lion's Arch)", "coord": [48207.4, 31475.7], "bounds": [[48023.3, 31737], [48115.2, 31632.2], [48040.6, 31452.7], [48041.8, 31275.8], [48110.8, 31116.2], [48236.2, 31125.4], [48366.4, 31133.4], [48446.3, 31240.2], [48432.5, 31410.5], [48282.1, 31503.7], [48309, 32033.1], [48084.6, 32048.4], [48023.3, 31737]], "floors": [18] },
            "1939": { "name": "Commodore's Quarter", "link": "Commodore's Quarter (The Battle For Lion's Arch)", "coord": [48929.7, 30951.2], "bounds": [[48601.3, 30797.9], [48665.8, 30769.2], [48819.2, 30759.4], [49041.6, 30739.6], [49163.4, 30720], [49238.1, 30720], [49233.8, 30831.3], [49165.1, 30902.5], [49200.5, 30985.8], [49178.9, 31160.1], [48960, 31193.8], [48847.3, 31228.3], [48779.3, 31155.7], [48742.6, 31102.5], [48740.8, 31027.2], [48730.3, 30907.3], [48601.3, 30797.9]], "floors": [18] },
            "1942": { "name": "Eastern Ward", "link": "Eastern Ward (The Battle For Lion's Arch)", "coord": [49453.6, 31003.1], "bounds": [[49165.1, 30902.5], [49233.8, 30831.3], [49238.1, 30720], [49293.4, 30720], [49305.2, 30722.6], [49416.5, 30768.5], [49570.8, 30771.2], [49634.5, 30752.6], [49664, 30935.1], [49714.3, 31016.3], [49665.3, 31041.3], [49659.8, 31135.9], [49719.3, 31205.8], [49590.2, 31289.6], [49545.3, 31251.1], [49368, 31360], [49295.4, 31217.7], [49178.9, 31160.1], [49200.5, 30985.8], [49165.1, 30902.5]], "floors": [18] },
            "1943": { "name": "Bloodcoast Ward", "link": "Bloodcoast Ward (The Battle For Lion's Arch)", "coord": [49633.4, 31950.8], "bounds": [[49416.8, 32165.5], [49454.6, 32083.8], [49538, 31996.1], [49525.7, 31881.9], [49469.2, 31854.2], [49469.4, 31791.7], [49499.2, 31685.5], [49723.9, 31788.4], [49812.1, 31754.6], [50003.2, 31997.8], [49929.2, 32198.6], [49759.8, 32211.8], [49416.8, 32165.5]], "floors": [18] },
            "1945": { "name": "Sharkmaw Caverns", "link": "Sharkmaw Caverns (The Battle For Lion's Arch)", "coord": [50175.2, 32044.2], "bounds": [[49929.2, 32198.6], [50003.2, 31997.8], [50105, 31996.4], [50240.6, 31952], [50291.8, 31826], [50381.7, 32059.8], [50342.4, 32124.1], [50107.9, 32198.6], [49929.2, 32198.6]], "floors": [18] },
            "1947": { "name": "Lion's Gate", "coord": [49029.7, 31990.9], "bounds": [[48670.5, 31968], [48912.5, 31964.9], [48994.9, 31835.5], [49233.4, 31756.8], [49195.9, 31851.9], [49328.9, 32153], [49227.1, 32196.4], [48674.2, 32200.8], [48670.5, 31968]], "floors": [18] },
            "1951": { "name": "Farshore Ward", "link": "Farshore Ward (The Battle For Lion's Arch)", "coord": [50149.7, 31732.3], "bounds": [[49812.1, 31754.6], [50018.7, 31508.4], [50174.2, 31391.4], [50328.3, 31396.8], [50373.3, 31767.4], [50291.8, 31826], [50240.6, 31952], [50105, 31996.4], [50003.2, 31997.8], [49812.1, 31754.6]], "floors": [18] },
            "1952": { "name": "Fort Marriner", "link": "Fort Marriner (The Battle For Lion's Arch)", "coord": [49398.8, 31875.1], "bounds": [[49195.9, 31851.9], [49233.4, 31756.8], [49293.5, 31655.3], [49361.6, 31626], [49499.2, 31685.5], [49469.4, 31791.7], [49469.2, 31854.2], [49525.7, 31881.9], [49538, 31996.1], [49454.6, 32083.8], [49416.8, 32165.5], [49328.9, 32153], [49195.9, 31851.9]], "floors": [18] },
            "1954": { "name": "The Breachmaker", "coord": [48706.3, 31835.4], "bounds": [[48084.6, 32048.4], [48309, 32033.1], [48282.1, 31503.7], [48432.5, 31410.5], [48570.1, 31578.3], [48777.8, 31535.2], [49014.1, 31603.9], [49315.4, 31516.2], [49361.6, 31626], [49293.5, 31655.3], [49233.4, 31756.8], [48994.9, 31835.5], [48912.5, 31964.9], [48670.5, 31968], [48674.2, 32200.8], [48581.9, 32173.9], [48444.5, 32163.3], [48298.6, 32160.9], [48167.9, 32137.3], [48084.6, 32048.4]], "floors": [18] },
            "1955": { "name": "Western Ward", "link": "Western Ward (The Battle For Lion's Arch)", "coord": [48477.7, 31100.4], "bounds": [[48050.8, 30917.2], [48139.2, 30792.5], [48328.9, 30770.5], [48483.3, 30795.8], [48601.3, 30797.9], [48730.3, 30907.3], [48742.6, 31102.5], [48779.3, 31155.7], [48847.3, 31228.3], [48777.8, 31535.2], [48570.1, 31578.3], [48432.5, 31410.5], [48446.3, 31240.2], [48366.4, 31133.4], [48236.2, 31125.4], [48110.8, 31116.2], [48050.8, 30917.2]], "floors": [18] },
            "1956": { "name": "Grand Piazza", "link": "Grand Piazza (The Battle For Lion's Arch)", "coord": [49094.6, 31351.9], "bounds": [[48777.8, 31535.2], [48847.3, 31228.3], [48960, 31193.8], [49178.9, 31160.1], [49295.4, 31217.7], [49368, 31360], [49315.4, 31516.2], [49014.1, 31603.9], [48777.8, 31535.2]], "floors": [18] },
            "1957": { "name": "Priory Foothold", "coord": [50034.3, 31286.3], "bounds": [[49843.1, 31163.8], [49880.1, 31099.1], [50300.8, 31095.6], [50328.3, 31396.8], [50174.2, 31391.4], [50018.7, 31508.4], [49978.7, 31346.7], [49928.2, 31332], [49856.6, 31242.5], [49843.1, 31163.8]], "floors": [18] },
            "1960": { "name": "Postern Ward", "link": "Postern Ward (The Battle For Lion's Arch)", "coord": [49932.7, 30941.6], "bounds": [[49634.5, 30752.6], [49863, 30750], [50261.2, 30788.4], [50244.9, 30989.5], [50300.8, 31095.6], [49880.1, 31099.1], [49831.4, 31047.4], [49714.3, 31016.3], [49664, 30935.1], [49634.5, 30752.6]], "floors": [18] }
        },
        "1483": {
            "854": { "name": "Commodore's Quarter", "link": "Commodore's Quarter (Memory of Old Lion's Arch)", "coord": [48567.8, 30932.0], "bounds": [[48369.0, 30936.6], [48413.1, 30875.7], [48406.0, 30777.8], [48802.0, 30757.5], [48740.4, 31025.5], [48745.0, 31108.7], [48499.5, 31042.0], [48369.0, 30936.6]], "floors": [43] },
            "859": { "name": "Hooligan's Route", "link": "Hooligan's Route (Memory of Old Lion's Arch)", "coord": [48196.0, 30937.7], "bounds": [[48030.1, 30930.2], [48038.0, 30773.3], [48406.0, 30777.8], [48413.1, 30875.7], [48225.9, 31135.8], [48063.0, 31133.5], [48030.1, 30930.2]], "floors": [43] },
            "860": { "name": "Inner Harbor", "link": "Inner Harbor (Memory of Old Lion's Arch)", "coord": [49711.8, 31318.1], "bounds": [[49314.8, 31517.3], [49368.8, 31359.2], [49545.3, 31251.1], [49590.2, 31289.6], [49719.3, 31205.8], [49659.8, 31135.9], [49665.3, 31041.3], [49714.3, 31016.3], [49831.4, 31047.4], [49880.2, 31099.1], [49843.1, 31163.8], [49856.6, 31242.5], [49928.2, 31332.0], [49978.7, 31346.7], [50018.7, 31508.4], [49812.1, 31754.6], [49723.9, 31788.4], [49361.8, 31625.4], [49314.8, 31517.3]], "floors": [43] },
            "861": { "name": "Postern Ward", "link": "Postern Ward (Memory of Old Lion's Arch)", "coord": [49964.8, 31155.7], "bounds": [[49634.5, 30752.6], [50286.6, 30802.7], [50356.3, 31146.6], [50341.0, 31395.1], [50174.2, 31391.4], [50018.7, 31508.4], [49978.7, 31346.7], [49928.2, 31332.0], [49856.6, 31242.5], [49843.1, 31163.8], [49880.2, 31099.1], [49831.4, 31047.4], [49714.3, 31016.3], [49664.0, 30935.1], [49634.5, 30752.6]], "floors": [43] },
            "862": { "name": "Bloodcoast Ward", "link": "Bloodcoast Ward (Memory of Old Lion's Arch)", "coord": [49625.1, 31934.1], "bounds": [[49441.2, 32208.7], [49454.6, 32083.8], [49538.0, 31996.1], [49525.7, 31881.9], [49469.2, 31854.2], [49469.4, 31791.7], [49499.2, 31685.5], [49723.9, 31788.4], [49812.1, 31754.6], [50002.2, 31997.3], [49940.8, 32233.4], [49441.2, 32208.7]], "floors": [43] },
            "863": { "name": "Fort Marriner", "link": "Fort Marriner (Memory of Old Lion's Arch)", "coord": [49321.8, 31883.6], "bounds": [[48948.3, 32195.4], [48953.2, 31918.9], [48995.1, 31834.6], [49233.5, 31756.6], [49293.8, 31654.4], [49361.8, 31625.4], [49499.2, 31685.5], [49469.4, 31791.7], [49469.2, 31854.2], [49525.7, 31881.9], [49538.0, 31996.1], [49454.6, 32083.8], [49441.2, 32208.7], [48948.3, 32195.4]], "floors": [43] },
            "864": { "name": "Trader's Forum", "link": "Trader's Forum (Memory of Old Lion's Arch)", "coord": [49005.2, 31022.4], "bounds": [[48740.4, 31025.5], [48802.0, 30757.5], [48969.8, 30720.0], [49091.8, 30720.0], [49237.0, 30752.8], [49190.0, 30819.6], [49192.0, 30897.6], [49225.2, 30977.2], [49200.9, 31101.4], [49125.7, 31056.5], [49046.3, 31071.1], [48958.5, 31109.8], [48944.7, 31177.6], [48931.2, 31239.0], [48879.9, 31313.0], [48835.4, 31255.4], [48742.5, 31097.5], [48740.4, 31025.5]], "floors": [43] },
            "865": { "name": "Eastern Ward", "link": "Eastern Ward (Memory of Old Lion's Arch)", "coord": [49460.1, 31050.2], "bounds": [[49190.0, 30819.6], [49237.0, 30752.8], [49634.5, 30752.6], [49664.0, 30935.1], [49714.3, 31016.3], [49665.3, 31041.3], [49659.8, 31135.9], [49719.3, 31205.8], [49590.2, 31289.6], [49545.3, 31251.1], [49368.8, 31359.2], [49295.4, 31217.7], [49200.9, 31101.4], [49225.2, 30977.2], [49192.0, 30897.6], [49190.0, 30819.6]], "floors": [43] },
            "866": { "name": "Western Ward", "link": "Western Ward (Memory of Old Lion's Arch)", "coord": [48576, 31217], "bounds": [[48278.1, 31065.0], [48369.0, 30936.6], [48502.4, 31033.9], [48742.5, 31097.5], [48835.4, 31255.4], [48879.9, 31313.0], [48904.8, 31486.8], [48593.5, 31461.0], [48415.4, 31365.9], [48446.3, 31240.2], [48368.9, 31131.6], [48278.1, 31065.0]], "floors": [43] },
            "867": { "name": "White Crane Terrace", "link": "White Crane Terrace (Memory of Old Lion's Arch)", "coord": [48199.1, 31441.7], "bounds": [[48023.3, 31737.0], [48115.2, 31632.2], [48040.6, 31452.7], [48041.8, 31275.8], [48063.0, 31133.5], [48225.9, 31135.8], [48278.1, 31065.0], [48368.9, 31131.6], [48446.3, 31240.2], [48415.4, 31365.9], [48236.6, 31495.2], [48248.5, 32029.5], [48084.9, 32047.5], [48023.3, 31737.0]], "floors": [43] },
            "868": { "name": "Grand Piazza", "link": "Grand Piazza (Memory of Old Lion's Arch)", "coord": [49083.8, 31267.8], "bounds": [[48879.9, 31313.0], [48931.2, 31239.0], [48944.7, 31177.6], [48958.5, 31109.8], [49046.3, 31071.1], [49125.7, 31056.5], [49200.9, 31101.4], [49295.4, 31217.7], [49368.8, 31359.2], [49314.8, 31517.3], [49034.8, 31564.8], [48904.8, 31486.8], [48879.9, 31313.0]], "floors": [43] },
            "869": { "name": "Sanctum Harbor", "link": "Sanctum Harbor (Memory of Old Lion's Arch)", "coord": [48786.3, 31773.8], "bounds": [[48084.9, 32047.5], [48248.5, 32029.5], [48236.6, 31495.2], [48415.4, 31365.9], [48593.5, 31461.0], [48904.8, 31486.8], [49034.8, 31564.8], [49314.8, 31517.3], [49361.8, 31625.4], [49293.8, 31654.4], [49233.5, 31756.6], [48995.1, 31834.6], [48953.2, 31918.9], [48948.3, 32195.4], [48621.3, 32228.9], [48340.5, 32198.6], [48084.9, 32047.5]], "floors": [43] },
            "870": { "name": "Farshore Ward", "link": "Farshore Ward (Memory of Old Lion's Arch)", "coord": [50166.4, 31735.5], "bounds": [[49812.1, 31754.6], [50018.7, 31508.4], [50174.2, 31391.4], [50341.0, 31395.1], [50404.0, 31780.8], [50402.7, 31844.5], [50238.1, 31951.6], [50104.7, 31996.0], [50002.2, 31997.3], [49812.1, 31754.6]], "floors": [43] },
            "1029": { "name": "Sharkmaw Caverns", "link": "Sharkmaw Caverns (Memory of Old Lion's Arch)", "coord": [50216.0, 32045.6], "bounds": [[49940.8, 32233.4], [50002.2, 31997.3], [50104.7, 31996.0], [50238.1, 31951.6], [50402.7, 31844.5], [50409.5, 32063.1], [50414.0, 32233.6], [49940.8, 32233.4]], "floors": [43] }
        },
        "1509": {
            "1983": { "name": "Open Sky", "coord": [24100, 21952] },
            "1976": { "name": "Outer Ring", "coord": [24100, 22210] },
            "1986": { "name": "Outer Sanctorium", "coord": [24100, 22480] }
        },
        "1517": {
            "1979": { "name": "Bastion of the Celestial", "coord": [24084.8, 20695.8] }
        },
        "1526": {
            "2010": { "name": "Heitor's Dominion", "coord": [22499.9, 23021.7] }
        }
    },
    2: {
        "38": {
            "834": { "name": "Blue World Valley" },
            "836": { "name": "Blue World Hill" },
            "843": { "name": "Red World Overlook" },
            "845": { "name": "Red World Hill" },
            "848": { "name": "Green World Lowlands" },
            "850": { "name": "Green World Hill" }
        },
        "95": {
            "992": { "name": "Green Alpine Garrison" },
            "993": { "name": "Green World Citadel" },
            "997": { "name": "Red World Border", "link": "Red World Border (Green Borderlands)" },
            "1000": { "name": "Blue World Border", "link": "Blue World Border (Green Borderlands)" }
        },
        "96": {
            "974": { "name": "Green World Border", "link": "Green World Border (Blue Borderlands)" },
            "976": { "name": "Blue Alpine Garrison" },
            "977": { "name": "Red World Border", "link": "Red World Border (Blue Borderlands)" },
            "980": { "name": "Blue World Citadel" }
        },
        "894": {
            "1102": { "name": "Spirit Watch" }
        },
        "900": {
            "1110": { "name": "Skyhammer" }
        },
        "955": {
            "1151": { "name": "Molten Furnace Fractal" }
        },
        "956": {
            "1148": { "name": "Aetherblade Fractal" }
        },
        "957": {
            "1150": { "name": "Thaumanova Reactor Fractal" }
        },
        "959": {
            "1149": { "name": "Molten Boss Fractal" }
        },
        "968": {
            "1152": { "link": "Workshop (area)" },
            "1153": { "link": "Airport (area)" },
            "1154": { "link": "Forge (area)" },
            "1156": { "link": "Wurm Tunnel (area)" },
            "1158": { "link": "Observatory (area)" },
            "1159": { "link": "Statuary (area)" },
            "1160": { "link": "Altar (area)" },
            "1164": { "link": "Shrine (area)" },
            "1173": { "link": "Bell Tower (area)" }
        },
        "1099": {
            "1311": { "name": "Blue World Border", "link": "Blue World Border (Red Desert Borderlands)" },
            "1343": { "name": "Red World Citadel", "link": "Red World Citadel (Red Desert Borderlands)" },
            "1350": { "name": "Green World Border", "link": "Green World Border (Red Desert Borderlands)" }
        },
        "1177": {
            "1412": { "name": "Nightmare Fractal" }
        },
        "1205": {
            "1478": { "name": "Shattered Observatory Fractal" }
        },
        "1267": {
            "1607": { "name": "Twilight Oasis Fractal" }
        }
    }
};

var wiki_pointsofinterest = {
    1: {
        "19": {
            "339": { "link": "Foefire's Heart (point of interest)" }
        },
        "20": {
            "503": { "link": "Craze's Folly (point of interest)" }
        },
        "23": {
            "1838": { "link": "Tower of Nightmares (point of interest)" }
        },
        "27": {
            "1599": { "link": "Glorious Dredge Excavation 74" }
        },
        "27": {
            "1616": { "link": "Wonderous Drill Installation 73" }
        },
        "28": {
            "984": { "link": "The Frozen Maw (location)" }
        },
        "50": {
            "1055": { "link": "Crow's Nest Tavern (Captain's Council)" }
        },
        "62": {
            "779": { "link": "Buried Archives (point of interest)" },
            "789": { "link": "Gates of Arah (point of interest)" }
        },
        "65": {
            "1273": { "link": "Harbinger (point of interest)" }
        },
        "73": {
            "36": { "link": "Glorious Drill Collective 4" }
        },
        "1015": {
            "1959": { "link": "Camp Resolve (point of interest)" },
            "1975": { "link": "Vinewrath Tangle (point of interest)" }
        },
        "1033": {
            "2001": { "link": "Vine Wall (point of interest)" }
        },
        "1041": {
            "2097": { "link": "Pact Base Camp (point of interest)" },
            "2176": { "link": "Northern Blighting Tower (point of interest)" },
            "2181": { "link": "Central Blighting Tower (point of interest)" },
            "2200": { "link": "Southern Blighting Tower (point of interest)" }
        },
        "1185": {
            "2468": { "link": "Fort Evennia (point of interest)" }
        },
        "1195": {
            "2490": { "link": "Zeta Vault (point of interest)" },
            "2492": { "link": "Asura Gate (Rata Arcanum)" },
            "2511": { "link": "Searing Ascent (point of interest)" }
        },
        "1211": {
            "2680": { "link": "Glint's Lair (point of interest)" }
        },
        "1263": {
            "2840": { "link": "Hall of Judgment (Domain of Istan)" }
        },
        "1264": {
            "2836": { "link": "Hall of Judgment (Hall of Chains)" }
        },
        "1301": {
            "2964": { "link": "Crystal Cavern (Jahai Bluffs)" }
        },
        "1310": {
            "2999": { "link": "Dragon's Claw (point of interest)" }
        },
        "1317": {
            "3050": { "link": "Ember Gate (point of interest)" }
        },
        "1330": {
            "3084": { "link": "War Room (point of interest)" }
        },
        "1371": {
            "3154": { "link": "Leadfoot Village (point of interest)" },
            "3158": { "link": "Port Cascadia (point of interest)" },
            "3166": { "link": "Vloxen Mine (point of interest)" },
            "3171": { "link": "Dwayna's Light (point of interest)" }
        },
        "1422": {
            "3299": { "link": "Temple of the Fallen (point of interest)" }
        },
        "1438": {
            "3305": { "link": "Jade Monument (point of interest)" }
        },
        "1483": {
            "1053": { "name": "Mist Portals", "coord": [49399.2, 31822.6], ignore: "true" },
            "1054": { "name": "Moran Memorial", "coord": [48637.4, 31491.4], ignore: "true" },
            "1055": { "name": "Crow's Nest Tavern (Captain's Council)", "coord": [48677.4, 31164.9], ignore: "true" },
            "1056": { "name": "Coriolis Plaza", "coord": [49399.7, 31138.0], ignore: "true" },
            "1057": { "name": "Mystic Plaza", "coord": [48987.0, 30985.1], ignore: "true" },
            "1058": { "name": "Deverol Gardens", "coord": [49842.1, 31495.3], ignore: "true" },
            "1059": { "name": "Phoenix Roost", "coord": [48714.5, 32075.5], ignore: "true" },
            "1060": { "name": "Tokk's Mill", "coord": [49973.7, 31841.8], ignore: "true" },
            "1061": { "name": "Captain Theo Ashford Memorial Bridge", "coord": [49376.1, 31547.6], ignore: "true" },
            "1062": { "name": "The Vaults", "coord": [49300.4, 30959.5], ignore: "true" },
            "1063": { "name": "Durmand Priory Research Site", "coord": [48287.8, 31546.1], ignore: "true" },
            "1064": { "name": "The Undermarket", "coord": [48150.5, 30809.5], ignore: "true" },
            "1065": { "name": "Lion's Court", "coord": [49099.3, 31206.1], ignore: "true" },
            "1066": { "name": "Shuttered Gate", "coord": [48198.2, 31681.1], ignore: "true" },
            "1067": { "name": "Vigil Centerhouse", "coord": [49514, 31961], ignore: "true" },
            "1068": { "name": "Frog Pond", "coord": [48881.4, 31042.6], ignore: "true" },
            "1189": { "name": "Field of the Fallen", "coord": [48220.7, 31266.3], ignore: "true" },
            "1190": { "name": "Moorookoo Village", "coord": [49156.2, 31654.4], ignore: "true" },
            "1284": { "name": "The Free Market", "coord": [48534.6, 31120.3], ignore: "true" },
            "1459": { "name": "Black Lion Trading Company HQ", "coord": [48872.8, 31176.6], ignore: "true" },
            "1758": { "name": "Macha's Landing", "coord": [48768.9, 31514.6], ignore: "true" },
            "1759": { "name": "Order of Whispers Headquarters", "coord": [48601.6, 31012.6], ignore: "true" }
        },
        "1490": {
            "3500": { "link": "Crystal Cavern (Gyala Delve)" }
        },
        "1509": {
            "3553": { "link": "Wizard's Vault (point of interest)" },
            "3668": { "link": "War Room (The Wizard's Tower)" }
        },
        "1510": {
            "3547": { "link": "Eastern Ward (Skywatch Archipelago)" },
            "3637": { "link": "Hidden Falls (Skywatch Archipelago)" },
            "3510": { "link": "Chak Hatchery (Skywatch Archipelago)" }
        },
        "1526": {
            "3678": { "link": "Heitor's Gate (location)" }
        }
    },
    2: {
        "38": {
            "1016": { "link": "Rogue's Quarry (point of interest)" }
        },
        "95": {
            "1332": { "link": "Battle's Hollow (Green Borderlands)" }
        },
        "96": {
            "1314": { "link": "Battle's Hollow (Blue Borderlands)" }
        },
        "968": {
            "1843": { "link": "Arid Fortress (point of interest)" },
            "1844": { "link": "Arid Fortress Reactor (point of interest)" },
            "1845": { "link": "Inferno's Needle Reactor (point of interest)" },
            "1846": { "link": "Overgrown Fane Reactor (point of interest)" },
            "1847": { "link": "Stonegaze Spire Reactor (point of interest)" },
            "1848": { "link": "Thunder Hollow Reactor (point of interest)" },
            "1849": { "link": "Tytone Perch Reactor (point of interest)" },
            "1850": { "link": "Forge (point of interest)" },
            "1851": { "link": "Shrine (point of interest)" },
            "1853": { "link": "Tytone Perch (point of interest)" },
            "1854": { "link": "Thunder Hollow (point of interest)" },
            "1858": { "link": "Inferno's Needle (point of interest)" },
            "1863": { "link": "Stonegaze Spire (point of interest)" },
            "1864": { "link": "Overgrown Fane (point of interest)" },
            "2921": { "link": "Mists Arena (point of interest)" },
        },
        "1099": {
            "2089": { "link": "Boettiger's Hideaway (point of interest)" },
            "2115": { "link": "Osprey's Palace (point of interest)" },
            "2117": { "link": "Parched Outpost (point of interest)" },
            "2182": { "link": "Blistering Undercroft (point of interest)" },
            "2190": { "link": "McLain's Encampment (point of interest)" },
            "2191": { "link": "Crankshaft Depot (point of interest)" },
            "2197": { "link": "Eternal Necropolis (point of interest)" },
            "2223": { "link": "Stoic Rampart (point of interest)" },
            "2225": { "link": "Hamm's Lab (point of interest)" },
            "2259": { "link": "Dustwhisper Well (point of interest)" },
            "2271": { "link": "O'del Academy (point of interest)" },
            "2291": { "link": "Bauer Farmstead (point of interest)" },
            "2294": { "link": "Roy's Refuge (point of interest)" }
        }
    }
};

var wiki_vistas = {
  "1": {
    "15": {
      "1361": { "name": "Western Divinity Dam Vista" },
      "1382": { "name": "Claypool Vista" },
      "1383": { "name": "Eldvin Monastery Vista" },
      "1384": { "name": "Dalin's Pumping Station Vista" },
      "1385": { "name": "Shire of Beetletun Vista" },
      "1386": { "name": "Altar's Windings Vista" },
      "1387": { "name": "Bandithaunt Caverns Vista" },
      "1388": { "name": "Godslost Swamp Vista" },
      "1389": { "name": "Shaemoor Garrison Vista" }
    },
    "17": {
      "1542": { "name": "Hidden Falls Vista" },
      "1543": { "name": "Thunder Rock Vista" },
      "1544": { "name": "Grey Gritta's Vista" },
      "1545": { "name": "Wynchona Rally Point Vista" },
      "1546": { "name": "Seraph's Landing Vista" },
      "1547": { "name": "Trebusha's Overlook Vista" },
      "1548": { "name": "Junction Camp Vista" },
      "1549": { "name": "Barricade Camp Vista" }
    },
    "18": {
      "1399": { "name": "The Upper City Vista" },
      "1400": { "name": "Ossan Quarter Vista" },
      "1401": { "name": "The Crown Pavilion Vista" },
      "1402": { "name": "Plaza of Grenth Vista" },
      "1403": { "name": "Plaza of Melandru Vista" },
      "1404": { "name": "Plaza of Lyssa Vista" }
    },
    "19": {
      "1372": { "name": "Lake Feritas Vista" },
      "1373": { "name": "Sharptail Encampment Vista" },
      "1374": { "name": "Lake Adorea Vista" },
      "1375": { "name": "Victory Cenotaph Vista" },
      "1376": { "name": "Shards of War Vista" },
      "1377": { "name": "Irondock Shipyard Vista" },
      "1378": { "name": "Watchcrag Tower Vista" },
      "1379": { "name": "Human's Lament Vista" },
      "1380": { "name": "Ghostsummit Vista" },
      "1381": { "name": "The Toppled Wall Vista" }
    },
    "20": {
      "1563": { "name": "Tail of the Star God Vista" },
      "1564": { "name": "Brokentooth Maw Vista" },
      "1565": { "name": "Monument Grounds Vista" },
      "1566": { "name": "Foewatch Encampment Vista" },
      "1567": { "name": "Griffonclaw Peak Vista" }
    },
    "21": {
      "1536": { "name": "Ebonhawke Vista" },
      "1537": { "name": "Sentinel's Perch Vista" },
      "1538": { "name": "Delegation of the Legions Vista" },
      "1539": { "name": "Deathblade's Watch Vista" },
      "1540": { "name": "The Hawkgates Vista" },
      "1541": { "name": "Foulbear Kraal Vista" }
    },
    "22": {
      "1660": { "name": "Vidius Castrum Vista" },
      "1661": { "name": "Haymal Gore Vista" },
      "1662": { "name": "Tuyere Command Post Vista" },
      "1663": { "name": "Pig Iron Mine Vista" },
      "1664": { "name": "Provatum Castrum Vista" },
      "1665": { "name": "Gates of Flame Vista" },
      "1666": { "name": "Sloven Pitch Vista" },
      "1667": { "name": "Shadow Cleft Vista" }
    },
    "23": {
      "1502": { "name": "Shadowheart Site Vista" },
      "1503": { "name": "Cereboth Canyon Vista" },
      "1504": { "name": "Giant's Passage Vista" },
      "1505": { "name": "Quarryside Vista" },
      "1506": { "name": "Black Haven Vista" },
      "1507": { "name": "Earthworks Bluff Vista" },
      "1508": { "name": "Fort Salma Vista" },
      "1509": { "name": "Garenhoff Vista" },
      "1510": { "name": "Lair of the Seawitch Vista" }
    },
    "24": {
      "1512": { "name": "Ascalon Settlement Vista" },
      "1513": { "name": "Northfields Vista" },
      "1514": { "name": "Applenook Hamlet Vista" },
      "1515": { "name": "Vigil Keep Vista" },
      "1516": { "name": "Stonefish Beach Vista" },
      "1517": { "name": "Slade's Bay Vista" },
      "1518": { "name": "Almuten Mansion Vista" },
      "1519": { "name": "Nebo Terrace Vista" }
    },
    "25": {
      "1589": { "name": "Dewclaw Village Vista" },
      "1590": { "name": "Lake Desolann Vista" },
      "1591": { "name": "Fellmyst Falls Vista" },
      "1592": { "name": "Wreckage of Day's Labor Vista" },
      "1593": { "name": "Grostogg's Kraal Vista" },
      "1594": { "name": "Town of Cowlfang's Star Vista" },
      "1595": { "name": "Echoslab Arches Vista" },
      "1596": { "name": "The Blasted Hearth Vista" }
    },
    "26": {
      "1569": { "name": "Troll's Teeth Vista" },
      "1570": { "name": "Skovtrolde Hearthstead Vista" },
      "1571": { "name": "Tribulation Rift Vista" },
      "1572": { "name": "Bear's Jaws Shrine Vista" },
      "1573": { "name": "Dostoev Sky Peak Vista" },
      "1574": { "name": "Leopard's Snarl Shrine Vista" },
      "1575": { "name": "Mantelet Refuge Vista" },
      "1576": { "name": "Dociu Excavation Vista" }
    },
    "27": {
      "1550": { "name": "Jetsam Isle Vista" },
      "1551": { "name": "Nentor's Consolidated Mine Vista" },
      "1552": { "name": "False River Valley Vista" },
      "1553": { "name": "Marionette's Landing Vista" },
      "1554": { "name": "Demon's Maw Vista" },
      "1555": { "name": "Durmand Priory Vista" },
      "1556": { "name": "Lost Delver's Ridge Vista" },
      "1710": { "name": "The Thunderhorns Vista" },
      "1711": { "name": "Icedevil's Needle Vista" },
      "1712": { "name": "Venison Pass Vista" }
    },
    "28": {
      "1362": { "name": "Horncall Vista" },
      "1363": { "name": "Heart of the Bear Vista" },
      "1364": { "name": "The Osenfold Shear Vista" },
      "1365": { "name": "Twinspur Haven Vista" },
      "1366": { "name": "The Shadowhorns Vista" },
      "1367": { "name": "Snowlord's Gate Vista" },
      "1368": { "name": "Wurmhowl Spikes Vista" },
      "1369": { "name": "Molensk Vista" },
      "1370": { "name": "Darkriven Bluffs Vista" },
      "1371": { "name": "Svanir's Dome Vista" }
    },
    "29": {
      "1633": { "name": "Krongar Pass Vista" },
      "1634": { "name": "Kiriel Rock Vista" },
      "1635": { "name": "Sipedon Deeps Vista" },
      "1636": { "name": "Valance Tutory Vista" },
      "1637": { "name": "Gentle River Vista" },
      "1638": { "name": "Concordia Vista" }
    },
    "30": {
      "1692": { "name": "Blue Ice Shining Vista" },
      "1693": { "name": "Trionic Lattice Vista" },
      "1694": { "name": "Stonesledge Draft Vista" },
      "1695": { "name": "Bore Lynch Vista" },
      "1696": { "name": "Yak's Bend Vista" },
      "1697": { "name": "Deep and Troubled Waters" },
      "1698": { "name": "Orsippus Vista" },
      "1699": { "name": "Earthshake Basin Vista" }
    },
    "31": {
      "1487": { "name": "Villmark Foothills Vista" },
      "1488": { "name": "Podaga Steading Vista" },
      "1489": { "name": "Trapper's Labyrinth Vista" },
      "1490": { "name": "Jormabakke Stead Vista" },
      "1491": { "name": "Owl Lodge Vista" },
      "1492": { "name": "King Jalis's Refuge Vista" }
    },
    "32": {
      "1493": { "name": "The Breached Wall Vista" },
      "1494": { "name": "Moorwatch Tower Vista" },
      "1495": { "name": "Redreave Mill Vista" },
      "1496": { "name": "Town of Nolan Vista" },
      "1497": { "name": "Town of Nageling Vista" },
      "1498": { "name": "Raintimber Mill Vista" },
      "1499": { "name": "Font of Rhand Vista" },
      "1500": { "name": "Bloodcliff Quarry Vista" },
      "1501": { "name": "Incendio Templum Vista" },
      "1730": { "name": "Butcher's Block Vista" }
    },
    "34": {
      "1460": { "name": "Ruins of the Unseen Vista" },
      "1461": { "name": "Kraitbane Haven Vista" },
      "1462": { "name": "Dominion of Winds Vista" },
      "1463": { "name": "Ogham Waterfall Vista" },
      "1464": { "name": "Sleive's Inlet Vista" },
      "1465": { "name": "Hazupl Grounds Vista" },
      "1466": { "name": "Caledon Haven Vista" },
      "1467": { "name": "Bay Haven Vista" }
    },
    "35": {
      "1405": { "name": "Desider Atum Vista" },
      "1406": { "name": "Wildflame Caverns Vista" },
      "1407": { "name": "Arterium Haven Vista" },
      "1408": { "name": "Splorge Metamystics Vista" },
      "1409": { "name": "Incinergen Labs Vista" },
      "1410": { "name": "Brill Alliance Labs Vista" },
      "1411": { "name": "Thaumanova Reactor Vista" },
      "1412": { "name": "Inquest Outer Complex Vista" },
      "1413": { "name": "Akk Wilds Vista" }
    },
    "39": {
      "1702": { "name": "Restless Deeps Vista" },
      "1703": { "name": "Rata Pten Vista" },
      "1704": { "name": "Maelstrom's Core Vista" },
      "1705": { "name": "Infinite Coil Reactor Vista" },
      "1706": { "name": "Malxa Pyrotechnics Vista" },
      "1707": { "name": "Old Sledge Site Vista" },
      "1708": { "name": "Sootberme Vista" }
    },
    "50": {
      "1390": { "name": "Postern Ward Vista" },
      "1391": { "name": "Crow's Nest Tavern Vista" },
      "1392": { "name": "Inner Harbor West Vista" },
      "1393": { "name": "Inner Harbor North Vista" },
      "1394": { "name": "Western Ward Vista" },
      "1395": { "name": "Phoenix Roost Vista" },
      "1396": { "name": "The Undermarket Vista" },
      "1397": { "name": "Old Lion's Arch Vista" },
      "1398": { "name": "Grand Piazza Vista" },
      "1568": { "name": "Sharkmaw Caverns Vista" },
      "1729": { "name": "Bloodcoast Ward Vista" }
    },
    "51": {
      "1723": { "name": "Fort Trinity Vista" },
      "1724": { "name": "Stygian Deeps Vista" },
      "1725": { "name": "Triumph Plaza Vista" },
      "1726": { "name": "Lightfoot Passage Vista" },
      "1727": { "name": "The Vizier's Tower Vista" },
      "1728": { "name": "Izz-al-Din Sarayi Vista" }
    },
    "53": {
      "1655": { "name": "Saltflood Mire Vista" },
      "1656": { "name": "Orvanic Cliffs Vista" },
      "1657": { "name": "Orvanic Shore Vista" },
      "1658": { "name": "Wrathwave Deeps Vista" },
      "1659": { "name": "Splintered Coast Vista" }
    },
    "54": {
      "1474": { "name": "Hidden Lake Vista" },
      "1475": { "name": "Watchful Source Vista" },
      "1476": { "name": "Koga Ruins Vista" },
      "1477": { "name": "The Shattered Henge Vista" },
      "1478": { "name": "Gotala Cascade Vista" },
      "1479": { "name": "Aethervolt Lab Vista" },
      "1480": { "name": "Skrittsburgh Tunnels Vista" }
    },
    "62": {
      "1718": { "name": "Death's Anthem Vista" },
      "1719": { "name": "Promenade of the Gods Vista" },
      "1720": { "name": "Gavbeorn's Landing Vista" },
      "1721": { "name": "Azabe Qabar Vista" },
      "1722": { "name": "Fields of Gold Vista" }
    },
    "65": {
      "1713": { "name": "Cathedral of Zephyrs Vista" },
      "1714": { "name": "Cathedral of Eternal Radiance Vista" },
      "1715": { "name": "Shelter Docks Vista" },
      "1716": { "name": "Garden of Ilya Vista" },
      "1717": { "name": "Drowned Brine Vista" }
    },
    "73": {
      "1581": { "name": "Portage Hills Vista" },
      "1582": { "name": "Whisperwill Bogs Vista" },
      "1583": { "name": "Jelako Cliffrise Vista" },
      "1584": { "name": "Glorious Drill Collective #4 Vista" },
      "1585": { "name": "Stormbluff Beacon Vista" },
      "1586": { "name": "Vindar's Lagoon Vista" },
      "1587": { "name": "Covington Keep Vista" }
    },
    "91": {
      "1468": { "name": "Pale Tree's Circle Vista" },
      "1469": { "name": "Starbower Nursery Vista" },
      "1470": { "name": "Great Helix Vista" },
      "1471": { "name": "Caledon Path Vista" },
      "1472": { "name": "Ronan's Bower Vista" },
      "1473": { "name": "The Maker's Path Vista" }
    },
    "139": {
      "1481": { "name": "The Golem Mines Vista" },
      "1482": { "name": "The Aquatarium Vista" },
      "1483": { "name": "Antidawn Anchorage Vista" },
      "1484": { "name": "Creator's Commons Vista" },
      "1485": { "name": "Synergetics Union Vista" }
    },
    "218": {
      "1448": { "name": "Great Imperial Smelter Vista" },
      "1449": { "name": "Ruins of Rin Vista" },
      "1450": { "name": "Ligacus Notos Vista" },
      "1451": { "name": "Canton Factorium Vista" },
      "1452": { "name": "Gladium Canton Vista" }
    },
    "326": {
      "1444": { "name": "Lake Mourn Vista" },
      "1445": { "name": "Bear Lodge Vista" },
      "1446": { "name": "Bilrost Gallery Vista" },
      "1447": { "name": "The Great Lodge Vista" },
      "1453": { "name": "Snow Leopard Vista" }
    },
    "988": {
      "1911": { "name": "Sparring Rock Vista" },
      "1912": { "name": "Crash Site Vista" },
      "1921": { "name": "Crash Site 2 Vista" },
      "1924": { "name": "Ley Line Hub Vista" },
      "1925": { "name": "Raptor Prowl Vista" },
      "1941": { "name": "Inquest Base Vista" }
    },
    "1015": {
      "1953": { "name": "Desperate Passage Vista" },
      "1954": { "name": "Indigo Caves Vista" },
      "1955": { "name": "Red Rock Bastion Vista" },
      "1956": { "name": "Far Silverwastes Vista" },
      "1957": { "name": "Camp Resolve Vista" },
      "1960": { "name": "Northern Shelf Vista" },
      "1977": { "name": "Amber Sandfall Vista" }
    },
    "1041": {
      "2092": { "name": "Exhumed Delve Vista" },
      "2161": { "name": "Northern Barbed Gate Vista" },
      "2165": { "name": "Wyvern Scar Vista" },
      "2179": { "name": "Central Barbed Gate Vista" },
      "2188": { "name": "Dragon's Domain Vista" },
      "2206": { "name": "Southern Barbed Gate Vista" },
      "2251": { "name": "Rooted Copse Vista" }
    },
    "1043": {
      "2128": { "name": "Bristleback Chasm Vista" },
      "2157": { "name": "The Falls Vista" },
      "2220": { "name": "New Skrittington Vista" },
      "2232": { "name": "Inner Chamber Vista" },
      "2249": { "name": "Tarir Vista" },
      "2284": { "name": "Burnisher Quarry Vista" }
    },
    "1045": {
      "2070": { "name": "SCAR Lane Vista" },
      "2133": { "name": "Tangled Descent Vista" },
      "2213": { "name": "SCAR Bivouac Vista" },
      "2214": { "name": "Deeproot Sink Vista" },
      "2236": { "name": "Teku Nuhoch Vista" },
      "2300": { "name": "Rata Novus Vista" }
    },
    "1052": {
      "2204": { "name": "Shrouded Ruins Vista" },
      "2226": { "name": "Stonetwist Paths Vista" },
      "2231": { "name": "Jaka Itzel Vista" },
      "2235": { "name": "Mellaggan's Valor Vista" },
      "2265": { "name": "Snarled Frontier Vista" },
      "2277": { "name": "Uprooted Paradise Vista" }
    },
    "1149": {
      "2319": { "name": "Prison Camp Vista" }
    },
    "1165": {
      "2368": { "name": "Colosseum Vista" },
      "2376": { "name": "Bloodstone's Shell Vista" },
      "2381": { "name": "Cavern of Unseen Lights Vista" }
    },
    "1175": {
      "2397": { "name": "Osprey Pillars Vista" },
      "2404": { "name": "Castaway Circus Vista" },
      "2408": { "name": "Caliph's Steps Vista" },
      "2416": { "name": "Pedestal of Flames Vista" },
      "2417": { "name": "Basalt Rise Vista" },
      "2419": { "name": "Infernal Cape Vista" },
      "2422": { "name": "Fractured Caldera Vista" }
    },
    "1178": {
      "2437": { "name": "The Svanir Hive Vista" },
      "2438": { "name": "Chokocooka's Throne Vista" },
      "2439": { "name": "Sorrow's Eclipse Vista" },
      "2443": { "name": "Joyless Falls Vista" },
      "2446": { "name": "Dragon's Teeth Hot Springs Vista" }
    },
    "1185": {
      "2449": { "name": "Melandru's Flourish Vista" },
      "2451": { "name": "Watcher's Hollow Vista" },
      "2456": { "name": "Harvest Cascades Vista" },
      "2461": { "name": "Doric's Landing Vista" },
      "2462": { "name": "New Loamhurst Vista" },
      "2465": { "name": "Lakeside Bazaar Vista" },
      "2473": { "name": "Doric Lumberyard Vista (south)" },
      "2474": { "name": "Watchtower Cliffs Vista (north)" },
      "2482": { "name": "Fort Evennia Vista" }
    },
    "1195": {
      "2488": { "name": "Savage Rise Vista" },
      "2491": { "name": "Heathen's Hold Vista" },
      "2495": { "name": "Rata Arcanum Vista" },
      "2496": { "name": "Mariner's Landing Vista" },
      "2498": { "name": "Scalding Gorge Vista" }
    },
    "1210": {
      "2566": { "name": "The Sinking Ruins Vista" },
      "2568": { "name": "Retreat of the Resolute Vista" },
      "2606": { "name": "Destiny's Gorge Vista" },
      "2636": { "name": "Mekele Bluffs Vista" },
      "2655": { "name": "Diviner's Passage Vista" },
      "2678": { "name": "Northern Way Station Vista" },
      "2692": { "name": "Amnoon Harbor Vista" },
      "2746": { "name": "Free City of Amnoon Vista" },
      "2757": { "name": "Elona Reach Vista" },
      "2785": { "name": "Hatari Tablelands Vista" }
    },
    "1211": {
      "2556": { "name": "Salt Flats Vista" },
      "2565": { "name": "Fortune's Vale Vista" },
      "2569": { "name": "Godfall Tower Vista" },
      "2601": { "name": "Stampede Uplands Vista" },
      "2657": { "name": "Winter's Teeth Vista" },
      "2691": { "name": "Prophet's Fall Vista" },
      "2693": { "name": "Tomb of the Primeval Kings Vista" },
      "2699": { "name": "Lifeblood Ravine Vista" },
      "2729": { "name": "Discarded Vessels Vista" },
      "2771": { "name": "Prickpatch Hollow Vista" },
      "2782": { "name": "Enchanted Bluffs Vista" }
    },
    "1226": {
      "2617": { "name": "The Desolation Vista" },
      "2649": { "name": "Acrid Springs Vista" },
      "2654": { "name": "Lair of the Forgotten Vista" },
      "2664": { "name": "The Spillway Vista" },
      "2668": { "name": "The Ruination Vista" },
      "2700": { "name": "The Ruptured Heart Vista" },
      "2709": { "name": "Palawa Cut Vista" },
      "2719": { "name": "The Scourgeway Vista" },
      "2739": { "name": "Joko's Domain Vista" },
      "2778": { "name": "Boundary Preserve Vista" }
    },
    "1228": {
      "2551": { "name": "Elon Riverbank Vista" },
      "2576": { "name": "Whispering Grottos Vista" },
      "2618": { "name": "Augury Rock Vista" },
      "2628": { "name": "Prophet's Path Vista" },
      "2639": { "name": "Arid Gladefields Vista" },
      "2686": { "name": "Deadlock Sweep Vista" },
      "2695": { "name": "Shoals of Sovereignty Vista" },
      "2733": { "name": "Shallows of Despair Vista" },
      "2738": { "name": "The Scavengelands Vista" },
      "2756": { "name": "The Quickmire Vista" }
    },
    "1248": {
      "2560": { "name": "Kodash Bazaar Vista" },
      "2590": { "name": "Grand Court of Sebelkeh Vista" },
      "2596": { "name": "Hanging Gardens Vista" },
      "2681": { "name": "The Necropolis Vista" },
      "2685": { "name": "Yahnur Plateau Vista" },
      "2687": { "name": "Great Palawa Joko Monument Vista" },
      "2749": { "name": "Garden of Seborhin Vista" },
      "2750": { "name": "Zagonur Cliffs Vista" },
      "2798": { "name": "Vehjin Palace Vista" },
      "2803": { "name": "The Foundry Vista" }
    },
    "1263": {
      "2822": { "name": "Champion's Dawn Vista" },
      "2828": { "name": "Churrhir Cliffs Vista" },
      "2832": { "name": "Palawadan, Jewel of Istan Vista" },
      "2841": { "name": "Freetrader Haven Vista" },
      "2844": { "name": "Astralarium Vista" },
      "2845": { "name": "Heretic's Arena Vista" }
    },
    "1271": {
      "2874": { "name": "The Hunting Grounds Vista" },
      "2876": { "name": "Griffonstone Buttresses Vista" },
      "2881": { "name": "Reserve Generator Site Vista" },
      "2885": { "name": "Atholma Vista" }
    },
    "1288": {
      "2890": { "name": "Front Line Vista" },
      "2895": { "name": "Dabiji Hollows Vista" },
      "2907": { "name": "Arkjok Farmlands Vista" },
      "2916": { "name": "Eastern Front Vista" }
    },
    "1301": {
      "2922": { "name": "Argon Garrison Vista" },
      "2924": { "name": "Reclaimed Chantry Vista" },
      "2927": { "name": "Displaced Towers Vista" },
      "2930": { "name": "Jungle Anomaly Vista" },
      "2945": { "name": "Ruined Procession Vista" },
      "2951": { "name": "Fortress of Jahai Vista" },
      "2966": { "name": "Yatendi Village Vista" }
    },
    "1310": {
      "2980": { "name": "Symphony's Haven Vista" },
      "2984": { "name": "The Grotto Vista" },
      "2995": { "name": "Ice Floe Vista" },
      "2997": { "name": "Hundar Pike Vista" },
      "3000": { "name": "The Forge Vista" },
      "3007": { "name": "Thunderhead Keep Vista" },
      "3011": { "name": "Deldrimor Ruins Vista" }
    },
    "1317": {
      "3020": { "name": "Gnarlgrove Vista" },
      "3029": { "name": "Pact Command Vista" },
      "3030": { "name": "Melandru's Chalice Vista" },
      "3039": { "name": "Grenth's Teeth Vista" },
      "3043": { "name": "Mosswood Vista" },
      "3045": { "name": "Necrotic Coast Vista" },
      "3047": { "name": "Scorched Cliffs Vista" },
      "3049": { "name": "Umbral Battlegrounds Vista" }
    },
    "1330": {
      "3063": { "name": "Sacnoth Stream Vista" },
      "3066": { "name": "The Ooze Pit Vista" },
      "3072": { "name": "Iron Legion Camp Vista" },
      "3078": { "name": "Rusty Meadows Vista" },
      "3080": { "name": "Flame Legion Camp Vista" },
      "3083": { "name": "Burning Effigy Vista" },
      "3088": { "name": "The Overlook Vista" },
      "3091": { "name": "Khan-Ur's Gauntlet Vista" },
      "3092": { "name": "Lower Blood Keep Vista" },
      "3094": { "name": "Doomlore Ruins Vista" }
    },
    "1343": {
      "3103": { "name": "Fallen Mountains Vista" },
      "3110": { "name": "Southern Mountains Vista" },
      "3119": { "name": "Asgeir's Legacy Vista" },
      "3122": { "name": "Fallen Ruins Vista" },
      "3128": { "name": "Eaglewatch Rise Vista" },
      "3132": { "name": "Ice Spire Peaks Vista" },
      "3138": { "name": "Spirit's Refuge Vista" },
      "3143": { "name": "Frostborn Cascades Vista" }
    },
    "1371": {
      "3148": { "name": "Lighthouse Point Vista" },
      "3153": { "name": "Leadfoot Village Northeast Vista" },
      "3156": { "name": "Fort Defiance Vista" },
      "3157": { "name": "Port Cascadia Vista" },
      "3160": { "name": "Wolf's Crossing Vista" },
      "3163": { "name": "Umbral Grotto Vista" },
      "3164": { "name": "Vloxen Mine Vista" },
      "3165": { "name": "Petraj Overlook Vista" },
      "3174": { "name": "Breakroot Basin Vista" },
      "3178": { "name": "Leadfoot Village Southwest Vista" },
      "3182": { "name": "Archstone Coast Vista" },
      "3185": { "name": "Drizzlewood Peak Vista" },
      "3190": { "name": "Canopy Crag Vista" },
      "3192": { "name": "Sentinel Bay Vista" },
      "3197": { "name": "The Bloodfield Northeast Vista" },
      "3201": { "name": "The Bloodfield Northwest Vista" }
    },
    "1422": {
      "3218": { "name": "Flooded Basin West Vista" },
      "3260": { "name": "Seafarer's Enclave Vista" },
      "3378": { "name": "Southern Bluff Vista" },
      "3398": { "name": "Archipelagos Rim Vista" },
      "3414": { "name": "Flooded Basin East Vista"  }
    },
    "1438": {
      "3239": { "name": "Ministry Ward Vista" },
      "3254": { "name": "Old Kaineng Vista" },
      "3383": { "name": "Lutgardis Plaza Vista" },
      "3401": { "name": "Kaineng Docks Vista" },
      "3424": { "name": "Grub Lane Vista"  }
    },
    "1442": {
      "3215": { "name": "North Peninsula Vista" },
      "3316": { "name": "Seitung Harbor Vista" },
      "3340": { "name": "Shing Jea Monastery Vista" },
      "3346": { "name": "Haiju Lagoon Vista" },
      "3397": { "name": "Shinota Shore Vista"  }
    },
    "1452": {
      "3306": { "name": "Lake Lutgardis Vista" },
      "3335": { "name": "Qinkaishi Basin Vista" },
      "3338": { "name": "Zu Heltzer Historical Site Vista" },
      "3371": { "name": "Brotherhood Wildlands Vista" },
      "3395": { "name": "Warden's Folly Vista"  }
    },
    "1490": {
      "3487": { "name": "Howling Caves Vista" },
      "3490": { "name": "The Deep Vista" },
      "3491": { "name": "The Hollow Vista" }
    },
    "1509": {
      "3542": { "name": "Inner Sanctorium Vista" },
      "3568": { "name": "Outer Ring Vista" },
      "3643": { "name": "Open Sky Vista" }
    },
    "1510": {
      "3530": { "name": "Wizard's Ascent Vista" },
      "3549": { "name": "Primal Maguuma Vista" },
      "3563": { "name": "Droknar's Light Vista" },
      "3576": { "name": "Devastated Garenhoff Vista" },
      "3612": { "name": "Rata Novus Promenade Vista" },
      "3613": { "name": "Southern Wizard's Tower Vista" },
      "3638": { "name": "Jade Mech Habitation Zone 03 Vista" },
      "3665": { "name": "Skyward Marches Vista" }
    },
    "1517": {
      "3505": { "name": "Bastion of the Celestial Southwest Vista" },
      "3534": { "name": "Bastion of the Celestial Northeast Vista" },
      "3545": { "name": "Bastion of the Natural Vista" },
      "3555": { "name": "Bastion of Knowledge Vista" },
      "3585": { "name": "Bastion of Balance Vista" },
      "3642": { "name": "Bastion of Strength Northeast Vista" },
      "3653": { "name": "Bastion of the Obscure Vista" },
      "3659": { "name": "Bastion of Strength Southwest Vista" }
    },
    "1526": {
        "3679": { "name": "Heitor's Dominion Vista" },
        "3681": { "name": "Memory's Hollow Vista" },
        "3680": { "name": "The Bleeding Wastes Vista" },
        "3697": { "name": "Defiled Cradle North Vista" },
        "3706": { "name": "Nyedra, Dreamer's Sanctum Vista" },
        "3718": { "name": "Defiled Cradle South Vista" }
    }
  },
  "2": {
    "38": {
      "1520": { "name": "Stonemist Castle Vista" },
      "1521": { "name": "Blue Keep Vista" },
      "1522": { "name": "Green Keep Vista" },
      "1523": { "name": "Dragos Kraal Vista" },
      "1524": { "name": "Anzalias Post Vista" },
      "1525": { "name": "Red Keep Vista" },
      "1529": { "name": "Jerrifer's Tower Vista" },
      "1530": { "name": "Veloka Tower Vista" },
      "1531": { "name": "Durios Post Vista" },
      "1532": { "name": "Langor Tower Vista" }
    },
    "95": {
      "1434": { "name": "Shadaran Bastion Vista" },
      "1435": { "name": "Redwater Village Vista" },
      "1436": { "name": "Daemonspell Lake Vista" },
      "1437": { "name": "Green Citadel Vista" },
      "1438": { "name": "Green Garrison Vista" },
      "1439": { "name": "Hero's Orchard Vista" },
      "1440": { "name": "Temple of Lost Prayers Vista" },
      "1441": { "name": "Blue World Border Vista" },
      "1442": { "name": "Sunnyhill Tower Vista" },
      "1443": { "name": "Dreadfall Bastion Vista" }
    },
    "96": {
      "1424": { "name": "Ascension Bastion Vista" },
      "1425": { "name": "Woodhaven Tower Vista" },
      "1426": { "name": "Red World Border Vista" },
      "1427": { "name": "Temple of Lost Prayers Vista" },
      "1428": { "name": "Champion's Orchard Vista" },
      "1429": { "name": "Blue Garrison Vista" },
      "1430": { "name": "Blue Citadel Vista" },
      "1431": { "name": "Devilheart Lake Vista" },
      "1432": { "name": "Greenwater Village Vista" },
      "1433": { "name": "Askalion Bastion Vista" }
    },
    "1099": {
      "2122": { "name": "Eternal Necropolis Vista" },
      "2137": { "name": "Osprey's Palace Vista" },
      "2141": { "name": "Crankshaft Depot Vista" },
      "2153": { "name": "Central Oasis Vista" },
      "2185": { "name": "Hamm's Lab Vista" },
      "2194": { "name": "Parched Outpost Vista" },
      "2227": { "name": "Bauer Farmstead Vista" },
      "2269": { "name": "Blistering Undercroft Vista" },
      "2295": { "name": "Boettiger's Hideaway Vista" },
      "2306": { "name": "Stoic Rampart Vista" }
    }
  }
};

var wiki_waypoints = {
  "1": {
    "1482": {
      "3462": { "name": "Cavern Waypoint", "coord": [50030.6, 31319.4] },
      "3465": { "name": "Bloodcoast Ward Waypoint", "coord": [49613.4, 32044.7] },
      "3466": { "name": "Canal Ward Waypoint", "coord": [48914.3, 30809.5] }
    },
    "1483": {
      "3458": { "name": "Trader's Forum Waypoint", "coord": [49076.5, 31031.5] },
      "3459": { "name": "Diverse Ledges Waypoint", "coord": [48380.3, 31708.3] },
      "3460": { "name": "Bloodcoast Ward Waypoint", "coord": [49613.4, 32044.7] },
      "3461": { "name": "Farshore Waypoint", "coord": [49957.1, 31690.5] },
      "3463": { "name": "Eastern Ward Waypoint", "coord": [49568.2, 31233.8] },
      "3464": { "name": "Cavern Waypoint", "coord": [49986.3, 31215.4] },
      "3467": { "name": "Sanctum Harbor Waypoint", "coord": [48773.9, 31479.6] },
      "3468": { "name": "Guild Bluff Waypoint", "coord": [49767.1, 30950.4] },
      "3469": { "name": "Commodore's Quarter Waypoint", "coord": [48914.3, 30809.5] },
      "3470": { "name": "Fort Marriner Waypoint", "coord": [49383.5, 31683.7] },
      "3471": { "name": "Western Ward Waypoint", "coord": [48398.6, 31141.0] },
      "3472": { "name": "Gate Hub Plaza Waypoint", "coord": [49073.5, 31462.7] },
      "3473": { "name": "Claw Island Portage Waypoint", "coord": [48997.1, 31853.2] }
    },
  },
  "2": {
    "38": {
      "1018": { "name": "Blue World Hill Waypoint" },
      "1019": { "name": "Red World Hill Waypoint" },
      "1020": { "name": "Green World Hill Waypoint" }
    },
    "95": {
      "1242": { "name": "Blue World Border Waypoint" },
      "1243": { "name": "Green World Garrison Waypoint" },
      "1244": { "name": "Green World Citadel Waypoint" },
      "1246": { "name": "Red World Border Waypoint" },
      "2325": { "name": "Cragtop Emergency Waypoint" },
      "2337": { "name": "Shadaran Hills Emergency Waypoint" },
      "2338": { "name": "Redlake Emergency Waypoint" },
      "2343": { "name": "Sunnyhill Emergency Waypoint" },
      "2345": { "name": "Bluebriar Emergency Waypoint" },
      "2347": { "name": "Green World Garrison Emergency Waypoint" },
      "2350": { "name": "Dreadfall Bay Emergency Waypoint" }
    },
    "96": {
      "1236": { "name": "Red World Border Waypoint" },
      "1237": { "name": "Blue World Garrison Waypoint" },
      "1238": { "name": "Blue World Citadel Waypoint" },
      "1240": { "name": "Green World Border Waypoint" },
      "2322": { "name": "Blue World Garrison Emergency Waypoint" },
      "2324": { "name": "Dawn's Eyrie Emergency Waypoint" },
      "2328": { "name": "Askalion Hills Emergency Waypoint" },
      "2339": { "name": "Woodhaven Emergency Waypoint" },
      "2341": { "name": "Redbriar Emergency Waypoint" },
      "2348": { "name": "Greenlake Emergency Waypoint" },
      "2351": { "name": "Ascension Bay Emergency Waypoint" }
    },
    "899": {
      "1794": { "name": "Red World Obsidian Sanctum Waypoint" },
      "1795": { "name": "Blue World Obsidian Sanctum Waypoint" },
      "1796": { "name": "Green World Obsidian Sanctum Waypoint" }
    },
    "1099": {
      "2187": { "name": "Blue World Border Waypoint" },
      "2247": { "name": "Green World Border Waypoint" },
      "2276": { "name": "Red World Citadel Waypoint" }
    }
  }
};

var wiki_heropoints = {
  "1": {
    "15": {
      "0-6": { "name": "Chhk the Windmill King" },
      "0-7": { "name": "Temple of the Ages (hero challenge)" },
      "0-8": { "name": "Erts Jug of Power Unguent" },
      "0-9": { "name": "Tamini Place of Power" },
      "0-42": { "name": "Earthen Magic" },
      "0-65": { "name": "Bandit Loot" },
      "0-140": { "name": "Carnie Jeb" }
    },
    "17": {
      "0-57": { "name": "Harathi Forward Post" },
      "0-149": { "name": "Craig Sensay" },
      "0-150": { "name": "Ancient War Stones" },
      "0-151": { "name": "Hidden Falls" },
      "0-152": { "name": "Dolyak's Rest" },
      "0-230": { "name": "Conspicuous Feather Pile" }
    },
    "19": {
      "0-12": { "name": "Centurion Micka Thickblood" },
      "0-13": { "name": "Centurion Titus Gearclaw" },
      "0-14": { "name": "Ruins of Ascalon City" },
      "0-30": { "name": "Ethereal Vanguard Monument" },
      "0-32": { "name": "Ascalonian Ruins" },
      "0-40": { "name": "Effigy Core" }
    },
    "20": {
      "0-45": { "name": "Searing Crystal" },
      "0-48": { "name": "Birthplace of the Vigil" },
      "0-128": { "name": "Serenity Temple" },
      "0-129": { "name": "Campfire (hero challenge)" },
      "0-130": { "name": "Fane Skinchisel" }
    },
    "21": {
      "0-43": { "name": "Krunko Bugtender" },
      "0-61": { "name": "Scrabclaw's Roost" },
      "0-125": { "name": "Fallen Angel Gretel" },
      "0-126": { "name": "Gwen's Grave" },
      "0-127": { "name": "Pile of Stones" }
    },
    "22": {
      "0-0": { "name": "Flame Castrum" },
      "0-2": { "name": "Marse Scythetail" },
      "0-34": { "name": "Chieftain Inpetla" },
      "0-46": { "name": "Flame Core" },
      "0-131": { "name": "Tribune Sorya Fatekiller" },
      "0-132": { "name": "Steelbeak's Nest" },
      "0-133": { "name": "Burning Forest (hero challenge)" }
    },
    "23": {
      "0-47": { "name": "Eternal Portal" },
      "0-145": { "name": "Master Elementalist Dylane" },
      "0-146": { "name": "Enchanted Meat Rack" },
      "0-147": { "name": "Tocatl" },
      "0-148": { "name": "Centaur Gathering Site" }
    },
    "24": {
      "0-55": { "name": "Oakheart Seed" },
      "0-60": { "name": "Softly Glowing Light" },
      "0-153": { "name": "Warmaster Yulia" },
      "0-154": { "name": "Ooze Analyzer XH-9333" },
      "0-155": { "name": "Willoo" },
      "0-156": { "name": "Klakka the Brain" },
      "0-206": { "name": "Ancient Cave Spring (Gendarran Fields)" }
    },
    "25": {
      "0-44": { "name": "Imp Power Essence" },
      "0-120": { "name": "Sharky Longears" },
      "0-121": { "name": "Crusader Arevir Soulhammer" },
      "0-122": { "name": "Searing Cauldron" },
      "0-123": { "name": "Zzzig" },
      "0-124": { "name": "Branded Waterfall" }
    },
    "26": {
      "0-29": { "name": "Foreman's Gear" },
      "0-33": { "name": "Preserved Footprint" },
      "0-58": { "name": "Jotun Holy Site" },
      "0-89": { "name": "Dwarven Relic (Dredgehaunt Cliffs)" },
      "0-90": { "name": "Shiniest Skritt Treasure" },
      "0-91": { "name": "Kakkilak" }
    },
    "27": {
      "0-3": { "name": "Frozen Portal" },
      "0-4": { "name": "Mysterious Meat" },
      "0-5": { "name": "Lionguard Mette" },
      "0-39": { "name": "Steam Portal (hero challenge)" },
      "0-92": { "name": "Grenth's Door (object)" },
      "0-93": { "name": "Heart of the Priory" },
      "0-94": { "name": "Peg Leg (NPC)" },
      "0-95": { "name": "Dwarven Relic (Lornar's Pass)" },
      "0-233": { "name": "Skillet" }
    },
    "28": {
      "0-16": { "name": "Bear Shaman Marga" },
      "0-17": { "name": "Ancient Cave Spring (Wayfarer Foothills)" },
      "0-18": { "name": "Aging Ale Barrels" },
      "0-19": { "name": "Burrisson the Blue" },
      "0-59": { "name": "Issormir's Body" },
      "0-64": { "name": "Corrupted Spike" },
      "0-72": { "name": "Bjord's Banner" },
      "0-79": { "name": "Blane the Insane" }
    },
    "29": {
      "0-81": { "name": "Cooroo" },
      "0-82": { "name": "Ritual Tribal Paint" },
      "0-83": { "name": "Bullablopp" },
      "0-84": { "name": "Strange Energy Source" },
      "0-205": { "name": "Ural's Delve (hero challenge)" }
    },
    "30": {
      "0-10": { "name": "Eulda Soulseer" },
      "0-15": { "name": "Miner Voss" },
      "0-37": { "name": "Frost Portal" },
      "0-96": { "name": "Flowing Ice" },
      "0-97": { "name": "Shaman Okamuk" },
      "0-191": { "name": "Glacial Trench" },
      "0-196": { "name": "Talooboo" }
    },
    "31": {
      "0-35": { "name": "Razorwing's Nest" },
      "0-85": { "name": "Corvin the Skaald" },
      "0-86": { "name": "Devotee of Owl" },
      "0-87": { "name": "Stinging Wind" },
      "0-88": { "name": "Grawl Totem" },
      "0-202": { "name": "Raven Shaman's Power Source" }
    },
    "32": {
      "0-38": { "name": "Sharptail's Nest" },
      "0-78": { "name": "Warning: Bogfang the Skale" },
      "0-80": { "name": "Shaman Purda" },
      "0-116": { "name": "Veruta Beefhawker" },
      "0-117": { "name": "Rancher-in-Training Poisonswill" },
      "0-118": { "name": "Ascalonian Aqueduct" },
      "0-119": { "name": "Roj the Rowdy Butcher" },
      "0-203": { "name": "Remains of the Northern Wall" }
    },
    "34": {
      "0-20": { "name": "Morgan's Orchid" },
      "0-21": { "name": "Waterfall" },
      "0-22": { "name": "Krait Altar" },
      "0-23": { "name": "Swift Arrow" },
      "0-31": { "name": "Powerful Darkness" },
      "0-49": { "name": "Dark Thorn Patch" },
      "0-56": { "name": "Mysterious Patch of Ground" }
    },
    "35": {
      "0-24": { "name": "Cuatl Health Goo" },
      "0-25": { "name": "Utcua" },
      "0-26": { "name": "Black Ice 4444" },
      "0-27": { "name": "Oola" },
      "0-66": { "name": "Ancient Elemental Fire Energy" },
      "0-67": { "name": "Suspicious Control Panel" },
      "0-69": { "name": "Arcanic Interferometer" },
      "0-207": { "name": "Luminates Plant (object)" }
    },
    "39": {
      "0-108": { "name": "Heart of the Volcano (object)" },
      "0-109": { "name": "IQ1800 LX" },
      "0-110": { "name": "Urrahn The Hunter" },
      "0-111": { "name": "Scribbles in the Dirt" },
      "0-113": { "name": "Tarkkakt" },
      "0-114": { "name": "Petil" },
      "0-199": { "name": "Droknah's Relic" }
    },
    "51": {
      "0-50": { "name": "Ancient Sentry of Balthazar Statue" },
      "0-157": { "name": "Statue of Lyssa (Elysium Beach)" },
      "0-158": { "name": "Statue of Balthazar (Cathedral of Glorious Victory)" },
      "0-159": { "name": "Grenth's Graveyard" },
      "0-160": { "name": "Priory Magister (hero challenge)" },
      "0-161": { "name": "Veteran Risen Spectral Guard" },
      "0-162": { "name": "Book (The Vizier's Tower)" },
      "0-163": { "name": "Vigil Tactician (hero challenge)" },
      "0-164": { "name": "Lost Conservatory" },
      "0-165": { "name": "Sunken Ship" },
      "0-239": { "name": "Statue of Melandru (Strait of Sacrilege)" },
      "0-240": { "name": "Statue of Dwayna (Triumph Plaza)" }
    },
    "53": {
      "0-63": { "name": "Veteran Hylek Chief" },
      "0-70": { "name": "Ancient Energy Source" },
      "0-75": { "name": "Gilbert's Treasure Map" },
      "0-101": { "name": "Spooky Luka the Disbeliever" },
      "0-102": { "name": "Orrian Tomb" },
      "0-103": { "name": "Ancient Shark Pistrix" }
    },
    "54": {
      "0-71": { "name": "Super Shiny Thing" },
      "0-104": { "name": "Lady Grimassi" },
      "0-105": { "name": "Henge of Denravi" },
      "0-106": { "name": "Seraph Soldier Michella" },
      "0-107": { "name": "Restless Arboreal Spirit" },
      "0-204": { "name": "Thaumacore Energy Source" },
      "0-231": { "name": "Inventor Shminkta" },
      "0-232": { "name": "Keg of Skrittsburgh Special" }
    },
    "62": {
      "0-176": { "name": "Statue of Grenth (Cathedral of Silence)" },
      "0-177": { "name": "Statue of Melandru (Cathedral of Verdance)" },
      "0-178": { "name": "Gallow's Hang (hero challenge)" },
      "0-179": { "name": "Spectral Hammer" },
      "0-180": { "name": "Plaque of Ewan" },
      "0-181": { "name": "Explorer Brothmirr Rockslide" },
      "0-182": { "name": "Harbinger Torch (object)" },
      "0-183": { "name": "Pristine Chest" },
      "0-184": { "name": "Captain's Log" },
      "0-185": { "name": "Inscribed Casket" },
      "0-186": { "name": "Strange Ring Structures" },
      "0-187": { "name": "Mysterious Egg" },
      "0-188": { "name": "Pixi" },
      "0-189": { "name": "Fortuna Dirgecaller" },
      "0-190": { "name": "Spectral Sword (hero challenge)" },
      "0-241": { "name": "Statue of Balthazar (Fields of Gold)" },
      "0-242": { "name": "Statue of Melandru (Graven Cay)" }
    },
    "65": {
      "0-166": { "name": "Altar of Dwayna" },
      "0-167": { "name": "Altar of Lyssa" },
      "0-168": { "name": "Enchanted Orrian Bow" },
      "0-169": { "name": "Explorer Cinnia" },
      "0-170": { "name": "Alexandra Duet" },
      "0-171": { "name": "Old Jar" },
      "0-172": { "name": "Looah" },
      "0-173": { "name": "Statue of Lyssa (Blighted Arch)" },
      "0-174": { "name": "Metal Forest" },
      "0-175": { "name": "King's Altar" },
      "0-234": { "name": "Statue of Dwayna (Karst Plains)" },
      "0-235": { "name": "Statue of Grenth (Drowned Brine)" },
      "0-236": { "name": "Statue of Melandru (Whisper Bay)" },
      "0-237": { "name": "Memory of Dhuum's Last Stand" },
      "0-238": { "name": "Statue of Balthazar (Valley of Lyss)" }
    },
    "73": {
      "0-51": { "name": "Beckoning Force" },
      "0-52": { "name": "River Drake Broodmother" },
      "0-53": { "name": "Deputy Crackshot" },
      "0-142": { "name": "Agent Xinn" },
      "0-143": { "name": "Two-Eye Ignatl" },
      "0-144": { "name": "Krait Place of Power" }
    },
    "988": {
      "0-28": { "name": "Wreckage of Zephyrite Crystal Garden" },
      "0-98": { "name": "Mending Waters" },
      "0-134": { "name": "Cliff Peak" },
      "0-139": { "name": "Hruugar Ironhaunch" },
      "0-194": { "name": "Ley Line Hub (hero challenge)" }
    },
    "1015": {
      "0-243": { "name": "Strange Pillar" },
      "0-244": { "name": "Veteran Northern Shelf Elemental" },
      "0-245": { "name": "Fragrant Cactus" },
      "0-246": { "name": "Sacred Stones" },
      "0-247": { "name": "Skritt Ledge" },
      "0-248": { "name": "Fallen Asura" }
    },
    "1041": {
      "1-33": { "name": "Mushroom Grotto" },
      "1-34": { "name": "Spider Nest (hero challenge)" },
      "1-35": { "name": "Exalted Pylon" },
      "1-36": { "name": "Stavemaster Adryn's Pod" },
      "1-37": { "name": "Blademaster Diarmid's Pod" },
      "1-38": { "name": "Axemaster Hareth's Pod" },
      "1-39": { "name": "Dragon Overlook" }
    },
    "1043": {
      "1-11": { "name": "Balthazar's Statue" },
      "1-12": { "name": "Notice to Trespassers" },
      "1-13": { "name": "Burnisher Quarry (hero challenge)" },
      "1-14": { "name": "Suspicious Orichalcum" },
      "1-15": { "name": "Exalted Overlook" },
      "1-16": { "name": "Champion Tarnished Sage" },
      "1-17": { "name": "Young Mushrooms" },
      "1-18": { "name": "Mordrem Flower" },
      "1-19": { "name": "Egg Clutch" },
      "1-20": { "name": "Toxin-Cured Hog" },
      "1-21": { "name": "Ancient Golem Part" }
    },
    "1045": {
      "1-22": { "name": "Nightthistle Bloom" },
      "1-23": { "name": "Mushroom Spore Cloud" },
      "1-24": { "name": "Chak Hatchery" },
      "1-25": { "name": "Egg Clutch (Tangled Depths)" },
      "1-26": { "name": "Ancient Power Core" },
      "1-27": { "name": "Guano-Incubated Spider Eggs" },
      "1-28": { "name": "Troll Runestone" },
      "1-29": { "name": "Inquisitor's Campsite" },
      "1-30": { "name": "Newborn Mushrooms" },
      "1-31": { "name": "Jellyfish Grotto" },
      "1-32": { "name": "Gilded River" }
    },
    "1052": {
      "1-0": { "name": "Ancient Tree" },
      "1-1": { "name": "Ancient Fighting Pit" },
      "1-2": { "name": "Nightthistle Blossom" },
      "1-3": { "name": "Wyvern Nesting Grounds" },
      "1-4": { "name": "Cliffside Ruins" },
      "1-5": { "name": "Abyssal Depths" },
      "1-6": { "name": "Nuhoch Alchemical Energy" },
      "1-7": { "name": "Pact Airship Wreckage" },
      "1-8": { "name": "Security Console" },
      "1-9": { "name": "Pile of Guano" },
      "1-10": { "name": "Coztic Itzel Belongings" }
    },
    "1210": {
      "2-0": { "name": "Wind-Worn Bottle" },
      "2-1": { "name": "Veteran Confessor Opeyemi" },
      "2-2": { "name": "Abandoned Forged Ore" },
      "2-3": { "name": "Unearthed Ruins" },
      "2-4": { "name": "Branded Pyramid" }
    },
    "1211": {
      "2-5": { "name": "Branded Crystal (hero challenge)" },
      "2-6": { "name": "Veteran Jubua the Wildfire" },
      "2-7": { "name": "Dusty Bones" },
      "2-8": { "name": "Glint's Lair (hero challenge)" },
      "2-9": { "name": "Glowing Campfire" },
      "2-10": { "name": "Eternal Fire" },
      "2-11": { "name": "Veteran Yandra Stonetusk" }
    },
    "1226": {
      "2-20": { "name": "Gnarled Tree" },
      "2-21": { "name": "Shanna the Valorous" },
      "2-22": { "name": "Broken Egg" },
      "2-23": { "name": "Awakened Wanderer" },
      "2-24": { "name": "The Mouth of Torment (hero challenge)" },
      "2-25": { "name": "The Bone Palace (hero challenge)" }
    },
    "1228": {
      "2-12": { "name": "Fallen Giant" },
      "2-13": { "name": "Throne of Pellentia (hero challenge)" },
      "2-14": { "name": "Branded Relic" },
      "2-15": { "name": "Veteran Trunt" },
      "2-16": { "name": "Lohrashi the Mournful" },
      "2-17": { "name": "Forgotten Shrine" },
      "2-18": { "name": "General's Grave" },
      "2-19": { "name": "Fresh Meat" }
    },
    "1248": {
      "2-26": { "name": "Master Utku" },
      "2-27": { "name": "Hunter Glorg" },
      "2-28": { "name": "Mother Tharwa" }
    },
    "1422": {
      "3-1422-33962-102148": { "name": "Quarry Overlook" },
      "3-1422-34132-104279": { "name": "Harvest Temple Main Entrance" },
      "3-1422-34332-104188": { "name": "Harvest Complex Pavilion" },
      "3-1422-34399-102217": { "name": "Roaring Waterfall" },
      "3-1422-34441-103193": { "name": "Quarry Platform" },
      "3-1422-34931-103939": { "name": "Hatchery Play Pond" }
    },
    "1428": {
      "3-1428-29819-101109": { "name": "Tsuko Talonedge" }
    },
    "1438": {
      "3-1438-25520-100604": { "name": "Sotdae Landing Lookout" },
      "3-1438-26003-99380":  { "name": "Jade Monument (hero challenge)" },
      "3-1438-26033-99072":  { "name": "Engineer Hu" },
      "3-1438-26137-100129": { "name": "Ministry of Archives (hero challenge)" },
      "3-1438-27303-98813":  { "name": "Garden Scaffolding" },
      "3-1438-27665-98756":  { "name": "Lab District Terrace" },
      "3-1438-28273-100390": { "name": "New Kaineng City Limits" },
      "3-1438-28363-98586":  { "name": "Old Kaineng Ruins" },
      "3-1438-28631-99381":  { "name": "Veteran Purist Necromancer (hero challenge)" }
    },
    "1442": {
      "3-1442-22029-101971": { "name": "Village Overlook (Shing Jea Monastery)" },
      "3-1442-22226-102476": { "name": "Veteran Jade Bulwark" },
      "3-1442-22403-101554": { "name": "Dog Statue (hero point)" },
      "3-1442-22559-102221": { "name": "Bloom of Seitung" },
      "3-1442-22792-100671": { "name": "Haiju Hatchery" },
      "3-1442-22936-101724": { "name": "Source of the Springs" },
      "3-1442-23730-101104": { "name": "Old Bell Shrine" },
      "3-1442-23893-102167": { "name": "Cliffside Memorial Bell" },
      "3-1442-24685-102456": { "name": "Village Overlook (Eastern Wilds)" }
    },
    "1452": {
      "3-1452-29663-102964": { "name": "Speaker Headquarters" },
      "3-1452-29987-102130": { "name": "House zu Heltzer (hero challenge)" },
      "3-1452-30533-101068": { "name": "Gravestone of Lord Archek Brauer" },
      "3-1452-30944-102259": { "name": "Xunlai Jade Junkyard Overlook" },
      "3-1452-31342-103307": { "name": "Submerged Cathedral" },
      "3-1452-32803-103255": { "name": "Village Overlook (Mori Village)" }
    }
  },
  "2": {
    "38": {
      "0-223": { "name": "Krait Reliquary" },
      "0-224": { "name": "Dredge Furnace" },
      "0-225": { "name": "Harpy Nesting Grounds" },
      "0-226": { "name": "Heart of Stone" }
    },
    "95": {
      "0-218": { "name": "Skritt Shiny" },
      "0-219": { "name": "Centaur Food" },
      "0-220": { "name": "The Spider Queen" }
    },
    "96": {
      "0-213": { "name": "Skritt King (hero challenge)" },
      "0-214": { "name": "Centaur Totem" },
      "0-215": { "name": "Spider Egg Clutch" }
    },
    "1099": {
      "0-208": { "name": "Choya Stew" },
      "0-209": { "name": "Veteran Wyvern (hero challenge)" },
      "0-210": { "name": "Mysterious Energy" }
    }
  }
};

var wiki_misc_landmarks = {
  "1": {
    "27": {
      "2850": { "name": "Hall of Chains" }
    },
    "50": {
      "2344": { "name": "Lion's Arch Aerodrome" }
    },
    "1155": {
      "2970": { "name": "Lion's Arch Aerodrome" }
    },
    "1248": {
      "3053": { "name": "The Key of Ahdashim" }
    },
    "1370": {
      "3454": { "name": "Ancient Gate" }
    },
    "1428": {
      "3451": { "name": "Lyra" }
    }
  },
  "2": {}
};

var wiki_masterypoints = {
  "1": {
    "17": {
      "313": { "name": "Harathi Hinterlands Insight: Hidden Ourobon" }
    },
    "21": {
      "545": { "name": "Champions Insight: Fields of Ruin", "coord": [62019, 35250], "region": "Tundra" }
    },
    "22": {
      "320": { "name": "Fireheart Rise Insight: Cozen Desolation" },
      "537": { "name": "Champions Insight: Fireheart Rise", "coord": [59229, 25126], "region": "Tundra" }
    },
    "24": {
      "533": { "name": "Champions Insight: Gendarran Fields", "coord": [48064, 30160], "region": "Tundra" }
    },
    "25": {
      "315": { "name": "Iron Marches Insight: Sunken Halls of Clarent", "coord": [61366, 29076], "region": "Tyria" }
    },
    "26": {
      "319": { "name": "Dredgehaunt Cliffs Insight: Dostoev Sky Peak" }
    },
    "29": {
      "323": { "name": "Timberline Falls Insight: Copperhammer Mines", "coord": [53462,35257], "region": "Tyria" }
    },
    "31": {
      "536": { "name": "Champions Insight: Snowden Drifts", "coord": [54171, 29296], "region": "Tundra" }
    },
    "34": {
      "524": { "name": "Champions Insight: Caledon Forest", "coord": [42965, 33978], "region": "Tundra" }
    },
    "35": {
      "542": { "name": "Champions Insight: Metrica Province", "coord": [40300, 36736], "region": "Tundra" }
    },
    "39": {
      "314": { "name": "Mount Maelstrom Insight: Volcanic Rim", "coord": [52108, 39522], "region": "Tyria" }
    },
    "53": {
      "309": { "name": "Sparkfly Fen Insight: Shattercleft Hills" }
    },
    "54": {
      "525": { "name": "Champions Insight: Brisban Wildlands", "coord": [41183, 32058], "region": "Tundra" }
    },
    "65": {
      "325": { "name": "Malchor's Leap Insight: Scavenger's Chasm" }
    },
    "73": {
      "324": { "name": "Bloodtide Coast Insight: Bloody Bill's Base" },
      "544": { "name": "Champions Insight: Bloodtide Coast", "coord": [48741, 32617], "region": "Tundra" }
    },
    "1043": {
      "40": { "name": "Auric Basin Insight: Luminate's Throne" },
      "59": { "name": "Auric Basin Insight: The Falls" },
      "114": { "name": "Auric Basin Insight: Southwatch Creep" },
      "116": { "name": "Auric Basin Insight: Jawatl Grounds" },
      "119": { "name": "Auric Basin Insight: Lastgear Standing" },
      "120": { "name": "Auric Basin Insight: Eastwatch Bluff" },
      "137": { "name": "Auric Basin Insight: Masks of the Fallen" },
      "144": { "name": "Auric Basin Insight: Burnisher Quarry" }
    },
    "1045": {
      "8": { "name": "Tangled Depths Insight: Northern Confluence" },
      "20": { "name": "Tangled Depths Insight: Terraced Hive" },
      "46": { "name": "Tangled Depths Insight: Twisting Viaduct" },
      "61": { "name": "Tangled Depths Insight: Order of Whispers Outpost" },
      "112": { "name": "Tangled Depths Insight: Nuhoch Lane" }
    },
    "1052": {
      "3": { "name": "Verdant Brink Insight: The Corpse Grove" },
      "4": { "name": "Verdant Brink Insight: Thistlevine Ravine" },
      "9": { "name": "Verdant Brink Insight: Outside Noble Ledges" },
      "42": { "name": "Verdant Brink Insight: Heartless Pass" },
      "43": { "name": "Verdant Brink Insight: Creeping Crevasse" },
      "75": { "name": "Verdant Brink Insight: Holdfast Hollow" },
      "86": { "name": "Verdant Brink Insight: Canopy Over Pact Encampment" },
      "95": { "name": "Verdant Brink Insight: Fumerol Caves" },
      "143": { "name": "Verdant Brink Insight: Creaking Cavern" }
    },
    "1165": {
      "139": { "name": "Bloodstone Fen Insight: Fragmented Wastes" },
      "140": { "name": "Bloodstone Fen Insight: Temple of Renewal" }
    },
    "1175": {
      "285": { "name": "Ember Bay Insight: Ashen Skerries" },
      "287": { "name": "Ember Bay Insight: Caliph's Steps" }
    },
    "1178": {
      "289": { "name": "Bitterfrost Frontier Insight: The Bitter Cold" },
      "291": { "name": "Bitterfrost Frontier Insight: The Svanir Hive" },
      "293": { "name": "Bitterfrost Frontier Insight: Griffin Old Growth" }
    },
    "1185": {
      "156": { "name": "Lake Doric Insight: Watcher's Hollow" },
      "173": { "name": "Lake Doric Insight: Lakeside Bazaar" },
      "184": { "name": "Lake Doric Insight: Melandru's Flourish" },
      "187": { "name": "Lake Doric Insight: Melandru's Refuge" },
      "547": { "name": "Champions Insight: Lake Doric", "coord": [45377, 27180], "region": "Tundra" }
    },
    "1195": {
      "298": { "name": "Draconis Mons Insight: Western Boiling Sea" },
      "300": { "name": "Draconis Mons Insight: Scalding Gorge" },
      "304": { "name": "Draconis Mons Insight: Savage Rise" }
    },
    "1203": {
      "308": { "name": "Siren's Landing Insight: Lava Leap" },
      "310": { "name": "Siren's Landing Insight: Kelp Rock" },
      "312": { "name": "Siren's Landing Insight: Dwayna's Tears" },
      "316": { "name": "Siren's Landing Insight: Cliff's Edge" },
      "327": { "name": "Siren's Landing Insight: Buoyant Bough" }
    },
    "1210": {
      "333": { "name": "Pot of Soup" },
      "349": { "name": "Crystal Oasis Insight: Glint's Legacy" },
      "355": { "name": "Crystal Oasis Insight: Imed's Grotto" },
      "361": { "name": "Crystal Oasis Insight: Old Amnoon" },
      "380": { "name": "Crystal Oasis Insight: Sifuri Quicksand" },
      "386": { "name": "Crystal Oasis Insight: Sanctum of Nabkha" },
      "391": { "name": "Crystal Oasis Insight: Amnoon Bazaar" },
      "409": { "name": "Pahan" }
    },
    "1211": {
      "331": { "name": "Desert Highlands Insight: Base of the Watchtower" },
      "336": { "name": "Desert Highlands Insight: Makali Outpost" },
      "367": { "name": "Desert Highlands Insight: Above the Flats" },
      "368": { "name": "Desert Highlands Insight: Standstill Spire" },
      "370": { "name": "Desert Highlands Insight: Derelict Perch" },
      "373": { "name": "Desert Highlands Insight: Sunderlands Crater" },
      "376": { "name": "Desert Highlands Insight: Discarded Vessels" },
      "378": { "name": "Desert Highlands Insight: Giant's Bough" },
      "379": { "name": "Desert Highlands Insight: Palace of Aban" },
      "381": { "name": "Desert Highlands Insight: Brightwater Hollow" },
      "385": { "name": "Desert Highlands Insight: Kanuz Overlook" },
      "390": { "name": "Desert Highlands Insight: Overreach Spider Nest" },
      "392": { "name": "Desert Highlands Insight: The Tombs" },
      "402": { "name": "Desert Highlands Insight: Highjump Rise" },
      "414": { "name": "Desert Highlands Insight: Lifeblood Falls Grub Ledge" }
    },
    "1226": {
      "335": { "name": "Desolation Insight: Sand Jackal Leap" },
      "339": { "name": "Creator Jadi" },
      "350": { "name": "Desolation Insight: Silent Isle" },
      "359": { "name": "First Spear Dehvad" },
      "360": { "name": "Desolation Insight: Shattered Ravines" },
      "371": { "name": "Desolation Insight: The Mouth of Torment" },
      "375": { "name": "Desolation Insight: Tarstone Weeps" },
      "401": { "name": "Desolation Insight: Henge of Joko" },
      "403": { "name": "Desolation Insight: Sandfall Sanctum" },
      "405": { "name": "Desolation Insight: Arena of Vayu" }
    },
    "1228": {
      "328": { "name": "Elon Riverlands Insight: Pillars of Sovereignty" },
      "330": { "name": "Elon Riverlands Insight: Leviathan's Gullet" },
      "340": { "name": "Researcher Raizza" },
      "343": { "name": "Elon Riverlands Insight: Vulture Drifts Summit" },
      "362": { "name": "Master Sergeant Shadi" },
      "364": { "name": "Elon Riverlands Insight: Heroes' Overlook" },
      "393": { "name": "Elon Riverlands Insight: Ossa's Defeat" },
      "399": { "name": "Descension" },
      "410": { "name": "Mysteries of the Exalted" },
      "411": { "name": "Elon Riverlands Insight: Shallows of Despair" },
      "413": { "name": "Elon Riverlands Insight: Sovereign Ridge" },
      "416": { "name": "Elon Riverlands Insight: Deadhouse Vault" }
    },
    "1248": {
      "337": { "name": "Domain of Vabbi Insight: Yahnur Sandfall" },
      "354": { "name": "High Elder Kaadsseo the Wise" },
      "357": { "name": "High Elder Ziadih the Fearless" },
      "372": { "name": "High Elder Jilai the Radiant" },
      "383": { "name": "Domain of Vabbi Insight: Kodash Brazier" },
      "395": { "name": "Domain of Vabbi Insight: Zagonur Towers" },
      "396": { "name": "High Elder Yoonam the Intrepid" },
      "397": { "name": "High Elder Zomi the Accomplished" },
      "400": { "name": "High Elder Yitfei the Light" },
      "408": { "name": "High Elder Juaruadun the Flawless" },
      "415": { "name": "High Elder Kumaa the Feisty" }
    },
    "1263": {
      "419": { "name": "Istan Insight: Colossus of Palawadan" },
      "421": { "name": "Istan Insight: Pillar of the Faithless" },
      "425": { "name": "Istan Insight: The Wobbling Skies" }
    },
    "1271": {
      "426": { "name": "Sandswept Isles Insight: The Hunting Grounds" },
      "427": { "name": "Sandswept Isles Insight: Rata Primus" },
      "428": { "name": "Sandswept Isles Insight: Invariant Enclave" },
      "429": { "name": "Sandswept Isles Insight: Atholma" }
    },
    "1288": {
      "430": { "name": "Domain of Kourna Insight: Allied Encampment" },
      "432": { "name": "Domain of Kourna Insight: Dabiji Hollows" },
      "434": { "name": "Domain of Kourna Insight: Dunlon Springs" },
      "435": { "name": "Domain of Kourna Insight: Bokoss Prison Ruins" },
      "436": { "name": "Domain of Kourna Insight: Ntouka Pond" }
    },
    "1301": {
      "437": { "name": "Jahai Insight: Harpy Rock" },
      "439": { "name": "Jahai Insight: Fang of the Dragon" },
      "440": { "name": "Jahai Insight: Scar Overlook" },
      "443": { "name": "Jahai Insight: Talon of the Dragon" },
      "444": { "name": "Jahai Insight: Crescent's Prosperity" }
    },
    "1310": {
      "447": { "name": "Thunderhead Peaks Insight: Brechnar's Gauntlet" },
      "448": { "name": "Thunderhead Peaks Insight: Ironhammer Crossing" },
      "449": { "name": "Thunderhead Peaks Insight: Shattered Bay" },
      "451": { "name": "Thunderhead Peaks Insight: Sorrow's Cave" },
      "455": { "name": "Niles" },
      "538": { "name": "Champions Insight: Champions Insight: Thunderhead Keep", "coord": [56570, 35154], "region": "Tundra" }
    },
    "1317": {
      "456": { "name": "Dragonfall Insight: Scorched Cliffs Treetop" },
      "459": { "name": "Dragonfall Insight: Above the Umbral Battlegrounds" },
      "460": { "name": "Dragonfall Insight: Grenth's Teeth Coastline" },
      "461": { "name": "Dragonfall Insight: Gnarlgrove Overlook" },
      "462": { "name": "Dragonfall Insight: Dragon's Snare" },
      "463": { "name": "Dragonfall Insight: Skyscale Eyrie" }
    },
    "1330": {
      "484": { "name": "Grothmar Valley Insight: Shimmering Spire" },
      "491": { "name": "Grothmar Valley Insight: Branching Out" }
    },
    "1343": {
      "471": { "name": "Bjora Marches Insight: Ravenfrost Caverns", "coord": [58509, 18771] },
      "472": { "name": "Bjora Marches Insight: Aberrant Forest", "coord": [57809, 18844] },
      "474": { "name": "Bjora Marches Insight: Fallen Mountain Overlook", "coord": [58986, 17810] },
      "476": { "name": "Bjora Marches Insight: Asgeir's Legacy", "coord": [57625, 17241] },
      "485": { "name": "Bjora Marches Insight: Frozen Waterfall", "coord": [56667, 17062] },
      "490": { "name": "Bjora Marches Insight: Drakkar's Lair", "coord": [55457, 18694] },
      "492": { "name": "Bjora Marches Insight: The Lost Kodan Ship", "coord": [56371, 17974] }
    },
    "1371": {
      "493": { "name": "Drizzlewood Coast Insight: Camp Apex", "coord": [50948, 21789] },
      "502": { "name": "Drizzlewood Coast Insight: Waterfall's Nexus", "coord": [50937, 20892] },
      "503": { "name": "Drizzlewood Coast Insight: Vulpine Road", "coord": [51284, 20546] },
      "504": { "name": "Drizzlewood Coast Insight: Meditative Falls", "coord": [50533, 21082] },
      "510": { "name": "Drizzlewood Coast Insight: Camp Cliffs", "coord": [51709, 20047] },
      "512": { "name": "Drizzlewood Coast Insight: Falls", "coord": [50418, 19608] },
      "514": { "name": "Drizzlewood Coast Insight: Northern Camp", "coord": [51652, 19119] },
      "520": { "name": "Drizzlewood Coast Insight: Frost Citadel", "coord": [50779, 18351] },
      "521": { "name": "Drizzlewood Coast Insight: The Frostveins", "coord": [51434, 18387] }
    },
    "1422": {
      "570": { "name": "Dragon's End Insight: Shrine Rooftop" },
      "600": { "name": "Dragon's End Insight: Warehouse" },
      "618": { "name": "Dragon's End Insight: Brotherhood Rooftop" },
      "626": { "name": "Dragon's End Insight: Quarry Crane" },
      "632": { "name": "Dragon's End Insight: Jade Waves" },
      "641": { "name": "Thirsty Tourist" }
    },
    "1438": {
      "549": { "name": "New Kaineng Insight: Lutgardis Market" },
      "552": { "name": "New Kaineng Insight: Jade Monument" },
      "565": { "name": "New Kaineng Insight: Naksi Bay Ruins" },
      "575": { "name": "New Kaineng Insight: Ancient Vault" },
      "576": { "name": "New Kaineng Insight: South Old Kaineng Ruins" },
      "588": { "name": "New Kaineng Insight: Ministry Ward Platform" },
      "598": { "name": "New Kaineng Insight: Lutgardis Plaza" },
      "602": { "name": "New Kaineng Insight: Pool of Tranquility" },
      "636": { "name": "New Kaineng Insight: Salvage Yard" },
      "643": { "name": "New Kaineng Insight: Lutgardis Plaza Rooftop Garden" },
      "655": { "name": "New Kaineng Insight: Petrified Shipping Docks" },
      "656": { "name": "New Kaineng Insight: Ministry Ward Waypoint" },
      "660": { "name": "New Kaineng Insight: Shipwreck Graveyard" }
    },
    "1442": {
      "554": { "name": "Seitung Province Insight: Naga Island" },
      "572": { "name": "Seitung Province Insight: Derelict Temple" },
      "573": { "name": "Seitung Province Insight: Camp Peaks" },
      "574": { "name": "Seitung Province Insight: Valor Shrine" },
      "606": { "name": "Seitung Province Insight: Abandoned Temple Rooftop" },
      "608": { "name": "Seitung Province Insight: Northern Cherry Blossom" },
      "613": { "name": "Seitung Province Insight: Affluent House" },
      "628": { "name": "Seitung Province Insight: Zen Daijun Cat Island" },
      "639": { "name": "Seitung Province Insight: Shore Peaks" },
      "645": { "name": "Seitung Province Insight: Dreary Caves" },
      "648": { "name": "Seitung Province Insight: Monastery Temple" },
      "649": { "name": "Seitung Province Insight: Zen Daijun Temple" },
      "652": { "name": "Seitung Province Insight: Crystal Cave" },
      "659": { "name": "Seitung Province Insight: Airship Wreckage" }
    },
    "1452": {
      "559": { "name": "Echovald Wilds Insight: Wrightstone Chantry" },
      "560": { "name": "Echovald Wilds Insight: Mori Village" },
      "566": { "name": "Echovald Wilds Insight: Aspenwood Passageway" },
      "590": { "name": "Echovald Wilds Insight: Ferndale Stairs" },
      "609": { "name": "Echovald Wilds Insight: Fort Aspenwood" },
      "619": { "name": "Echovald Wilds Insight: Ancient Archives" },
      "627": { "name": "Echovald Wilds Insight: Altrumm Mines Catacomb" },
      "642": { "name": "Echovald Wilds Insight: Qinkaishi Basin" },
      "647": { "name": "Echovald Wilds Insight: Cemetery Pond" },
      "650": { "name": "Echovald Wilds Insight: House zu Heltzer" },
      "654": { "name": "Echovald Wilds Insight: Temple of the Dredge" },
      "657": { "name": "Echovald Wilds Insight: Saprophyte's Pond" }
    },
    "1509": {
      "673": { "name": "Tower Insight: A Bird's Eye View" },
      "739": { "name": "Tower Insight: The Apex" }
    },
    "1510": {
      "670": { "name": "Skywatch Archipelago Insight: Rata Novus Outcrop" },
      "682": { "name": "Skywatch Archipelago Insight: Skyscale Sanctuary" },
      "684": { "name": "Skywatch Archipelago Insight: War God's Spire" },
      "696": { "name": "Skywatch Archipelago Insight: Beacon of Ages" },
      "701": { "name": "Skywatch Archipelago Insight: The Fractured Tower" },
      "704": { "name": "Skywatch Archipelago Insight: Southern Clearing" },
      "722": { "name": "Skywatch Archipelago Insight: MinSec Server Room" },
      "724": { "name": "Skywatch Archipelago Insight: Rata Novus Foundations" },
      "725": { "name": "Skywatch Archipelago Insight: Above the Jungle" },
      "733": { "name": "Skywatch Archipelago Insight: Under the Dunes" },
      "734": { "name": "Skywatch Archipelago Insight: Droknar's Mines" }
    },
    "1517": {
      "664": { "name": "Amnytas Insight: Windy Bluff" },
      "668": { "name": "Amnytas Insight: The Debate Hall" },
      "692": { "name": "Amnytas Insight: Celestial Pilaster" },
      "695": { "name": "Amnytas Insight: Balanced Perspective" },
      "711": { "name": "Amnytas Insight: Caveside Lookout" },
      "715": { "name": "Amnytas Insight: Obscured by the Clouds" },
      "716": { "name": "Amnytas Insight: Bastion Shallows" },
      "719": { "name": "Amnytas Insight: The Arboretum" },
      "732": { "name": "Amnytas Insight: The Plaza of Wisdom" }
    },
    "1526": {
      "663": { "name": "Inner Nayos Insight: Deep Falls" },
      "665": { "name": "Inner Nayos Insight: Memory's Hollow" },
      "736": { "name": "Inner Nayos Insight: Mourning's Shade" },
      "738": { "name": "Inner Nayos Insight: Southern Extractor" },
      "744": { "name": "Inner Nayos Insight: Heitor's Gate" },
      "742": { "name": "Inner Nayos Insight: High-Elevation Skyscale Nest" },
      "745": { "name": "Inner Nayos Insight: Branch Vantage Point" },
      "748": { "name": "Inner Nayos Insight: Lost Altar" },
      "752": { "name": "Inner Nayos Insight: Abyssal Edge" }
    }
  },
  "2": {}
};

var wiki_jumpingpuzzles = {
  "1": {
    "15": {
      "1-1": { "name": "Demongrub Pits", "link": "Demongrub Pits (jumping puzzle)", "coord": [45966, 30066] }
    },
    "17": {
      "1-2": { "name": "Fawcett's Bounty", "coord": [47105, 26040] }
    },
    "19": {
      "1-3": { "name": "Loreclaw Expanse", "link": "Loreclaw Expanse (jumping puzzle)", "coord": [61209, 31900] }
    },
    "20": {
      "1-4": { "name": "Behem Gauntlet", "link": "Behem Gauntlet (jumping puzzle)", "coord": [63867, 31585] },
      "1-5": { "name": "Craze's Folly", "link": "Craze's Folly (jumping puzzle)", "coord": [63749, 28842] }
    },
    "21": {
      "1-6": { "name": "Branded Mine", "coord": [61729, 33222] }
    },
    "22": {
      "1-7": { "name": "Pig Iron Quarry", "coord": [58757, 27102] }
    },
    "23": {
      "1-8": { "name": "The Collapsed Observatory", "coord": [45552, 32310] }
    },
    "24": {
      "1-9": { "name": "Swashbuckler's Cove", "coord": [49286, 30596] },
      "1-10": { "name": "Not So Secret", "coord": [48151, 30661] }
    },
    "25": {
      "1-11": { "name": "Chaos Crystal Cavern", "coord": [60158, 29456] }
    },
    "26": {
      "1-12": { "name": "Tribulation Caverns", "coord": [52460, 34367] },
      "1-13": { "name": "Tribulation Rift Scaffolding", "coord": [52588, 34349] }
    },
    "27": {
      "1-14": { "name": "Griffonrook Run", "link": "Griffonrook Run (jumping puzzle)", "coord": [50856, 33507] }
    },
    "28": {
      "1-15": { "name": "Shamans Rookery", "coord": [54811, 30007] }
    },
    "29": {
      "1-16": { "name": "Coddler's Cove", "coord": [53430, 37590] },
      "1-17": { "name": "Only Zuhl", "coord": [53825, 35143] }
    },
    "30": {
      "1-18": { "name": "Shattered Ice Ruins", "coord": [54849, 25525] }
    },
    "31": {
      "1-19": { "name": "King Jalis's Refuge", "link": "King Jalis's Refuge (jumping puzzle)", "coord": [54296, 28630] }
    },
    "32": {
      "1-20": { "name": "Crimson Plateau", "coord": [58952, 29457] },
      "1-21": { "name": "Grendich Gamble", "coord": [57901, 28631] },
      "1-22": { "name": "Wall Breach Blitz", "coord": [58299, 29788] }
    },
    "34": {
      "1-23": { "name": "Dark Reverie", "coord": [43677, 35497] },
      "1-24": { "name": "Morgan's Leap", "coord": [43791, 35738] },
      "1-25": { "name": "Spekks's Laboratory", "coord": [42301, 34988] },
      "1-26": { "name": "Spelunker's Delve", "coord": [43394, 36407] }
    },
    "35": {
      "1-27": { "name": "Goemm's Lab", "coord": [42003, 35329] }
    },
    "39": {
      "1-28": { "name": "Conundrum Cubed", "coord": [50722, 38019] },
      "1-29": { "name": "Hidden Garden", "coord": [54243, 38232] }
    },
    "50": {
      "1-30": { "name": "Troll's Revenge", "coord": [49377, 31509] },
      "1-31": { "name": "Urmaug's Secret", "coord": [50284, 31043] },
      "1-32": { "name": "Weyandt's Revenge", "coord": [50100, 31994] }
    },
    "51": {
      "1-33": { "name": "Vizier's Tower", "coord": [49118, 40851] }
    },
    "53": {
      "1-34": { "name": "Hexfoundry Unhinged", "coord": [50343, 38362] },
      "1-35": { "name": "Verarium Delves", "link": "Verarium Delves (jumping puzzle)", "coord": [48323, 36577] }
    },
    "62": {
      "1-36": { "name": "Buried Archives", "coord": [43843, 45383] }
    },
    "65": {
      "1-37": { "name": "Antre of Adjournment", "coord": [46380, 41193] },
      "1-38": { "name": "Scavenger's Chasm", "coord": [46388, 41440] }
    },
    "73": {
      "1-39": { "name": "Professor Portmatt's Lab", "coord": [48488, 32808] }
    },
    "873": {
      "1-40": { "name": "Skipping Stones", "coord": [45545, 35760] },
      "1-41": { "name": "Under New Management", "coord": [46651, 36802] }
    },
    "988": {
      "1-42": { "name": "Prospect Valley Crash Site", "coord": [38103, 32974] }
    },
    "1015": {
      "1-43": { "name": "Drydock Scratch", "coord": [38032, 31354] }
    },
    "1175": {
      "1-44": { "name": "Skip up the Volcano", "coord": [38380, 45486] }
    },
    "1185": {
      "1-45": { "name": "Noran's Safe Room", "coord": [45188, 25652] }
    },
    "1195": {
      "1-46": { "name": "Searing Ascent", "link": "Searing Ascent (jumping puzzle)", "coord": [36618, 41640] }
    },
    "1203": {
      "1-47": { "name": "Abaddon's Ascent", "coord": [49613, 41882] }
    },
    "1330": {
      "1-48": { "name": "Gauntlet of the Khan-Ur", "coord": [61624, 17913] },
      "1-49": { "name": "Flame Legion Camp", "link": "Flame Legion Camp (jumping puzzle)", "coord": [60901, 18379] }
    },
    "1438": {
      "1-50": { "name": "Wind through the Walls", "coord": [28471, 98214] }
    },
    "1442": {
      "1-51": { "name": "Trials of the Tengu", "coord": [22219, 101607] }
    },
    "1483": {
      "1-31": { "name": "Urmaug's Secret", "coord": [50284, 31043] },
      "1-52": { "name": "Troll's End", "coord": [49074, 30992] }
    }
  },
  "2": {
    "899": {
      "2-1": { "name": "Obsidian Sanctum", "coord": [44531, 30026] }
    },
    "1315": {
      "2-2": { "name": "Armistice Bastion", "link": "Armistice Bastion (jumping puzzle)", "coord": [14722, 9332] }
    }
  }
};

var wiki_adventures = {
  "1": {
    "23": {
      "1-1": { "name": "Roller Beetle Time Trial: Kessex Corner", "coord": [44673.8, 32408.3] }
    },
    "24": {
      "1-2": { "name": "Roller Beetle Time Trial: Lakeside Loop", "coord": [48761.9, 28851] }
    },
    "31": {
      "1-3": { "name": "Roller Beetle Time Trial: Jormag's End", "coord": [52899.9, 28791.8] }
    },
    "32": {
      "1-4": { "name": "Roller Beetle Time Trial: Ghostfire Run", "coord": [57889.1, 29670.7] }
    },
    "39": {
      "1-5": { "name": "Roller Beetle Time Trial: Infernal Leap", "coord": [52873.8, 39942] }
    },
    "54": {
      "1-6": { "name": "Roller Beetle Time Trial: Tropic Valley Raceway", "coord": [38938.1, 31625] }
    },
    "1043": {
      "1-7": { "name": "The Floor Is Lava?", "coord": [33378.4, 33075.3] },
      "1-8": { "name": "On Wings of Gold", "coord": [34597.9, 33772.4] },
      "1-9": { "name": "Sanctum Scramble", "coord": [34530.7, 34411] },
      "1-10": { "name": "Fallen Masks", "coord": [33977.7, 33476.5] },
      "1-11": { "name": "A Fungus Among Us", "coord": [33786.4, 34757.7] }
    },
    "1045": {
      "1-12": { "name": "The Ley-Line Run", "coord": [36257.2, 35614.4] },
      "1-13": { "name": "Haywire Punch-o-Matic Battle", "coord": [37261.2, 34937.2] },
      "1-14": { "name": "Beetle Feast", "coord": [37316.5, 34114.2] },
      "1-15": { "name": "Drone Race", "coord": [38159.8, 35845.1] },
      "1-16": { "name": "Scrap Rifle Field Test", "coord": [38170.6, 35301.5] }
    },
    "1052": {
      "1-17": { "name": "Bugs in the Branches", "coord": [36450, 31308.6] },
      "1-18": { "name": "Flying Circus", "coord": [34297.2, 31212.1] },
      "1-19": { "name": "Salvage Pit", "coord": [35906.9, 32351.9] },
      "1-20": { "name": "Shooting Gallery", "coord": [34807.9, 32357.8] },
      "1-21": { "name": "Tendril Torchers", "coord": [36433.6, 32107.2] }
    },
    "1210": {
      "1-22": { "name": "Refugee Supply Run", "coord": [58968.5, 44151.7] },
      "1-23": { "name": "Crystal Oasis Griffon Expert", "coord": [61100.2, 43385.8] },
      "1-24": { "name": "Crystal Oasis Griffon Master", "coord": [57981.3, 42808.9] }
    },
    "1211": {
      "1-25": { "name": "Cavalier Express Parcel Run", "coord": [60187.1, 41705.3] },
      "1-26": { "name": "Highlands Griffon Expert", "coord": [59130.5, 41120.3] },
      "1-27": { "name": "Highlands Griffon Master", "coord": [57746.7, 40244] }
    },
    "1226": {
      "1-28": { "name": "Shadows Intel", "coord": [60753.2, 51186.2] },
      "1-29": { "name": "Desolation Griffon Expert", "coord": [60548.9, 51030.8] },
      "1-30": { "name": "Desolation Griffon Master", "coord": [59012.1, 51595.6] }
    },
    "1228": {
      "1-31": { "name": "Skimshallow Cove Supply Run", "coord": [58943.9, 46709.1] },
      "1-32": { "name": "Riverlands Griffon Expert", "coord": [59714.9, 46565.1] },
      "1-33": { "name": "Riverlands Griffon Master", "coord": [60810, 47338.1] }
    },
    "1248": {
      "1-34": { "name": "Vehjin Noble Necessities Run", "coord": [64209.3, 53373] },
      "1-35": { "name": "Necropolis Embalming Supply Run", "coord": [64752, 54797.9] },
      "1-36": { "name": "Vehtendi School Supply Run", "coord": [66399.2, 55041.8] },
      "1-37": { "name": "Garden Wine and Cheese Run", "coord": [65176.5, 53200.5] },
      "1-38": { "name": "Vabbian Griffon Expert", "coord": [66772.8, 54394.2] },
      "1-39": { "name": "Vabbian Griffon Master", "coord": [66678.8, 53542.3] }
    },
    "1263": {
      "1-40": { "name": "Ancient Weapons", "coord": [55888.2, 60921.5] },
      "1-41": { "name": "Istan Griffon Master", "coord": [56362.5, 60629.1] },
      "1-42": { "name": "Istan Griffon Expert", "coord": [57034.3, 61895.7] }
    },
    "1271": {
      "1-43": { "name": "Crystal Corral", "coord": [52803.7, 58137.6] },
      "1-44": { "name": "Sandswept Isles Griffon Expert", "coord": [54361.9, 57944.1] }
    },
    "1288": {
      "1-45": { "name": "Roller Beetle Training", "coord": [64805.6, 61293.8] },
      "1-46": { "name": "Domain of Kourna Griffon Expert", "coord": [64887, 59703.4] },
      "1-47": { "name": "Domain of Kourna Griffon Master", "coord": [65751, 61007.2] }
    },
    "1301": {
      "1-48": { "name": "Run Around for No Reason", "coord": [65562.4, 57540.3] },
      "1-49": { "name": "Jahai Bluffs Griffon Expert", "coord": [66647, 59358.4] },
      "1-50": { "name": "Jahai Bluffs Griffon Master", "coord": [66337, 57832.2] }
    },
    "1310": {
      "1-51": { "name": "Thunderhead Keep Volatile Delivery", "coord": [56777.4, 37649.5] },
      "1-52": { "name": "Ice Floe Magnet Run", "coord": [56030.4, 38416.9] }
    },
    "1330": {
      "1-53": { "name": "Grothmar Valley Skyscale Trial", "coord": [62284.4, 19100.8] },
      "1-54": { "name": "Time Trial: Grothmar Crater Circuit", "coord": [62019.3, 19215.1] },
      "1-55": { "name": "Time Trial: Grothmar Grand Tour", "coord": [61774.7, 18535.6] },
      "1-56": { "name": "Ash Training Course", "coord": [61917.4, 18901.9] }
    },
    "1371": {
      "1-57": { "name": "Arena of the Wolverine", "coord": [51757.2, 19485.1] },
      "1-58": { "name": "Flight of the Eagle Spirit", "coord": [51899.7, 19052.3] },
      "1-59": { "name": "The Ox's Yoke", "coord": [50674.6, 19308.4] }
    },
    "1438": {
      "1-60": { "name": "Jade Bot Rally—Kaineng", "coord": [25941.9, 98580.7] },
      "1-61": { "name": "Swift Skiffs—Kaineng", "coord": [26464.9, 98981.7] }
    },
    "1442": {
      "1-62": { "name": "Siege Stampede—Seitung", "coord": [24590.9, 102461.0] },
      "1-63": { "name": "Swift Skiffs—Seitung", "coord": [22691.9, 101451.0] }
    },
    "1452": {
      "1-64": { "name": "Jade Bot Rally—Echovald", "coord": [32533.9, 103160.4] },
      "1-65": { "name": "Siege Stampede—Echovald", "coord": [31745.9, 101146.4] }
    },
    "1490": {
      "1-66": { "name": "Jade Bot Rally—Gyala Delve", "coord": [37814.9, 103146.7] },
      "1-67": { "name": "Rolling into the Deep", "coord": [37809.9, 100925.7] },
      "1-68": { "name": "Siege Stampede—Gyala Delve", "coord": [37073.9, 103242.7] },
      "1-69": { "name": "Silent Sands", "coord": [38343.9, 102195.2] }
    },
    "1510": {
      "1-70": { "name": "Skyscale Target Practice in Skywatch Archipelago", "coord": [26649.5, 24418.4] }
    },
    "1509": {
      "1-71": { "name": "Wizard's Tower: Gauntlet Challenge", "coord": [23903.6, 22565.4] },
      "1-72": { "name": "Skyscale Target Practice in the Wizard's Tower", "coord": [24357.1, 22158.1] },
      "1-73": { "name": "Wizard's Tower: Fly by Night", "coord": [24112.4, 22526.5] }
    }
  },
  "2": {}
};
/* </nowiki> */