From 0e7959a2850a27188705db1d2c11376ae0482f0e Mon Sep 17 00:00:00 2001 From: Benjamin K <53038537+treee111@users.noreply.github.com> Date: Thu, 9 Mar 2023 06:14:51 +0100 Subject: [PATCH] [BREAKING] X/Y input via geofabrik .json + only support processing maps via geofabrik .json, delete `wahoomc/resources/json/` files, constants and related coding (#183) * only read geofabrik file once + make "global" variable * x/y coordinates working solution lines 156-167 + 370-382 in geofabrik might not be needed / to be discussed * unittest * translate to and set geofabrik id_no if found * reduce complexity - reduce methods in geofabrik.py by using GeofabrikJson Ckass - add geometry to geofabrik_overview dict + getter * mode in Geofabrik class, get unittests to work again - calc. all x/y tiles in one run - identical to country * Geofabrik as interface and two classes * cut geofabrik.py into functions, detailled unittests * pylint and vulture findings + delete one dir more * delete existing .json files implementation + unittests for retrieving tiles some unittests did make sense to do them via geofabrik * remove geofabrik_tiles input argument for CLI and UI * clean up launch configuration, comments * PR review findings * files of unittest run on macOS for malta 2. tile (geofabrik) BREAKING CHANGE: Processing is now only based on Geofabrik .json file which is downloaded both for country and X/Y input. The static country .json files and the whole implementation has been removed. `-gt` input argument was also removed because there is only one processing method implemented. Input should now be in Geofabrik style. The hardcoded translation to geofabrik countries has been removed. The size of generated maps for X/Y coordinates should remain exactly the same as before. The size of generated maps for countries should roughly be the same as before. --- .vscode/launch.json | 79 +- tests/resources/macos/137/100.map | Bin 0 -> 20545 bytes tests/resources/macos/137/100.map.lzma | Bin 0 -> 14793 bytes tests/resources/macos/137/100.map.lzma.17 | 0 tests/resources/macos/137/100/land.prj | 1 + tests/resources/macos/137/100/land.shp | Bin 0 -> 68476 bytes tests/resources/macos/137/100/land.shx | Bin 0 -> 236 bytes tests/resources/macos/137/100/land1.osm | 8516 + tests/resources/macos/137/100/merged.osm.pbf | Bin 0 -> 322379 bytes tests/resources/macos/137/100/sea.osm | 17 + .../macos/137/100/split-malta-names.osm.pbf | Bin 0 -> 351480 bytes .../macos/137/100/split-malta.osm.pbf | Bin 0 -> 8336 bytes tests/test_constants_geofabrik.py | 22 +- tests/test_generated_files.py | 2 + tests/test_geofabrik.py | 111 +- tests/test_osm_maps.py | 211 +- wahoomc/constants.py | 65 - wahoomc/constants_functions.py | 34 - wahoomc/geofabrik.py | 523 +- wahoomc/geofabrik_json.py | 20 +- wahoomc/input.py | 26 +- wahoomc/osm_maps_functions.py | 80 +- wahoomc/resources/json/africa/algeria.json | 1806 - wahoomc/resources/json/africa/angola.json | 903 - wahoomc/resources/json/africa/benin.json | 141 - wahoomc/resources/json/africa/botswana.json | 488 - .../resources/json/africa/burkina_faso.json | 293 - wahoomc/resources/json/africa/burundi.json | 82 - wahoomc/resources/json/africa/cameroon.json | 435 - .../resources/json/africa/canary_islands.json | 79 - wahoomc/resources/json/africa/cape_verde.json | 79 - .../json/africa/central_african_republic.json | 513 - wahoomc/resources/json/africa/chad.json | 958 - wahoomc/resources/json/africa/comoros.json | 24 - .../resources/json/africa/cote_d_ivoire.json | 313 - .../democratic_republic_of_the_congo.json | 1499 - wahoomc/resources/json/africa/djibouti.json | 67 - wahoomc/resources/json/africa/egypt.json | 789 - .../json/africa/equatorial_guinea.json | 131 - wahoomc/resources/json/africa/eritrea.json | 199 - wahoomc/resources/json/africa/ethiopia.json | 834 - .../africa/french_southern_territories.json | 178 - wahoomc/resources/json/africa/gabon.json | 227 - wahoomc/resources/json/africa/gambia.json | 41 - wahoomc/resources/json/africa/ghana.json | 220 - .../resources/json/africa/guinea-bissau.json | 90 - wahoomc/resources/json/africa/guinea.json | 263 - wahoomc/resources/json/africa/kenya.json | 471 - wahoomc/resources/json/africa/lesotho.json | 50 - wahoomc/resources/json/africa/liberia.json | 148 - wahoomc/resources/json/africa/libya.json | 1222 - wahoomc/resources/json/africa/madagascar.json | 475 - wahoomc/resources/json/africa/malawi.json | 197 - wahoomc/resources/json/africa/mali.json | 995 - wahoomc/resources/json/africa/mauritania.json | 825 - wahoomc/resources/json/africa/mauritius.json | 57 - wahoomc/resources/json/africa/mayotte.json | 13 - wahoomc/resources/json/africa/morocco.json | 455 - wahoomc/resources/json/africa/mozambique.json | 698 - wahoomc/resources/json/africa/namibia.json | 709 - wahoomc/resources/json/africa/niger.json | 863 - wahoomc/resources/json/africa/nigeria.json | 641 - .../json/africa/republic_of_congo.json | 353 - wahoomc/resources/json/africa/reunion.json | 13 - wahoomc/resources/json/africa/rwanda.json | 70 - .../resources/json/africa/saint_helena.json | 57 - .../json/africa/sao_tome_and_principe.json | 46 - wahoomc/resources/json/africa/senegal.json | 210 - wahoomc/resources/json/africa/seychelles.json | 156 - .../resources/json/africa/sierra_leone.json | 111 - wahoomc/resources/json/africa/somalia.json | 542 - .../resources/json/africa/south_africa.json | 1084 - wahoomc/resources/json/africa/sudan.json | 1604 - wahoomc/resources/json/africa/swaziland.json | 52 - wahoomc/resources/json/africa/tanzania.json | 691 - wahoomc/resources/json/africa/togo.json | 105 - wahoomc/resources/json/africa/tunisia.json | 260 - wahoomc/resources/json/africa/uganda.json | 211 - .../resources/json/africa/western_sahara.json | 284 - wahoomc/resources/json/africa/zambia.json | 610 - wahoomc/resources/json/africa/zimbabwe.json | 384 - .../resources/json/antarctica/antarctica.json | 137139 --------------- .../json/antarctica/bouvet_island.json | 13 - .../heard_island_and_mcdonald_islands.json | 24 - ...eorgia_and_the_south_sandwich_islands.json | 145 - wahoomc/resources/json/asia/afghanistan.json | 687 - wahoomc/resources/json/asia/armenia.json | 119 - wahoomc/resources/json/asia/azerbaijan.json | 198 - wahoomc/resources/json/asia/bahrain.json | 52 - wahoomc/resources/json/asia/bangladesh.json | 208 - wahoomc/resources/json/asia/bhutan.json | 101 - .../asia/british_indian_ocean_territory.json | 46 - wahoomc/resources/json/asia/brunei.json | 40 - wahoomc/resources/json/asia/cambodia.json | 195 - wahoomc/resources/json/asia/china.json | 8176 - .../resources/json/asia/christmas_island.json | 13 - .../resources/json/asia/cocos_islands.json | 13 - wahoomc/resources/json/asia/cyprus.json | 47 - wahoomc/resources/json/asia/east_timor.json | 62 - wahoomc/resources/json/asia/hong_kong.json | 27 - wahoomc/resources/json/asia/india.json | 2574 - wahoomc/resources/json/asia/indonesia.json | 2644 - wahoomc/resources/json/asia/iran.json | 1453 - wahoomc/resources/json/asia/iraq.json | 489 - wahoomc/resources/json/asia/israel.json | 122 - wahoomc/resources/json/asia/japan.json | 975 - wahoomc/resources/json/asia/jordan.json | 169 - wahoomc/resources/json/asia/kazakhstan.json | 3566 - wahoomc/resources/json/asia/kuwait.json | 52 - wahoomc/resources/json/asia/kyrgyzstan.json | 348 - wahoomc/resources/json/asia/laos.json | 324 - wahoomc/resources/json/asia/lebanon.json | 79 - wahoomc/resources/json/asia/macao.json | 15 - wahoomc/resources/json/asia/malaysia.json | 452 - wahoomc/resources/json/asia/maldives.json | 146 - wahoomc/resources/json/asia/mongolia.json | 2040 - wahoomc/resources/json/asia/myanmar.json | 714 - wahoomc/resources/json/asia/nepal.json | 209 - wahoomc/resources/json/asia/north_korea.json | 247 - wahoomc/resources/json/asia/oman.json | 350 - wahoomc/resources/json/asia/pakistan.json | 920 - wahoomc/resources/json/asia/palestina.json | 56 - .../resources/json/asia/paracel_islands.json | 35 - wahoomc/resources/json/asia/philippines.json | 635 - wahoomc/resources/json/asia/qatar.json | 53 - wahoomc/resources/json/asia/saudi_arabia.json | 1480 - wahoomc/resources/json/asia/singapore.json | 52 - wahoomc/resources/json/asia/south_korea.json | 228 - .../resources/json/asia/spratly_islands.json | 35 - wahoomc/resources/json/asia/sri_lanka.json | 114 - wahoomc/resources/json/asia/syria.json | 272 - wahoomc/resources/json/asia/taiwan.json | 149 - wahoomc/resources/json/asia/tajikistan.json | 279 - wahoomc/resources/json/asia/thailand.json | 605 - wahoomc/resources/json/asia/turkey.json | 918 - wahoomc/resources/json/asia/turkmenistan.json | 634 - .../json/asia/united_arab_emirates.json | 162 - wahoomc/resources/json/asia/uzbekistan.json | 722 - wahoomc/resources/json/asia/vietnam.json | 463 - wahoomc/resources/json/asia/yemen.json | 432 - wahoomc/resources/json/europe/albania.json | 92 - wahoomc/resources/json/europe/andorra.json | 15 - wahoomc/resources/json/europe/austria.json | 242 - wahoomc/resources/json/europe/belarus.json | 506 - wahoomc/resources/json/europe/belgium.json | 128 - .../json/europe/bosnia_and_herzegovina.json | 142 - wahoomc/resources/json/europe/bulgaria.json | 210 - wahoomc/resources/json/europe/croatia.json | 225 - .../resources/json/europe/czech_republic.json | 235 - wahoomc/resources/json/europe/denmark.json | 220 - wahoomc/resources/json/europe/estonia.json | 212 - .../resources/json/europe/faroe_islands.json | 57 - wahoomc/resources/json/europe/finland.json | 1267 - wahoomc/resources/json/europe/france.json | 821 - wahoomc/resources/json/europe/germany.json | 669 - wahoomc/resources/json/europe/gibraltar.json | 15 - wahoomc/resources/json/europe/greece.json | 439 - wahoomc/resources/json/europe/guernsey.json | 15 - wahoomc/resources/json/europe/hungary.json | 229 - wahoomc/resources/json/europe/iceland.json | 497 - wahoomc/resources/json/europe/ireland.json | 240 - .../resources/json/europe/isle_of_man.json | 26 - wahoomc/resources/json/europe/italy.json | 646 - wahoomc/resources/json/europe/jersey.json | 15 - wahoomc/resources/json/europe/latvia.json | 266 - .../resources/json/europe/liechtenstein.json | 16 - wahoomc/resources/json/europe/lithuania.json | 209 - wahoomc/resources/json/europe/luxembourg.json | 29 - wahoomc/resources/json/europe/macedonia.json | 105 - wahoomc/resources/json/europe/malta.json | 13 - wahoomc/resources/json/europe/moldova.json | 138 - wahoomc/resources/json/europe/monaco.json | 15 - wahoomc/resources/json/europe/montenegro.json | 67 - .../resources/json/europe/netherlands.json | 144 - wahoomc/resources/json/europe/norway.json | 1782 - wahoomc/resources/json/europe/poland.json | 563 - wahoomc/resources/json/europe/portugal.json | 310 - wahoomc/resources/json/europe/romania.json | 421 - wahoomc/resources/json/europe/russia.json | 44649 ----- wahoomc/resources/json/europe/san_marino.json | 14 - wahoomc/resources/json/europe/serbia.json | 217 - wahoomc/resources/json/europe/slovakia.json | 154 - wahoomc/resources/json/europe/slovenia.json | 79 - wahoomc/resources/json/europe/spain.json | 744 - .../json/europe/svalbard_and_jan_mayen.json | 1688 - wahoomc/resources/json/europe/sweden.json | 1491 - .../resources/json/europe/switzerland.json | 129 - wahoomc/resources/json/europe/ukraine.json | 1029 - .../resources/json/europe/united_kingdom.json | 806 - .../resources/json/europe/vatican_city.json | 14 - .../resources/json/europe/\303\245land.json" | 73 - .../json/north_america/anguilla.json | 29 - .../north_america/antigua_and_barbuda.json | 28 - .../resources/json/north_america/bahamas.json | 205 - .../json/north_america/barbados.json | 13 - .../resources/json/north_america/belize.json | 76 - .../resources/json/north_america/bermuda.json | 24 - .../north_america/british_virgin_islands.json | 30 - .../resources/json/north_america/canada.json | 30690 ---- .../json/north_america/cayman_islands.json | 35 - .../json/north_america/costa_rica.json | 130 - .../resources/json/north_america/cuba.json | 224 - .../json/north_america/dominica.json | 27 - .../north_america/dominican_republic.json | 95 - .../json/north_america/el_salvador.json | 75 - .../json/north_america/greenland.json | 18471 -- .../resources/json/north_america/grenada.json | 15 - .../json/north_america/guadeloupe.json | 14 - .../json/north_america/guatemala.json | 138 - .../resources/json/north_america/haiti.json | 73 - .../json/north_america/honduras.json | 170 - .../resources/json/north_america/jamaica.json | 46 - .../json/north_america/martinique.json | 15 - .../resources/json/north_america/mexico.json | 1775 - .../json/north_america/montserrat.json | 17 - .../json/north_america/nicaragua.json | 178 - .../resources/json/north_america/panama.json | 118 - .../saint-barth\303\251lemy.json" | 17 - .../json/north_america/saint-martin.json | 15 - .../north_america/saint_kitts_and_nevis.json | 17 - .../json/north_america/saint_lucia.json | 27 - .../saint_vincent_and_the_grenadines.json | 27 - .../json/north_america/sint_maarten.json | 15 - .../turks_and_caicos_islands.json | 37 - .../north_america/virgin_islands_u.s..json | 55 - wahoomc/resources/json/oceania/australia.json | 5517 - .../resources/json/oceania/cook_islands.json | 145 - wahoomc/resources/json/oceania/fiji.json | 156 - .../json/oceania/french_polynesia.json | 640 - wahoomc/resources/json/oceania/kiribati.json | 310 - .../json/oceania/marshall_islands.json | 255 - .../resources/json/oceania/micronesia.json | 233 - wahoomc/resources/json/oceania/nauru.json | 13 - .../resources/json/oceania/new_caledonia.json | 189 - .../resources/json/oceania/new_zealand.json | 684 - wahoomc/resources/json/oceania/niue.json | 13 - .../json/oceania/norfolk_island.json | 13 - .../oceania/northern_mariana_islands.json | 62 - wahoomc/resources/json/oceania/palau.json | 57 - .../json/oceania/papua_new_guinea.json | 728 - .../json/oceania/pitcairn_islands.json | 46 - wahoomc/resources/json/oceania/samoa.json | 47 - .../json/oceania/solomon_islands.json | 257 - wahoomc/resources/json/oceania/tokelau.json | 24 - wahoomc/resources/json/oceania/tonga.json | 90 - wahoomc/resources/json/oceania/tuvalu.json | 68 - .../united_states_minor_outlying_islands.json | 101 - wahoomc/resources/json/oceania/vanuatu.json | 112 - .../json/oceania/wallis_and_futuna.json | 24 - .../json/south_america/argentina.json | 2693 - .../resources/json/south_america/aruba.json | 26 - .../resources/json/south_america/bolivia.json | 868 - .../bonaire_saint_eustatius_and_saba.json | 30 - .../resources/json/south_america/brazil.json | 4975 - .../resources/json/south_america/chile.json | 1415 - .../json/south_america/clipperton_island.json | 13 - .../json/south_america/colombia.json | 906 - .../resources/json/south_america/curacao.json | 28 - .../resources/json/south_america/ecuador.json | 348 - .../json/south_america/falkland_islands.json | 79 - .../json/south_america/french_guiana.json | 110 - .../resources/json/south_america/guyana.json | 242 - .../json/south_america/paraguay.json | 396 - .../resources/json/south_america/peru.json | 985 - .../saint_pierre_and_miquelon.json | 37 - .../json/south_america/suriname.json | 169 - .../south_america/trinidad_and_tobago.json | 39 - .../resources/json/south_america/uruguay.json | 248 - .../json/south_america/venezuela.json | 782 - .../resources/json/united_states/alabama.json | 161 - .../resources/json/united_states/alaska.json | 5253 - .../json/united_states/american_samoa.json | 47 - .../resources/json/united_states/arizona.json | 346 - .../json/united_states/arkansas.json | 199 - .../json/united_states/california.json | 497 - .../json/united_states/colorado.json | 357 - ...ealth_of_the_northern_mariana_islands.json | 62 - .../json/united_states/connecticut.json | 57 - .../json/united_states/delaware.json | 29 - .../united_states/district_of_columbia.json | 29 - .../resources/json/united_states/florida.json | 269 - .../resources/json/united_states/georgia.json | 368 - .../resources/json/united_states/guam.json | 24 - .../resources/json/united_states/hawaii.json | 90 - .../resources/json/united_states/idaho.json | 454 - .../json/united_states/illinois.json | 232 - .../resources/json/united_states/indiana.json | 147 - .../resources/json/united_states/iowa.json | 246 - .../resources/json/united_states/kansas.json | 289 - .../json/united_states/kentucky.json | 218 - .../json/united_states/louisiana.json | 167 - .../resources/json/united_states/maine.json | 194 - .../json/united_states/maryland.json | 84 - .../json/united_states/massachusetts.json | 91 - .../json/united_states/michigan.json | 343 - .../json/united_states/minnesota.json | 408 - .../json/united_states/mississippi.json | 185 - .../json/united_states/missouri.json | 283 - .../resources/json/united_states/montana.json | 651 - .../json/united_states/nebraska.json | 223 - .../resources/json/united_states/nevada.json | 324 - .../json/united_states/new_hampshire.json | 93 - .../json/united_states/new_jersey.json | 77 - .../json/united_states/new_mexico.json | 334 - .../json/united_states/new_york.json | 257 - .../json/united_states/north_carolina.json | 197 - .../json/united_states/north_dakota.json | 332 - .../resources/json/united_states/ohio.json | 174 - .../json/united_states/oklahoma.json | 279 - .../resources/json/united_states/oregon.json | 385 - .../json/united_states/pennsylvania.json | 215 - .../json/united_states/puerto_rico.json | 63 - .../json/united_states/rhode_island.json | 28 - .../json/united_states/south_carolina.json | 135 - .../json/united_states/south_dakota.json | 288 - .../json/united_states/tennessee.json | 232 - .../resources/json/united_states/texas.json | 676 - .../united_states_virgin_islands.json | 55 - .../resources/json/united_states/utah.json | 299 - .../resources/json/united_states/vermont.json | 94 - .../json/united_states/virginia.json | 275 - .../json/united_states/washington.json | 329 - .../json/united_states/west_virginia.json | 131 - .../json/united_states/wisconsin.json | 263 - .../resources/json/united_states/wyoming.json | 288 - wahoomc/setup_functions.py | 3 + 326 files changed, 9080 insertions(+), 355709 deletions(-) create mode 100644 tests/resources/macos/137/100.map create mode 100644 tests/resources/macos/137/100.map.lzma create mode 100644 tests/resources/macos/137/100.map.lzma.17 create mode 100644 tests/resources/macos/137/100/land.prj create mode 100644 tests/resources/macos/137/100/land.shp create mode 100644 tests/resources/macos/137/100/land.shx create mode 100644 tests/resources/macos/137/100/land1.osm create mode 100644 tests/resources/macos/137/100/merged.osm.pbf create mode 100644 tests/resources/macos/137/100/sea.osm create mode 100644 tests/resources/macos/137/100/split-malta-names.osm.pbf create mode 100644 tests/resources/macos/137/100/split-malta.osm.pbf delete mode 100644 wahoomc/resources/json/africa/algeria.json delete mode 100644 wahoomc/resources/json/africa/angola.json delete mode 100644 wahoomc/resources/json/africa/benin.json delete mode 100644 wahoomc/resources/json/africa/botswana.json delete mode 100644 wahoomc/resources/json/africa/burkina_faso.json delete mode 100644 wahoomc/resources/json/africa/burundi.json delete mode 100644 wahoomc/resources/json/africa/cameroon.json delete mode 100644 wahoomc/resources/json/africa/canary_islands.json delete mode 100644 wahoomc/resources/json/africa/cape_verde.json delete mode 100644 wahoomc/resources/json/africa/central_african_republic.json delete mode 100644 wahoomc/resources/json/africa/chad.json delete mode 100644 wahoomc/resources/json/africa/comoros.json delete mode 100644 wahoomc/resources/json/africa/cote_d_ivoire.json delete mode 100644 wahoomc/resources/json/africa/democratic_republic_of_the_congo.json delete mode 100644 wahoomc/resources/json/africa/djibouti.json delete mode 100644 wahoomc/resources/json/africa/egypt.json delete mode 100644 wahoomc/resources/json/africa/equatorial_guinea.json delete mode 100644 wahoomc/resources/json/africa/eritrea.json delete mode 100644 wahoomc/resources/json/africa/ethiopia.json delete mode 100644 wahoomc/resources/json/africa/french_southern_territories.json delete mode 100644 wahoomc/resources/json/africa/gabon.json delete mode 100644 wahoomc/resources/json/africa/gambia.json delete mode 100644 wahoomc/resources/json/africa/ghana.json delete mode 100644 wahoomc/resources/json/africa/guinea-bissau.json delete mode 100644 wahoomc/resources/json/africa/guinea.json delete mode 100644 wahoomc/resources/json/africa/kenya.json delete mode 100644 wahoomc/resources/json/africa/lesotho.json delete mode 100644 wahoomc/resources/json/africa/liberia.json delete mode 100644 wahoomc/resources/json/africa/libya.json delete mode 100644 wahoomc/resources/json/africa/madagascar.json delete mode 100644 wahoomc/resources/json/africa/malawi.json delete mode 100644 wahoomc/resources/json/africa/mali.json delete mode 100644 wahoomc/resources/json/africa/mauritania.json delete mode 100644 wahoomc/resources/json/africa/mauritius.json delete mode 100644 wahoomc/resources/json/africa/mayotte.json delete mode 100644 wahoomc/resources/json/africa/morocco.json delete mode 100644 wahoomc/resources/json/africa/mozambique.json delete mode 100644 wahoomc/resources/json/africa/namibia.json delete mode 100644 wahoomc/resources/json/africa/niger.json delete mode 100644 wahoomc/resources/json/africa/nigeria.json delete mode 100644 wahoomc/resources/json/africa/republic_of_congo.json delete mode 100644 wahoomc/resources/json/africa/reunion.json delete mode 100644 wahoomc/resources/json/africa/rwanda.json delete mode 100644 wahoomc/resources/json/africa/saint_helena.json delete mode 100644 wahoomc/resources/json/africa/sao_tome_and_principe.json delete mode 100644 wahoomc/resources/json/africa/senegal.json delete mode 100644 wahoomc/resources/json/africa/seychelles.json delete mode 100644 wahoomc/resources/json/africa/sierra_leone.json delete mode 100644 wahoomc/resources/json/africa/somalia.json delete mode 100644 wahoomc/resources/json/africa/south_africa.json delete mode 100644 wahoomc/resources/json/africa/sudan.json delete mode 100644 wahoomc/resources/json/africa/swaziland.json delete mode 100644 wahoomc/resources/json/africa/tanzania.json delete mode 100644 wahoomc/resources/json/africa/togo.json delete mode 100644 wahoomc/resources/json/africa/tunisia.json delete mode 100644 wahoomc/resources/json/africa/uganda.json delete mode 100644 wahoomc/resources/json/africa/western_sahara.json delete mode 100644 wahoomc/resources/json/africa/zambia.json delete mode 100644 wahoomc/resources/json/africa/zimbabwe.json delete mode 100644 wahoomc/resources/json/antarctica/antarctica.json delete mode 100644 wahoomc/resources/json/antarctica/bouvet_island.json delete mode 100644 wahoomc/resources/json/antarctica/heard_island_and_mcdonald_islands.json delete mode 100644 wahoomc/resources/json/antarctica/south_georgia_and_the_south_sandwich_islands.json delete mode 100644 wahoomc/resources/json/asia/afghanistan.json delete mode 100644 wahoomc/resources/json/asia/armenia.json delete mode 100644 wahoomc/resources/json/asia/azerbaijan.json delete mode 100644 wahoomc/resources/json/asia/bahrain.json delete mode 100644 wahoomc/resources/json/asia/bangladesh.json delete mode 100644 wahoomc/resources/json/asia/bhutan.json delete mode 100644 wahoomc/resources/json/asia/british_indian_ocean_territory.json delete mode 100644 wahoomc/resources/json/asia/brunei.json delete mode 100644 wahoomc/resources/json/asia/cambodia.json delete mode 100644 wahoomc/resources/json/asia/china.json delete mode 100644 wahoomc/resources/json/asia/christmas_island.json delete mode 100644 wahoomc/resources/json/asia/cocos_islands.json delete mode 100644 wahoomc/resources/json/asia/cyprus.json delete mode 100644 wahoomc/resources/json/asia/east_timor.json delete mode 100644 wahoomc/resources/json/asia/hong_kong.json delete mode 100644 wahoomc/resources/json/asia/india.json delete mode 100644 wahoomc/resources/json/asia/indonesia.json delete mode 100644 wahoomc/resources/json/asia/iran.json delete mode 100644 wahoomc/resources/json/asia/iraq.json delete mode 100644 wahoomc/resources/json/asia/israel.json delete mode 100644 wahoomc/resources/json/asia/japan.json delete mode 100644 wahoomc/resources/json/asia/jordan.json delete mode 100644 wahoomc/resources/json/asia/kazakhstan.json delete mode 100644 wahoomc/resources/json/asia/kuwait.json delete mode 100644 wahoomc/resources/json/asia/kyrgyzstan.json delete mode 100644 wahoomc/resources/json/asia/laos.json delete mode 100644 wahoomc/resources/json/asia/lebanon.json delete mode 100644 wahoomc/resources/json/asia/macao.json delete mode 100644 wahoomc/resources/json/asia/malaysia.json delete mode 100644 wahoomc/resources/json/asia/maldives.json delete mode 100644 wahoomc/resources/json/asia/mongolia.json delete mode 100644 wahoomc/resources/json/asia/myanmar.json delete mode 100644 wahoomc/resources/json/asia/nepal.json delete mode 100644 wahoomc/resources/json/asia/north_korea.json delete mode 100644 wahoomc/resources/json/asia/oman.json delete mode 100644 wahoomc/resources/json/asia/pakistan.json delete mode 100644 wahoomc/resources/json/asia/palestina.json delete mode 100644 wahoomc/resources/json/asia/paracel_islands.json delete mode 100644 wahoomc/resources/json/asia/philippines.json delete mode 100644 wahoomc/resources/json/asia/qatar.json delete mode 100644 wahoomc/resources/json/asia/saudi_arabia.json delete mode 100644 wahoomc/resources/json/asia/singapore.json delete mode 100644 wahoomc/resources/json/asia/south_korea.json delete mode 100644 wahoomc/resources/json/asia/spratly_islands.json delete mode 100644 wahoomc/resources/json/asia/sri_lanka.json delete mode 100644 wahoomc/resources/json/asia/syria.json delete mode 100644 wahoomc/resources/json/asia/taiwan.json delete mode 100644 wahoomc/resources/json/asia/tajikistan.json delete mode 100644 wahoomc/resources/json/asia/thailand.json delete mode 100644 wahoomc/resources/json/asia/turkey.json delete mode 100644 wahoomc/resources/json/asia/turkmenistan.json delete mode 100644 wahoomc/resources/json/asia/united_arab_emirates.json delete mode 100644 wahoomc/resources/json/asia/uzbekistan.json delete mode 100644 wahoomc/resources/json/asia/vietnam.json delete mode 100644 wahoomc/resources/json/asia/yemen.json delete mode 100644 wahoomc/resources/json/europe/albania.json delete mode 100644 wahoomc/resources/json/europe/andorra.json delete mode 100644 wahoomc/resources/json/europe/austria.json delete mode 100644 wahoomc/resources/json/europe/belarus.json delete mode 100644 wahoomc/resources/json/europe/belgium.json delete mode 100644 wahoomc/resources/json/europe/bosnia_and_herzegovina.json delete mode 100644 wahoomc/resources/json/europe/bulgaria.json delete mode 100644 wahoomc/resources/json/europe/croatia.json delete mode 100644 wahoomc/resources/json/europe/czech_republic.json delete mode 100644 wahoomc/resources/json/europe/denmark.json delete mode 100644 wahoomc/resources/json/europe/estonia.json delete mode 100644 wahoomc/resources/json/europe/faroe_islands.json delete mode 100644 wahoomc/resources/json/europe/finland.json delete mode 100644 wahoomc/resources/json/europe/france.json delete mode 100644 wahoomc/resources/json/europe/germany.json delete mode 100644 wahoomc/resources/json/europe/gibraltar.json delete mode 100644 wahoomc/resources/json/europe/greece.json delete mode 100644 wahoomc/resources/json/europe/guernsey.json delete mode 100644 wahoomc/resources/json/europe/hungary.json delete mode 100644 wahoomc/resources/json/europe/iceland.json delete mode 100644 wahoomc/resources/json/europe/ireland.json delete mode 100644 wahoomc/resources/json/europe/isle_of_man.json delete mode 100644 wahoomc/resources/json/europe/italy.json delete mode 100644 wahoomc/resources/json/europe/jersey.json delete mode 100644 wahoomc/resources/json/europe/latvia.json delete mode 100644 wahoomc/resources/json/europe/liechtenstein.json delete mode 100644 wahoomc/resources/json/europe/lithuania.json delete mode 100644 wahoomc/resources/json/europe/luxembourg.json delete mode 100644 wahoomc/resources/json/europe/macedonia.json delete mode 100644 wahoomc/resources/json/europe/malta.json delete mode 100644 wahoomc/resources/json/europe/moldova.json delete mode 100644 wahoomc/resources/json/europe/monaco.json delete mode 100644 wahoomc/resources/json/europe/montenegro.json delete mode 100644 wahoomc/resources/json/europe/netherlands.json delete mode 100644 wahoomc/resources/json/europe/norway.json delete mode 100644 wahoomc/resources/json/europe/poland.json delete mode 100644 wahoomc/resources/json/europe/portugal.json delete mode 100644 wahoomc/resources/json/europe/romania.json delete mode 100644 wahoomc/resources/json/europe/russia.json delete mode 100644 wahoomc/resources/json/europe/san_marino.json delete mode 100644 wahoomc/resources/json/europe/serbia.json delete mode 100644 wahoomc/resources/json/europe/slovakia.json delete mode 100644 wahoomc/resources/json/europe/slovenia.json delete mode 100644 wahoomc/resources/json/europe/spain.json delete mode 100644 wahoomc/resources/json/europe/svalbard_and_jan_mayen.json delete mode 100644 wahoomc/resources/json/europe/sweden.json delete mode 100644 wahoomc/resources/json/europe/switzerland.json delete mode 100644 wahoomc/resources/json/europe/ukraine.json delete mode 100644 wahoomc/resources/json/europe/united_kingdom.json delete mode 100644 wahoomc/resources/json/europe/vatican_city.json delete mode 100644 "wahoomc/resources/json/europe/\303\245land.json" delete mode 100644 wahoomc/resources/json/north_america/anguilla.json delete mode 100644 wahoomc/resources/json/north_america/antigua_and_barbuda.json delete mode 100644 wahoomc/resources/json/north_america/bahamas.json delete mode 100644 wahoomc/resources/json/north_america/barbados.json delete mode 100644 wahoomc/resources/json/north_america/belize.json delete mode 100644 wahoomc/resources/json/north_america/bermuda.json delete mode 100644 wahoomc/resources/json/north_america/british_virgin_islands.json delete mode 100644 wahoomc/resources/json/north_america/canada.json delete mode 100644 wahoomc/resources/json/north_america/cayman_islands.json delete mode 100644 wahoomc/resources/json/north_america/costa_rica.json delete mode 100644 wahoomc/resources/json/north_america/cuba.json delete mode 100644 wahoomc/resources/json/north_america/dominica.json delete mode 100644 wahoomc/resources/json/north_america/dominican_republic.json delete mode 100644 wahoomc/resources/json/north_america/el_salvador.json delete mode 100644 wahoomc/resources/json/north_america/greenland.json delete mode 100644 wahoomc/resources/json/north_america/grenada.json delete mode 100644 wahoomc/resources/json/north_america/guadeloupe.json delete mode 100644 wahoomc/resources/json/north_america/guatemala.json delete mode 100644 wahoomc/resources/json/north_america/haiti.json delete mode 100644 wahoomc/resources/json/north_america/honduras.json delete mode 100644 wahoomc/resources/json/north_america/jamaica.json delete mode 100644 wahoomc/resources/json/north_america/martinique.json delete mode 100644 wahoomc/resources/json/north_america/mexico.json delete mode 100644 wahoomc/resources/json/north_america/montserrat.json delete mode 100644 wahoomc/resources/json/north_america/nicaragua.json delete mode 100644 wahoomc/resources/json/north_america/panama.json delete mode 100644 "wahoomc/resources/json/north_america/saint-barth\303\251lemy.json" delete mode 100644 wahoomc/resources/json/north_america/saint-martin.json delete mode 100644 wahoomc/resources/json/north_america/saint_kitts_and_nevis.json delete mode 100644 wahoomc/resources/json/north_america/saint_lucia.json delete mode 100644 wahoomc/resources/json/north_america/saint_vincent_and_the_grenadines.json delete mode 100644 wahoomc/resources/json/north_america/sint_maarten.json delete mode 100644 wahoomc/resources/json/north_america/turks_and_caicos_islands.json delete mode 100644 wahoomc/resources/json/north_america/virgin_islands_u.s..json delete mode 100644 wahoomc/resources/json/oceania/australia.json delete mode 100644 wahoomc/resources/json/oceania/cook_islands.json delete mode 100644 wahoomc/resources/json/oceania/fiji.json delete mode 100644 wahoomc/resources/json/oceania/french_polynesia.json delete mode 100644 wahoomc/resources/json/oceania/kiribati.json delete mode 100644 wahoomc/resources/json/oceania/marshall_islands.json delete mode 100644 wahoomc/resources/json/oceania/micronesia.json delete mode 100644 wahoomc/resources/json/oceania/nauru.json delete mode 100644 wahoomc/resources/json/oceania/new_caledonia.json delete mode 100644 wahoomc/resources/json/oceania/new_zealand.json delete mode 100644 wahoomc/resources/json/oceania/niue.json delete mode 100644 wahoomc/resources/json/oceania/norfolk_island.json delete mode 100644 wahoomc/resources/json/oceania/northern_mariana_islands.json delete mode 100644 wahoomc/resources/json/oceania/palau.json delete mode 100644 wahoomc/resources/json/oceania/papua_new_guinea.json delete mode 100644 wahoomc/resources/json/oceania/pitcairn_islands.json delete mode 100644 wahoomc/resources/json/oceania/samoa.json delete mode 100644 wahoomc/resources/json/oceania/solomon_islands.json delete mode 100644 wahoomc/resources/json/oceania/tokelau.json delete mode 100644 wahoomc/resources/json/oceania/tonga.json delete mode 100644 wahoomc/resources/json/oceania/tuvalu.json delete mode 100644 wahoomc/resources/json/oceania/united_states_minor_outlying_islands.json delete mode 100644 wahoomc/resources/json/oceania/vanuatu.json delete mode 100644 wahoomc/resources/json/oceania/wallis_and_futuna.json delete mode 100644 wahoomc/resources/json/south_america/argentina.json delete mode 100644 wahoomc/resources/json/south_america/aruba.json delete mode 100644 wahoomc/resources/json/south_america/bolivia.json delete mode 100644 wahoomc/resources/json/south_america/bonaire_saint_eustatius_and_saba.json delete mode 100644 wahoomc/resources/json/south_america/brazil.json delete mode 100644 wahoomc/resources/json/south_america/chile.json delete mode 100644 wahoomc/resources/json/south_america/clipperton_island.json delete mode 100644 wahoomc/resources/json/south_america/colombia.json delete mode 100644 wahoomc/resources/json/south_america/curacao.json delete mode 100644 wahoomc/resources/json/south_america/ecuador.json delete mode 100644 wahoomc/resources/json/south_america/falkland_islands.json delete mode 100644 wahoomc/resources/json/south_america/french_guiana.json delete mode 100644 wahoomc/resources/json/south_america/guyana.json delete mode 100644 wahoomc/resources/json/south_america/paraguay.json delete mode 100644 wahoomc/resources/json/south_america/peru.json delete mode 100644 wahoomc/resources/json/south_america/saint_pierre_and_miquelon.json delete mode 100644 wahoomc/resources/json/south_america/suriname.json delete mode 100644 wahoomc/resources/json/south_america/trinidad_and_tobago.json delete mode 100644 wahoomc/resources/json/south_america/uruguay.json delete mode 100644 wahoomc/resources/json/south_america/venezuela.json delete mode 100644 wahoomc/resources/json/united_states/alabama.json delete mode 100644 wahoomc/resources/json/united_states/alaska.json delete mode 100644 wahoomc/resources/json/united_states/american_samoa.json delete mode 100644 wahoomc/resources/json/united_states/arizona.json delete mode 100644 wahoomc/resources/json/united_states/arkansas.json delete mode 100644 wahoomc/resources/json/united_states/california.json delete mode 100644 wahoomc/resources/json/united_states/colorado.json delete mode 100644 wahoomc/resources/json/united_states/commonwealth_of_the_northern_mariana_islands.json delete mode 100644 wahoomc/resources/json/united_states/connecticut.json delete mode 100644 wahoomc/resources/json/united_states/delaware.json delete mode 100644 wahoomc/resources/json/united_states/district_of_columbia.json delete mode 100644 wahoomc/resources/json/united_states/florida.json delete mode 100644 wahoomc/resources/json/united_states/georgia.json delete mode 100644 wahoomc/resources/json/united_states/guam.json delete mode 100644 wahoomc/resources/json/united_states/hawaii.json delete mode 100644 wahoomc/resources/json/united_states/idaho.json delete mode 100644 wahoomc/resources/json/united_states/illinois.json delete mode 100644 wahoomc/resources/json/united_states/indiana.json delete mode 100644 wahoomc/resources/json/united_states/iowa.json delete mode 100644 wahoomc/resources/json/united_states/kansas.json delete mode 100644 wahoomc/resources/json/united_states/kentucky.json delete mode 100644 wahoomc/resources/json/united_states/louisiana.json delete mode 100644 wahoomc/resources/json/united_states/maine.json delete mode 100644 wahoomc/resources/json/united_states/maryland.json delete mode 100644 wahoomc/resources/json/united_states/massachusetts.json delete mode 100644 wahoomc/resources/json/united_states/michigan.json delete mode 100644 wahoomc/resources/json/united_states/minnesota.json delete mode 100644 wahoomc/resources/json/united_states/mississippi.json delete mode 100644 wahoomc/resources/json/united_states/missouri.json delete mode 100644 wahoomc/resources/json/united_states/montana.json delete mode 100644 wahoomc/resources/json/united_states/nebraska.json delete mode 100644 wahoomc/resources/json/united_states/nevada.json delete mode 100644 wahoomc/resources/json/united_states/new_hampshire.json delete mode 100644 wahoomc/resources/json/united_states/new_jersey.json delete mode 100644 wahoomc/resources/json/united_states/new_mexico.json delete mode 100644 wahoomc/resources/json/united_states/new_york.json delete mode 100644 wahoomc/resources/json/united_states/north_carolina.json delete mode 100644 wahoomc/resources/json/united_states/north_dakota.json delete mode 100644 wahoomc/resources/json/united_states/ohio.json delete mode 100644 wahoomc/resources/json/united_states/oklahoma.json delete mode 100644 wahoomc/resources/json/united_states/oregon.json delete mode 100644 wahoomc/resources/json/united_states/pennsylvania.json delete mode 100644 wahoomc/resources/json/united_states/puerto_rico.json delete mode 100644 wahoomc/resources/json/united_states/rhode_island.json delete mode 100644 wahoomc/resources/json/united_states/south_carolina.json delete mode 100644 wahoomc/resources/json/united_states/south_dakota.json delete mode 100644 wahoomc/resources/json/united_states/tennessee.json delete mode 100644 wahoomc/resources/json/united_states/texas.json delete mode 100644 wahoomc/resources/json/united_states/united_states_virgin_islands.json delete mode 100644 wahoomc/resources/json/united_states/utah.json delete mode 100644 wahoomc/resources/json/united_states/vermont.json delete mode 100644 wahoomc/resources/json/united_states/virginia.json delete mode 100644 wahoomc/resources/json/united_states/washington.json delete mode 100644 wahoomc/resources/json/united_states/west_virginia.json delete mode 100644 wahoomc/resources/json/united_states/wisconsin.json delete mode 100644 wahoomc/resources/json/united_states/wyoming.json diff --git a/.vscode/launch.json b/.vscode/launch.json index 3cc55f5b..358f0c3c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "name": "x/y: 134/88 (STG)", + "name": "x/y: 134/88 (stuttgart)", "type": "python", "request": "launch", "module": "wahoomc", @@ -34,7 +34,7 @@ ] }, { - "name": "germany", + "name": "co: germany", "type": "python", "request": "launch", "module": "wahoomc", @@ -46,7 +46,7 @@ ] }, { - "name": "malta (no POI)", + "name": "co: malta (no POI)", "type": "python", "request": "launch", "module": "wahoomc", @@ -64,26 +64,7 @@ ] }, { - "name": "malta-geofabrik (no POI)", - "type": "python", - "request": "launch", - "module": "wahoomc", - "console": "integratedTerminal", - "args": [ - "cli", - "-co", - "malta", - "-tag", - "tag-wahoo.xml", - "-fp", - "-c", - "-md", - "100", - "-gt" - ] - }, - { - "name": "malta -c NO -fp", + "name": "co: malta NO -fp", "type": "python", "request": "launch", "module": "wahoomc", @@ -98,15 +79,15 @@ ] }, { - "name": "malta", + "name": "x/y: 138/100 (malta)", "type": "python", "request": "launch", "module": "wahoomc", "console": "integratedTerminal", "args": [ "cli", - "-co", - "malta", + "-xy", + "138/100", "-fp", "-c", "-md", @@ -114,7 +95,7 @@ ] }, { - "name": "x/y: 135/91 (Garda) #160", + "name": "x/y: 135/91 (gardasee) #160", "type": "python", "request": "launch", "module": "wahoomc", @@ -166,11 +147,12 @@ "args": [ "cli", "-xy", - "133/88" + "133/88", + "-c" ] }, { - "name": "x/y: 138/100 (malta) -c", + "name": "x/y: 134/89 (bodensee 4 countries)", "type": "python", "request": "launch", "module": "wahoomc", @@ -178,13 +160,43 @@ "args": [ "cli", "-xy", - "138/100", + "134/89", + "-c" + ] + }, + { + "name": "x/y: 72/98 (virginia)", + "type": "python", + "request": "launch", + "module": "wahoomc", + "console": "integratedTerminal", + "args": [ + "cli", + "-xy", + "72/98", "-fp", "-c", "-md", "100" ] }, + { + "name": "co: virginia -nbc", + "type": "python", + "request": "launch", + "module": "wahoomc", + "console": "integratedTerminal", + "args": [ + "cli", + "-co", + "virginia", + "-fp", + "-c", + "-md", + "100", + "-nbc" + ] + }, { "name": "x/y: stg->gardasee (ten tiles)", "type": "python", @@ -198,7 +210,7 @@ ] }, { - "name": "mexico #113", + "name": "co: mexico #113", "type": "python", "request": "launch", "module": "wahoomc", @@ -212,7 +224,7 @@ ] }, { - "name": "solomon_islands geofabrik", + "name": "co: solomon_islands", "type": "python", "request": "launch", "module": "wahoomc", @@ -223,8 +235,7 @@ "solomon_islands", "-c", "-md", - "100", - "-gt" + "100" ] } ] diff --git a/tests/resources/macos/137/100.map b/tests/resources/macos/137/100.map new file mode 100644 index 0000000000000000000000000000000000000000..4474af8c46c24c7f5544bafa0eddd6dea300bbef GIT binary patch literal 20545 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 literal 0 HcmV?d00001 diff --git a/tests/resources/macos/137/100.map.lzma b/tests/resources/macos/137/100.map.lzma new file mode 100644 index 0000000000000000000000000000000000000000..c1d2aa94a5c27a1f55cbc60430a853c781ee3396 GIT binary patch literal 14793 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 literal 0 HcmV?d00001 diff --git a/tests/resources/macos/137/100.map.lzma.17 b/tests/resources/macos/137/100.map.lzma.17 new file mode 100644 index 00000000..e69de29b diff --git a/tests/resources/macos/137/100/land.prj b/tests/resources/macos/137/100/land.prj new file mode 100644 index 00000000..f45cbadf --- /dev/null +++ b/tests/resources/macos/137/100/land.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/tests/resources/macos/137/100/land.shp b/tests/resources/macos/137/100/land.shp new file mode 100644 index 0000000000000000000000000000000000000000..245508898762fcfa5d80fd0d7b44f06cc8dce090 GIT binary patch literal 68476 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 P>~yyXpQHT!@A3M7jxME+ literal 0 HcmV?d00001 diff --git a/tests/resources/macos/137/100/land.shx b/tests/resources/macos/137/100/land.shx new file mode 100644 index 0000000000000000000000000000000000000000..7aaae52e58093cf98ff7ab9a944fe7e862b03c13 GIT binary patch literal 236 zcmZQzQ0HR64$59IGcd3M<)V}lHScg}I{5s5%PYCx(IHGel55ftO^0086)f@}938N0 zM-epw@*;q^4~P?h_!AI!FfcII0ci^$y$ecz1JV;17?`>k7}$X7Ii4{v1nvO3U=c)p zv>uR7U|@)z#K52gl&^gU;nxKL=>P_Xx@ADKUNA5;0Oc7K7#JG2F)%QDFfg<-0p)i9 E0IAI)k^lez literal 0 HcmV?d00001 diff --git a/tests/resources/macos/137/100/land1.osm b/tests/resources/macos/137/100/land1.osm new file mode 100644 index 00000000..f488b8cb --- /dev/null +++ b/tests/resources/macos/137/100/land1.osm @@ -0,0 +1,8516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/resources/macos/137/100/merged.osm.pbf b/tests/resources/macos/137/100/merged.osm.pbf new file mode 100644 index 0000000000000000000000000000000000000000..1ef5623fe3048909d3ed31c32f157209fdcd3b54 GIT binary patch literal 322379 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

  • t~G-7B@Hm}7#JT0|nXNV_aCV>}U>Lt=a)eM_t) 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 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/resources/macos/137/100/split-malta-names.osm.pbf b/tests/resources/macos/137/100/split-malta-names.osm.pbf new file mode 100644 index 0000000000000000000000000000000000000000..fa7c67de3f43042dfb599e21dba74788cb375651 GIT binary patch literal 351480 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

    oJw&586j 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≧HdwGxk=#9KxM1@1`_(?$6a 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�nTr+YqwoM>?&W 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 I0jv+cxDSxobpQYW literal 0 HcmV?d00001 diff --git a/tests/resources/macos/137/100/split-malta.osm.pbf b/tests/resources/macos/137/100/split-malta.osm.pbf new file mode 100644 index 0000000000000000000000000000000000000000..fea97c01e347e39c932ec266b392c8da914cf51c GIT binary patch literal 8336 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 aGrU$kk!79Jd2_wQJnxdu str: + """Get the relevant tiles for the wanted country or X/Y coordinate""" + pass + + def find_needed_countries(self, bbox_tiles, wanted_map, wanted_region_polygon) -> dict: + """find needed countries for requested country or X/Y combination""" + pass - self.tiles = [] - self.border_countries = {} - self.country_name = '' + def compose_bouding_box(self, input) -> dict: + """calculate bounding box based on geometry or X/Y combination""" + pass - def get_tiles_of_country(self): - """ - Get the relevant tiles for a country - """ +class CountryGeofabrik(InformalGeofabrikInterface): + """Geofabrik processing for countries""" + + def __init__(self, input): + # input parameters + self.wanted_map = self.o_geofabrik_json.translate_id_no_to_geofabrik( + input) + + def get_tiles_of_wanted_map(self): + """Overrides InformalGeofabrikInterface.get_tiles_of_wanted_map()""" # Check if wanted_map is in the json file and if so get the polygon (shape) - wanted_map_geom, wanted_url = geom(self.wanted_map) - if not wanted_map_geom: - # try to prepend us\ to the self.wanted_map - wanted_map_geom, wanted_url = geom('us/'+self.wanted_map) - if wanted_map_geom: - self.wanted_map = 'us/'+self.wanted_map - else: - log.error( - 'failed to find country or region %s in Geofabrik json file', self.wanted_map) - sys.exit() + wanted_map_geom = self.o_geofabrik_json.get_geofabrik_geometry( + self.wanted_map) # convert to shape (multipolygon) wanted_region = shape(wanted_map_geom) - # print (f'shape = {wanted_region}') + # calc bounding box - the whole area to be created + bbox = self.compose_bouding_box(wanted_region.bounds) + + # Build bounding box list of tiles - several X/Y combinations making up the area + bbox_tiles = calc_bounding_box_tiles(bbox) + + # get all infos of these bounding box tiles + tiles_of_input = self.find_needed_countries( + bbox_tiles, self.wanted_map, wanted_region) + + return tiles_of_input + + def find_needed_countries(self, bbox_tiles, wanted_map, wanted_region_polygon) -> list: + """Overrides InformalGeofabrikInterface.find_needed_countries()""" + output = [] + + geofabrik_regions = self.o_geofabrik_json.geofabrik_regions + + # itterate through tiles and find Geofabrik regions that are in the tiles + counter = 1 + for tile in bbox_tiles: + # Do progress indicator every 50 tiles + if counter % 50 == 0: + log.info( + 'Processing tile %s of %s', counter, len(bbox_tiles)+1) + counter += 1 + + parent_added = 0 + force_added = 0 + + # example contents of tile: {'index': 0, 'x': 130, 'y': 84, 'tile_left': 2.8125, + # 'tile_top': 52.48278022207821, 'tile_right': 4.21875, 'tile_bottom': 51.6180165487737} + # convert tile x/y to tile polygon lon/lat + poly = Polygon([(tile["tile_left"], tile["tile_top"]), (tile["tile_right"], + tile["tile_top"]), (tile["tile_right"], tile["tile_bottom"]), + (tile["tile_left"], tile["tile_bottom"]), (tile["tile_left"], + tile["tile_top"])]) + + # (re)initialize list of needed maps and their url's + must_download_maps = [] + must_download_urls = [] + + # itterate through countries/regions in the geofabrik json file + for region, value in self.o_geofabrik_json.geofabrik_overview.items(): + regionname = region + try: + parent = value['parent'] + except KeyError: + parent = '' + rurl = value['pbf_url'] + rshape = shape(value['geometry']) + + # for debugging + # if tile["x"] == 137 and (region == "denmark" or region == "germany" or region == "sweden"): + # print("stop for debugging") + # if not xy_mode: + + # print (f'Processing region: {regionname}') + + # check if the region we are processing is needed for the tile we are processing + + # If currently processing country/region IS the desired country/region + if regionname == wanted_map: + # Check if it is part of the tile we are processing + if rshape.intersects(poly): # if so + # catch special_regions like (former) colonies where the map of the region is not fysically in the map of the parent country. + # example Guadeloupe, it's parent country is France but Guadeloupe is not located within the region covered by the map of France + if wanted_map not in special_regions: + # If we are proseccing a sub-region add the parent of this sub-region + # to the must download list. + # This to prevent downloading several small regions AND it's containing region + # we are processing a sub-regiongo find the parent region: + if parent not in geofabrik_regions and regionname not in geofabrik_regions: + # we are processing a sub-regiongo find the parent region + x_value = 0 + # handle sub-sub-regions like unterfranken->bayern->germany + while parent not in geofabrik_regions: + parent, child = self.o_geofabrik_json.get_geofabrik_parent_country( + parent) + if parent in geofabrik_regions: + parent = child + break + if x_value > 10: # prevent endless loop + log.error( + 'Can not find parent map of region: %s', regionname) + sys.exit() + x_value += 1 + if parent not in must_download_maps: + must_download_maps.append(parent) + must_download_urls.append( + self.o_geofabrik_json.get_geofabrik_url(parent)) + # parent_added = 1 + else: + if regionname not in must_download_maps: + must_download_maps.append(regionname) + must_download_urls.append(rurl) + else: + # wanted_map is a special region like Guadeloupe, France + if regionname not in must_download_maps: + must_download_maps.append(regionname) + must_download_urls.append(rurl) + # if there is an intersect, force the tile to be put in the output + force_added = 1 + else: # currently processing tile does not contain, a part of, the desired region + continue + + # currently processing country/region is NOT the desired country/region but might be + # in the tile (neighbouring country) + if regionname != wanted_map: + # check if we are processing a country or a sub-region. + # For countries only process other countries. also block special geofabrik sub regions + if parent in geofabrik_regions and regionname not in block_download: + # processing a country and no special sub-region + # check if rshape is subset of desired region. If so discard it + if wanted_region_polygon.contains(rshape): + # print (f'\t{regionname} is a subset of {wanted_map}, discard it') + continue + # check if rshape is a superset of desired region. if so discard it + if rshape.contains(wanted_region_polygon): + # print (f'\t{regionname} is a superset of {wanted_map}, discard it') + # if regionname not in must_download_maps: + # must_download_maps.append (regionname) + # must_download_urls.append (rurl) + # parent_added = 1 + continue + # Check if rshape is a part of the tile + if rshape.intersects(poly): + # print(f'\tintersecting tile: {regionname} tile={tile}') + if regionname not in must_download_maps: + must_download_maps.append(regionname) + must_download_urls.append(rurl) + + # If this tile contains the desired region, add it to the output + # print (f'map= {wanted_map}\tmust_download= {must_download_maps}\tparent_added= {parent_added}\tforce_added= {force_added}') + if wanted_map in must_download_maps or parent_added == 1 or force_added == 1: + # first replace any forward slashes with underscores (us/texas to us_texas) + must_download_maps = [sub.replace( + '/', '_') for sub in must_download_maps] + output.append({'x': tile['x'], 'y': tile['y'], 'left': tile['tile_left'], 'top': tile['tile_top'], + 'right': tile['tile_right'], 'bottom': tile['tile_bottom'], 'countries': must_download_maps, 'urls': must_download_urls}) + + return output + + def compose_bouding_box(self, bounds): + """Overrides InformalGeofabrikInterface.calc_bouding_box()""" # get bounding box - (bbox_left, bbox_bottom, bbox_right, bbox_top) = wanted_region.bounds + (bbox_left, bbox_bottom, bbox_right, bbox_top) = bounds # convert bounding box to list of tiles at zoom level 8 (top_x, top_y) = deg2num(bbox_top, bbox_left) @@ -81,186 +227,78 @@ def get_tiles_of_country(self): if bot_y > 255: bot_y = 255 - # Build list of tiles from the bounding box - bbox_tiles = [] - for x_value in range(top_x, bot_x + 1): - for y_value in range(top_y, bot_y + 1): - (tile_top, tile_left) = num2deg(x_value, y_value) - (tile_bottom, tile_right) = num2deg(x_value+1, y_value+1) - if tile_left < -180: - tile_left = -180 - if tile_left > 180: - tile_left = 180 - if tile_right < -180: - tile_right = -180 - if tile_right > 180: - tile_right = 180 - if tile_top < -90: - tile_top = -90 - if tile_top > 90: - tile_top = 90 - if tile_bottom < -90: - tile_bottom = -90 - if tile_bottom > 90: - tile_bottom = 90 - bbox_tiles.append({'x': x_value, 'y': y_value, 'tile_left': tile_left, - 'tile_top': tile_top, 'tile_right': tile_right, - 'tile_bottom': tile_bottom}) + return {'top_x': top_x, 'top_y': top_y, 'bot_x': bot_x, 'bot_y': bot_y} - log.info('Searching for needed maps, this can take a while.') - tiles_of_input = find_needed_countries( - bbox_tiles, self.wanted_map, wanted_region) - # print (f'Country= {country}') - return tiles_of_input +class XYGeofabrik(InformalGeofabrikInterface): + """Geofabrik processing for X/Y coordinates""" + def __init__(self, input): + # input parameters + self.wanted_map = input -def deg2num(lat_deg, lon_deg, zoom=8): - """ - Convert on./lat. to tile numbers - """ - lat_rad = math.radians(lat_deg) - n = 2.0 ** zoom - xtile = int((lon_deg + 180.0) / 360.0 * n) - ytile = int((1.0 - math.asinh(math.tan(lat_rad)) / math.pi) / 2.0 * n) - return (xtile, ytile) + def get_tiles_of_wanted_map(self) -> str: + """Overrides InformalGeofabrikInterface.get_tiles_of_wanted_map()""" + tiles_of_input = [] + for xy_combination in self.wanted_map: + # calc bounding box - the whole area to be created + bbox = self.compose_bouding_box(xy_combination) -def num2deg(xtile, ytile, zoom=8): - """ - Convert tile numbers to lon./lat. - """ - n = 2.0 ** zoom - lon_deg = xtile / n * 360.0 - 180.0 - lat_rad = math.atan(math.sinh(math.pi * (1 - 2 * ytile / n))) - lat_deg = math.degrees(lat_rad) - return (lat_deg, lon_deg) + # Build bounding box list of tiles - several X/Y combinations making up the area + bbox_tiles = calc_bounding_box_tiles(bbox) + # convert X/Y combination to shape (multipolygon) + wanted_region = self.compose_shape(bbox_tiles) -def geom(wanted): - """ - Get the Geofabrik outline of the desired country/region from the Geofabrik json file - and the download url of the map. - input parameter is the name of the desired country/region as use by Geofabric - in their json file. - """ - with open(GEOFABRIK_PATH, encoding='utf8') as file_handle: - data = geojson.load(file_handle) - file_handle.close() - - # loop through all entries in the json file to find the one we want - for feature in data.features: - props = feature.properties - ident_no = props.get('id', '') - if ident_no != wanted: - continue - # print (props.get('urls', '')) - wurls = props.get('urls', '') - return (feature.geometry, wurls.get('pbf', '')) - return None, None - - -def find_needed_countries(bbox_tiles, wanted_map, wanted_region_polygon): - """ - Find the maps to download from Geofabrik for a given range of tiles - arguments are - - list of tiles of the desired region bounding box - - name of desired region as used in Geofabrik json file - - polygon of desired region as present in the Geofabrik json file - """ - output = [] + # get all infos of these bounding box tiles + tiles_of_input.extend(self.find_needed_countries( + bbox_tiles, self.wanted_map, wanted_region)) + + return tiles_of_input + + def find_needed_countries(self, bbox_tiles, wanted_map, wanted_region_polygon) -> dict: + """Overrides InformalGeofabrikInterface.find_needed_countries()""" + output = [] + + geofabrik_regions = self.o_geofabrik_json.geofabrik_regions + + log.info('Searching for needed maps, this can take a while.') + + # itterate through tiles and find Geofabrik regions that are in the tiles + counter = 1 + for tile in bbox_tiles: + # Do progress indicator every 50 tiles + if counter % 50 == 0: + log.info( + 'Processing tile %s of %s', counter, len(bbox_tiles)+1) + counter += 1 + + parent_added = 0 + force_added = 0 + + # example contents of tile: {'index': 0, 'x': 130, 'y': 84, 'tile_left': 2.8125, + # 'tile_top': 52.48278022207821, 'tile_right': 4.21875, 'tile_bottom': 51.6180165487737} + # convert tile x/y to tile polygon lon/lat + poly = Polygon([(tile["tile_left"], tile["tile_top"]), (tile["tile_right"], + tile["tile_top"]), (tile["tile_right"], tile["tile_bottom"]), + (tile["tile_left"], tile["tile_bottom"]), (tile["tile_left"], + tile["tile_top"])]) + + # (re)initialize list of needed maps and their url's + must_download_maps = [] + must_download_urls = [] + + # itterate through countries/regions in the geofabrik json file + for region, value in self.o_geofabrik_json.geofabrik_overview.items(): + regionname = region + try: + parent = value['parent'] + except KeyError: + parent = '' + rurl = value['pbf_url'] + rshape = shape(value['geometry']) - o_geofabrik_json = GeofabrikJson() - geofabrik_regions = o_geofabrik_json.geofabrik_regions - - # itterate through tiles and find Geofabrik regions that are in the tiles - counter = 1 - for tile in bbox_tiles: - # Do progress indicator every 50 tiles - if counter % 50 == 0: - log.info( - 'Processing tile %s of %s', counter, len(bbox_tiles)+1) - counter += 1 - - parent_added = 0 - force_added = 0 - - # example contents of tile: {'index': 0, 'x': 130, 'y': 84, 'tile_left': 2.8125, - # 'tile_top': 52.48278022207821, 'tile_right': 4.21875, 'tile_bottom': 51.6180165487737} - # convert tile x/y to tile polygon lon/lat - poly = Polygon([(tile["tile_left"], tile["tile_top"]), (tile["tile_right"], - tile["tile_top"]), (tile["tile_right"], tile["tile_bottom"]), - (tile["tile_left"], tile["tile_bottom"]), (tile["tile_left"], - tile["tile_top"])]) - - # (re)initialize list of needed maps and their url's - must_download_maps = [] - must_download_urls = [] - - # itterate through countries/regions in the geofabrik json file - for regions in o_geofabrik_json.raw_json.features: - props = regions.properties - parent = props.get('parent', '') - regionname = props.get('id', '') - rurls = props.get('urls', '') - rurl = rurls.get('pbf', '') - rgeom = regions.geometry - rshape = shape(rgeom) - - # print (f'Processing region: {regionname}') - - # check if the region we are processing is needed for the tile we are processing - - # If currently processing country/region IS the desired country/region - if regionname == wanted_map: - # Check if it is part of the tile we are processing - if rshape.intersects(poly): # if so - # catch special_regions like (former) colonies where the map of the region is not fysically in the map of the parent country. - # example Guadeloupe, it's parent country is France but Guadeloupe is not located within the region covered by the map of France - if wanted_map not in special_regions: - # If we are proseccing a sub-region add the parent of this sub-region - # to the must download list. - # This to prevent downloading several small regions AND it's containing region - # we are processing a sub-regiongo find the parent region: - if parent not in geofabrik_regions and regionname not in geofabrik_regions: - # we are processing a sub-regiongo find the parent region - x_value = 0 - # handle sub-sub-regions like unterfranken->bayern->germany - while parent not in geofabrik_regions: - parent, child = o_geofabrik_json.get_geofabrik_parent_country( - parent) - if parent in geofabrik_regions: - parent = child - break - if x_value > 10: # prevent endless loop - log.error( - 'Can not find parent map of region: %s', regionname) - sys.exit() - x_value += 1 - if parent not in must_download_maps: - must_download_maps.append(parent) - must_download_urls.append( - o_geofabrik_json.get_geofabrik_url(parent)) - # parent_added = 1 - else: - if regionname not in must_download_maps: - must_download_maps.append(regionname) - must_download_urls.append(rurl) - else: - # wanted_map is a special region like Guadeloupe, France - if regionname not in must_download_maps: - must_download_maps.append(regionname) - must_download_urls.append(rurl) - # if there is an intersect, force the tile to be put in the output - force_added = 1 - else: # currently processing tile does not contain, a part of, the desired region - continue - - # currently processing country/region is NOT the desired country/region but might be - # in the tile (neighbouring country) - if regionname != wanted_map: - # check if we are processing a country or a sub-region. - # For countries only process other countries. also block special geofabrik sub regions if parent in geofabrik_regions and regionname not in block_download: # processing a country and no special sub-region # check if rshape is subset of desired region. If so discard it @@ -270,12 +308,8 @@ def find_needed_countries(bbox_tiles, wanted_map, wanted_region_polygon): # check if rshape is a superset of desired region. if so discard it if rshape.contains(wanted_region_polygon): # print (f'\t{regionname} is a superset of {wanted_map}, discard it') - # if regionname not in must_download_maps: - # must_download_maps.append (regionname) - # must_download_urls.append (rurl) - # parent_added = 1 continue - # Check if rshape is a part of the tile + # Check if rshape is a part of the tile / XY if rshape.intersects(poly): # print(f'\tintersecting tile: {regionname} tile={tile}') if regionname not in must_download_maps: @@ -284,10 +318,75 @@ def find_needed_countries(bbox_tiles, wanted_map, wanted_region_polygon): # If this tile contains the desired region, add it to the output # print (f'map= {wanted_map}\tmust_download= {must_download_maps}\tparent_added= {parent_added}\tforce_added= {force_added}') - if wanted_map in must_download_maps or parent_added == 1 or force_added == 1: - # first replace any forward slashes with underscores (us/texas to us_texas) - must_download_maps = [sub.replace( - '/', '_') for sub in must_download_maps] - output.append({'x': tile['x'], 'y': tile['y'], 'left': tile['tile_left'], 'top': tile['tile_top'], - 'right': tile['tile_right'], 'bottom': tile['tile_bottom'], 'countries': must_download_maps, 'urls': must_download_urls}) - return output + # if wanted_map in must_download_maps or parent_added == 1 or force_added == 1 or xy_mode is True: + # first replace any forward slashes with underscores (us/texas to us_texas) + must_download_maps = [sub.replace( + '/', '_') for sub in must_download_maps] + output.append({'x': tile['x'], 'y': tile['y'], 'left': tile['tile_left'], 'top': tile['tile_top'], + 'right': tile['tile_right'], 'bottom': tile['tile_bottom'], 'countries': must_download_maps, 'urls': must_download_urls}) + + return output + + def compose_bouding_box(self, xy_combination): + """Overrides InformalGeofabrikInterface.calc_bouding_box()""" + + return {'top_x': xy_combination["x"], 'bot_x': xy_combination["x"], + 'top_y': xy_combination["y"], 'bot_y': xy_combination["y"]} + + def compose_shape(self, bbox_tiles): + coords = [(bbox_tiles[0]["tile_top"], bbox_tiles[0]["tile_left"]), (bbox_tiles[0]["tile_top"], bbox_tiles[0]["tile_right"]), + (bbox_tiles[0]["tile_bottom"], bbox_tiles[0]["tile_right"]), (bbox_tiles[0]["tile_bottom"], bbox_tiles[0]["tile_left"])] + p = Polygon(coords) + wanted_region = shape(p) + return wanted_region + + +def calc_bounding_box_tiles(bbox): + bbox_tiles = [] + for x_value in range(bbox['top_x'], bbox['bot_x'] + 1): + for y_value in range(bbox['top_y'], bbox['bot_y'] + 1): + (tile_top, tile_left) = num2deg(x_value, y_value) + (tile_bottom, tile_right) = num2deg(x_value+1, y_value+1) + if tile_left < -180: + tile_left = -180 + if tile_left > 180: + tile_left = 180 + if tile_right < -180: + tile_right = -180 + if tile_right > 180: + tile_right = 180 + if tile_top < -90: + tile_top = -90 + if tile_top > 90: + tile_top = 90 + if tile_bottom < -90: + tile_bottom = -90 + if tile_bottom > 90: + tile_bottom = 90 + bbox_tiles.append({'x': x_value, 'y': y_value, 'tile_left': tile_left, + 'tile_top': tile_top, 'tile_right': tile_right, + 'tile_bottom': tile_bottom}) + + return bbox_tiles + + +def deg2num(lat_deg, lon_deg, zoom=8): + """ + Convert on./lat. to tile numbers + """ + lat_rad = math.radians(lat_deg) + n = 2.0 ** zoom + xtile = int((lon_deg + 180.0) / 360.0 * n) + ytile = int((1.0 - math.asinh(math.tan(lat_rad)) / math.pi) / 2.0 * n) + return (xtile, ytile) + + +def num2deg(xtile, ytile, zoom=8): + """ + Convert tile numbers to lon./lat. + """ + n = 2.0 ** zoom + lon_deg = xtile / n * 360.0 - 180.0 + lat_rad = math.atan(math.sinh(math.pi * (1 - 2 * ytile / n))) + lat_deg = math.degrees(lat_rad) + return (lat_deg, lon_deg) diff --git a/wahoomc/geofabrik_json.py b/wahoomc/geofabrik_json.py index 544932ef..64e7965c 100644 --- a/wahoomc/geofabrik_json.py +++ b/wahoomc/geofabrik_json.py @@ -56,10 +56,12 @@ def read_geofabrik_json_file(self): geofabrik_overview[id_no] = { 'parent': parent, - 'pbf_url': pbf_url} + 'pbf_url': pbf_url, + 'geometry': feature.geometry} except KeyError: geofabrik_overview[id_no] = { - 'pbf_url': pbf_url} + 'pbf_url': pbf_url, + 'geometry': feature.geometry} geofabrik_region_overview[id_no] = { 'pbf_url': pbf_url} geofabrik_regions.append(id_no) @@ -95,6 +97,20 @@ def get_geofabrik_url(self, id_no): return None + def get_geofabrik_geometry(self, id_no): + """ + Get the geometry from a region with the already loaded json data + """ + id_no_translated = self.translate_id_no_to_geofabrik(id_no) + try: + entry = self.geofabrik_overview[id_no_translated] + if 'geometry' in entry: + return entry['geometry'] + except KeyError: + pass + + return None + def is_input_a_geofabrik_id_no(self, id_no): """ check if the given input is a geofabrik id number diff --git a/wahoomc/input.py b/wahoomc/input.py index 4b1e05d7..cfe11512 100644 --- a/wahoomc/input.py +++ b/wahoomc/input.py @@ -14,6 +14,7 @@ # import custom python packages from wahoomc.geofabrik_json import GeofabrikJson +from wahoomc.geofabrik_json import CountyIsNoGeofabrikCountry o_geofabrik_json = GeofabrikJson() @@ -75,9 +76,6 @@ def process_call_of_the_tool(): # specify the file with tags to keep in the output // file needs to be in wahoo_mc/resources/tag_wahoo_adjusted options_args.add_argument('-tag', '--tag_wahoo_xml', default=InputData().tag_wahoo_xml, help="file with tags to keep in the output") - # option to calculate tiles to process based on Geofabrik index-v1.json file - options_args.add_argument('-gt', '--geofabrik_tiles', action='store_true', - help="calculate tiles based on geofabrik index-v1.json file") # zip the country (and country-maps) folder options_args.add_argument('-z', '--zip', action='store_true', help="zip the country (and country-maps) folder") @@ -105,7 +103,6 @@ def process_call_of_the_tool(): o_input_data.process_border_countries = args.bordercountries o_input_data.force_download = args.forcedownload o_input_data.force_processing = args.forceprocessing - o_input_data.geofabrik_tiles = args.geofabrik_tiles o_input_data.tag_wahoo_xml = args.tag_wahoo_xml o_input_data.save_cruiser = args.cruiser @@ -187,11 +184,6 @@ def __init__(self): self.tag_wahoo_xml = "tag-wahoo-poi.xml" - # Way of calculating the relevant tiles for given input (country) - # True - Use geofabrik index-v1.json file - # False - Use .json files from folder wahoo_mc/resources/json - self.geofabrik_tiles = False - self.zip_folder = False self.verbose = False @@ -212,10 +204,15 @@ def is_required_input_given_or_exit(self, issue_message): elif self.country and self.xy_coordinates: sys.exit( "Country and X/Y coordinates are given. Only one of both is allowed!") - elif self.country and not o_geofabrik_json.is_input_a_geofabrik_id_no(self.country): - sys.exit( - f"Entered country '{self.country}' is not a geofabrik country. Please check this URL for possible countries \ - https://download.geofabrik.de/index.html!") + elif self.country: + try: + self.country = o_geofabrik_json.translate_id_no_to_geofabrik( + self.country) + return True + except CountyIsNoGeofabrikCountry: + sys.exit( + f"Entered country '{self.country}' is not a geofabrik country. Please check this URL for possible countries \ + https://download.geofabrik.de/index.html!") else: return True @@ -298,7 +295,6 @@ def handle_create_map(self, event): # pylint: disable=unused-argument self.o_input_data.force_download = tab1.third.checkb_download.get() self.o_input_data.force_processing = tab1.third.checkb_processing_val.get() self.o_input_data.process_border_countries = tab1.third.checkb_border_countries_val.get() - self.o_input_data.geofabrik_tiles = tab1.third.checkb_geofabrik_tiles_val.get() self.o_input_data.save_cruiser = tab2.first.checkb_save_cruiser_val.get() self.o_input_data.zip_folder = tab2.first.checkb_zip_folder_val.get() @@ -399,8 +395,6 @@ def __init__(self, parent, oInputData, controller): column=0, row=1, sticky=tk.W, padx=15, pady=5) self.checkb_processing_val = create_checkbox(self, oInputData.force_processing, "Force processing", 2) - self.checkb_geofabrik_tiles_val = create_checkbox(self, oInputData.geofabrik_tiles, - "Use Geofabrik file for tiles", 3) class Buttons(tk.Frame): diff --git a/wahoomc/osm_maps_functions.py b/wahoomc/osm_maps_functions.py index 26509b90..c9eb21c5 100644 --- a/wahoomc/osm_maps_functions.py +++ b/wahoomc/osm_maps_functions.py @@ -15,9 +15,8 @@ import logging # import custom python packages -from wahoomc.file_directory_functions import read_json_file, \ - get_folders_in_folder, get_filenames_of_jsons_in_folder, create_empty_directories, write_json_file_generic -from wahoomc.constants_functions import get_path_to_static_tile_json, translate_tags_to_keep, \ +from wahoomc.file_directory_functions import read_json_file, create_empty_directories, write_json_file_generic +from wahoomc.constants_functions import translate_tags_to_keep, \ get_tooling_win_path, get_tag_wahoo_xml_path, TagWahooXmlNotFoundError from wahoomc.constants import USER_WAHOO_MC @@ -28,7 +27,7 @@ from wahoomc.constants import OSMOSIS_WIN_FILE_PATH from wahoomc.downloader import Downloader -from wahoomc.geofabrik import Geofabrik +from wahoomc.geofabrik import CountryGeofabrik, XYGeofabrik log = logging.getLogger('main-logger') @@ -57,29 +56,6 @@ def get_xy_coordinates_from_input(input_xy_coordinates): return xy_combinations -def get_tile_by_one_xy_combination_from_jsons(xy_combination): - """ - get tile from json files by given X/Y coordinate combination - """ - # go through all files in all folders of the "json" directory - file_path_jsons = os.path.join(RESOURCES_DIR, 'json') - - for folder in get_folders_in_folder(file_path_jsons): - for file in get_filenames_of_jsons_in_folder(os.path.join(file_path_jsons, folder)): - - # get content of json in folder - content = read_json_file( - os.path.join(file_path_jsons, folder, file + '.json')) - - # check tiles values against input x/y combination - for tile in content: - if tile['x'] == xy_combination['x'] and tile['y'] == xy_combination['y']: - return tile - - # if function is processed until here, there is no tile found for the x/y combination --> Exception - raise TileNotFoundError - - def run_subprocess_and_log_output(cmd, error_message, cwd=""): """ run given cmd-subprocess and issue error message if wished @@ -155,8 +131,7 @@ def process_input_of_the_tool(self, o_input_data): log.info('-' * 80) # geofabrik file - if o_input_data.geofabrik_tiles and \ - o_downloader.should_geofabrik_file_be_downloaded(): + if o_downloader.should_geofabrik_file_be_downloaded(): self.force_processing = True o_downloader.download_geofabrik_file() @@ -199,16 +174,9 @@ def calc_tiles_country(self, o_input_data): """ log.info('# Input country: %s.', o_input_data.country) - # option 1a: use Geofabrik-URL to calculate the relevant tiles - if o_input_data.geofabrik_tiles: - o_geofabrik = Geofabrik(o_input_data.country) - self.tiles = o_geofabrik.get_tiles_of_country() - - # option 1b: use static json files in the repo to calculate relevant tiles - else: - json_file_path = get_path_to_static_tile_json( - o_input_data.country) - self.tiles = read_json_file(json_file_path) + # use Geofabrik-URL to calculate the relevant tiles + o_geofabrik = CountryGeofabrik(o_input_data.country) + self.tiles = o_geofabrik.get_tiles_of_wanted_map() def calc_tiles_xy(self, o_input_data): """ @@ -217,23 +185,13 @@ def calc_tiles_xy(self, o_input_data): log.info( '# Input X/Y coordinates: %s.', o_input_data.xy_coordinates) - # option 2a: use Geofabrik-URL to get the relevant tiles - if o_input_data.geofabrik_tiles: - sys.exit("X/Y coordinated via Geofabrik not implemented now") + # use Geofabrik-URL to get the relevant tiles + xy_coordinates = get_xy_coordinates_from_input( + o_input_data.xy_coordinates) - # option 2b: use static json files in the repo to get relevant tiles - else: - xy_coordinates = get_xy_coordinates_from_input( - o_input_data.xy_coordinates) - - # loop through x/y combinations and find each tile in the json files - for xy_comb in xy_coordinates: - try: - self.tiles.append(get_tile_by_one_xy_combination_from_jsons( - xy_comb)) - - except TileNotFoundError: - pass + o_geofabrik = XYGeofabrik(xy_coordinates) + # find the tiles for x/y combinations in the geofabrik json files + self.tiles = o_geofabrik.get_tiles_of_wanted_map() def calc_border_countries_country(self, o_input_data): """ @@ -272,18 +230,6 @@ def log_border_countries(self): if len(self.border_countries) > 1: log.info('+ Border countries will be processed') - def find_tiles_for_xy_combinations(self, xy_coordinates): - """ - loop through x/y combinations and find each tile in the json files - """ - for xy_comb in xy_coordinates: - try: - self.tiles.append(get_tile_by_one_xy_combination_from_jsons( - xy_comb)) - - except TileNotFoundError: - pass - def calc_country_name_xy(self): """ country name is the X/Y combinations separated by minus diff --git a/wahoomc/resources/json/africa/algeria.json b/wahoomc/resources/json/africa/algeria.json deleted file mode 100644 index 2f97c4f4..00000000 --- a/wahoomc/resources/json/africa/algeria.json +++ /dev/null @@ -1,1806 +0,0 @@ -[ - { - "x": 129, - "y": 99, - "left": 1.40625, - "top": 37.71859, - "right": 2.8125, - "bottom": 36.597889, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 99, - "left": 2.8125, - "top": 37.71859, - "right": 4.21875, - "bottom": 36.597889, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 99, - "left": 4.21875, - "top": 37.71859, - "right": 5.625, - "bottom": 36.597889, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 99, - "left": 5.625, - "top": 37.71859, - "right": 7.03125, - "bottom": 36.597889, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 99, - "left": 7.03125, - "top": 37.71859, - "right": 8.4375, - "bottom": 36.597889, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 99, - "left": 8.4375, - "top": 37.71859, - "right": 9.84375, - "bottom": 36.597889, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 127, - "y": 100, - "left": -1.40625, - "top": 36.597889, - "right": 0.0, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 100, - "left": 0.0, - "top": 36.597889, - "right": 1.40625, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 100, - "left": 1.40625, - "top": 36.597889, - "right": 2.8125, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 100, - "left": 2.8125, - "top": 36.597889, - "right": 4.21875, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 100, - "left": 4.21875, - "top": 36.597889, - "right": 5.625, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 100, - "left": 5.625, - "top": 36.597889, - "right": 7.03125, - "bottom": 35.46067, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 100, - "left": 7.03125, - "top": 36.597889, - "right": 8.4375, - "bottom": 35.46067, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 126, - "y": 101, - "left": -2.8125, - "top": 35.46067, - "right": -1.40625, - "bottom": 34.307144, - "countries": [ - "spain", - "algeria", - "morocco" - ] - }, - { - "x": 127, - "y": 101, - "left": -1.40625, - "top": 35.46067, - "right": 0.0, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 101, - "left": 0.0, - "top": 35.46067, - "right": 1.40625, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 101, - "left": 1.40625, - "top": 35.46067, - "right": 2.8125, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 101, - "left": 2.8125, - "top": 35.46067, - "right": 4.21875, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 101, - "left": 4.21875, - "top": 35.46067, - "right": 5.625, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 101, - "left": 5.625, - "top": 35.46067, - "right": 7.03125, - "bottom": 34.307144, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 101, - "left": 7.03125, - "top": 35.46067, - "right": 8.4375, - "bottom": 34.307144, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 101, - "left": 8.4375, - "top": 35.46067, - "right": 9.84375, - "bottom": 34.307144, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 126, - "y": 102, - "left": -2.8125, - "top": 34.307144, - "right": -1.40625, - "bottom": 33.137551, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 127, - "y": 102, - "left": -1.40625, - "top": 34.307144, - "right": 0.0, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 102, - "left": 0.0, - "top": 34.307144, - "right": 1.40625, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 102, - "left": 1.40625, - "top": 34.307144, - "right": 2.8125, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 102, - "left": 2.8125, - "top": 34.307144, - "right": 4.21875, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 102, - "left": 4.21875, - "top": 34.307144, - "right": 5.625, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 102, - "left": 5.625, - "top": 34.307144, - "right": 7.03125, - "bottom": 33.137551, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 102, - "left": 7.03125, - "top": 34.307144, - "right": 8.4375, - "bottom": 33.137551, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 125, - "y": 103, - "left": -4.21875, - "top": 33.137551, - "right": -2.8125, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 126, - "y": 103, - "left": -2.8125, - "top": 33.137551, - "right": -1.40625, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 127, - "y": 103, - "left": -1.40625, - "top": 33.137551, - "right": 0.0, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 128, - "y": 103, - "left": 0.0, - "top": 33.137551, - "right": 1.40625, - "bottom": 31.952162, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 103, - "left": 1.40625, - "top": 33.137551, - "right": 2.8125, - "bottom": 31.952162, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 103, - "left": 2.8125, - "top": 33.137551, - "right": 4.21875, - "bottom": 31.952162, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 103, - "left": 4.21875, - "top": 33.137551, - "right": 5.625, - "bottom": 31.952162, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 103, - "left": 5.625, - "top": 33.137551, - "right": 7.03125, - "bottom": 31.952162, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 103, - "left": 7.03125, - "top": 33.137551, - "right": 8.4375, - "bottom": 31.952162, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 103, - "left": 8.4375, - "top": 33.137551, - "right": 9.84375, - "bottom": 31.952162, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 125, - "y": 104, - "left": -4.21875, - "top": 31.952162, - "right": -2.8125, - "bottom": 30.751278, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 126, - "y": 104, - "left": -2.8125, - "top": 31.952162, - "right": -1.40625, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 104, - "left": -1.40625, - "top": 31.952162, - "right": 0.0, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 104, - "left": 0.0, - "top": 31.952162, - "right": 1.40625, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 104, - "left": 1.40625, - "top": 31.952162, - "right": 2.8125, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 104, - "left": 2.8125, - "top": 31.952162, - "right": 4.21875, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 104, - "left": 4.21875, - "top": 31.952162, - "right": 5.625, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 104, - "left": 5.625, - "top": 31.952162, - "right": 7.03125, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 104, - "left": 7.03125, - "top": 31.952162, - "right": 8.4375, - "bottom": 30.751278, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 104, - "left": 8.4375, - "top": 31.952162, - "right": 9.84375, - "bottom": 30.751278, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 122, - "y": 105, - "left": -8.4375, - "top": 30.751278, - "right": -7.03125, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 123, - "y": 105, - "left": -7.03125, - "top": 30.751278, - "right": -5.625, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 124, - "y": 105, - "left": -5.625, - "top": 30.751278, - "right": -4.21875, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 125, - "y": 105, - "left": -4.21875, - "top": 30.751278, - "right": -2.8125, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 126, - "y": 105, - "left": -2.8125, - "top": 30.751278, - "right": -1.40625, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 105, - "left": -1.40625, - "top": 30.751278, - "right": 0.0, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 105, - "left": 0.0, - "top": 30.751278, - "right": 1.40625, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 105, - "left": 1.40625, - "top": 30.751278, - "right": 2.8125, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 105, - "left": 2.8125, - "top": 30.751278, - "right": 4.21875, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 105, - "left": 4.21875, - "top": 30.751278, - "right": 5.625, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 105, - "left": 5.625, - "top": 30.751278, - "right": 7.03125, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 105, - "left": 7.03125, - "top": 30.751278, - "right": 8.4375, - "bottom": 29.53523, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 105, - "left": 8.4375, - "top": 30.751278, - "right": 9.84375, - "bottom": 29.53523, - "countries": [ - "libya", - "tunisia", - "algeria" - ] - }, - { - "x": 121, - "y": 106, - "left": -9.84375, - "top": 29.53523, - "right": -8.4375, - "bottom": 28.304381, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 122, - "y": 106, - "left": -8.4375, - "top": 29.53523, - "right": -7.03125, - "bottom": 28.304381, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 123, - "y": 106, - "left": -7.03125, - "top": 29.53523, - "right": -5.625, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 124, - "y": 106, - "left": -5.625, - "top": 29.53523, - "right": -4.21875, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 125, - "y": 106, - "left": -4.21875, - "top": 29.53523, - "right": -2.8125, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 126, - "y": 106, - "left": -2.8125, - "top": 29.53523, - "right": -1.40625, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 106, - "left": -1.40625, - "top": 29.53523, - "right": 0.0, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 106, - "left": 0.0, - "top": 29.53523, - "right": 1.40625, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 106, - "left": 1.40625, - "top": 29.53523, - "right": 2.8125, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 106, - "left": 2.8125, - "top": 29.53523, - "right": 4.21875, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 106, - "left": 4.21875, - "top": 29.53523, - "right": 5.625, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 106, - "left": 5.625, - "top": 29.53523, - "right": 7.03125, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 106, - "left": 7.03125, - "top": 29.53523, - "right": 8.4375, - "bottom": 28.304381, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 106, - "left": 8.4375, - "top": 29.53523, - "right": 9.84375, - "bottom": 28.304381, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 106, - "left": 9.84375, - "top": 29.53523, - "right": 11.25, - "bottom": 28.304381, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 121, - "y": 107, - "left": -9.84375, - "top": 28.304381, - "right": -8.4375, - "bottom": 27.059126, - "countries": [ - "morocco", - "algeria", - "western_sahara", - "mauritania" - ] - }, - { - "x": 122, - "y": 107, - "left": -8.4375, - "top": 28.304381, - "right": -7.03125, - "bottom": 27.059126, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 123, - "y": 107, - "left": -7.03125, - "top": 28.304381, - "right": -5.625, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 124, - "y": 107, - "left": -5.625, - "top": 28.304381, - "right": -4.21875, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 125, - "y": 107, - "left": -4.21875, - "top": 28.304381, - "right": -2.8125, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 126, - "y": 107, - "left": -2.8125, - "top": 28.304381, - "right": -1.40625, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 107, - "left": -1.40625, - "top": 28.304381, - "right": 0.0, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 107, - "left": 0.0, - "top": 28.304381, - "right": 1.40625, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 107, - "left": 1.40625, - "top": 28.304381, - "right": 2.8125, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 107, - "left": 2.8125, - "top": 28.304381, - "right": 4.21875, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 107, - "left": 4.21875, - "top": 28.304381, - "right": 5.625, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 107, - "left": 5.625, - "top": 28.304381, - "right": 7.03125, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 107, - "left": 7.03125, - "top": 28.304381, - "right": 8.4375, - "bottom": 27.059126, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 107, - "left": 8.4375, - "top": 28.304381, - "right": 9.84375, - "bottom": 27.059126, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 107, - "left": 9.84375, - "top": 28.304381, - "right": 11.25, - "bottom": 27.059126, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 122, - "y": 108, - "left": -8.4375, - "top": 27.059126, - "right": -7.03125, - "bottom": 25.799891, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 123, - "y": 108, - "left": -7.03125, - "top": 27.059126, - "right": -5.625, - "bottom": 25.799891, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 124, - "y": 108, - "left": -5.625, - "top": 27.059126, - "right": -4.21875, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 125, - "y": 108, - "left": -4.21875, - "top": 27.059126, - "right": -2.8125, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 126, - "y": 108, - "left": -2.8125, - "top": 27.059126, - "right": -1.40625, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 108, - "left": -1.40625, - "top": 27.059126, - "right": 0.0, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 108, - "left": 0.0, - "top": 27.059126, - "right": 1.40625, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 108, - "left": 1.40625, - "top": 27.059126, - "right": 2.8125, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 108, - "left": 2.8125, - "top": 27.059126, - "right": 4.21875, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 108, - "left": 4.21875, - "top": 27.059126, - "right": 5.625, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 108, - "left": 5.625, - "top": 27.059126, - "right": 7.03125, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 108, - "left": 7.03125, - "top": 27.059126, - "right": 8.4375, - "bottom": 25.799891, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 108, - "left": 8.4375, - "top": 27.059126, - "right": 9.84375, - "bottom": 25.799891, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 108, - "left": 9.84375, - "top": 27.059126, - "right": 11.25, - "bottom": 25.799891, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 123, - "y": 109, - "left": -7.03125, - "top": 25.799891, - "right": -5.625, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 109, - "left": -5.625, - "top": 25.799891, - "right": -4.21875, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 125, - "y": 109, - "left": -4.21875, - "top": 25.799891, - "right": -2.8125, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 126, - "y": 109, - "left": -2.8125, - "top": 25.799891, - "right": -1.40625, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 127, - "y": 109, - "left": -1.40625, - "top": 25.799891, - "right": 0.0, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 109, - "left": 0.0, - "top": 25.799891, - "right": 1.40625, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 109, - "left": 1.40625, - "top": 25.799891, - "right": 2.8125, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 109, - "left": 2.8125, - "top": 25.799891, - "right": 4.21875, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 109, - "left": 4.21875, - "top": 25.799891, - "right": 5.625, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 109, - "left": 5.625, - "top": 25.799891, - "right": 7.03125, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 109, - "left": 7.03125, - "top": 25.799891, - "right": 8.4375, - "bottom": 24.527135, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 109, - "left": 8.4375, - "top": 25.799891, - "right": 9.84375, - "bottom": 24.527135, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 109, - "left": 9.84375, - "top": 25.799891, - "right": 11.25, - "bottom": 24.527135, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 125, - "y": 110, - "left": -4.21875, - "top": 24.527135, - "right": -2.8125, - "bottom": 23.241346, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 126, - "y": 110, - "left": -2.8125, - "top": 24.527135, - "right": -1.40625, - "bottom": 23.241346, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 127, - "y": 110, - "left": -1.40625, - "top": 24.527135, - "right": 0.0, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 128, - "y": 110, - "left": 0.0, - "top": 24.527135, - "right": 1.40625, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 110, - "left": 1.40625, - "top": 24.527135, - "right": 2.8125, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 110, - "left": 2.8125, - "top": 24.527135, - "right": 4.21875, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 110, - "left": 4.21875, - "top": 24.527135, - "right": 5.625, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 110, - "left": 5.625, - "top": 24.527135, - "right": 7.03125, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 110, - "left": 7.03125, - "top": 24.527135, - "right": 8.4375, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 110, - "left": 8.4375, - "top": 24.527135, - "right": 9.84375, - "bottom": 23.241346, - "countries": [ - "algeria" - ] - }, - { - "x": 135, - "y": 110, - "left": 9.84375, - "top": 24.527135, - "right": 11.25, - "bottom": 23.241346, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 136, - "y": 110, - "left": 11.25, - "top": 24.527135, - "right": 12.65625, - "bottom": 23.241346, - "countries": [ - "libya", - "algeria", - "niger" - ] - }, - { - "x": 126, - "y": 111, - "left": -2.8125, - "top": 23.241346, - "right": -1.40625, - "bottom": 21.943046, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 127, - "y": 111, - "left": -1.40625, - "top": 23.241346, - "right": 0.0, - "bottom": 21.943046, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 128, - "y": 111, - "left": 0.0, - "top": 23.241346, - "right": 1.40625, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 129, - "y": 111, - "left": 1.40625, - "top": 23.241346, - "right": 2.8125, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 130, - "y": 111, - "left": 2.8125, - "top": 23.241346, - "right": 4.21875, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 111, - "left": 4.21875, - "top": 23.241346, - "right": 5.625, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 111, - "left": 5.625, - "top": 23.241346, - "right": 7.03125, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 111, - "left": 7.03125, - "top": 23.241346, - "right": 8.4375, - "bottom": 21.943046, - "countries": [ - "algeria" - ] - }, - { - "x": 134, - "y": 111, - "left": 8.4375, - "top": 23.241346, - "right": 9.84375, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 135, - "y": 111, - "left": 9.84375, - "top": 23.241346, - "right": 11.25, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 136, - "y": 111, - "left": 11.25, - "top": 23.241346, - "right": 12.65625, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 127, - "y": 112, - "left": -1.40625, - "top": 21.943046, - "right": 0.0, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 128, - "y": 112, - "left": 0.0, - "top": 21.943046, - "right": 1.40625, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 129, - "y": 112, - "left": 1.40625, - "top": 21.943046, - "right": 2.8125, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 130, - "y": 112, - "left": 2.8125, - "top": 21.943046, - "right": 4.21875, - "bottom": 20.632784, - "countries": [ - "algeria" - ] - }, - { - "x": 131, - "y": 112, - "left": 4.21875, - "top": 21.943046, - "right": 5.625, - "bottom": 20.632784, - "countries": [ - "algeria" - ] - }, - { - "x": 132, - "y": 112, - "left": 5.625, - "top": 21.943046, - "right": 7.03125, - "bottom": 20.632784, - "countries": [ - "algeria" - ] - }, - { - "x": 133, - "y": 112, - "left": 7.03125, - "top": 21.943046, - "right": 8.4375, - "bottom": 20.632784, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 134, - "y": 112, - "left": 8.4375, - "top": 21.943046, - "right": 9.84375, - "bottom": 20.632784, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 129, - "y": 113, - "left": 1.40625, - "top": 20.632784, - "right": 2.8125, - "bottom": 19.311143, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 130, - "y": 113, - "left": 2.8125, - "top": 20.632784, - "right": 4.21875, - "bottom": 19.311143, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 131, - "y": 113, - "left": 4.21875, - "top": 20.632784, - "right": 5.625, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 132, - "y": 113, - "left": 5.625, - "top": 20.632784, - "right": 7.03125, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 133, - "y": 113, - "left": 7.03125, - "top": 20.632784, - "right": 8.4375, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 130, - "y": 114, - "left": 2.8125, - "top": 19.311143, - "right": 4.21875, - "bottom": 17.978733, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 131, - "y": 114, - "left": 4.21875, - "top": 19.311143, - "right": 5.625, - "bottom": 17.978733, - "countries": [ - "algeria", - "niger", - "mali" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/angola.json b/wahoomc/resources/json/africa/angola.json deleted file mode 100644 index 63e8ad0a..00000000 --- a/wahoomc/resources/json/africa/angola.json +++ /dev/null @@ -1,903 +0,0 @@ -[ - { - "x": 136, - "y": 131, - "left": 11.25, - "top": -4.214943, - "right": 12.65625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 131, - "left": 12.65625, - "top": -4.214943, - "right": 14.0625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 136, - "y": 132, - "left": 11.25, - "top": -5.615986, - "right": 12.65625, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 132, - "left": 12.65625, - "top": -5.615986, - "right": 14.0625, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 138, - "y": 132, - "left": 14.0625, - "top": -5.615986, - "right": 15.46875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 132, - "left": 15.46875, - "top": -5.615986, - "right": 16.875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 132, - "left": 16.875, - "top": -5.615986, - "right": 18.28125, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 132, - "left": 18.28125, - "top": -5.615986, - "right": 19.6875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 132, - "left": 19.6875, - "top": -5.615986, - "right": 21.09375, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 133, - "left": 12.65625, - "top": -7.013668, - "right": 14.0625, - "bottom": -8.407168, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 133, - "left": 14.0625, - "top": -7.013668, - "right": 15.46875, - "bottom": -8.407168, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 133, - "left": 15.46875, - "top": -7.013668, - "right": 16.875, - "bottom": -8.407168, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 133, - "left": 16.875, - "top": -7.013668, - "right": 18.28125, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 133, - "left": 18.28125, - "top": -7.013668, - "right": 19.6875, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 133, - "left": 19.6875, - "top": -7.013668, - "right": 21.09375, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 133, - "left": 21.09375, - "top": -7.013668, - "right": 22.5, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 134, - "left": 12.65625, - "top": -8.407168, - "right": 14.0625, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 134, - "left": 14.0625, - "top": -8.407168, - "right": 15.46875, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 134, - "left": 15.46875, - "top": -8.407168, - "right": 16.875, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 134, - "left": 16.875, - "top": -8.407168, - "right": 18.28125, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 134, - "left": 18.28125, - "top": -8.407168, - "right": 19.6875, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 134, - "left": 19.6875, - "top": -8.407168, - "right": 21.09375, - "bottom": -9.795678, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 134, - "left": 21.09375, - "top": -8.407168, - "right": 22.5, - "bottom": -9.795678, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 135, - "left": 12.65625, - "top": -9.795678, - "right": 14.0625, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 135, - "left": 14.0625, - "top": -9.795678, - "right": 15.46875, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 135, - "left": 15.46875, - "top": -9.795678, - "right": 16.875, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 135, - "left": 16.875, - "top": -9.795678, - "right": 18.28125, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 135, - "left": 18.28125, - "top": -9.795678, - "right": 19.6875, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 135, - "left": 19.6875, - "top": -9.795678, - "right": 21.09375, - "bottom": -11.178402, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 135, - "left": 21.09375, - "top": -9.795678, - "right": 22.5, - "bottom": -11.178402, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 135, - "left": 22.5, - "top": -9.795678, - "right": 23.90625, - "bottom": -11.178402, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 135, - "left": 23.90625, - "top": -9.795678, - "right": 25.3125, - "bottom": -11.178402, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 136, - "left": 12.65625, - "top": -11.178402, - "right": 14.0625, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 136, - "left": 14.0625, - "top": -11.178402, - "right": 15.46875, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 136, - "left": 15.46875, - "top": -11.178402, - "right": 16.875, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 136, - "left": 16.875, - "top": -11.178402, - "right": 18.28125, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 136, - "left": 18.28125, - "top": -11.178402, - "right": 19.6875, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 136, - "left": 19.6875, - "top": -11.178402, - "right": 21.09375, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 136, - "left": 21.09375, - "top": -11.178402, - "right": 22.5, - "bottom": -12.554564, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 136, - "left": 22.5, - "top": -11.178402, - "right": 23.90625, - "bottom": -12.554564, - "countries": [ - "angola" - ] - }, - { - "x": 145, - "y": 136, - "left": 23.90625, - "top": -11.178402, - "right": 25.3125, - "bottom": -12.554564, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 136, - "y": 137, - "left": 11.25, - "top": -12.554564, - "right": 12.65625, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 137, - "y": 137, - "left": 12.65625, - "top": -12.554564, - "right": 14.0625, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 137, - "left": 14.0625, - "top": -12.554564, - "right": 15.46875, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 137, - "left": 15.46875, - "top": -12.554564, - "right": 16.875, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 137, - "left": 16.875, - "top": -12.554564, - "right": 18.28125, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 137, - "left": 18.28125, - "top": -12.554564, - "right": 19.6875, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 137, - "left": 19.6875, - "top": -12.554564, - "right": 21.09375, - "bottom": -13.923404, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 137, - "left": 21.09375, - "top": -12.554564, - "right": 22.5, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 144, - "y": 137, - "left": 22.5, - "top": -12.554564, - "right": 23.90625, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 145, - "y": 137, - "left": 23.90625, - "top": -12.554564, - "right": 25.3125, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 136, - "y": 138, - "left": 11.25, - "top": -13.923404, - "right": 12.65625, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 137, - "y": 138, - "left": 12.65625, - "top": -13.923404, - "right": 14.0625, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 138, - "left": 14.0625, - "top": -13.923404, - "right": 15.46875, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 138, - "left": 15.46875, - "top": -13.923404, - "right": 16.875, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 138, - "left": 16.875, - "top": -13.923404, - "right": 18.28125, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 138, - "left": 18.28125, - "top": -13.923404, - "right": 19.6875, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 138, - "left": 19.6875, - "top": -13.923404, - "right": 21.09375, - "bottom": -15.284185, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 138, - "left": 21.09375, - "top": -13.923404, - "right": 22.5, - "bottom": -15.284185, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 136, - "y": 139, - "left": 11.25, - "top": -15.284185, - "right": 12.65625, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 137, - "y": 139, - "left": 12.65625, - "top": -15.284185, - "right": 14.0625, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 138, - "y": 139, - "left": 14.0625, - "top": -15.284185, - "right": 15.46875, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 139, - "y": 139, - "left": 15.46875, - "top": -15.284185, - "right": 16.875, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 140, - "y": 139, - "left": 16.875, - "top": -15.284185, - "right": 18.28125, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 141, - "y": 139, - "left": 18.28125, - "top": -15.284185, - "right": 19.6875, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 142, - "y": 139, - "left": 19.6875, - "top": -15.284185, - "right": 21.09375, - "bottom": -16.636192, - "countries": [ - "angola" - ] - }, - { - "x": 143, - "y": 139, - "left": 21.09375, - "top": -15.284185, - "right": 22.5, - "bottom": -16.636192, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 136, - "y": 140, - "left": 11.25, - "top": -16.636192, - "right": 12.65625, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 137, - "y": 140, - "left": 12.65625, - "top": -16.636192, - "right": 14.0625, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 138, - "y": 140, - "left": 14.0625, - "top": -16.636192, - "right": 15.46875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 139, - "y": 140, - "left": 15.46875, - "top": -16.636192, - "right": 16.875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 140, - "y": 140, - "left": 16.875, - "top": -16.636192, - "right": 18.28125, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 141, - "y": 140, - "left": 18.28125, - "top": -16.636192, - "right": 19.6875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 142, - "y": 140, - "left": 19.6875, - "top": -16.636192, - "right": 21.09375, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 143, - "y": 140, - "left": 21.09375, - "top": -16.636192, - "right": 22.5, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 144, - "y": 140, - "left": 22.5, - "top": -16.636192, - "right": 23.90625, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 142, - "y": 141, - "left": 19.6875, - "top": -17.978733, - "right": 21.09375, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - }, - { - "x": 143, - "y": 141, - "left": 21.09375, - "top": -17.978733, - "right": 22.5, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/benin.json b/wahoomc/resources/json/africa/benin.json deleted file mode 100644 index ab59f2ad..00000000 --- a/wahoomc/resources/json/africa/benin.json +++ /dev/null @@ -1,141 +0,0 @@ -[ - { - "x": 128, - "y": 119, - "left": 0.0, - "top": 12.554564, - "right": 1.40625, - "bottom": 11.178402, - "countries": [ - "benin", - "burkina_faso" - ] - }, - { - "x": 129, - "y": 119, - "left": 1.40625, - "top": 12.554564, - "right": 2.8125, - "bottom": 11.178402, - "countries": [ - "benin", - "burkina_faso", - "niger" - ] - }, - { - "x": 130, - "y": 119, - "left": 2.8125, - "top": 12.554564, - "right": 4.21875, - "bottom": 11.178402, - "countries": [ - "benin", - "nigeria", - "niger" - ] - }, - { - "x": 128, - "y": 120, - "left": 0.0, - "top": 11.178402, - "right": 1.40625, - "bottom": 9.795678, - "countries": [ - "benin", - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 129, - "y": 120, - "left": 1.40625, - "top": 11.178402, - "right": 2.8125, - "bottom": 9.795678, - "countries": [ - "benin" - ] - }, - { - "x": 130, - "y": 120, - "left": 2.8125, - "top": 11.178402, - "right": 4.21875, - "bottom": 9.795678, - "countries": [ - "benin", - "nigeria" - ] - }, - { - "x": 128, - "y": 121, - "left": 0.0, - "top": 9.795678, - "right": 1.40625, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "ghana" - ] - }, - { - "x": 129, - "y": 121, - "left": 1.40625, - "top": 9.795678, - "right": 2.8125, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 130, - "y": 121, - "left": 2.8125, - "top": 9.795678, - "right": 4.21875, - "bottom": 8.407168, - "countries": [ - "benin", - "nigeria" - ] - }, - { - "x": 129, - "y": 122, - "left": 1.40625, - "top": 8.407168, - "right": 2.8125, - "bottom": 7.013668, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 129, - "y": 123, - "left": 1.40625, - "top": 7.013668, - "right": 2.8125, - "bottom": 5.615986, - "countries": [ - "benin", - "togo", - "nigeria" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/botswana.json b/wahoomc/resources/json/africa/botswana.json deleted file mode 100644 index c8389831..00000000 --- a/wahoomc/resources/json/africa/botswana.json +++ /dev/null @@ -1,488 +0,0 @@ -[ - { - "x": 142, - "y": 141, - "left": 19.6875, - "top": -17.978733, - "right": 21.09375, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - }, - { - "x": 143, - "y": 141, - "left": 21.09375, - "top": -17.978733, - "right": 22.5, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - }, - { - "x": 145, - "y": 140, - "left": 23.90625, - "top": -16.636192, - "right": 25.3125, - "bottom": -17.978733, - "countries": [ - "zambia", - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 144, - "y": 141, - "left": 22.5, - "top": -17.978733, - "right": 23.90625, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 145, - "y": 141, - "left": 23.90625, - "top": -17.978733, - "right": 25.3125, - "bottom": -19.311143, - "countries": [ - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 146, - "y": 141, - "left": 25.3125, - "top": -17.978733, - "right": 26.71875, - "bottom": -19.311143, - "countries": [ - "zambia", - "botswana", - "zimbabwe" - ] - }, - { - "x": 142, - "y": 142, - "left": 19.6875, - "top": -19.311143, - "right": 21.09375, - "bottom": -20.632784, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 143, - "y": 142, - "left": 21.09375, - "top": -19.311143, - "right": 22.5, - "bottom": -20.632784, - "countries": [ - "botswana" - ] - }, - { - "x": 144, - "y": 142, - "left": 22.5, - "top": -19.311143, - "right": 23.90625, - "bottom": -20.632784, - "countries": [ - "botswana" - ] - }, - { - "x": 145, - "y": 142, - "left": 23.90625, - "top": -19.311143, - "right": 25.3125, - "bottom": -20.632784, - "countries": [ - "botswana" - ] - }, - { - "x": 146, - "y": 142, - "left": 25.3125, - "top": -19.311143, - "right": 26.71875, - "bottom": -20.632784, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 142, - "left": 26.71875, - "top": -19.311143, - "right": 28.125, - "bottom": -20.632784, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 142, - "y": 143, - "left": 19.6875, - "top": -20.632784, - "right": 21.09375, - "bottom": -21.943046, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 143, - "y": 143, - "left": 21.09375, - "top": -20.632784, - "right": 22.5, - "bottom": -21.943046, - "countries": [ - "botswana" - ] - }, - { - "x": 144, - "y": 143, - "left": 22.5, - "top": -20.632784, - "right": 23.90625, - "bottom": -21.943046, - "countries": [ - "botswana" - ] - }, - { - "x": 145, - "y": 143, - "left": 23.90625, - "top": -20.632784, - "right": 25.3125, - "bottom": -21.943046, - "countries": [ - "botswana" - ] - }, - { - "x": 146, - "y": 143, - "left": 25.3125, - "top": -20.632784, - "right": 26.71875, - "bottom": -21.943046, - "countries": [ - "botswana" - ] - }, - { - "x": 147, - "y": 143, - "left": 26.71875, - "top": -20.632784, - "right": 28.125, - "bottom": -21.943046, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 143, - "left": 28.125, - "top": -20.632784, - "right": 29.53125, - "bottom": -21.943046, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 142, - "y": 144, - "left": 19.6875, - "top": -21.943046, - "right": 21.09375, - "bottom": -23.241346, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 143, - "y": 144, - "left": 21.09375, - "top": -21.943046, - "right": 22.5, - "bottom": -23.241346, - "countries": [ - "botswana" - ] - }, - { - "x": 144, - "y": 144, - "left": 22.5, - "top": -21.943046, - "right": 23.90625, - "bottom": -23.241346, - "countries": [ - "botswana" - ] - }, - { - "x": 145, - "y": 144, - "left": 23.90625, - "top": -21.943046, - "right": 25.3125, - "bottom": -23.241346, - "countries": [ - "botswana" - ] - }, - { - "x": 146, - "y": 144, - "left": 25.3125, - "top": -21.943046, - "right": 26.71875, - "bottom": -23.241346, - "countries": [ - "botswana" - ] - }, - { - "x": 147, - "y": 144, - "left": 26.71875, - "top": -21.943046, - "right": 28.125, - "bottom": -23.241346, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 148, - "y": 144, - "left": 28.125, - "top": -21.943046, - "right": 29.53125, - "bottom": -23.241346, - "countries": [ - "botswana", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 142, - "y": 145, - "left": 19.6875, - "top": -23.241346, - "right": 21.09375, - "bottom": -24.527135, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 143, - "y": 145, - "left": 21.09375, - "top": -23.241346, - "right": 22.5, - "bottom": -24.527135, - "countries": [ - "botswana" - ] - }, - { - "x": 144, - "y": 145, - "left": 22.5, - "top": -23.241346, - "right": 23.90625, - "bottom": -24.527135, - "countries": [ - "botswana" - ] - }, - { - "x": 145, - "y": 145, - "left": 23.90625, - "top": -23.241346, - "right": 25.3125, - "bottom": -24.527135, - "countries": [ - "botswana" - ] - }, - { - "x": 146, - "y": 145, - "left": 25.3125, - "top": -23.241346, - "right": 26.71875, - "bottom": -24.527135, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 147, - "y": 145, - "left": 26.71875, - "top": -23.241346, - "right": 28.125, - "bottom": -24.527135, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 142, - "y": 146, - "left": 19.6875, - "top": -24.527135, - "right": 21.09375, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 143, - "y": 146, - "left": 21.09375, - "top": -24.527135, - "right": 22.5, - "bottom": -25.799891, - "countries": [ - "botswana" - ] - }, - { - "x": 144, - "y": 146, - "left": 22.5, - "top": -24.527135, - "right": 23.90625, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 145, - "y": 146, - "left": 23.90625, - "top": -24.527135, - "right": 25.3125, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 146, - "y": 146, - "left": 25.3125, - "top": -24.527135, - "right": 26.71875, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 142, - "y": 147, - "left": 19.6875, - "top": -25.799891, - "right": 21.09375, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 143, - "y": 147, - "left": 21.09375, - "top": -25.799891, - "right": 22.5, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 144, - "y": 147, - "left": 22.5, - "top": -25.799891, - "right": 23.90625, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 145, - "y": 147, - "left": 23.90625, - "top": -25.799891, - "right": 25.3125, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/burkina_faso.json b/wahoomc/resources/json/africa/burkina_faso.json deleted file mode 100644 index f588befc..00000000 --- a/wahoomc/resources/json/africa/burkina_faso.json +++ /dev/null @@ -1,293 +0,0 @@ -[ - { - "x": 128, - "y": 119, - "left": 0.0, - "top": 12.554564, - "right": 1.40625, - "bottom": 11.178402, - "countries": [ - "benin", - "burkina_faso" - ] - }, - { - "x": 129, - "y": 119, - "left": 1.40625, - "top": 12.554564, - "right": 2.8125, - "bottom": 11.178402, - "countries": [ - "benin", - "burkina_faso", - "niger" - ] - }, - { - "x": 128, - "y": 120, - "left": 0.0, - "top": 11.178402, - "right": 1.40625, - "bottom": 9.795678, - "countries": [ - "benin", - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 125, - "y": 117, - "left": -4.21875, - "top": 15.284185, - "right": -2.8125, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 126, - "y": 117, - "left": -2.8125, - "top": 15.284185, - "right": -1.40625, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 127, - "y": 117, - "left": -1.40625, - "top": 15.284185, - "right": 0.0, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 128, - "y": 117, - "left": 0.0, - "top": 15.284185, - "right": 1.40625, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "niger", - "mali" - ] - }, - { - "x": 124, - "y": 118, - "left": -5.625, - "top": 13.923404, - "right": -4.21875, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 125, - "y": 118, - "left": -4.21875, - "top": 13.923404, - "right": -2.8125, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 126, - "y": 118, - "left": -2.8125, - "top": 13.923404, - "right": -1.40625, - "bottom": 12.554564, - "countries": [ - "burkina_faso" - ] - }, - { - "x": 127, - "y": 118, - "left": -1.40625, - "top": 13.923404, - "right": 0.0, - "bottom": 12.554564, - "countries": [ - "burkina_faso" - ] - }, - { - "x": 128, - "y": 118, - "left": 0.0, - "top": 13.923404, - "right": 1.40625, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "niger" - ] - }, - { - "x": 129, - "y": 118, - "left": 1.40625, - "top": 13.923404, - "right": 2.8125, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "niger" - ] - }, - { - "x": 124, - "y": 119, - "left": -5.625, - "top": 12.554564, - "right": -4.21875, - "bottom": 11.178402, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 125, - "y": 119, - "left": -4.21875, - "top": 12.554564, - "right": -2.8125, - "bottom": 11.178402, - "countries": [ - "burkina_faso" - ] - }, - { - "x": 126, - "y": 119, - "left": -2.8125, - "top": 12.554564, - "right": -1.40625, - "bottom": 11.178402, - "countries": [ - "burkina_faso" - ] - }, - { - "x": 127, - "y": 119, - "left": -1.40625, - "top": 12.554564, - "right": 0.0, - "bottom": 11.178402, - "countries": [ - "burkina_faso" - ] - }, - { - "x": 124, - "y": 120, - "left": -5.625, - "top": 11.178402, - "right": -4.21875, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "mali" - ] - }, - { - "x": 125, - "y": 120, - "left": -4.21875, - "top": 11.178402, - "right": -2.8125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - }, - { - "x": 126, - "y": 120, - "left": -2.8125, - "top": 11.178402, - "right": -1.40625, - "bottom": 9.795678, - "countries": [ - "burkina_faso", - "ghana" - ] - }, - { - "x": 127, - "y": 120, - "left": -1.40625, - "top": 11.178402, - "right": 0.0, - "bottom": 9.795678, - "countries": [ - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 124, - "y": 121, - "left": -5.625, - "top": 9.795678, - "right": -4.21875, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso" - ] - }, - { - "x": 125, - "y": 121, - "left": -4.21875, - "top": 9.795678, - "right": -2.8125, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso" - ] - }, - { - "x": 126, - "y": 121, - "left": -2.8125, - "top": 9.795678, - "right": -1.40625, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/burundi.json b/wahoomc/resources/json/africa/burundi.json deleted file mode 100644 index 716a783e..00000000 --- a/wahoomc/resources/json/africa/burundi.json +++ /dev/null @@ -1,82 +0,0 @@ -[ - { - "x": 148, - "y": 129, - "left": 28.125, - "top": -1.406109, - "right": 29.53125, - "bottom": -2.811371, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 129, - "left": 29.53125, - "top": -1.406109, - "right": 30.9375, - "bottom": -2.811371, - "countries": [ - "burundi", - "democratic_republic_of_the_congo", - "tanzania", - "rwanda", - "uganda" - ] - }, - { - "x": 148, - "y": 130, - "left": 28.125, - "top": -2.811371, - "right": 29.53125, - "bottom": -4.214943, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 130, - "left": 29.53125, - "top": -2.811371, - "right": 30.9375, - "bottom": -4.214943, - "countries": [ - "rwanda", - "tanzania", - "burundi" - ] - }, - { - "x": 148, - "y": 131, - "left": 28.125, - "top": -4.214943, - "right": 29.53125, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 131, - "left": 29.53125, - "top": -4.214943, - "right": 30.9375, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/cameroon.json b/wahoomc/resources/json/africa/cameroon.json deleted file mode 100644 index e56b9de3..00000000 --- a/wahoomc/resources/json/africa/cameroon.json +++ /dev/null @@ -1,435 +0,0 @@ -[ - { - "x": 138, - "y": 118, - "left": 14.0625, - "top": 13.923404, - "right": 15.46875, - "bottom": 12.554564, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 137, - "y": 119, - "left": 12.65625, - "top": 12.554564, - "right": 14.0625, - "bottom": 11.178402, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 138, - "y": 119, - "left": 14.0625, - "top": 12.554564, - "right": 15.46875, - "bottom": 11.178402, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 137, - "y": 120, - "left": 12.65625, - "top": 11.178402, - "right": 14.0625, - "bottom": 9.795678, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 138, - "y": 120, - "left": 14.0625, - "top": 11.178402, - "right": 15.46875, - "bottom": 9.795678, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 139, - "y": 120, - "left": 15.46875, - "top": 11.178402, - "right": 16.875, - "bottom": 9.795678, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 136, - "y": 121, - "left": 11.25, - "top": 9.795678, - "right": 12.65625, - "bottom": 8.407168, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 137, - "y": 121, - "left": 12.65625, - "top": 9.795678, - "right": 14.0625, - "bottom": 8.407168, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 138, - "y": 121, - "left": 14.0625, - "top": 9.795678, - "right": 15.46875, - "bottom": 8.407168, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 135, - "y": 122, - "left": 9.84375, - "top": 8.407168, - "right": 11.25, - "bottom": 7.013668, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 136, - "y": 122, - "left": 11.25, - "top": 8.407168, - "right": 12.65625, - "bottom": 7.013668, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 137, - "y": 122, - "left": 12.65625, - "top": 8.407168, - "right": 14.0625, - "bottom": 7.013668, - "countries": [ - "cameroon" - ] - }, - { - "x": 138, - "y": 122, - "left": 14.0625, - "top": 8.407168, - "right": 15.46875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 139, - "y": 122, - "left": 15.46875, - "top": 8.407168, - "right": 16.875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 134, - "y": 123, - "left": 8.4375, - "top": 7.013668, - "right": 9.84375, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 135, - "y": 123, - "left": 9.84375, - "top": 7.013668, - "right": 11.25, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 136, - "y": 123, - "left": 11.25, - "top": 7.013668, - "right": 12.65625, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 137, - "y": 123, - "left": 12.65625, - "top": 7.013668, - "right": 14.0625, - "bottom": 5.615986, - "countries": [ - "cameroon" - ] - }, - { - "x": 138, - "y": 123, - "left": 14.0625, - "top": 7.013668, - "right": 15.46875, - "bottom": 5.615986, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 134, - "y": 124, - "left": 8.4375, - "top": 5.615986, - "right": 9.84375, - "bottom": 4.214943, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 135, - "y": 124, - "left": 9.84375, - "top": 5.615986, - "right": 11.25, - "bottom": 4.214943, - "countries": [ - "cameroon" - ] - }, - { - "x": 136, - "y": 124, - "left": 11.25, - "top": 5.615986, - "right": 12.65625, - "bottom": 4.214943, - "countries": [ - "cameroon" - ] - }, - { - "x": 137, - "y": 124, - "left": 12.65625, - "top": 5.615986, - "right": 14.0625, - "bottom": 4.214943, - "countries": [ - "cameroon" - ] - }, - { - "x": 138, - "y": 124, - "left": 14.0625, - "top": 5.615986, - "right": 15.46875, - "bottom": 4.214943, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 134, - "y": 125, - "left": 8.4375, - "top": 4.214943, - "right": 9.84375, - "bottom": 2.811371, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 135, - "y": 125, - "left": 9.84375, - "top": 4.214943, - "right": 11.25, - "bottom": 2.811371, - "countries": [ - "cameroon" - ] - }, - { - "x": 136, - "y": 125, - "left": 11.25, - "top": 4.214943, - "right": 12.65625, - "bottom": 2.811371, - "countries": [ - "cameroon" - ] - }, - { - "x": 137, - "y": 125, - "left": 12.65625, - "top": 4.214943, - "right": 14.0625, - "bottom": 2.811371, - "countries": [ - "cameroon" - ] - }, - { - "x": 138, - "y": 125, - "left": 14.0625, - "top": 4.214943, - "right": 15.46875, - "bottom": 2.811371, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 125, - "left": 15.46875, - "top": 4.214943, - "right": 16.875, - "bottom": 2.811371, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 134, - "y": 126, - "left": 8.4375, - "top": 2.811371, - "right": 9.84375, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 135, - "y": 126, - "left": 9.84375, - "top": 2.811371, - "right": 11.25, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 136, - "y": 126, - "left": 11.25, - "top": 2.811371, - "right": 12.65625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 137, - "y": 126, - "left": 12.65625, - "top": 2.811371, - "right": 14.0625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 126, - "left": 14.0625, - "top": 2.811371, - "right": 15.46875, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo" - ] - }, - { - "x": 139, - "y": 126, - "left": 15.46875, - "top": 2.811371, - "right": 16.875, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/canary_islands.json b/wahoomc/resources/json/africa/canary_islands.json deleted file mode 100644 index 37cd8654..00000000 --- a/wahoomc/resources/json/africa/canary_islands.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "x": 115, - "y": 106, - "left": -18.28125, - "top": 29.53523, - "right": -16.875, - "bottom": 28.304381, - "countries": [ - "canary-islands" - ] - }, - { - "x": 116, - "y": 106, - "left": -16.875, - "top": 29.53523, - "right": -15.46875, - "bottom": 28.304381, - "countries": [ - "canary-islands" - ] - }, - { - "x": 117, - "y": 106, - "left": -15.46875, - "top": 29.53523, - "right": -14.0625, - "bottom": 28.304381, - "countries": [ - "canary-islands" - ] - }, - { - "x": 118, - "y": 106, - "left": -14.0625, - "top": 29.53523, - "right": -12.65625, - "bottom": 28.304381, - "countries": [ - "canary-islands" - ] - }, - { - "x": 115, - "y": 107, - "left": -18.28125, - "top": 28.304381, - "right": -16.875, - "bottom": 27.059126, - "countries": [ - "canary-islands" - ] - }, - { - "x": 116, - "y": 107, - "left": -16.875, - "top": 28.304381, - "right": -15.46875, - "bottom": 27.059126, - "countries": [ - "canary-islands" - ] - }, - { - "x": 117, - "y": 107, - "left": -15.46875, - "top": 28.304381, - "right": -14.0625, - "bottom": 27.059126, - "countries": [ - "canary-islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/cape_verde.json b/wahoomc/resources/json/africa/cape_verde.json deleted file mode 100644 index 343bc38d..00000000 --- a/wahoomc/resources/json/africa/cape_verde.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "x": 109, - "y": 115, - "left": -26.71875, - "top": 17.978733, - "right": -25.3125, - "bottom": 16.636192, - "countries": [ - "cape_verde" - ] - }, - { - "x": 110, - "y": 115, - "left": -25.3125, - "top": 17.978733, - "right": -23.90625, - "bottom": 16.636192, - "countries": [ - "cape_verde" - ] - }, - { - "x": 111, - "y": 115, - "left": -23.90625, - "top": 17.978733, - "right": -22.5, - "bottom": 16.636192, - "countries": [ - "cape_verde" - ] - }, - { - "x": 110, - "y": 116, - "left": -25.3125, - "top": 16.636192, - "right": -23.90625, - "bottom": 15.284185, - "countries": [ - "cape_verde" - ] - }, - { - "x": 111, - "y": 116, - "left": -23.90625, - "top": 16.636192, - "right": -22.5, - "bottom": 15.284185, - "countries": [ - "cape_verde" - ] - }, - { - "x": 110, - "y": 117, - "left": -25.3125, - "top": 15.284185, - "right": -23.90625, - "bottom": 13.923404, - "countries": [ - "cape_verde" - ] - }, - { - "x": 111, - "y": 117, - "left": -23.90625, - "top": 15.284185, - "right": -22.5, - "bottom": 13.923404, - "countries": [ - "cape_verde" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/central_african_republic.json b/wahoomc/resources/json/africa/central_african_republic.json deleted file mode 100644 index 205a5feb..00000000 --- a/wahoomc/resources/json/africa/central_african_republic.json +++ /dev/null @@ -1,513 +0,0 @@ -[ - { - "x": 138, - "y": 122, - "left": 14.0625, - "top": 8.407168, - "right": 15.46875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 139, - "y": 122, - "left": 15.46875, - "top": 8.407168, - "right": 16.875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 138, - "y": 123, - "left": 14.0625, - "top": 7.013668, - "right": 15.46875, - "bottom": 5.615986, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 138, - "y": 124, - "left": 14.0625, - "top": 5.615986, - "right": 15.46875, - "bottom": 4.214943, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 138, - "y": 125, - "left": 14.0625, - "top": 4.214943, - "right": 15.46875, - "bottom": 2.811371, - "countries": [ - "cameroon", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 125, - "left": 15.46875, - "top": 4.214943, - "right": 16.875, - "bottom": 2.811371, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 126, - "left": 15.46875, - "top": 2.811371, - "right": 16.875, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 143, - "y": 120, - "left": 21.09375, - "top": 11.178402, - "right": 22.5, - "bottom": 9.795678, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 144, - "y": 120, - "left": 22.5, - "top": 11.178402, - "right": 23.90625, - "bottom": 9.795678, - "countries": [ - "chad", - "sudan", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 121, - "left": 18.28125, - "top": 9.795678, - "right": 19.6875, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 142, - "y": 121, - "left": 19.6875, - "top": 9.795678, - "right": 21.09375, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 143, - "y": 121, - "left": 21.09375, - "top": 9.795678, - "right": 22.5, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 144, - "y": 121, - "left": 22.5, - "top": 9.795678, - "right": 23.90625, - "bottom": 8.407168, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 145, - "y": 121, - "left": 23.90625, - "top": 9.795678, - "right": 25.3125, - "bottom": 8.407168, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 140, - "y": 122, - "left": 16.875, - "top": 8.407168, - "right": 18.28125, - "bottom": 7.013668, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 122, - "left": 18.28125, - "top": 8.407168, - "right": 19.6875, - "bottom": 7.013668, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 142, - "y": 122, - "left": 19.6875, - "top": 8.407168, - "right": 21.09375, - "bottom": 7.013668, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 143, - "y": 122, - "left": 21.09375, - "top": 8.407168, - "right": 22.5, - "bottom": 7.013668, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 144, - "y": 122, - "left": 22.5, - "top": 8.407168, - "right": 23.90625, - "bottom": 7.013668, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 145, - "y": 122, - "left": 23.90625, - "top": 8.407168, - "right": 25.3125, - "bottom": 7.013668, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 146, - "y": 122, - "left": 25.3125, - "top": 8.407168, - "right": 26.71875, - "bottom": 7.013668, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 123, - "left": 15.46875, - "top": 7.013668, - "right": 16.875, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 140, - "y": 123, - "left": 16.875, - "top": 7.013668, - "right": 18.28125, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 141, - "y": 123, - "left": 18.28125, - "top": 7.013668, - "right": 19.6875, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 142, - "y": 123, - "left": 19.6875, - "top": 7.013668, - "right": 21.09375, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 143, - "y": 123, - "left": 21.09375, - "top": 7.013668, - "right": 22.5, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 144, - "y": 123, - "left": 22.5, - "top": 7.013668, - "right": 23.90625, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 145, - "y": 123, - "left": 23.90625, - "top": 7.013668, - "right": 25.3125, - "bottom": 5.615986, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 146, - "y": 123, - "left": 25.3125, - "top": 7.013668, - "right": 26.71875, - "bottom": 5.615986, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 147, - "y": 123, - "left": 26.71875, - "top": 7.013668, - "right": 28.125, - "bottom": 5.615986, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 124, - "left": 15.46875, - "top": 5.615986, - "right": 16.875, - "bottom": 4.214943, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 140, - "y": 124, - "left": 16.875, - "top": 5.615986, - "right": 18.28125, - "bottom": 4.214943, - "countries": [ - "central_african_republic" - ] - }, - { - "x": 141, - "y": 124, - "left": 18.28125, - "top": 5.615986, - "right": 19.6875, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 124, - "left": 19.6875, - "top": 5.615986, - "right": 21.09375, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 124, - "left": 21.09375, - "top": 5.615986, - "right": 22.5, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 124, - "left": 22.5, - "top": 5.615986, - "right": 23.90625, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 124, - "left": 23.90625, - "top": 5.615986, - "right": 25.3125, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 124, - "left": 25.3125, - "top": 5.615986, - "right": 26.71875, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 124, - "left": 26.71875, - "top": 5.615986, - "right": 28.125, - "bottom": 4.214943, - "countries": [ - "sudan", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 125, - "left": 16.875, - "top": 4.214943, - "right": 18.28125, - "bottom": 2.811371, - "countries": [ - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 125, - "left": 18.28125, - "top": 4.214943, - "right": 19.6875, - "bottom": 2.811371, - "countries": [ - "republic_of_congo", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 125, - "left": 21.09375, - "top": 4.214943, - "right": 22.5, - "bottom": 2.811371, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 125, - "left": 22.5, - "top": 4.214943, - "right": 23.90625, - "bottom": 2.811371, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/chad.json b/wahoomc/resources/json/africa/chad.json deleted file mode 100644 index fae224ca..00000000 --- a/wahoomc/resources/json/africa/chad.json +++ /dev/null @@ -1,958 +0,0 @@ -[ - { - "x": 138, - "y": 118, - "left": 14.0625, - "top": 13.923404, - "right": 15.46875, - "bottom": 12.554564, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 138, - "y": 119, - "left": 14.0625, - "top": 12.554564, - "right": 15.46875, - "bottom": 11.178402, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 138, - "y": 120, - "left": 14.0625, - "top": 11.178402, - "right": 15.46875, - "bottom": 9.795678, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 139, - "y": 120, - "left": 15.46875, - "top": 11.178402, - "right": 16.875, - "bottom": 9.795678, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 137, - "y": 121, - "left": 12.65625, - "top": 9.795678, - "right": 14.0625, - "bottom": 8.407168, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 138, - "y": 121, - "left": 14.0625, - "top": 9.795678, - "right": 15.46875, - "bottom": 8.407168, - "countries": [ - "cameroon", - "chad" - ] - }, - { - "x": 138, - "y": 122, - "left": 14.0625, - "top": 8.407168, - "right": 15.46875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 139, - "y": 122, - "left": 15.46875, - "top": 8.407168, - "right": 16.875, - "bottom": 7.013668, - "countries": [ - "cameroon", - "central_african_republic", - "chad" - ] - }, - { - "x": 143, - "y": 120, - "left": 21.09375, - "top": 11.178402, - "right": 22.5, - "bottom": 9.795678, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 144, - "y": 120, - "left": 22.5, - "top": 11.178402, - "right": 23.90625, - "bottom": 9.795678, - "countries": [ - "chad", - "sudan", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 121, - "left": 18.28125, - "top": 9.795678, - "right": 19.6875, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 142, - "y": 121, - "left": 19.6875, - "top": 9.795678, - "right": 21.09375, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 143, - "y": 121, - "left": 21.09375, - "top": 9.795678, - "right": 22.5, - "bottom": 8.407168, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 140, - "y": 122, - "left": 16.875, - "top": 8.407168, - "right": 18.28125, - "bottom": 7.013668, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 122, - "left": 18.28125, - "top": 8.407168, - "right": 19.6875, - "bottom": 7.013668, - "countries": [ - "chad", - "central_african_republic" - ] - }, - { - "x": 139, - "y": 110, - "left": 15.46875, - "top": 24.527135, - "right": 16.875, - "bottom": 23.241346, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 138, - "y": 111, - "left": 14.0625, - "top": 23.241346, - "right": 15.46875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 111, - "left": 15.46875, - "top": 23.241346, - "right": 16.875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 140, - "y": 111, - "left": 16.875, - "top": 23.241346, - "right": 18.28125, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 141, - "y": 111, - "left": 18.28125, - "top": 23.241346, - "right": 19.6875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 138, - "y": 112, - "left": 14.0625, - "top": 21.943046, - "right": 15.46875, - "bottom": 20.632784, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 112, - "left": 15.46875, - "top": 21.943046, - "right": 16.875, - "bottom": 20.632784, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 140, - "y": 112, - "left": 16.875, - "top": 21.943046, - "right": 18.28125, - "bottom": 20.632784, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 112, - "left": 18.28125, - "top": 21.943046, - "right": 19.6875, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 142, - "y": 112, - "left": 19.6875, - "top": 21.943046, - "right": 21.09375, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 143, - "y": 112, - "left": 21.09375, - "top": 21.943046, - "right": 22.5, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 139, - "y": 113, - "left": 15.46875, - "top": 20.632784, - "right": 16.875, - "bottom": 19.311143, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 140, - "y": 113, - "left": 16.875, - "top": 20.632784, - "right": 18.28125, - "bottom": 19.311143, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 113, - "left": 18.28125, - "top": 20.632784, - "right": 19.6875, - "bottom": 19.311143, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 113, - "left": 19.6875, - "top": 20.632784, - "right": 21.09375, - "bottom": 19.311143, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 113, - "left": 21.09375, - "top": 20.632784, - "right": 22.5, - "bottom": 19.311143, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 144, - "y": 113, - "left": 22.5, - "top": 20.632784, - "right": 23.90625, - "bottom": 19.311143, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 145, - "y": 113, - "left": 23.90625, - "top": 20.632784, - "right": 25.3125, - "bottom": 19.311143, - "countries": [ - "libya", - "chad", - "sudan" - ] - }, - { - "x": 139, - "y": 114, - "left": 15.46875, - "top": 19.311143, - "right": 16.875, - "bottom": 17.978733, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 140, - "y": 114, - "left": 16.875, - "top": 19.311143, - "right": 18.28125, - "bottom": 17.978733, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 114, - "left": 18.28125, - "top": 19.311143, - "right": 19.6875, - "bottom": 17.978733, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 114, - "left": 19.6875, - "top": 19.311143, - "right": 21.09375, - "bottom": 17.978733, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 114, - "left": 21.09375, - "top": 19.311143, - "right": 22.5, - "bottom": 17.978733, - "countries": [ - "chad" - ] - }, - { - "x": 144, - "y": 114, - "left": 22.5, - "top": 19.311143, - "right": 23.90625, - "bottom": 17.978733, - "countries": [ - "chad" - ] - }, - { - "x": 145, - "y": 114, - "left": 23.90625, - "top": 19.311143, - "right": 25.3125, - "bottom": 17.978733, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 138, - "y": 115, - "left": 14.0625, - "top": 17.978733, - "right": 15.46875, - "bottom": 16.636192, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 115, - "left": 15.46875, - "top": 17.978733, - "right": 16.875, - "bottom": 16.636192, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 140, - "y": 115, - "left": 16.875, - "top": 17.978733, - "right": 18.28125, - "bottom": 16.636192, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 115, - "left": 18.28125, - "top": 17.978733, - "right": 19.6875, - "bottom": 16.636192, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 115, - "left": 19.6875, - "top": 17.978733, - "right": 21.09375, - "bottom": 16.636192, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 115, - "left": 21.09375, - "top": 17.978733, - "right": 22.5, - "bottom": 16.636192, - "countries": [ - "chad" - ] - }, - { - "x": 144, - "y": 115, - "left": 22.5, - "top": 17.978733, - "right": 23.90625, - "bottom": 16.636192, - "countries": [ - "chad" - ] - }, - { - "x": 145, - "y": 115, - "left": 23.90625, - "top": 17.978733, - "right": 25.3125, - "bottom": 16.636192, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 137, - "y": 116, - "left": 12.65625, - "top": 16.636192, - "right": 14.0625, - "bottom": 15.284185, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 138, - "y": 116, - "left": 14.0625, - "top": 16.636192, - "right": 15.46875, - "bottom": 15.284185, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 116, - "left": 15.46875, - "top": 16.636192, - "right": 16.875, - "bottom": 15.284185, - "countries": [ - "chad" - ] - }, - { - "x": 140, - "y": 116, - "left": 16.875, - "top": 16.636192, - "right": 18.28125, - "bottom": 15.284185, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 116, - "left": 18.28125, - "top": 16.636192, - "right": 19.6875, - "bottom": 15.284185, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 116, - "left": 19.6875, - "top": 16.636192, - "right": 21.09375, - "bottom": 15.284185, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 116, - "left": 21.09375, - "top": 16.636192, - "right": 22.5, - "bottom": 15.284185, - "countries": [ - "chad" - ] - }, - { - "x": 144, - "y": 116, - "left": 22.5, - "top": 16.636192, - "right": 23.90625, - "bottom": 15.284185, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 145, - "y": 116, - "left": 23.90625, - "top": 16.636192, - "right": 25.3125, - "bottom": 15.284185, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 137, - "y": 117, - "left": 12.65625, - "top": 15.284185, - "right": 14.0625, - "bottom": 13.923404, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 138, - "y": 117, - "left": 14.0625, - "top": 15.284185, - "right": 15.46875, - "bottom": 13.923404, - "countries": [ - "chad" - ] - }, - { - "x": 139, - "y": 117, - "left": 15.46875, - "top": 15.284185, - "right": 16.875, - "bottom": 13.923404, - "countries": [ - "chad" - ] - }, - { - "x": 140, - "y": 117, - "left": 16.875, - "top": 15.284185, - "right": 18.28125, - "bottom": 13.923404, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 117, - "left": 18.28125, - "top": 15.284185, - "right": 19.6875, - "bottom": 13.923404, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 117, - "left": 19.6875, - "top": 15.284185, - "right": 21.09375, - "bottom": 13.923404, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 117, - "left": 21.09375, - "top": 15.284185, - "right": 22.5, - "bottom": 13.923404, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 144, - "y": 117, - "left": 22.5, - "top": 15.284185, - "right": 23.90625, - "bottom": 13.923404, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 137, - "y": 118, - "left": 12.65625, - "top": 13.923404, - "right": 14.0625, - "bottom": 12.554564, - "countries": [ - "chad", - "nigeria", - "niger" - ] - }, - { - "x": 139, - "y": 118, - "left": 15.46875, - "top": 13.923404, - "right": 16.875, - "bottom": 12.554564, - "countries": [ - "chad" - ] - }, - { - "x": 140, - "y": 118, - "left": 16.875, - "top": 13.923404, - "right": 18.28125, - "bottom": 12.554564, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 118, - "left": 18.28125, - "top": 13.923404, - "right": 19.6875, - "bottom": 12.554564, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 118, - "left": 19.6875, - "top": 13.923404, - "right": 21.09375, - "bottom": 12.554564, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 118, - "left": 21.09375, - "top": 13.923404, - "right": 22.5, - "bottom": 12.554564, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 139, - "y": 119, - "left": 15.46875, - "top": 12.554564, - "right": 16.875, - "bottom": 11.178402, - "countries": [ - "chad" - ] - }, - { - "x": 140, - "y": 119, - "left": 16.875, - "top": 12.554564, - "right": 18.28125, - "bottom": 11.178402, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 119, - "left": 18.28125, - "top": 12.554564, - "right": 19.6875, - "bottom": 11.178402, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 119, - "left": 19.6875, - "top": 12.554564, - "right": 21.09375, - "bottom": 11.178402, - "countries": [ - "chad" - ] - }, - { - "x": 143, - "y": 119, - "left": 21.09375, - "top": 12.554564, - "right": 22.5, - "bottom": 11.178402, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 144, - "y": 119, - "left": 22.5, - "top": 12.554564, - "right": 23.90625, - "bottom": 11.178402, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 140, - "y": 120, - "left": 16.875, - "top": 11.178402, - "right": 18.28125, - "bottom": 9.795678, - "countries": [ - "chad" - ] - }, - { - "x": 141, - "y": 120, - "left": 18.28125, - "top": 11.178402, - "right": 19.6875, - "bottom": 9.795678, - "countries": [ - "chad" - ] - }, - { - "x": 142, - "y": 120, - "left": 19.6875, - "top": 11.178402, - "right": 21.09375, - "bottom": 9.795678, - "countries": [ - "chad" - ] - }, - { - "x": 139, - "y": 121, - "left": 15.46875, - "top": 9.795678, - "right": 16.875, - "bottom": 8.407168, - "countries": [ - "chad" - ] - }, - { - "x": 140, - "y": 121, - "left": 16.875, - "top": 9.795678, - "right": 18.28125, - "bottom": 8.407168, - "countries": [ - "chad" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/comoros.json b/wahoomc/resources/json/africa/comoros.json deleted file mode 100644 index e68db541..00000000 --- a/wahoomc/resources/json/africa/comoros.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 158, - "y": 136, - "left": 42.1875, - "top": -11.178402, - "right": 43.59375, - "bottom": -12.554564, - "countries": [ - "comoros" - ] - }, - { - "x": 159, - "y": 136, - "left": 43.59375, - "top": -11.178402, - "right": 45.0, - "bottom": -12.554564, - "countries": [ - "comoros" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/cote_d_ivoire.json b/wahoomc/resources/json/africa/cote_d_ivoire.json deleted file mode 100644 index 96a5185b..00000000 --- a/wahoomc/resources/json/africa/cote_d_ivoire.json +++ /dev/null @@ -1,313 +0,0 @@ -[ - { - "x": 124, - "y": 120, - "left": -5.625, - "top": 11.178402, - "right": -4.21875, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "mali" - ] - }, - { - "x": 125, - "y": 120, - "left": -4.21875, - "top": 11.178402, - "right": -2.8125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - }, - { - "x": 124, - "y": 121, - "left": -5.625, - "top": 9.795678, - "right": -4.21875, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso" - ] - }, - { - "x": 125, - "y": 121, - "left": -4.21875, - "top": 9.795678, - "right": -2.8125, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso" - ] - }, - { - "x": 126, - "y": 121, - "left": -2.8125, - "top": 9.795678, - "right": -1.40625, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - }, - { - "x": 122, - "y": 120, - "left": -8.4375, - "top": 11.178402, - "right": -7.03125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "mali", - "guinea" - ] - }, - { - "x": 123, - "y": 120, - "left": -7.03125, - "top": 11.178402, - "right": -5.625, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "mali" - ] - }, - { - "x": 122, - "y": 121, - "left": -8.4375, - "top": 9.795678, - "right": -7.03125, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "guinea" - ] - }, - { - "x": 123, - "y": 121, - "left": -7.03125, - "top": 9.795678, - "right": -5.625, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 121, - "y": 122, - "left": -9.84375, - "top": 8.407168, - "right": -8.4375, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 122, - "y": 122, - "left": -8.4375, - "top": 8.407168, - "right": -7.03125, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 123, - "y": 122, - "left": -7.03125, - "top": 8.407168, - "right": -5.625, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 124, - "y": 122, - "left": -5.625, - "top": 8.407168, - "right": -4.21875, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 125, - "y": 122, - "left": -4.21875, - "top": 8.407168, - "right": -2.8125, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 122, - "left": -2.8125, - "top": 8.407168, - "right": -1.40625, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 121, - "y": 123, - "left": -9.84375, - "top": 7.013668, - "right": -8.4375, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 122, - "y": 123, - "left": -8.4375, - "top": 7.013668, - "right": -7.03125, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 123, - "y": 123, - "left": -7.03125, - "top": 7.013668, - "right": -5.625, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 124, - "y": 123, - "left": -5.625, - "top": 7.013668, - "right": -4.21875, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 125, - "y": 123, - "left": -4.21875, - "top": 7.013668, - "right": -2.8125, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 123, - "left": -2.8125, - "top": 7.013668, - "right": -1.40625, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 122, - "y": 124, - "left": -8.4375, - "top": 5.615986, - "right": -7.03125, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 123, - "y": 124, - "left": -7.03125, - "top": 5.615986, - "right": -5.625, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 124, - "y": 124, - "left": -5.625, - "top": 5.615986, - "right": -4.21875, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire" - ] - }, - { - "x": 125, - "y": 124, - "left": -4.21875, - "top": 5.615986, - "right": -2.8125, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 124, - "left": -2.8125, - "top": 5.615986, - "right": -1.40625, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/democratic_republic_of_the_congo.json b/wahoomc/resources/json/africa/democratic_republic_of_the_congo.json deleted file mode 100644 index d82614bf..00000000 --- a/wahoomc/resources/json/africa/democratic_republic_of_the_congo.json +++ /dev/null @@ -1,1499 +0,0 @@ -[ - { - "x": 136, - "y": 131, - "left": 11.25, - "top": -4.214943, - "right": 12.65625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 131, - "left": 12.65625, - "top": -4.214943, - "right": 14.0625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 136, - "y": 132, - "left": 11.25, - "top": -5.615986, - "right": 12.65625, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 132, - "left": 12.65625, - "top": -5.615986, - "right": 14.0625, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 138, - "y": 132, - "left": 14.0625, - "top": -5.615986, - "right": 15.46875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 132, - "left": 15.46875, - "top": -5.615986, - "right": 16.875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 132, - "left": 16.875, - "top": -5.615986, - "right": 18.28125, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 132, - "left": 18.28125, - "top": -5.615986, - "right": 19.6875, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 132, - "left": 19.6875, - "top": -5.615986, - "right": 21.09375, - "bottom": -7.013668, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 133, - "left": 16.875, - "top": -7.013668, - "right": 18.28125, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 133, - "left": 18.28125, - "top": -7.013668, - "right": 19.6875, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 133, - "left": 19.6875, - "top": -7.013668, - "right": 21.09375, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 133, - "left": 21.09375, - "top": -7.013668, - "right": 22.5, - "bottom": -8.407168, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 134, - "left": 21.09375, - "top": -8.407168, - "right": 22.5, - "bottom": -9.795678, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 135, - "left": 21.09375, - "top": -9.795678, - "right": 22.5, - "bottom": -11.178402, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 135, - "left": 22.5, - "top": -9.795678, - "right": 23.90625, - "bottom": -11.178402, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 135, - "left": 23.90625, - "top": -9.795678, - "right": 25.3125, - "bottom": -11.178402, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 136, - "left": 21.09375, - "top": -11.178402, - "right": 22.5, - "bottom": -12.554564, - "countries": [ - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 136, - "left": 23.90625, - "top": -11.178402, - "right": 25.3125, - "bottom": -12.554564, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 129, - "left": 28.125, - "top": -1.406109, - "right": 29.53125, - "bottom": -2.811371, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 129, - "left": 29.53125, - "top": -1.406109, - "right": 30.9375, - "bottom": -2.811371, - "countries": [ - "burundi", - "democratic_republic_of_the_congo", - "tanzania", - "rwanda", - "uganda" - ] - }, - { - "x": 148, - "y": 130, - "left": 28.125, - "top": -2.811371, - "right": 29.53125, - "bottom": -4.214943, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 148, - "y": 131, - "left": 28.125, - "top": -4.214943, - "right": 29.53125, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 131, - "left": 29.53125, - "top": -4.214943, - "right": 30.9375, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 141, - "y": 124, - "left": 18.28125, - "top": 5.615986, - "right": 19.6875, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 124, - "left": 19.6875, - "top": 5.615986, - "right": 21.09375, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 124, - "left": 21.09375, - "top": 5.615986, - "right": 22.5, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 124, - "left": 22.5, - "top": 5.615986, - "right": 23.90625, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 124, - "left": 23.90625, - "top": 5.615986, - "right": 25.3125, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 124, - "left": 25.3125, - "top": 5.615986, - "right": 26.71875, - "bottom": 4.214943, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 124, - "left": 26.71875, - "top": 5.615986, - "right": 28.125, - "bottom": 4.214943, - "countries": [ - "sudan", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 125, - "left": 18.28125, - "top": 4.214943, - "right": 19.6875, - "bottom": 2.811371, - "countries": [ - "republic_of_congo", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 125, - "left": 21.09375, - "top": 4.214943, - "right": 22.5, - "bottom": 2.811371, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 125, - "left": 22.5, - "top": 4.214943, - "right": 23.90625, - "bottom": 2.811371, - "countries": [ - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 124, - "left": 28.125, - "top": 5.615986, - "right": 29.53125, - "bottom": 4.214943, - "countries": [ - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 124, - "left": 29.53125, - "top": 5.615986, - "right": 30.9375, - "bottom": 4.214943, - "countries": [ - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 125, - "left": 19.6875, - "top": 4.214943, - "right": 21.09375, - "bottom": 2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 125, - "left": 23.90625, - "top": 4.214943, - "right": 25.3125, - "bottom": 2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 125, - "left": 25.3125, - "top": 4.214943, - "right": 26.71875, - "bottom": 2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 125, - "left": 26.71875, - "top": 4.214943, - "right": 28.125, - "bottom": 2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 125, - "left": 28.125, - "top": 4.214943, - "right": 29.53125, - "bottom": 2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 125, - "left": 29.53125, - "top": 4.214943, - "right": 30.9375, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 126, - "left": 16.875, - "top": 2.811371, - "right": 18.28125, - "bottom": 1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 126, - "left": 18.28125, - "top": 2.811371, - "right": 19.6875, - "bottom": 1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 126, - "left": 19.6875, - "top": 2.811371, - "right": 21.09375, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 126, - "left": 21.09375, - "top": 2.811371, - "right": 22.5, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 126, - "left": 22.5, - "top": 2.811371, - "right": 23.90625, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 126, - "left": 23.90625, - "top": 2.811371, - "right": 25.3125, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 126, - "left": 25.3125, - "top": 2.811371, - "right": 26.71875, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 126, - "left": 26.71875, - "top": 2.811371, - "right": 28.125, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 126, - "left": 28.125, - "top": 2.811371, - "right": 29.53125, - "bottom": 1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 126, - "left": 29.53125, - "top": 2.811371, - "right": 30.9375, - "bottom": 1.406109, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 150, - "y": 126, - "left": 30.9375, - "top": 2.811371, - "right": 32.34375, - "bottom": 1.406109, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 127, - "left": 16.875, - "top": 1.406109, - "right": 18.28125, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 127, - "left": 18.28125, - "top": 1.406109, - "right": 19.6875, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 127, - "left": 19.6875, - "top": 1.406109, - "right": 21.09375, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 127, - "left": 21.09375, - "top": 1.406109, - "right": 22.5, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 127, - "left": 22.5, - "top": 1.406109, - "right": 23.90625, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 127, - "left": 23.90625, - "top": 1.406109, - "right": 25.3125, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 127, - "left": 25.3125, - "top": 1.406109, - "right": 26.71875, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 127, - "left": 26.71875, - "top": 1.406109, - "right": 28.125, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 127, - "left": 28.125, - "top": 1.406109, - "right": 29.53125, - "bottom": 0.0, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 127, - "left": 29.53125, - "top": 1.406109, - "right": 30.9375, - "bottom": 0.0, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 128, - "left": 15.46875, - "top": 0.0, - "right": 16.875, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 128, - "left": 16.875, - "top": 0.0, - "right": 18.28125, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 128, - "left": 18.28125, - "top": 0.0, - "right": 19.6875, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 128, - "left": 19.6875, - "top": 0.0, - "right": 21.09375, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 128, - "left": 21.09375, - "top": 0.0, - "right": 22.5, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 128, - "left": 22.5, - "top": 0.0, - "right": 23.90625, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 128, - "left": 23.90625, - "top": 0.0, - "right": 25.3125, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 128, - "left": 25.3125, - "top": 0.0, - "right": 26.71875, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 128, - "left": 26.71875, - "top": 0.0, - "right": 28.125, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 128, - "left": 28.125, - "top": 0.0, - "right": 29.53125, - "bottom": -1.406109, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 128, - "left": 29.53125, - "top": 0.0, - "right": 30.9375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania", - "democratic_republic_of_the_congo", - "rwanda" - ] - }, - { - "x": 139, - "y": 129, - "left": 15.46875, - "top": -1.406109, - "right": 16.875, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 129, - "left": 16.875, - "top": -1.406109, - "right": 18.28125, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 129, - "left": 18.28125, - "top": -1.406109, - "right": 19.6875, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 129, - "left": 19.6875, - "top": -1.406109, - "right": 21.09375, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 129, - "left": 21.09375, - "top": -1.406109, - "right": 22.5, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 129, - "left": 22.5, - "top": -1.406109, - "right": 23.90625, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 129, - "left": 23.90625, - "top": -1.406109, - "right": 25.3125, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 129, - "left": 25.3125, - "top": -1.406109, - "right": 26.71875, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 129, - "left": 26.71875, - "top": -1.406109, - "right": 28.125, - "bottom": -2.811371, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 130, - "left": 15.46875, - "top": -2.811371, - "right": 16.875, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 130, - "left": 16.875, - "top": -2.811371, - "right": 18.28125, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 130, - "left": 18.28125, - "top": -2.811371, - "right": 19.6875, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 130, - "left": 19.6875, - "top": -2.811371, - "right": 21.09375, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 130, - "left": 21.09375, - "top": -2.811371, - "right": 22.5, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 130, - "left": 22.5, - "top": -2.811371, - "right": 23.90625, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 130, - "left": 23.90625, - "top": -2.811371, - "right": 25.3125, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 130, - "left": 25.3125, - "top": -2.811371, - "right": 26.71875, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 130, - "left": 26.71875, - "top": -2.811371, - "right": 28.125, - "bottom": -4.214943, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 138, - "y": 131, - "left": 14.0625, - "top": -4.214943, - "right": 15.46875, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 131, - "left": 15.46875, - "top": -4.214943, - "right": 16.875, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 131, - "left": 16.875, - "top": -4.214943, - "right": 18.28125, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 131, - "left": 18.28125, - "top": -4.214943, - "right": 19.6875, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 142, - "y": 131, - "left": 19.6875, - "top": -4.214943, - "right": 21.09375, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 131, - "left": 21.09375, - "top": -4.214943, - "right": 22.5, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 131, - "left": 22.5, - "top": -4.214943, - "right": 23.90625, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 131, - "left": 23.90625, - "top": -4.214943, - "right": 25.3125, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 131, - "left": 25.3125, - "top": -4.214943, - "right": 26.71875, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 131, - "left": 26.71875, - "top": -4.214943, - "right": 28.125, - "bottom": -5.615986, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 132, - "left": 21.09375, - "top": -5.615986, - "right": 22.5, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 132, - "left": 22.5, - "top": -5.615986, - "right": 23.90625, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 132, - "left": 23.90625, - "top": -5.615986, - "right": 25.3125, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 132, - "left": 25.3125, - "top": -5.615986, - "right": 26.71875, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 132, - "left": 26.71875, - "top": -5.615986, - "right": 28.125, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 132, - "left": 28.125, - "top": -5.615986, - "right": 29.53125, - "bottom": -7.013668, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 132, - "left": 29.53125, - "top": -5.615986, - "right": 30.9375, - "bottom": -7.013668, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 133, - "left": 22.5, - "top": -7.013668, - "right": 23.90625, - "bottom": -8.407168, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 133, - "left": 23.90625, - "top": -7.013668, - "right": 25.3125, - "bottom": -8.407168, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 133, - "left": 25.3125, - "top": -7.013668, - "right": 26.71875, - "bottom": -8.407168, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 133, - "left": 26.71875, - "top": -7.013668, - "right": 28.125, - "bottom": -8.407168, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 133, - "left": 28.125, - "top": -7.013668, - "right": 29.53125, - "bottom": -8.407168, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 133, - "left": 29.53125, - "top": -7.013668, - "right": 30.9375, - "bottom": -8.407168, - "countries": [ - "zambia", - "tanzania", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 144, - "y": 134, - "left": 22.5, - "top": -8.407168, - "right": 23.90625, - "bottom": -9.795678, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 134, - "left": 23.90625, - "top": -8.407168, - "right": 25.3125, - "bottom": -9.795678, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 134, - "left": 25.3125, - "top": -8.407168, - "right": 26.71875, - "bottom": -9.795678, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 134, - "left": 26.71875, - "top": -8.407168, - "right": 28.125, - "bottom": -9.795678, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 134, - "left": 28.125, - "top": -8.407168, - "right": 29.53125, - "bottom": -9.795678, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 135, - "left": 25.3125, - "top": -9.795678, - "right": 26.71875, - "bottom": -11.178402, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 135, - "left": 26.71875, - "top": -9.795678, - "right": 28.125, - "bottom": -11.178402, - "countries": [ - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 135, - "left": 28.125, - "top": -9.795678, - "right": 29.53125, - "bottom": -11.178402, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 136, - "left": 25.3125, - "top": -11.178402, - "right": 26.71875, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 136, - "left": 26.71875, - "top": -11.178402, - "right": 28.125, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 136, - "left": 28.125, - "top": -11.178402, - "right": 29.53125, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 136, - "left": 29.53125, - "top": -11.178402, - "right": 30.9375, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 137, - "left": 28.125, - "top": -12.554564, - "right": 29.53125, - "bottom": -13.923404, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 137, - "left": 29.53125, - "top": -12.554564, - "right": 30.9375, - "bottom": -13.923404, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/djibouti.json b/wahoomc/resources/json/africa/djibouti.json deleted file mode 100644 index 63c42700..00000000 --- a/wahoomc/resources/json/africa/djibouti.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "x": 158, - "y": 118, - "left": 42.1875, - "top": 13.923404, - "right": 43.59375, - "bottom": 12.554564, - "countries": [ - "yemen", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 157, - "y": 119, - "left": 40.78125, - "top": 12.554564, - "right": 42.1875, - "bottom": 11.178402, - "countries": [ - "ethiopia", - "djibouti" - ] - }, - { - "x": 158, - "y": 119, - "left": 42.1875, - "top": 12.554564, - "right": 43.59375, - "bottom": 11.178402, - "countries": [ - "somalia", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 157, - "y": 120, - "left": 40.78125, - "top": 11.178402, - "right": 42.1875, - "bottom": 9.795678, - "countries": [ - "ethiopia", - "djibouti" - ] - }, - { - "x": 158, - "y": 120, - "left": 42.1875, - "top": 11.178402, - "right": 43.59375, - "bottom": 9.795678, - "countries": [ - "somalia", - "ethiopia", - "djibouti" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/egypt.json b/wahoomc/resources/json/africa/egypt.json deleted file mode 100644 index 02193d0e..00000000 --- a/wahoomc/resources/json/africa/egypt.json +++ /dev/null @@ -1,789 +0,0 @@ -[ - { - "x": 145, - "y": 104, - "left": 23.90625, - "top": 31.952162, - "right": 25.3125, - "bottom": 30.751278, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 104, - "left": 25.3125, - "top": 31.952162, - "right": 26.71875, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 104, - "left": 26.71875, - "top": 31.952162, - "right": 28.125, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 104, - "left": 28.125, - "top": 31.952162, - "right": 29.53125, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 104, - "left": 29.53125, - "top": 31.952162, - "right": 30.9375, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 104, - "left": 30.9375, - "top": 31.952162, - "right": 32.34375, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 104, - "left": 32.34375, - "top": 31.952162, - "right": 33.75, - "bottom": 30.751278, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 104, - "left": 33.75, - "top": 31.952162, - "right": 35.15625, - "bottom": 30.751278, - "countries": [ - "egypt", - "israel", - "palestina" - ] - }, - { - "x": 145, - "y": 105, - "left": 23.90625, - "top": 30.751278, - "right": 25.3125, - "bottom": 29.53523, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 105, - "left": 25.3125, - "top": 30.751278, - "right": 26.71875, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 105, - "left": 26.71875, - "top": 30.751278, - "right": 28.125, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 105, - "left": 28.125, - "top": 30.751278, - "right": 29.53125, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 105, - "left": 29.53125, - "top": 30.751278, - "right": 30.9375, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 105, - "left": 30.9375, - "top": 30.751278, - "right": 32.34375, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 105, - "left": 32.34375, - "top": 30.751278, - "right": 33.75, - "bottom": 29.53523, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 105, - "left": 33.75, - "top": 30.751278, - "right": 35.15625, - "bottom": 29.53523, - "countries": [ - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 145, - "y": 106, - "left": 23.90625, - "top": 29.53523, - "right": 25.3125, - "bottom": 28.304381, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 106, - "left": 25.3125, - "top": 29.53523, - "right": 26.71875, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 106, - "left": 26.71875, - "top": 29.53523, - "right": 28.125, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 106, - "left": 28.125, - "top": 29.53523, - "right": 29.53125, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 106, - "left": 29.53125, - "top": 29.53523, - "right": 30.9375, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 106, - "left": 30.9375, - "top": 29.53523, - "right": 32.34375, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 106, - "left": 32.34375, - "top": 29.53523, - "right": 33.75, - "bottom": 28.304381, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 106, - "left": 33.75, - "top": 29.53523, - "right": 35.15625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 145, - "y": 107, - "left": 23.90625, - "top": 28.304381, - "right": 25.3125, - "bottom": 27.059126, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 107, - "left": 25.3125, - "top": 28.304381, - "right": 26.71875, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 107, - "left": 26.71875, - "top": 28.304381, - "right": 28.125, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 107, - "left": 28.125, - "top": 28.304381, - "right": 29.53125, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 107, - "left": 29.53125, - "top": 28.304381, - "right": 30.9375, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 107, - "left": 30.9375, - "top": 28.304381, - "right": 32.34375, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 107, - "left": 32.34375, - "top": 28.304381, - "right": 33.75, - "bottom": 27.059126, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 107, - "left": 33.75, - "top": 28.304381, - "right": 35.15625, - "bottom": 27.059126, - "countries": [ - "saudi_arabia", - "egypt" - ] - }, - { - "x": 145, - "y": 108, - "left": 23.90625, - "top": 27.059126, - "right": 25.3125, - "bottom": 25.799891, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 108, - "left": 25.3125, - "top": 27.059126, - "right": 26.71875, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 108, - "left": 26.71875, - "top": 27.059126, - "right": 28.125, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 108, - "left": 28.125, - "top": 27.059126, - "right": 29.53125, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 108, - "left": 29.53125, - "top": 27.059126, - "right": 30.9375, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 108, - "left": 30.9375, - "top": 27.059126, - "right": 32.34375, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 108, - "left": 32.34375, - "top": 27.059126, - "right": 33.75, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 108, - "left": 33.75, - "top": 27.059126, - "right": 35.15625, - "bottom": 25.799891, - "countries": [ - "egypt" - ] - }, - { - "x": 145, - "y": 109, - "left": 23.90625, - "top": 25.799891, - "right": 25.3125, - "bottom": 24.527135, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 109, - "left": 25.3125, - "top": 25.799891, - "right": 26.71875, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 109, - "left": 26.71875, - "top": 25.799891, - "right": 28.125, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 109, - "left": 28.125, - "top": 25.799891, - "right": 29.53125, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 109, - "left": 29.53125, - "top": 25.799891, - "right": 30.9375, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 109, - "left": 30.9375, - "top": 25.799891, - "right": 32.34375, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 109, - "left": 32.34375, - "top": 25.799891, - "right": 33.75, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 109, - "left": 33.75, - "top": 25.799891, - "right": 35.15625, - "bottom": 24.527135, - "countries": [ - "egypt" - ] - }, - { - "x": 153, - "y": 109, - "left": 35.15625, - "top": 25.799891, - "right": 36.5625, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "egypt" - ] - }, - { - "x": 145, - "y": 110, - "left": 23.90625, - "top": 24.527135, - "right": 25.3125, - "bottom": 23.241346, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 146, - "y": 110, - "left": 25.3125, - "top": 24.527135, - "right": 26.71875, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 147, - "y": 110, - "left": 26.71875, - "top": 24.527135, - "right": 28.125, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 148, - "y": 110, - "left": 28.125, - "top": 24.527135, - "right": 29.53125, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 149, - "y": 110, - "left": 29.53125, - "top": 24.527135, - "right": 30.9375, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 150, - "y": 110, - "left": 30.9375, - "top": 24.527135, - "right": 32.34375, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 151, - "y": 110, - "left": 32.34375, - "top": 24.527135, - "right": 33.75, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 152, - "y": 110, - "left": 33.75, - "top": 24.527135, - "right": 35.15625, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 153, - "y": 110, - "left": 35.15625, - "top": 24.527135, - "right": 36.5625, - "bottom": 23.241346, - "countries": [ - "egypt" - ] - }, - { - "x": 145, - "y": 111, - "left": 23.90625, - "top": 23.241346, - "right": 25.3125, - "bottom": 21.943046, - "countries": [ - "libya", - "sudan", - "egypt" - ] - }, - { - "x": 146, - "y": 111, - "left": 25.3125, - "top": 23.241346, - "right": 26.71875, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 147, - "y": 111, - "left": 26.71875, - "top": 23.241346, - "right": 28.125, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 148, - "y": 111, - "left": 28.125, - "top": 23.241346, - "right": 29.53125, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 149, - "y": 111, - "left": 29.53125, - "top": 23.241346, - "right": 30.9375, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 150, - "y": 111, - "left": 30.9375, - "top": 23.241346, - "right": 32.34375, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 151, - "y": 111, - "left": 32.34375, - "top": 23.241346, - "right": 33.75, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 152, - "y": 111, - "left": 33.75, - "top": 23.241346, - "right": 35.15625, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 153, - "y": 111, - "left": 35.15625, - "top": 23.241346, - "right": 36.5625, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 151, - "y": 112, - "left": 32.34375, - "top": 21.943046, - "right": 33.75, - "bottom": 20.632784, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 152, - "y": 112, - "left": 33.75, - "top": 21.943046, - "right": 35.15625, - "bottom": 20.632784, - "countries": [ - "sudan", - "egypt" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/equatorial_guinea.json b/wahoomc/resources/json/africa/equatorial_guinea.json deleted file mode 100644 index bb4f312f..00000000 --- a/wahoomc/resources/json/africa/equatorial_guinea.json +++ /dev/null @@ -1,131 +0,0 @@ -[ - { - "x": 134, - "y": 125, - "left": 8.4375, - "top": 4.214943, - "right": 9.84375, - "bottom": 2.811371, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 134, - "y": 126, - "left": 8.4375, - "top": 2.811371, - "right": 9.84375, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 135, - "y": 126, - "left": 9.84375, - "top": 2.811371, - "right": 11.25, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea" - ] - }, - { - "x": 136, - "y": 126, - "left": 11.25, - "top": 2.811371, - "right": 12.65625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 133, - "y": 125, - "left": 7.03125, - "top": 4.214943, - "right": 8.4375, - "bottom": 2.811371, - "countries": [ - "equatorial_guinea" - ] - }, - { - "x": 134, - "y": 127, - "left": 8.4375, - "top": 1.406109, - "right": 9.84375, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 135, - "y": 127, - "left": 9.84375, - "top": 1.406109, - "right": 11.25, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 136, - "y": 127, - "left": 11.25, - "top": 1.406109, - "right": 12.65625, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 131, - "y": 128, - "left": 4.21875, - "top": 0.0, - "right": 5.625, - "bottom": -1.406109, - "countries": [ - "equatorial_guinea" - ] - }, - { - "x": 131, - "y": 129, - "left": 4.21875, - "top": -1.406109, - "right": 5.625, - "bottom": -2.811371, - "countries": [ - "equatorial_guinea" - ] - }, - { - "x": 132, - "y": 129, - "left": 5.625, - "top": -1.406109, - "right": 7.03125, - "bottom": -2.811371, - "countries": [ - "equatorial_guinea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/eritrea.json b/wahoomc/resources/json/africa/eritrea.json deleted file mode 100644 index 5c92b3c7..00000000 --- a/wahoomc/resources/json/africa/eritrea.json +++ /dev/null @@ -1,199 +0,0 @@ -[ - { - "x": 158, - "y": 118, - "left": 42.1875, - "top": 13.923404, - "right": 43.59375, - "bottom": 12.554564, - "countries": [ - "yemen", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 158, - "y": 119, - "left": 42.1875, - "top": 12.554564, - "right": 43.59375, - "bottom": 11.178402, - "countries": [ - "somalia", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 155, - "y": 114, - "left": 37.96875, - "top": 19.311143, - "right": 39.375, - "bottom": 17.978733, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 154, - "y": 115, - "left": 36.5625, - "top": 17.978733, - "right": 37.96875, - "bottom": 16.636192, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 155, - "y": 115, - "left": 37.96875, - "top": 17.978733, - "right": 39.375, - "bottom": 16.636192, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 153, - "y": 116, - "left": 35.15625, - "top": 16.636192, - "right": 36.5625, - "bottom": 15.284185, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 154, - "y": 116, - "left": 36.5625, - "top": 16.636192, - "right": 37.96875, - "bottom": 15.284185, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 155, - "y": 116, - "left": 37.96875, - "top": 16.636192, - "right": 39.375, - "bottom": 15.284185, - "countries": [ - "eritrea" - ] - }, - { - "x": 156, - "y": 116, - "left": 39.375, - "top": 16.636192, - "right": 40.78125, - "bottom": 15.284185, - "countries": [ - "eritrea" - ] - }, - { - "x": 157, - "y": 116, - "left": 40.78125, - "top": 16.636192, - "right": 42.1875, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen", - "eritrea" - ] - }, - { - "x": 153, - "y": 117, - "left": 35.15625, - "top": 15.284185, - "right": 36.5625, - "bottom": 13.923404, - "countries": [ - "sudan", - "ethiopia", - "eritrea" - ] - }, - { - "x": 154, - "y": 117, - "left": 36.5625, - "top": 15.284185, - "right": 37.96875, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 155, - "y": 117, - "left": 37.96875, - "top": 15.284185, - "right": 39.375, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 156, - "y": 117, - "left": 39.375, - "top": 15.284185, - "right": 40.78125, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 157, - "y": 117, - "left": 40.78125, - "top": 15.284185, - "right": 42.1875, - "bottom": 13.923404, - "countries": [ - "yemen", - "ethiopia", - "eritrea" - ] - }, - { - "x": 157, - "y": 118, - "left": 40.78125, - "top": 13.923404, - "right": 42.1875, - "bottom": 12.554564, - "countries": [ - "ethiopia", - "eritrea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/ethiopia.json b/wahoomc/resources/json/africa/ethiopia.json deleted file mode 100644 index fa5382b3..00000000 --- a/wahoomc/resources/json/africa/ethiopia.json +++ /dev/null @@ -1,834 +0,0 @@ -[ - { - "x": 158, - "y": 118, - "left": 42.1875, - "top": 13.923404, - "right": 43.59375, - "bottom": 12.554564, - "countries": [ - "yemen", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 157, - "y": 119, - "left": 40.78125, - "top": 12.554564, - "right": 42.1875, - "bottom": 11.178402, - "countries": [ - "ethiopia", - "djibouti" - ] - }, - { - "x": 158, - "y": 119, - "left": 42.1875, - "top": 12.554564, - "right": 43.59375, - "bottom": 11.178402, - "countries": [ - "somalia", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 157, - "y": 120, - "left": 40.78125, - "top": 11.178402, - "right": 42.1875, - "bottom": 9.795678, - "countries": [ - "ethiopia", - "djibouti" - ] - }, - { - "x": 158, - "y": 120, - "left": 42.1875, - "top": 11.178402, - "right": 43.59375, - "bottom": 9.795678, - "countries": [ - "somalia", - "ethiopia", - "djibouti" - ] - }, - { - "x": 153, - "y": 117, - "left": 35.15625, - "top": 15.284185, - "right": 36.5625, - "bottom": 13.923404, - "countries": [ - "sudan", - "ethiopia", - "eritrea" - ] - }, - { - "x": 154, - "y": 117, - "left": 36.5625, - "top": 15.284185, - "right": 37.96875, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 155, - "y": 117, - "left": 37.96875, - "top": 15.284185, - "right": 39.375, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 156, - "y": 117, - "left": 39.375, - "top": 15.284185, - "right": 40.78125, - "bottom": 13.923404, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 157, - "y": 117, - "left": 40.78125, - "top": 15.284185, - "right": 42.1875, - "bottom": 13.923404, - "countries": [ - "yemen", - "ethiopia", - "eritrea" - ] - }, - { - "x": 157, - "y": 118, - "left": 40.78125, - "top": 13.923404, - "right": 42.1875, - "bottom": 12.554564, - "countries": [ - "ethiopia", - "eritrea" - ] - }, - { - "x": 153, - "y": 118, - "left": 35.15625, - "top": 13.923404, - "right": 36.5625, - "bottom": 12.554564, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 154, - "y": 118, - "left": 36.5625, - "top": 13.923404, - "right": 37.96875, - "bottom": 12.554564, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 118, - "left": 37.96875, - "top": 13.923404, - "right": 39.375, - "bottom": 12.554564, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 118, - "left": 39.375, - "top": 13.923404, - "right": 40.78125, - "bottom": 12.554564, - "countries": [ - "ethiopia" - ] - }, - { - "x": 152, - "y": 119, - "left": 33.75, - "top": 12.554564, - "right": 35.15625, - "bottom": 11.178402, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 119, - "left": 35.15625, - "top": 12.554564, - "right": 36.5625, - "bottom": 11.178402, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 154, - "y": 119, - "left": 36.5625, - "top": 12.554564, - "right": 37.96875, - "bottom": 11.178402, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 119, - "left": 37.96875, - "top": 12.554564, - "right": 39.375, - "bottom": 11.178402, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 119, - "left": 39.375, - "top": 12.554564, - "right": 40.78125, - "bottom": 11.178402, - "countries": [ - "ethiopia" - ] - }, - { - "x": 152, - "y": 120, - "left": 33.75, - "top": 11.178402, - "right": 35.15625, - "bottom": 9.795678, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 120, - "left": 35.15625, - "top": 11.178402, - "right": 36.5625, - "bottom": 9.795678, - "countries": [ - "ethiopia" - ] - }, - { - "x": 154, - "y": 120, - "left": 36.5625, - "top": 11.178402, - "right": 37.96875, - "bottom": 9.795678, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 120, - "left": 37.96875, - "top": 11.178402, - "right": 39.375, - "bottom": 9.795678, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 120, - "left": 39.375, - "top": 11.178402, - "right": 40.78125, - "bottom": 9.795678, - "countries": [ - "ethiopia" - ] - }, - { - "x": 151, - "y": 121, - "left": 32.34375, - "top": 9.795678, - "right": 33.75, - "bottom": 8.407168, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 121, - "left": 33.75, - "top": 9.795678, - "right": 35.15625, - "bottom": 8.407168, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 121, - "left": 35.15625, - "top": 9.795678, - "right": 36.5625, - "bottom": 8.407168, - "countries": [ - "ethiopia" - ] - }, - { - "x": 154, - "y": 121, - "left": 36.5625, - "top": 9.795678, - "right": 37.96875, - "bottom": 8.407168, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 121, - "left": 37.96875, - "top": 9.795678, - "right": 39.375, - "bottom": 8.407168, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 121, - "left": 39.375, - "top": 9.795678, - "right": 40.78125, - "bottom": 8.407168, - "countries": [ - "ethiopia" - ] - }, - { - "x": 157, - "y": 121, - "left": 40.78125, - "top": 9.795678, - "right": 42.1875, - "bottom": 8.407168, - "countries": [ - "ethiopia" - ] - }, - { - "x": 158, - "y": 121, - "left": 42.1875, - "top": 9.795678, - "right": 43.59375, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 159, - "y": 121, - "left": 43.59375, - "top": 9.795678, - "right": 45.0, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 121, - "left": 45.0, - "top": 9.795678, - "right": 46.40625, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 151, - "y": 122, - "left": 32.34375, - "top": 8.407168, - "right": 33.75, - "bottom": 7.013668, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 122, - "left": 33.75, - "top": 8.407168, - "right": 35.15625, - "bottom": 7.013668, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 122, - "left": 35.15625, - "top": 8.407168, - "right": 36.5625, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 154, - "y": 122, - "left": 36.5625, - "top": 8.407168, - "right": 37.96875, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 122, - "left": 37.96875, - "top": 8.407168, - "right": 39.375, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 122, - "left": 39.375, - "top": 8.407168, - "right": 40.78125, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 157, - "y": 122, - "left": 40.78125, - "top": 8.407168, - "right": 42.1875, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 158, - "y": 122, - "left": 42.1875, - "top": 8.407168, - "right": 43.59375, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 159, - "y": 122, - "left": 43.59375, - "top": 8.407168, - "right": 45.0, - "bottom": 7.013668, - "countries": [ - "ethiopia" - ] - }, - { - "x": 160, - "y": 122, - "left": 45.0, - "top": 8.407168, - "right": 46.40625, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 161, - "y": 122, - "left": 46.40625, - "top": 8.407168, - "right": 47.8125, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 162, - "y": 122, - "left": 47.8125, - "top": 8.407168, - "right": 49.21875, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 152, - "y": 123, - "left": 33.75, - "top": 7.013668, - "right": 35.15625, - "bottom": 5.615986, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 123, - "left": 35.15625, - "top": 7.013668, - "right": 36.5625, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 154, - "y": 123, - "left": 36.5625, - "top": 7.013668, - "right": 37.96875, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 155, - "y": 123, - "left": 37.96875, - "top": 7.013668, - "right": 39.375, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 123, - "left": 39.375, - "top": 7.013668, - "right": 40.78125, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 157, - "y": 123, - "left": 40.78125, - "top": 7.013668, - "right": 42.1875, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 158, - "y": 123, - "left": 42.1875, - "top": 7.013668, - "right": 43.59375, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 159, - "y": 123, - "left": 43.59375, - "top": 7.013668, - "right": 45.0, - "bottom": 5.615986, - "countries": [ - "ethiopia" - ] - }, - { - "x": 160, - "y": 123, - "left": 45.0, - "top": 7.013668, - "right": 46.40625, - "bottom": 5.615986, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 161, - "y": 123, - "left": 46.40625, - "top": 7.013668, - "right": 47.8125, - "bottom": 5.615986, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 152, - "y": 124, - "left": 33.75, - "top": 5.615986, - "right": 35.15625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 124, - "left": 35.15625, - "top": 5.615986, - "right": 36.5625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 154, - "y": 124, - "left": 36.5625, - "top": 5.615986, - "right": 37.96875, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 155, - "y": 124, - "left": 37.96875, - "top": 5.615986, - "right": 39.375, - "bottom": 4.214943, - "countries": [ - "ethiopia" - ] - }, - { - "x": 156, - "y": 124, - "left": 39.375, - "top": 5.615986, - "right": 40.78125, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 157, - "y": 124, - "left": 40.78125, - "top": 5.615986, - "right": 42.1875, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 158, - "y": 124, - "left": 42.1875, - "top": 5.615986, - "right": 43.59375, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 159, - "y": 124, - "left": 43.59375, - "top": 5.615986, - "right": 45.0, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 124, - "left": 45.0, - "top": 5.615986, - "right": 46.40625, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 154, - "y": 125, - "left": 36.5625, - "top": 4.214943, - "right": 37.96875, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 155, - "y": 125, - "left": 37.96875, - "top": 4.214943, - "right": 39.375, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 156, - "y": 125, - "left": 39.375, - "top": 4.214943, - "right": 40.78125, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 157, - "y": 125, - "left": 40.78125, - "top": 4.214943, - "right": 42.1875, - "bottom": 2.811371, - "countries": [ - "kenya", - "somalia", - "ethiopia" - ] - }, - { - "x": 158, - "y": 125, - "left": 42.1875, - "top": 4.214943, - "right": 43.59375, - "bottom": 2.811371, - "countries": [ - "somalia", - "ethiopia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/french_southern_territories.json b/wahoomc/resources/json/africa/french_southern_territories.json deleted file mode 100644 index a4d27cab..00000000 --- a/wahoomc/resources/json/africa/french_southern_territories.json +++ /dev/null @@ -1,178 +0,0 @@ -[ - { - "x": 156, - "y": 144, - "left": 39.375, - "top": -21.943046, - "right": 40.78125, - "bottom": -23.241346, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 183, - "y": 157, - "left": 77.34375, - "top": -37.71859, - "right": 78.75, - "bottom": -38.822591, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 163, - "y": 164, - "left": 49.21875, - "top": -45.089036, - "right": 50.625, - "bottom": -46.073231, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 163, - "y": 165, - "left": 49.21875, - "top": -46.073231, - "right": 50.625, - "bottom": -47.040182, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 164, - "y": 165, - "left": 50.625, - "top": -46.073231, - "right": 52.03125, - "bottom": -47.040182, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 165, - "y": 165, - "left": 52.03125, - "top": -46.073231, - "right": 53.4375, - "bottom": -47.040182, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 176, - "y": 167, - "left": 67.5, - "top": -47.989922, - "right": 68.90625, - "bottom": -48.922499, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 177, - "y": 167, - "left": 68.90625, - "top": -47.989922, - "right": 70.3125, - "bottom": -48.922499, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 176, - "y": 168, - "left": 67.5, - "top": -48.922499, - "right": 68.90625, - "bottom": -49.837982, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 177, - "y": 168, - "left": 68.90625, - "top": -48.922499, - "right": 70.3125, - "bottom": -49.837982, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 178, - "y": 168, - "left": 70.3125, - "top": -48.922499, - "right": 71.71875, - "bottom": -49.837982, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 176, - "y": 169, - "left": 67.5, - "top": -49.837982, - "right": 68.90625, - "bottom": -50.736455, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 177, - "y": 169, - "left": 68.90625, - "top": -49.837982, - "right": 70.3125, - "bottom": -50.736455, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 161, - "y": 136, - "left": 46.40625, - "top": -11.178402, - "right": 47.8125, - "bottom": -12.554564, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 158, - "y": 140, - "left": 42.1875, - "top": -16.636192, - "right": 43.59375, - "bottom": -17.978733, - "countries": [ - "french_southern_territories" - ] - }, - { - "x": 166, - "y": 139, - "left": 53.4375, - "top": -15.284185, - "right": 54.84375, - "bottom": -16.636192, - "countries": [ - "french_southern_territories" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/gabon.json b/wahoomc/resources/json/africa/gabon.json deleted file mode 100644 index 4e43d735..00000000 --- a/wahoomc/resources/json/africa/gabon.json +++ /dev/null @@ -1,227 +0,0 @@ -[ - { - "x": 136, - "y": 126, - "left": 11.25, - "top": 2.811371, - "right": 12.65625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 137, - "y": 126, - "left": 12.65625, - "top": 2.811371, - "right": 14.0625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "gabon" - ] - }, - { - "x": 134, - "y": 127, - "left": 8.4375, - "top": 1.406109, - "right": 9.84375, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 135, - "y": 127, - "left": 9.84375, - "top": 1.406109, - "right": 11.25, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 136, - "y": 127, - "left": 11.25, - "top": 1.406109, - "right": 12.65625, - "bottom": 0.0, - "countries": [ - "equatorial_guinea", - "gabon" - ] - }, - { - "x": 137, - "y": 127, - "left": 12.65625, - "top": 1.406109, - "right": 14.0625, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 127, - "left": 14.0625, - "top": 1.406109, - "right": 15.46875, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 134, - "y": 128, - "left": 8.4375, - "top": 0.0, - "right": 9.84375, - "bottom": -1.406109, - "countries": [ - "gabon" - ] - }, - { - "x": 135, - "y": 128, - "left": 9.84375, - "top": 0.0, - "right": 11.25, - "bottom": -1.406109, - "countries": [ - "gabon" - ] - }, - { - "x": 136, - "y": 128, - "left": 11.25, - "top": 0.0, - "right": 12.65625, - "bottom": -1.406109, - "countries": [ - "gabon" - ] - }, - { - "x": 137, - "y": 128, - "left": 12.65625, - "top": 0.0, - "right": 14.0625, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 128, - "left": 14.0625, - "top": 0.0, - "right": 15.46875, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 134, - "y": 129, - "left": 8.4375, - "top": -1.406109, - "right": 9.84375, - "bottom": -2.811371, - "countries": [ - "gabon" - ] - }, - { - "x": 135, - "y": 129, - "left": 9.84375, - "top": -1.406109, - "right": 11.25, - "bottom": -2.811371, - "countries": [ - "gabon" - ] - }, - { - "x": 136, - "y": 129, - "left": 11.25, - "top": -1.406109, - "right": 12.65625, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 137, - "y": 129, - "left": 12.65625, - "top": -1.406109, - "right": 14.0625, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 129, - "left": 14.0625, - "top": -1.406109, - "right": 15.46875, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 135, - "y": 130, - "left": 9.84375, - "top": -2.811371, - "right": 11.25, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 136, - "y": 130, - "left": 11.25, - "top": -2.811371, - "right": 12.65625, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "gabon" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/gambia.json b/wahoomc/resources/json/africa/gambia.json deleted file mode 100644 index 813f13fd..00000000 --- a/wahoomc/resources/json/africa/gambia.json +++ /dev/null @@ -1,41 +0,0 @@ -[ - { - "x": 116, - "y": 118, - "left": -16.875, - "top": 13.923404, - "right": -15.46875, - "bottom": 12.554564, - "countries": [ - "gambia", - "senegal" - ] - }, - { - "x": 117, - "y": 118, - "left": -15.46875, - "top": 13.923404, - "right": -14.0625, - "bottom": 12.554564, - "countries": [ - "gambia", - "senegal", - "guinea-bissau" - ] - }, - { - "x": 118, - "y": 118, - "left": -14.0625, - "top": 13.923404, - "right": -12.65625, - "bottom": 12.554564, - "countries": [ - "gambia", - "guinea-bissau", - "senegal", - "guinea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/ghana.json b/wahoomc/resources/json/africa/ghana.json deleted file mode 100644 index 787a921e..00000000 --- a/wahoomc/resources/json/africa/ghana.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "x": 128, - "y": 120, - "left": 0.0, - "top": 11.178402, - "right": 1.40625, - "bottom": 9.795678, - "countries": [ - "benin", - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 128, - "y": 121, - "left": 0.0, - "top": 9.795678, - "right": 1.40625, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "ghana" - ] - }, - { - "x": 125, - "y": 120, - "left": -4.21875, - "top": 11.178402, - "right": -2.8125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - }, - { - "x": 126, - "y": 120, - "left": -2.8125, - "top": 11.178402, - "right": -1.40625, - "bottom": 9.795678, - "countries": [ - "burkina_faso", - "ghana" - ] - }, - { - "x": 127, - "y": 120, - "left": -1.40625, - "top": 11.178402, - "right": 0.0, - "bottom": 9.795678, - "countries": [ - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 126, - "y": 121, - "left": -2.8125, - "top": 9.795678, - "right": -1.40625, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "ghana" - ] - }, - { - "x": 125, - "y": 122, - "left": -4.21875, - "top": 8.407168, - "right": -2.8125, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 122, - "left": -2.8125, - "top": 8.407168, - "right": -1.40625, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 125, - "y": 123, - "left": -4.21875, - "top": 7.013668, - "right": -2.8125, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 123, - "left": -2.8125, - "top": 7.013668, - "right": -1.40625, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 125, - "y": 124, - "left": -4.21875, - "top": 5.615986, - "right": -2.8125, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 126, - "y": 124, - "left": -2.8125, - "top": 5.615986, - "right": -1.40625, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "ghana" - ] - }, - { - "x": 127, - "y": 121, - "left": -1.40625, - "top": 9.795678, - "right": 0.0, - "bottom": 8.407168, - "countries": [ - "ghana" - ] - }, - { - "x": 127, - "y": 122, - "left": -1.40625, - "top": 8.407168, - "right": 0.0, - "bottom": 7.013668, - "countries": [ - "ghana" - ] - }, - { - "x": 128, - "y": 122, - "left": 0.0, - "top": 8.407168, - "right": 1.40625, - "bottom": 7.013668, - "countries": [ - "togo", - "ghana" - ] - }, - { - "x": 127, - "y": 123, - "left": -1.40625, - "top": 7.013668, - "right": 0.0, - "bottom": 5.615986, - "countries": [ - "ghana" - ] - }, - { - "x": 128, - "y": 123, - "left": 0.0, - "top": 7.013668, - "right": 1.40625, - "bottom": 5.615986, - "countries": [ - "togo", - "ghana" - ] - }, - { - "x": 127, - "y": 124, - "left": -1.40625, - "top": 5.615986, - "right": 0.0, - "bottom": 4.214943, - "countries": [ - "ghana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/guinea-bissau.json b/wahoomc/resources/json/africa/guinea-bissau.json deleted file mode 100644 index 25465f4e..00000000 --- a/wahoomc/resources/json/africa/guinea-bissau.json +++ /dev/null @@ -1,90 +0,0 @@ -[ - { - "x": 117, - "y": 118, - "left": -15.46875, - "top": 13.923404, - "right": -14.0625, - "bottom": 12.554564, - "countries": [ - "gambia", - "senegal", - "guinea-bissau" - ] - }, - { - "x": 118, - "y": 118, - "left": -14.0625, - "top": 13.923404, - "right": -12.65625, - "bottom": 12.554564, - "countries": [ - "gambia", - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 117, - "y": 119, - "left": -15.46875, - "top": 12.554564, - "right": -14.0625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 118, - "y": 119, - "left": -14.0625, - "top": 12.554564, - "right": -12.65625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 117, - "y": 120, - "left": -15.46875, - "top": 11.178402, - "right": -14.0625, - "bottom": 9.795678, - "countries": [ - "guinea-bissau", - "guinea" - ] - }, - { - "x": 116, - "y": 119, - "left": -16.875, - "top": 12.554564, - "right": -15.46875, - "bottom": 11.178402, - "countries": [ - "senegal", - "guinea-bissau" - ] - }, - { - "x": 116, - "y": 120, - "left": -16.875, - "top": 11.178402, - "right": -15.46875, - "bottom": 9.795678, - "countries": [ - "guinea-bissau" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/guinea.json b/wahoomc/resources/json/africa/guinea.json deleted file mode 100644 index a9709655..00000000 --- a/wahoomc/resources/json/africa/guinea.json +++ /dev/null @@ -1,263 +0,0 @@ -[ - { - "x": 122, - "y": 120, - "left": -8.4375, - "top": 11.178402, - "right": -7.03125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "mali", - "guinea" - ] - }, - { - "x": 122, - "y": 121, - "left": -8.4375, - "top": 9.795678, - "right": -7.03125, - "bottom": 8.407168, - "countries": [ - "cote_d_ivoire", - "guinea" - ] - }, - { - "x": 121, - "y": 122, - "left": -9.84375, - "top": 8.407168, - "right": -8.4375, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 122, - "y": 122, - "left": -8.4375, - "top": 8.407168, - "right": -7.03125, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 118, - "y": 118, - "left": -14.0625, - "top": 13.923404, - "right": -12.65625, - "bottom": 12.554564, - "countries": [ - "gambia", - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 117, - "y": 119, - "left": -15.46875, - "top": 12.554564, - "right": -14.0625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 118, - "y": 119, - "left": -14.0625, - "top": 12.554564, - "right": -12.65625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 119, - "y": 119, - "left": -12.65625, - "top": 12.554564, - "right": -11.25, - "bottom": 11.178402, - "countries": [ - "senegal", - "mali", - "guinea" - ] - }, - { - "x": 120, - "y": 119, - "left": -11.25, - "top": 12.554564, - "right": -9.84375, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 121, - "y": 119, - "left": -9.84375, - "top": 12.554564, - "right": -8.4375, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 122, - "y": 119, - "left": -8.4375, - "top": 12.554564, - "right": -7.03125, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 117, - "y": 120, - "left": -15.46875, - "top": 11.178402, - "right": -14.0625, - "bottom": 9.795678, - "countries": [ - "guinea-bissau", - "guinea" - ] - }, - { - "x": 118, - "y": 120, - "left": -14.0625, - "top": 11.178402, - "right": -12.65625, - "bottom": 9.795678, - "countries": [ - "guinea" - ] - }, - { - "x": 119, - "y": 120, - "left": -12.65625, - "top": 11.178402, - "right": -11.25, - "bottom": 9.795678, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 120, - "y": 120, - "left": -11.25, - "top": 11.178402, - "right": -9.84375, - "bottom": 9.795678, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 121, - "y": 120, - "left": -9.84375, - "top": 11.178402, - "right": -8.4375, - "bottom": 9.795678, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 118, - "y": 121, - "left": -14.0625, - "top": 9.795678, - "right": -12.65625, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 119, - "y": 121, - "left": -12.65625, - "top": 9.795678, - "right": -11.25, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 120, - "y": 121, - "left": -11.25, - "top": 9.795678, - "right": -9.84375, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - }, - { - "x": 121, - "y": 121, - "left": -9.84375, - "top": 9.795678, - "right": -8.4375, - "bottom": 8.407168, - "countries": [ - "liberia", - "guinea" - ] - }, - { - "x": 120, - "y": 122, - "left": -11.25, - "top": 8.407168, - "right": -9.84375, - "bottom": 7.013668, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/kenya.json b/wahoomc/resources/json/africa/kenya.json deleted file mode 100644 index 20852ad7..00000000 --- a/wahoomc/resources/json/africa/kenya.json +++ /dev/null @@ -1,471 +0,0 @@ -[ - { - "x": 152, - "y": 124, - "left": 33.75, - "top": 5.615986, - "right": 35.15625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 124, - "left": 35.15625, - "top": 5.615986, - "right": 36.5625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 154, - "y": 124, - "left": 36.5625, - "top": 5.615986, - "right": 37.96875, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 156, - "y": 124, - "left": 39.375, - "top": 5.615986, - "right": 40.78125, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 157, - "y": 124, - "left": 40.78125, - "top": 5.615986, - "right": 42.1875, - "bottom": 4.214943, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 154, - "y": 125, - "left": 36.5625, - "top": 4.214943, - "right": 37.96875, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 155, - "y": 125, - "left": 37.96875, - "top": 4.214943, - "right": 39.375, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 156, - "y": 125, - "left": 39.375, - "top": 4.214943, - "right": 40.78125, - "bottom": 2.811371, - "countries": [ - "kenya", - "ethiopia" - ] - }, - { - "x": 157, - "y": 125, - "left": 40.78125, - "top": 4.214943, - "right": 42.1875, - "bottom": 2.811371, - "countries": [ - "kenya", - "somalia", - "ethiopia" - ] - }, - { - "x": 152, - "y": 125, - "left": 33.75, - "top": 4.214943, - "right": 35.15625, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "kenya" - ] - }, - { - "x": 153, - "y": 125, - "left": 35.15625, - "top": 4.214943, - "right": 36.5625, - "bottom": 2.811371, - "countries": [ - "kenya" - ] - }, - { - "x": 152, - "y": 126, - "left": 33.75, - "top": 2.811371, - "right": 35.15625, - "bottom": 1.406109, - "countries": [ - "uganda", - "kenya" - ] - }, - { - "x": 153, - "y": 126, - "left": 35.15625, - "top": 2.811371, - "right": 36.5625, - "bottom": 1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 154, - "y": 126, - "left": 36.5625, - "top": 2.811371, - "right": 37.96875, - "bottom": 1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 155, - "y": 126, - "left": 37.96875, - "top": 2.811371, - "right": 39.375, - "bottom": 1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 156, - "y": 126, - "left": 39.375, - "top": 2.811371, - "right": 40.78125, - "bottom": 1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 157, - "y": 126, - "left": 40.78125, - "top": 2.811371, - "right": 42.1875, - "bottom": 1.406109, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 152, - "y": 127, - "left": 33.75, - "top": 1.406109, - "right": 35.15625, - "bottom": 0.0, - "countries": [ - "uganda", - "kenya" - ] - }, - { - "x": 153, - "y": 127, - "left": 35.15625, - "top": 1.406109, - "right": 36.5625, - "bottom": 0.0, - "countries": [ - "kenya" - ] - }, - { - "x": 154, - "y": 127, - "left": 36.5625, - "top": 1.406109, - "right": 37.96875, - "bottom": 0.0, - "countries": [ - "kenya" - ] - }, - { - "x": 155, - "y": 127, - "left": 37.96875, - "top": 1.406109, - "right": 39.375, - "bottom": 0.0, - "countries": [ - "kenya" - ] - }, - { - "x": 156, - "y": 127, - "left": 39.375, - "top": 1.406109, - "right": 40.78125, - "bottom": 0.0, - "countries": [ - "kenya" - ] - }, - { - "x": 157, - "y": 127, - "left": 40.78125, - "top": 1.406109, - "right": 42.1875, - "bottom": 0.0, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 152, - "y": 128, - "left": 33.75, - "top": 0.0, - "right": 35.15625, - "bottom": -1.406109, - "countries": [ - "uganda", - "kenya", - "tanzania" - ] - }, - { - "x": 153, - "y": 128, - "left": 35.15625, - "top": 0.0, - "right": 36.5625, - "bottom": -1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 154, - "y": 128, - "left": 36.5625, - "top": 0.0, - "right": 37.96875, - "bottom": -1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 155, - "y": 128, - "left": 37.96875, - "top": 0.0, - "right": 39.375, - "bottom": -1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 156, - "y": 128, - "left": 39.375, - "top": 0.0, - "right": 40.78125, - "bottom": -1.406109, - "countries": [ - "kenya" - ] - }, - { - "x": 157, - "y": 128, - "left": 40.78125, - "top": 0.0, - "right": 42.1875, - "bottom": -1.406109, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 152, - "y": 129, - "left": 33.75, - "top": -1.406109, - "right": 35.15625, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 153, - "y": 129, - "left": 35.15625, - "top": -1.406109, - "right": 36.5625, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 154, - "y": 129, - "left": 36.5625, - "top": -1.406109, - "right": 37.96875, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 155, - "y": 129, - "left": 37.96875, - "top": -1.406109, - "right": 39.375, - "bottom": -2.811371, - "countries": [ - "kenya" - ] - }, - { - "x": 156, - "y": 129, - "left": 39.375, - "top": -1.406109, - "right": 40.78125, - "bottom": -2.811371, - "countries": [ - "kenya" - ] - }, - { - "x": 157, - "y": 129, - "left": 40.78125, - "top": -1.406109, - "right": 42.1875, - "bottom": -2.811371, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 154, - "y": 130, - "left": 36.5625, - "top": -2.811371, - "right": 37.96875, - "bottom": -4.214943, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 155, - "y": 130, - "left": 37.96875, - "top": -2.811371, - "right": 39.375, - "bottom": -4.214943, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 156, - "y": 130, - "left": 39.375, - "top": -2.811371, - "right": 40.78125, - "bottom": -4.214943, - "countries": [ - "kenya" - ] - }, - { - "x": 155, - "y": 131, - "left": 37.96875, - "top": -4.214943, - "right": 39.375, - "bottom": -5.615986, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 156, - "y": 131, - "left": 39.375, - "top": -4.214943, - "right": 40.78125, - "bottom": -5.615986, - "countries": [ - "kenya", - "tanzania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/lesotho.json b/wahoomc/resources/json/africa/lesotho.json deleted file mode 100644 index 8af29124..00000000 --- a/wahoomc/resources/json/africa/lesotho.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "x": 147, - "y": 149, - "left": 26.71875, - "top": -28.304381, - "right": 28.125, - "bottom": -29.53523, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 148, - "y": 149, - "left": 28.125, - "top": -28.304381, - "right": 29.53125, - "bottom": -29.53523, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 147, - "y": 150, - "left": 26.71875, - "top": -29.53523, - "right": 28.125, - "bottom": -30.751278, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 148, - "y": 150, - "left": 28.125, - "top": -29.53523, - "right": 29.53125, - "bottom": -30.751278, - "countries": [ - "lesotho", - "south_africa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/liberia.json b/wahoomc/resources/json/africa/liberia.json deleted file mode 100644 index f965049c..00000000 --- a/wahoomc/resources/json/africa/liberia.json +++ /dev/null @@ -1,148 +0,0 @@ -[ - { - "x": 121, - "y": 122, - "left": -9.84375, - "top": 8.407168, - "right": -8.4375, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 122, - "y": 122, - "left": -8.4375, - "top": 8.407168, - "right": -7.03125, - "bottom": 7.013668, - "countries": [ - "cote_d_ivoire", - "liberia", - "guinea" - ] - }, - { - "x": 121, - "y": 123, - "left": -9.84375, - "top": 7.013668, - "right": -8.4375, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 122, - "y": 123, - "left": -8.4375, - "top": 7.013668, - "right": -7.03125, - "bottom": 5.615986, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 122, - "y": 124, - "left": -8.4375, - "top": 5.615986, - "right": -7.03125, - "bottom": 4.214943, - "countries": [ - "cote_d_ivoire", - "liberia" - ] - }, - { - "x": 120, - "y": 121, - "left": -11.25, - "top": 9.795678, - "right": -9.84375, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - }, - { - "x": 121, - "y": 121, - "left": -9.84375, - "top": 9.795678, - "right": -8.4375, - "bottom": 8.407168, - "countries": [ - "liberia", - "guinea" - ] - }, - { - "x": 120, - "y": 122, - "left": -11.25, - "top": 8.407168, - "right": -9.84375, - "bottom": 7.013668, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - }, - { - "x": 119, - "y": 122, - "left": -12.65625, - "top": 8.407168, - "right": -11.25, - "bottom": 7.013668, - "countries": [ - "sierra_leone", - "liberia" - ] - }, - { - "x": 119, - "y": 123, - "left": -12.65625, - "top": 7.013668, - "right": -11.25, - "bottom": 5.615986, - "countries": [ - "sierra_leone", - "liberia" - ] - }, - { - "x": 120, - "y": 123, - "left": -11.25, - "top": 7.013668, - "right": -9.84375, - "bottom": 5.615986, - "countries": [ - "liberia" - ] - }, - { - "x": 121, - "y": 124, - "left": -9.84375, - "top": 5.615986, - "right": -8.4375, - "bottom": 4.214943, - "countries": [ - "liberia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/libya.json b/wahoomc/resources/json/africa/libya.json deleted file mode 100644 index cc77f1e2..00000000 --- a/wahoomc/resources/json/africa/libya.json +++ /dev/null @@ -1,1222 +0,0 @@ -[ - { - "x": 134, - "y": 105, - "left": 8.4375, - "top": 30.751278, - "right": 9.84375, - "bottom": 29.53523, - "countries": [ - "libya", - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 106, - "left": 8.4375, - "top": 29.53523, - "right": 9.84375, - "bottom": 28.304381, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 106, - "left": 9.84375, - "top": 29.53523, - "right": 11.25, - "bottom": 28.304381, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 134, - "y": 107, - "left": 8.4375, - "top": 28.304381, - "right": 9.84375, - "bottom": 27.059126, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 107, - "left": 9.84375, - "top": 28.304381, - "right": 11.25, - "bottom": 27.059126, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 134, - "y": 108, - "left": 8.4375, - "top": 27.059126, - "right": 9.84375, - "bottom": 25.799891, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 108, - "left": 9.84375, - "top": 27.059126, - "right": 11.25, - "bottom": 25.799891, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 134, - "y": 109, - "left": 8.4375, - "top": 25.799891, - "right": 9.84375, - "bottom": 24.527135, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 109, - "left": 9.84375, - "top": 25.799891, - "right": 11.25, - "bottom": 24.527135, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 135, - "y": 110, - "left": 9.84375, - "top": 24.527135, - "right": 11.25, - "bottom": 23.241346, - "countries": [ - "libya", - "algeria" - ] - }, - { - "x": 136, - "y": 110, - "left": 11.25, - "top": 24.527135, - "right": 12.65625, - "bottom": 23.241346, - "countries": [ - "libya", - "algeria", - "niger" - ] - }, - { - "x": 139, - "y": 110, - "left": 15.46875, - "top": 24.527135, - "right": 16.875, - "bottom": 23.241346, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 138, - "y": 111, - "left": 14.0625, - "top": 23.241346, - "right": 15.46875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 111, - "left": 15.46875, - "top": 23.241346, - "right": 16.875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 140, - "y": 111, - "left": 16.875, - "top": 23.241346, - "right": 18.28125, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 141, - "y": 111, - "left": 18.28125, - "top": 23.241346, - "right": 19.6875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 141, - "y": 112, - "left": 18.28125, - "top": 21.943046, - "right": 19.6875, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 142, - "y": 112, - "left": 19.6875, - "top": 21.943046, - "right": 21.09375, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 143, - "y": 112, - "left": 21.09375, - "top": 21.943046, - "right": 22.5, - "bottom": 20.632784, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 143, - "y": 113, - "left": 21.09375, - "top": 20.632784, - "right": 22.5, - "bottom": 19.311143, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 144, - "y": 113, - "left": 22.5, - "top": 20.632784, - "right": 23.90625, - "bottom": 19.311143, - "countries": [ - "libya", - "chad" - ] - }, - { - "x": 145, - "y": 113, - "left": 23.90625, - "top": 20.632784, - "right": 25.3125, - "bottom": 19.311143, - "countries": [ - "libya", - "chad", - "sudan" - ] - }, - { - "x": 145, - "y": 104, - "left": 23.90625, - "top": 31.952162, - "right": 25.3125, - "bottom": 30.751278, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 105, - "left": 23.90625, - "top": 30.751278, - "right": 25.3125, - "bottom": 29.53523, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 106, - "left": 23.90625, - "top": 29.53523, - "right": 25.3125, - "bottom": 28.304381, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 107, - "left": 23.90625, - "top": 28.304381, - "right": 25.3125, - "bottom": 27.059126, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 108, - "left": 23.90625, - "top": 27.059126, - "right": 25.3125, - "bottom": 25.799891, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 109, - "left": 23.90625, - "top": 25.799891, - "right": 25.3125, - "bottom": 24.527135, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 110, - "left": 23.90625, - "top": 24.527135, - "right": 25.3125, - "bottom": 23.241346, - "countries": [ - "libya", - "egypt" - ] - }, - { - "x": 145, - "y": 111, - "left": 23.90625, - "top": 23.241346, - "right": 25.3125, - "bottom": 21.943046, - "countries": [ - "libya", - "sudan", - "egypt" - ] - }, - { - "x": 136, - "y": 102, - "left": 11.25, - "top": 34.307144, - "right": 12.65625, - "bottom": 33.137551, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 135, - "y": 103, - "left": 9.84375, - "top": 33.137551, - "right": 11.25, - "bottom": 31.952162, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 136, - "y": 103, - "left": 11.25, - "top": 33.137551, - "right": 12.65625, - "bottom": 31.952162, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 137, - "y": 103, - "left": 12.65625, - "top": 33.137551, - "right": 14.0625, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 103, - "left": 14.0625, - "top": 33.137551, - "right": 15.46875, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 103, - "left": 19.6875, - "top": 33.137551, - "right": 21.09375, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 103, - "left": 21.09375, - "top": 33.137551, - "right": 22.5, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 103, - "left": 22.5, - "top": 33.137551, - "right": 23.90625, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 145, - "y": 103, - "left": 23.90625, - "top": 33.137551, - "right": 25.3125, - "bottom": 31.952162, - "countries": [ - "libya" - ] - }, - { - "x": 135, - "y": 104, - "left": 9.84375, - "top": 31.952162, - "right": 11.25, - "bottom": 30.751278, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 136, - "y": 104, - "left": 11.25, - "top": 31.952162, - "right": 12.65625, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 104, - "left": 12.65625, - "top": 31.952162, - "right": 14.0625, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 104, - "left": 14.0625, - "top": 31.952162, - "right": 15.46875, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 104, - "left": 15.46875, - "top": 31.952162, - "right": 16.875, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 104, - "left": 16.875, - "top": 31.952162, - "right": 18.28125, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 104, - "left": 19.6875, - "top": 31.952162, - "right": 21.09375, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 104, - "left": 21.09375, - "top": 31.952162, - "right": 22.5, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 104, - "left": 22.5, - "top": 31.952162, - "right": 23.90625, - "bottom": 30.751278, - "countries": [ - "libya" - ] - }, - { - "x": 135, - "y": 105, - "left": 9.84375, - "top": 30.751278, - "right": 11.25, - "bottom": 29.53523, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 136, - "y": 105, - "left": 11.25, - "top": 30.751278, - "right": 12.65625, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 105, - "left": 12.65625, - "top": 30.751278, - "right": 14.0625, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 105, - "left": 14.0625, - "top": 30.751278, - "right": 15.46875, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 105, - "left": 15.46875, - "top": 30.751278, - "right": 16.875, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 105, - "left": 16.875, - "top": 30.751278, - "right": 18.28125, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 105, - "left": 18.28125, - "top": 30.751278, - "right": 19.6875, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 105, - "left": 19.6875, - "top": 30.751278, - "right": 21.09375, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 105, - "left": 21.09375, - "top": 30.751278, - "right": 22.5, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 105, - "left": 22.5, - "top": 30.751278, - "right": 23.90625, - "bottom": 29.53523, - "countries": [ - "libya" - ] - }, - { - "x": 136, - "y": 106, - "left": 11.25, - "top": 29.53523, - "right": 12.65625, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 106, - "left": 12.65625, - "top": 29.53523, - "right": 14.0625, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 106, - "left": 14.0625, - "top": 29.53523, - "right": 15.46875, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 106, - "left": 15.46875, - "top": 29.53523, - "right": 16.875, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 106, - "left": 16.875, - "top": 29.53523, - "right": 18.28125, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 106, - "left": 18.28125, - "top": 29.53523, - "right": 19.6875, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 106, - "left": 19.6875, - "top": 29.53523, - "right": 21.09375, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 106, - "left": 21.09375, - "top": 29.53523, - "right": 22.5, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 106, - "left": 22.5, - "top": 29.53523, - "right": 23.90625, - "bottom": 28.304381, - "countries": [ - "libya" - ] - }, - { - "x": 136, - "y": 107, - "left": 11.25, - "top": 28.304381, - "right": 12.65625, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 107, - "left": 12.65625, - "top": 28.304381, - "right": 14.0625, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 107, - "left": 14.0625, - "top": 28.304381, - "right": 15.46875, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 107, - "left": 15.46875, - "top": 28.304381, - "right": 16.875, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 107, - "left": 16.875, - "top": 28.304381, - "right": 18.28125, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 107, - "left": 18.28125, - "top": 28.304381, - "right": 19.6875, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 107, - "left": 19.6875, - "top": 28.304381, - "right": 21.09375, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 107, - "left": 21.09375, - "top": 28.304381, - "right": 22.5, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 107, - "left": 22.5, - "top": 28.304381, - "right": 23.90625, - "bottom": 27.059126, - "countries": [ - "libya" - ] - }, - { - "x": 136, - "y": 108, - "left": 11.25, - "top": 27.059126, - "right": 12.65625, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 108, - "left": 12.65625, - "top": 27.059126, - "right": 14.0625, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 108, - "left": 14.0625, - "top": 27.059126, - "right": 15.46875, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 108, - "left": 15.46875, - "top": 27.059126, - "right": 16.875, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 108, - "left": 16.875, - "top": 27.059126, - "right": 18.28125, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 108, - "left": 18.28125, - "top": 27.059126, - "right": 19.6875, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 108, - "left": 19.6875, - "top": 27.059126, - "right": 21.09375, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 108, - "left": 21.09375, - "top": 27.059126, - "right": 22.5, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 108, - "left": 22.5, - "top": 27.059126, - "right": 23.90625, - "bottom": 25.799891, - "countries": [ - "libya" - ] - }, - { - "x": 136, - "y": 109, - "left": 11.25, - "top": 25.799891, - "right": 12.65625, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 109, - "left": 12.65625, - "top": 25.799891, - "right": 14.0625, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 138, - "y": 109, - "left": 14.0625, - "top": 25.799891, - "right": 15.46875, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 139, - "y": 109, - "left": 15.46875, - "top": 25.799891, - "right": 16.875, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 109, - "left": 16.875, - "top": 25.799891, - "right": 18.28125, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 109, - "left": 18.28125, - "top": 25.799891, - "right": 19.6875, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 109, - "left": 19.6875, - "top": 25.799891, - "right": 21.09375, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 109, - "left": 21.09375, - "top": 25.799891, - "right": 22.5, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 109, - "left": 22.5, - "top": 25.799891, - "right": 23.90625, - "bottom": 24.527135, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 110, - "left": 12.65625, - "top": 24.527135, - "right": 14.0625, - "bottom": 23.241346, - "countries": [ - "libya", - "niger" - ] - }, - { - "x": 138, - "y": 110, - "left": 14.0625, - "top": 24.527135, - "right": 15.46875, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 140, - "y": 110, - "left": 16.875, - "top": 24.527135, - "right": 18.28125, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 141, - "y": 110, - "left": 18.28125, - "top": 24.527135, - "right": 19.6875, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 142, - "y": 110, - "left": 19.6875, - "top": 24.527135, - "right": 21.09375, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 110, - "left": 21.09375, - "top": 24.527135, - "right": 22.5, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 110, - "left": 22.5, - "top": 24.527135, - "right": 23.90625, - "bottom": 23.241346, - "countries": [ - "libya" - ] - }, - { - "x": 137, - "y": 111, - "left": 12.65625, - "top": 23.241346, - "right": 14.0625, - "bottom": 21.943046, - "countries": [ - "libya", - "niger" - ] - }, - { - "x": 142, - "y": 111, - "left": 19.6875, - "top": 23.241346, - "right": 21.09375, - "bottom": 21.943046, - "countries": [ - "libya" - ] - }, - { - "x": 143, - "y": 111, - "left": 21.09375, - "top": 23.241346, - "right": 22.5, - "bottom": 21.943046, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 111, - "left": 22.5, - "top": 23.241346, - "right": 23.90625, - "bottom": 21.943046, - "countries": [ - "libya" - ] - }, - { - "x": 144, - "y": 112, - "left": 22.5, - "top": 21.943046, - "right": 23.90625, - "bottom": 20.632784, - "countries": [ - "libya" - ] - }, - { - "x": 145, - "y": 112, - "left": 23.90625, - "top": 21.943046, - "right": 25.3125, - "bottom": 20.632784, - "countries": [ - "libya", - "sudan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/madagascar.json b/wahoomc/resources/json/africa/madagascar.json deleted file mode 100644 index 5589e895..00000000 --- a/wahoomc/resources/json/africa/madagascar.json +++ /dev/null @@ -1,475 +0,0 @@ -[ - { - "x": 162, - "y": 136, - "left": 47.8125, - "top": -11.178402, - "right": 49.21875, - "bottom": -12.554564, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 136, - "left": 49.21875, - "top": -11.178402, - "right": 50.625, - "bottom": -12.554564, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 137, - "left": 46.40625, - "top": -12.554564, - "right": 47.8125, - "bottom": -13.923404, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 137, - "left": 47.8125, - "top": -12.554564, - "right": 49.21875, - "bottom": -13.923404, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 137, - "left": 49.21875, - "top": -12.554564, - "right": 50.625, - "bottom": -13.923404, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 138, - "left": 46.40625, - "top": -13.923404, - "right": 47.8125, - "bottom": -15.284185, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 138, - "left": 47.8125, - "top": -13.923404, - "right": 49.21875, - "bottom": -15.284185, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 138, - "left": 49.21875, - "top": -13.923404, - "right": 50.625, - "bottom": -15.284185, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 139, - "left": 43.59375, - "top": -15.284185, - "right": 45.0, - "bottom": -16.636192, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 139, - "left": 45.0, - "top": -15.284185, - "right": 46.40625, - "bottom": -16.636192, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 139, - "left": 46.40625, - "top": -15.284185, - "right": 47.8125, - "bottom": -16.636192, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 139, - "left": 47.8125, - "top": -15.284185, - "right": 49.21875, - "bottom": -16.636192, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 139, - "left": 49.21875, - "top": -15.284185, - "right": 50.625, - "bottom": -16.636192, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 140, - "left": 43.59375, - "top": -16.636192, - "right": 45.0, - "bottom": -17.978733, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 140, - "left": 45.0, - "top": -16.636192, - "right": 46.40625, - "bottom": -17.978733, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 140, - "left": 46.40625, - "top": -16.636192, - "right": 47.8125, - "bottom": -17.978733, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 140, - "left": 47.8125, - "top": -16.636192, - "right": 49.21875, - "bottom": -17.978733, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 140, - "left": 49.21875, - "top": -16.636192, - "right": 50.625, - "bottom": -17.978733, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 141, - "left": 43.59375, - "top": -17.978733, - "right": 45.0, - "bottom": -19.311143, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 141, - "left": 45.0, - "top": -17.978733, - "right": 46.40625, - "bottom": -19.311143, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 141, - "left": 46.40625, - "top": -17.978733, - "right": 47.8125, - "bottom": -19.311143, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 141, - "left": 47.8125, - "top": -17.978733, - "right": 49.21875, - "bottom": -19.311143, - "countries": [ - "madagascar" - ] - }, - { - "x": 163, - "y": 141, - "left": 49.21875, - "top": -17.978733, - "right": 50.625, - "bottom": -19.311143, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 142, - "left": 43.59375, - "top": -19.311143, - "right": 45.0, - "bottom": -20.632784, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 142, - "left": 45.0, - "top": -19.311143, - "right": 46.40625, - "bottom": -20.632784, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 142, - "left": 46.40625, - "top": -19.311143, - "right": 47.8125, - "bottom": -20.632784, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 142, - "left": 47.8125, - "top": -19.311143, - "right": 49.21875, - "bottom": -20.632784, - "countries": [ - "madagascar" - ] - }, - { - "x": 158, - "y": 143, - "left": 42.1875, - "top": -20.632784, - "right": 43.59375, - "bottom": -21.943046, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 143, - "left": 43.59375, - "top": -20.632784, - "right": 45.0, - "bottom": -21.943046, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 143, - "left": 45.0, - "top": -20.632784, - "right": 46.40625, - "bottom": -21.943046, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 143, - "left": 46.40625, - "top": -20.632784, - "right": 47.8125, - "bottom": -21.943046, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 143, - "left": 47.8125, - "top": -20.632784, - "right": 49.21875, - "bottom": -21.943046, - "countries": [ - "madagascar" - ] - }, - { - "x": 158, - "y": 144, - "left": 42.1875, - "top": -21.943046, - "right": 43.59375, - "bottom": -23.241346, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 144, - "left": 43.59375, - "top": -21.943046, - "right": 45.0, - "bottom": -23.241346, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 144, - "left": 45.0, - "top": -21.943046, - "right": 46.40625, - "bottom": -23.241346, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 144, - "left": 46.40625, - "top": -21.943046, - "right": 47.8125, - "bottom": -23.241346, - "countries": [ - "madagascar" - ] - }, - { - "x": 162, - "y": 144, - "left": 47.8125, - "top": -21.943046, - "right": 49.21875, - "bottom": -23.241346, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 145, - "left": 43.59375, - "top": -23.241346, - "right": 45.0, - "bottom": -24.527135, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 145, - "left": 45.0, - "top": -23.241346, - "right": 46.40625, - "bottom": -24.527135, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 145, - "left": 46.40625, - "top": -23.241346, - "right": 47.8125, - "bottom": -24.527135, - "countries": [ - "madagascar" - ] - }, - { - "x": 159, - "y": 146, - "left": 43.59375, - "top": -24.527135, - "right": 45.0, - "bottom": -25.799891, - "countries": [ - "madagascar" - ] - }, - { - "x": 160, - "y": 146, - "left": 45.0, - "top": -24.527135, - "right": 46.40625, - "bottom": -25.799891, - "countries": [ - "madagascar" - ] - }, - { - "x": 161, - "y": 146, - "left": 46.40625, - "top": -24.527135, - "right": 47.8125, - "bottom": -25.799891, - "countries": [ - "madagascar" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/malawi.json b/wahoomc/resources/json/africa/malawi.json deleted file mode 100644 index 0399843f..00000000 --- a/wahoomc/resources/json/africa/malawi.json +++ /dev/null @@ -1,197 +0,0 @@ -[ - { - "x": 151, - "y": 134, - "left": 32.34375, - "top": -8.407168, - "right": 33.75, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania", - "malawi" - ] - }, - { - "x": 152, - "y": 134, - "left": 33.75, - "top": -8.407168, - "right": 35.15625, - "bottom": -9.795678, - "countries": [ - "tanzania", - "malawi" - ] - }, - { - "x": 151, - "y": 135, - "left": 32.34375, - "top": -9.795678, - "right": 33.75, - "bottom": -11.178402, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 152, - "y": 135, - "left": 33.75, - "top": -9.795678, - "right": 35.15625, - "bottom": -11.178402, - "countries": [ - "tanzania", - "malawi" - ] - }, - { - "x": 151, - "y": 136, - "left": 32.34375, - "top": -11.178402, - "right": 33.75, - "bottom": -12.554564, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 152, - "y": 136, - "left": 33.75, - "top": -11.178402, - "right": 35.15625, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania", - "malawi" - ] - }, - { - "x": 151, - "y": 137, - "left": 32.34375, - "top": -12.554564, - "right": 33.75, - "bottom": -13.923404, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 152, - "y": 137, - "left": 33.75, - "top": -12.554564, - "right": 35.15625, - "bottom": -13.923404, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 137, - "left": 35.15625, - "top": -12.554564, - "right": 36.5625, - "bottom": -13.923404, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 151, - "y": 138, - "left": 32.34375, - "top": -13.923404, - "right": 33.75, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 138, - "left": 33.75, - "top": -13.923404, - "right": 35.15625, - "bottom": -15.284185, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 138, - "left": 35.15625, - "top": -13.923404, - "right": 36.5625, - "bottom": -15.284185, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 139, - "left": 33.75, - "top": -15.284185, - "right": 35.15625, - "bottom": -16.636192, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 139, - "left": 35.15625, - "top": -15.284185, - "right": 36.5625, - "bottom": -16.636192, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 140, - "left": 33.75, - "top": -16.636192, - "right": 35.15625, - "bottom": -17.978733, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 140, - "left": 35.15625, - "top": -16.636192, - "right": 36.5625, - "bottom": -17.978733, - "countries": [ - "mozambique", - "malawi" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/mali.json b/wahoomc/resources/json/africa/mali.json deleted file mode 100644 index a999ec33..00000000 --- a/wahoomc/resources/json/africa/mali.json +++ /dev/null @@ -1,995 +0,0 @@ -[ - { - "x": 123, - "y": 109, - "left": -7.03125, - "top": 25.799891, - "right": -5.625, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 109, - "left": -5.625, - "top": 25.799891, - "right": -4.21875, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 125, - "y": 109, - "left": -4.21875, - "top": 25.799891, - "right": -2.8125, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 125, - "y": 110, - "left": -4.21875, - "top": 24.527135, - "right": -2.8125, - "bottom": 23.241346, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 126, - "y": 110, - "left": -2.8125, - "top": 24.527135, - "right": -1.40625, - "bottom": 23.241346, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 126, - "y": 111, - "left": -2.8125, - "top": 23.241346, - "right": -1.40625, - "bottom": 21.943046, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 127, - "y": 111, - "left": -1.40625, - "top": 23.241346, - "right": 0.0, - "bottom": 21.943046, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 127, - "y": 112, - "left": -1.40625, - "top": 21.943046, - "right": 0.0, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 128, - "y": 112, - "left": 0.0, - "top": 21.943046, - "right": 1.40625, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 129, - "y": 112, - "left": 1.40625, - "top": 21.943046, - "right": 2.8125, - "bottom": 20.632784, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 129, - "y": 113, - "left": 1.40625, - "top": 20.632784, - "right": 2.8125, - "bottom": 19.311143, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 130, - "y": 113, - "left": 2.8125, - "top": 20.632784, - "right": 4.21875, - "bottom": 19.311143, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 130, - "y": 114, - "left": 2.8125, - "top": 19.311143, - "right": 4.21875, - "bottom": 17.978733, - "countries": [ - "algeria", - "mali" - ] - }, - { - "x": 131, - "y": 114, - "left": 4.21875, - "top": 19.311143, - "right": 5.625, - "bottom": 17.978733, - "countries": [ - "algeria", - "niger", - "mali" - ] - }, - { - "x": 125, - "y": 117, - "left": -4.21875, - "top": 15.284185, - "right": -2.8125, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 126, - "y": 117, - "left": -2.8125, - "top": 15.284185, - "right": -1.40625, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 127, - "y": 117, - "left": -1.40625, - "top": 15.284185, - "right": 0.0, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 128, - "y": 117, - "left": 0.0, - "top": 15.284185, - "right": 1.40625, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "niger", - "mali" - ] - }, - { - "x": 124, - "y": 118, - "left": -5.625, - "top": 13.923404, - "right": -4.21875, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 125, - "y": 118, - "left": -4.21875, - "top": 13.923404, - "right": -2.8125, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 124, - "y": 119, - "left": -5.625, - "top": 12.554564, - "right": -4.21875, - "bottom": 11.178402, - "countries": [ - "burkina_faso", - "mali" - ] - }, - { - "x": 124, - "y": 120, - "left": -5.625, - "top": 11.178402, - "right": -4.21875, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "burkina_faso", - "mali" - ] - }, - { - "x": 122, - "y": 120, - "left": -8.4375, - "top": 11.178402, - "right": -7.03125, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "mali", - "guinea" - ] - }, - { - "x": 123, - "y": 120, - "left": -7.03125, - "top": 11.178402, - "right": -5.625, - "bottom": 9.795678, - "countries": [ - "cote_d_ivoire", - "mali" - ] - }, - { - "x": 119, - "y": 119, - "left": -12.65625, - "top": 12.554564, - "right": -11.25, - "bottom": 11.178402, - "countries": [ - "senegal", - "mali", - "guinea" - ] - }, - { - "x": 120, - "y": 119, - "left": -11.25, - "top": 12.554564, - "right": -9.84375, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 121, - "y": 119, - "left": -9.84375, - "top": 12.554564, - "right": -8.4375, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 122, - "y": 119, - "left": -8.4375, - "top": 12.554564, - "right": -7.03125, - "bottom": 11.178402, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 121, - "y": 120, - "left": -9.84375, - "top": 11.178402, - "right": -8.4375, - "bottom": 9.795678, - "countries": [ - "mali", - "guinea" - ] - }, - { - "x": 123, - "y": 110, - "left": -7.03125, - "top": 24.527135, - "right": -5.625, - "bottom": 23.241346, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 110, - "left": -5.625, - "top": 24.527135, - "right": -4.21875, - "bottom": 23.241346, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 111, - "left": -7.03125, - "top": 23.241346, - "right": -5.625, - "bottom": 21.943046, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 111, - "left": -5.625, - "top": 23.241346, - "right": -4.21875, - "bottom": 21.943046, - "countries": [ - "mali" - ] - }, - { - "x": 125, - "y": 111, - "left": -4.21875, - "top": 23.241346, - "right": -2.8125, - "bottom": 21.943046, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 112, - "left": -7.03125, - "top": 21.943046, - "right": -5.625, - "bottom": 20.632784, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 112, - "left": -5.625, - "top": 21.943046, - "right": -4.21875, - "bottom": 20.632784, - "countries": [ - "mali" - ] - }, - { - "x": 125, - "y": 112, - "left": -4.21875, - "top": 21.943046, - "right": -2.8125, - "bottom": 20.632784, - "countries": [ - "mali" - ] - }, - { - "x": 126, - "y": 112, - "left": -2.8125, - "top": 21.943046, - "right": -1.40625, - "bottom": 20.632784, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 113, - "left": -7.03125, - "top": 20.632784, - "right": -5.625, - "bottom": 19.311143, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 113, - "left": -5.625, - "top": 20.632784, - "right": -4.21875, - "bottom": 19.311143, - "countries": [ - "mali" - ] - }, - { - "x": 125, - "y": 113, - "left": -4.21875, - "top": 20.632784, - "right": -2.8125, - "bottom": 19.311143, - "countries": [ - "mali" - ] - }, - { - "x": 126, - "y": 113, - "left": -2.8125, - "top": 20.632784, - "right": -1.40625, - "bottom": 19.311143, - "countries": [ - "mali" - ] - }, - { - "x": 127, - "y": 113, - "left": -1.40625, - "top": 20.632784, - "right": 0.0, - "bottom": 19.311143, - "countries": [ - "mali" - ] - }, - { - "x": 128, - "y": 113, - "left": 0.0, - "top": 20.632784, - "right": 1.40625, - "bottom": 19.311143, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 114, - "left": -7.03125, - "top": 19.311143, - "right": -5.625, - "bottom": 17.978733, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 114, - "left": -5.625, - "top": 19.311143, - "right": -4.21875, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 125, - "y": 114, - "left": -4.21875, - "top": 19.311143, - "right": -2.8125, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 126, - "y": 114, - "left": -2.8125, - "top": 19.311143, - "right": -1.40625, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 127, - "y": 114, - "left": -1.40625, - "top": 19.311143, - "right": 0.0, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 128, - "y": 114, - "left": 0.0, - "top": 19.311143, - "right": 1.40625, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 129, - "y": 114, - "left": 1.40625, - "top": 19.311143, - "right": 2.8125, - "bottom": 17.978733, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 115, - "left": -7.03125, - "top": 17.978733, - "right": -5.625, - "bottom": 16.636192, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 115, - "left": -5.625, - "top": 17.978733, - "right": -4.21875, - "bottom": 16.636192, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 125, - "y": 115, - "left": -4.21875, - "top": 17.978733, - "right": -2.8125, - "bottom": 16.636192, - "countries": [ - "mali" - ] - }, - { - "x": 126, - "y": 115, - "left": -2.8125, - "top": 17.978733, - "right": -1.40625, - "bottom": 16.636192, - "countries": [ - "mali" - ] - }, - { - "x": 127, - "y": 115, - "left": -1.40625, - "top": 17.978733, - "right": 0.0, - "bottom": 16.636192, - "countries": [ - "mali" - ] - }, - { - "x": 128, - "y": 115, - "left": 0.0, - "top": 17.978733, - "right": 1.40625, - "bottom": 16.636192, - "countries": [ - "mali" - ] - }, - { - "x": 129, - "y": 115, - "left": 1.40625, - "top": 17.978733, - "right": 2.8125, - "bottom": 16.636192, - "countries": [ - "mali" - ] - }, - { - "x": 130, - "y": 115, - "left": 2.8125, - "top": 17.978733, - "right": 4.21875, - "bottom": 16.636192, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 131, - "y": 115, - "left": 4.21875, - "top": 17.978733, - "right": 5.625, - "bottom": 16.636192, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 119, - "y": 116, - "left": -12.65625, - "top": 16.636192, - "right": -11.25, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 120, - "y": 116, - "left": -11.25, - "top": 16.636192, - "right": -9.84375, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 121, - "y": 116, - "left": -9.84375, - "top": 16.636192, - "right": -8.4375, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 122, - "y": 116, - "left": -8.4375, - "top": 16.636192, - "right": -7.03125, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 116, - "left": -7.03125, - "top": 16.636192, - "right": -5.625, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 116, - "left": -5.625, - "top": 16.636192, - "right": -4.21875, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 125, - "y": 116, - "left": -4.21875, - "top": 16.636192, - "right": -2.8125, - "bottom": 15.284185, - "countries": [ - "mali" - ] - }, - { - "x": 126, - "y": 116, - "left": -2.8125, - "top": 16.636192, - "right": -1.40625, - "bottom": 15.284185, - "countries": [ - "mali" - ] - }, - { - "x": 127, - "y": 116, - "left": -1.40625, - "top": 16.636192, - "right": 0.0, - "bottom": 15.284185, - "countries": [ - "mali" - ] - }, - { - "x": 128, - "y": 116, - "left": 0.0, - "top": 16.636192, - "right": 1.40625, - "bottom": 15.284185, - "countries": [ - "mali" - ] - }, - { - "x": 129, - "y": 116, - "left": 1.40625, - "top": 16.636192, - "right": 2.8125, - "bottom": 15.284185, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 130, - "y": 116, - "left": 2.8125, - "top": 16.636192, - "right": 4.21875, - "bottom": 15.284185, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 119, - "y": 117, - "left": -12.65625, - "top": 15.284185, - "right": -11.25, - "bottom": 13.923404, - "countries": [ - "senegal", - "mali", - "mauritania" - ] - }, - { - "x": 120, - "y": 117, - "left": -11.25, - "top": 15.284185, - "right": -9.84375, - "bottom": 13.923404, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 121, - "y": 117, - "left": -9.84375, - "top": 15.284185, - "right": -8.4375, - "bottom": 13.923404, - "countries": [ - "mali" - ] - }, - { - "x": 122, - "y": 117, - "left": -8.4375, - "top": 15.284185, - "right": -7.03125, - "bottom": 13.923404, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 117, - "left": -7.03125, - "top": 15.284185, - "right": -5.625, - "bottom": 13.923404, - "countries": [ - "mali" - ] - }, - { - "x": 124, - "y": 117, - "left": -5.625, - "top": 15.284185, - "right": -4.21875, - "bottom": 13.923404, - "countries": [ - "mali" - ] - }, - { - "x": 129, - "y": 117, - "left": 1.40625, - "top": 15.284185, - "right": 2.8125, - "bottom": 13.923404, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 119, - "y": 118, - "left": -12.65625, - "top": 13.923404, - "right": -11.25, - "bottom": 12.554564, - "countries": [ - "senegal", - "mali" - ] - }, - { - "x": 120, - "y": 118, - "left": -11.25, - "top": 13.923404, - "right": -9.84375, - "bottom": 12.554564, - "countries": [ - "mali" - ] - }, - { - "x": 121, - "y": 118, - "left": -9.84375, - "top": 13.923404, - "right": -8.4375, - "bottom": 12.554564, - "countries": [ - "mali" - ] - }, - { - "x": 122, - "y": 118, - "left": -8.4375, - "top": 13.923404, - "right": -7.03125, - "bottom": 12.554564, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 118, - "left": -7.03125, - "top": 13.923404, - "right": -5.625, - "bottom": 12.554564, - "countries": [ - "mali" - ] - }, - { - "x": 123, - "y": 119, - "left": -7.03125, - "top": 12.554564, - "right": -5.625, - "bottom": 11.178402, - "countries": [ - "mali" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/mauritania.json b/wahoomc/resources/json/africa/mauritania.json deleted file mode 100644 index 742e62c3..00000000 --- a/wahoomc/resources/json/africa/mauritania.json +++ /dev/null @@ -1,825 +0,0 @@ -[ - { - "x": 121, - "y": 107, - "left": -9.84375, - "top": 28.304381, - "right": -8.4375, - "bottom": 27.059126, - "countries": [ - "morocco", - "algeria", - "western_sahara", - "mauritania" - ] - }, - { - "x": 122, - "y": 107, - "left": -8.4375, - "top": 28.304381, - "right": -7.03125, - "bottom": 27.059126, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 122, - "y": 108, - "left": -8.4375, - "top": 27.059126, - "right": -7.03125, - "bottom": 25.799891, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 123, - "y": 108, - "left": -7.03125, - "top": 27.059126, - "right": -5.625, - "bottom": 25.799891, - "countries": [ - "algeria", - "mauritania" - ] - }, - { - "x": 123, - "y": 109, - "left": -7.03125, - "top": 25.799891, - "right": -5.625, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 109, - "left": -5.625, - "top": 25.799891, - "right": -4.21875, - "bottom": 24.527135, - "countries": [ - "algeria", - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 110, - "left": -7.03125, - "top": 24.527135, - "right": -5.625, - "bottom": 23.241346, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 111, - "left": -7.03125, - "top": 23.241346, - "right": -5.625, - "bottom": 21.943046, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 112, - "left": -7.03125, - "top": 21.943046, - "right": -5.625, - "bottom": 20.632784, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 113, - "left": -7.03125, - "top": 20.632784, - "right": -5.625, - "bottom": 19.311143, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 114, - "left": -7.03125, - "top": 19.311143, - "right": -5.625, - "bottom": 17.978733, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 115, - "left": -7.03125, - "top": 17.978733, - "right": -5.625, - "bottom": 16.636192, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 115, - "left": -5.625, - "top": 17.978733, - "right": -4.21875, - "bottom": 16.636192, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 119, - "y": 116, - "left": -12.65625, - "top": 16.636192, - "right": -11.25, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 120, - "y": 116, - "left": -11.25, - "top": 16.636192, - "right": -9.84375, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 121, - "y": 116, - "left": -9.84375, - "top": 16.636192, - "right": -8.4375, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 122, - "y": 116, - "left": -8.4375, - "top": 16.636192, - "right": -7.03125, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 123, - "y": 116, - "left": -7.03125, - "top": 16.636192, - "right": -5.625, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 124, - "y": 116, - "left": -5.625, - "top": 16.636192, - "right": -4.21875, - "bottom": 15.284185, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 119, - "y": 117, - "left": -12.65625, - "top": 15.284185, - "right": -11.25, - "bottom": 13.923404, - "countries": [ - "senegal", - "mali", - "mauritania" - ] - }, - { - "x": 120, - "y": 117, - "left": -11.25, - "top": 15.284185, - "right": -9.84375, - "bottom": 13.923404, - "countries": [ - "mali", - "mauritania" - ] - }, - { - "x": 119, - "y": 108, - "left": -12.65625, - "top": 27.059126, - "right": -11.25, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 120, - "y": 108, - "left": -11.25, - "top": 27.059126, - "right": -9.84375, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 121, - "y": 108, - "left": -9.84375, - "top": 27.059126, - "right": -8.4375, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 109, - "left": -12.65625, - "top": 25.799891, - "right": -11.25, - "bottom": 24.527135, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 120, - "y": 109, - "left": -11.25, - "top": 25.799891, - "right": -9.84375, - "bottom": 24.527135, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 109, - "left": -9.84375, - "top": 25.799891, - "right": -8.4375, - "bottom": 24.527135, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 109, - "left": -8.4375, - "top": 25.799891, - "right": -7.03125, - "bottom": 24.527135, - "countries": [ - "mauritania" - ] - }, - { - "x": 118, - "y": 110, - "left": -14.0625, - "top": 24.527135, - "right": -12.65625, - "bottom": 23.241346, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 110, - "left": -12.65625, - "top": 24.527135, - "right": -11.25, - "bottom": 23.241346, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 120, - "y": 110, - "left": -11.25, - "top": 24.527135, - "right": -9.84375, - "bottom": 23.241346, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 110, - "left": -9.84375, - "top": 24.527135, - "right": -8.4375, - "bottom": 23.241346, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 110, - "left": -8.4375, - "top": 24.527135, - "right": -7.03125, - "bottom": 23.241346, - "countries": [ - "mauritania" - ] - }, - { - "x": 118, - "y": 111, - "left": -14.0625, - "top": 23.241346, - "right": -12.65625, - "bottom": 21.943046, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 111, - "left": -12.65625, - "top": 23.241346, - "right": -11.25, - "bottom": 21.943046, - "countries": [ - "mauritania" - ] - }, - { - "x": 120, - "y": 111, - "left": -11.25, - "top": 23.241346, - "right": -9.84375, - "bottom": 21.943046, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 111, - "left": -9.84375, - "top": 23.241346, - "right": -8.4375, - "bottom": 21.943046, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 111, - "left": -8.4375, - "top": 23.241346, - "right": -7.03125, - "bottom": 21.943046, - "countries": [ - "mauritania" - ] - }, - { - "x": 115, - "y": 112, - "left": -18.28125, - "top": 21.943046, - "right": -16.875, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 116, - "y": 112, - "left": -16.875, - "top": 21.943046, - "right": -15.46875, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 117, - "y": 112, - "left": -15.46875, - "top": 21.943046, - "right": -14.0625, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 118, - "y": 112, - "left": -14.0625, - "top": 21.943046, - "right": -12.65625, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 112, - "left": -12.65625, - "top": 21.943046, - "right": -11.25, - "bottom": 20.632784, - "countries": [ - "mauritania" - ] - }, - { - "x": 120, - "y": 112, - "left": -11.25, - "top": 21.943046, - "right": -9.84375, - "bottom": 20.632784, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 112, - "left": -9.84375, - "top": 21.943046, - "right": -8.4375, - "bottom": 20.632784, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 112, - "left": -8.4375, - "top": 21.943046, - "right": -7.03125, - "bottom": 20.632784, - "countries": [ - "mauritania" - ] - }, - { - "x": 116, - "y": 113, - "left": -16.875, - "top": 20.632784, - "right": -15.46875, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 117, - "y": 113, - "left": -15.46875, - "top": 20.632784, - "right": -14.0625, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 118, - "y": 113, - "left": -14.0625, - "top": 20.632784, - "right": -12.65625, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 119, - "y": 113, - "left": -12.65625, - "top": 20.632784, - "right": -11.25, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 120, - "y": 113, - "left": -11.25, - "top": 20.632784, - "right": -9.84375, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 113, - "left": -9.84375, - "top": 20.632784, - "right": -8.4375, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 113, - "left": -8.4375, - "top": 20.632784, - "right": -7.03125, - "bottom": 19.311143, - "countries": [ - "mauritania" - ] - }, - { - "x": 116, - "y": 114, - "left": -16.875, - "top": 19.311143, - "right": -15.46875, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 117, - "y": 114, - "left": -15.46875, - "top": 19.311143, - "right": -14.0625, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 118, - "y": 114, - "left": -14.0625, - "top": 19.311143, - "right": -12.65625, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 119, - "y": 114, - "left": -12.65625, - "top": 19.311143, - "right": -11.25, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 120, - "y": 114, - "left": -11.25, - "top": 19.311143, - "right": -9.84375, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 114, - "left": -9.84375, - "top": 19.311143, - "right": -8.4375, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 114, - "left": -8.4375, - "top": 19.311143, - "right": -7.03125, - "bottom": 17.978733, - "countries": [ - "mauritania" - ] - }, - { - "x": 116, - "y": 115, - "left": -16.875, - "top": 17.978733, - "right": -15.46875, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 117, - "y": 115, - "left": -15.46875, - "top": 17.978733, - "right": -14.0625, - "bottom": 16.636192, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 118, - "y": 115, - "left": -14.0625, - "top": 17.978733, - "right": -12.65625, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 119, - "y": 115, - "left": -12.65625, - "top": 17.978733, - "right": -11.25, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 120, - "y": 115, - "left": -11.25, - "top": 17.978733, - "right": -9.84375, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 121, - "y": 115, - "left": -9.84375, - "top": 17.978733, - "right": -8.4375, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 122, - "y": 115, - "left": -8.4375, - "top": 17.978733, - "right": -7.03125, - "bottom": 16.636192, - "countries": [ - "mauritania" - ] - }, - { - "x": 116, - "y": 116, - "left": -16.875, - "top": 16.636192, - "right": -15.46875, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 117, - "y": 116, - "left": -15.46875, - "top": 16.636192, - "right": -14.0625, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 118, - "y": 116, - "left": -14.0625, - "top": 16.636192, - "right": -12.65625, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 118, - "y": 117, - "left": -14.0625, - "top": 15.284185, - "right": -12.65625, - "bottom": 13.923404, - "countries": [ - "senegal", - "mauritania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/mauritius.json b/wahoomc/resources/json/africa/mauritius.json deleted file mode 100644 index b2e0f6ac..00000000 --- a/wahoomc/resources/json/africa/mauritius.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "x": 168, - "y": 135, - "left": 56.25, - "top": -9.795678, - "right": 57.65625, - "bottom": -11.178402, - "countries": [ - "mauritius" - ] - }, - { - "x": 170, - "y": 140, - "left": 59.0625, - "top": -16.636192, - "right": 60.46875, - "bottom": -17.978733, - "countries": [ - "mauritius" - ] - }, - { - "x": 168, - "y": 142, - "left": 56.25, - "top": -19.311143, - "right": 57.65625, - "bottom": -20.632784, - "countries": [ - "mauritius" - ] - }, - { - "x": 169, - "y": 142, - "left": 57.65625, - "top": -19.311143, - "right": 59.0625, - "bottom": -20.632784, - "countries": [ - "mauritius" - ] - }, - { - "x": 173, - "y": 142, - "left": 63.28125, - "top": -19.311143, - "right": 64.6875, - "bottom": -20.632784, - "countries": [ - "mauritius" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/mayotte.json b/wahoomc/resources/json/africa/mayotte.json deleted file mode 100644 index 7dc4a50d..00000000 --- a/wahoomc/resources/json/africa/mayotte.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 160, - "y": 137, - "left": 45.0, - "top": -12.554564, - "right": 46.40625, - "bottom": -13.923404, - "countries": [ - "mayotte" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/morocco.json b/wahoomc/resources/json/africa/morocco.json deleted file mode 100644 index ebdcf3a4..00000000 --- a/wahoomc/resources/json/africa/morocco.json +++ /dev/null @@ -1,455 +0,0 @@ -[ - { - "x": 126, - "y": 101, - "left": -2.8125, - "top": 35.46067, - "right": -1.40625, - "bottom": 34.307144, - "countries": [ - "spain", - "algeria", - "morocco" - ] - }, - { - "x": 126, - "y": 102, - "left": -2.8125, - "top": 34.307144, - "right": -1.40625, - "bottom": 33.137551, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 125, - "y": 103, - "left": -4.21875, - "top": 33.137551, - "right": -2.8125, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 126, - "y": 103, - "left": -2.8125, - "top": 33.137551, - "right": -1.40625, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 127, - "y": 103, - "left": -1.40625, - "top": 33.137551, - "right": 0.0, - "bottom": 31.952162, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 125, - "y": 104, - "left": -4.21875, - "top": 31.952162, - "right": -2.8125, - "bottom": 30.751278, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 122, - "y": 105, - "left": -8.4375, - "top": 30.751278, - "right": -7.03125, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 123, - "y": 105, - "left": -7.03125, - "top": 30.751278, - "right": -5.625, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 124, - "y": 105, - "left": -5.625, - "top": 30.751278, - "right": -4.21875, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 125, - "y": 105, - "left": -4.21875, - "top": 30.751278, - "right": -2.8125, - "bottom": 29.53523, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 121, - "y": 106, - "left": -9.84375, - "top": 29.53523, - "right": -8.4375, - "bottom": 28.304381, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 122, - "y": 106, - "left": -8.4375, - "top": 29.53523, - "right": -7.03125, - "bottom": 28.304381, - "countries": [ - "algeria", - "morocco" - ] - }, - { - "x": 121, - "y": 107, - "left": -9.84375, - "top": 28.304381, - "right": -8.4375, - "bottom": 27.059126, - "countries": [ - "morocco", - "algeria", - "western_sahara", - "mauritania" - ] - }, - { - "x": 123, - "y": 100, - "left": -7.03125, - "top": 36.597889, - "right": -5.625, - "bottom": 35.46067, - "countries": [ - "spain", - "morocco" - ] - }, - { - "x": 124, - "y": 100, - "left": -5.625, - "top": 36.597889, - "right": -4.21875, - "bottom": 35.46067, - "countries": [ - "gibraltar", - "spain", - "morocco" - ] - }, - { - "x": 123, - "y": 101, - "left": -7.03125, - "top": 35.46067, - "right": -5.625, - "bottom": 34.307144, - "countries": [ - "morocco" - ] - }, - { - "x": 124, - "y": 101, - "left": -5.625, - "top": 35.46067, - "right": -4.21875, - "bottom": 34.307144, - "countries": [ - "morocco" - ] - }, - { - "x": 125, - "y": 101, - "left": -4.21875, - "top": 35.46067, - "right": -2.8125, - "bottom": 34.307144, - "countries": [ - "spain", - "morocco" - ] - }, - { - "x": 121, - "y": 102, - "left": -9.84375, - "top": 34.307144, - "right": -8.4375, - "bottom": 33.137551, - "countries": [ - "morocco" - ] - }, - { - "x": 122, - "y": 102, - "left": -8.4375, - "top": 34.307144, - "right": -7.03125, - "bottom": 33.137551, - "countries": [ - "morocco" - ] - }, - { - "x": 123, - "y": 102, - "left": -7.03125, - "top": 34.307144, - "right": -5.625, - "bottom": 33.137551, - "countries": [ - "morocco" - ] - }, - { - "x": 124, - "y": 102, - "left": -5.625, - "top": 34.307144, - "right": -4.21875, - "bottom": 33.137551, - "countries": [ - "morocco" - ] - }, - { - "x": 125, - "y": 102, - "left": -4.21875, - "top": 34.307144, - "right": -2.8125, - "bottom": 33.137551, - "countries": [ - "morocco" - ] - }, - { - "x": 121, - "y": 103, - "left": -9.84375, - "top": 33.137551, - "right": -8.4375, - "bottom": 31.952162, - "countries": [ - "morocco" - ] - }, - { - "x": 122, - "y": 103, - "left": -8.4375, - "top": 33.137551, - "right": -7.03125, - "bottom": 31.952162, - "countries": [ - "morocco" - ] - }, - { - "x": 123, - "y": 103, - "left": -7.03125, - "top": 33.137551, - "right": -5.625, - "bottom": 31.952162, - "countries": [ - "morocco" - ] - }, - { - "x": 124, - "y": 103, - "left": -5.625, - "top": 33.137551, - "right": -4.21875, - "bottom": 31.952162, - "countries": [ - "morocco" - ] - }, - { - "x": 120, - "y": 104, - "left": -11.25, - "top": 31.952162, - "right": -9.84375, - "bottom": 30.751278, - "countries": [ - "morocco" - ] - }, - { - "x": 121, - "y": 104, - "left": -9.84375, - "top": 31.952162, - "right": -8.4375, - "bottom": 30.751278, - "countries": [ - "morocco" - ] - }, - { - "x": 122, - "y": 104, - "left": -8.4375, - "top": 31.952162, - "right": -7.03125, - "bottom": 30.751278, - "countries": [ - "morocco" - ] - }, - { - "x": 123, - "y": 104, - "left": -7.03125, - "top": 31.952162, - "right": -5.625, - "bottom": 30.751278, - "countries": [ - "morocco" - ] - }, - { - "x": 124, - "y": 104, - "left": -5.625, - "top": 31.952162, - "right": -4.21875, - "bottom": 30.751278, - "countries": [ - "morocco" - ] - }, - { - "x": 120, - "y": 105, - "left": -11.25, - "top": 30.751278, - "right": -9.84375, - "bottom": 29.53523, - "countries": [ - "morocco" - ] - }, - { - "x": 121, - "y": 105, - "left": -9.84375, - "top": 30.751278, - "right": -8.4375, - "bottom": 29.53523, - "countries": [ - "morocco" - ] - }, - { - "x": 119, - "y": 106, - "left": -12.65625, - "top": 29.53523, - "right": -11.25, - "bottom": 28.304381, - "countries": [ - "morocco" - ] - }, - { - "x": 120, - "y": 106, - "left": -11.25, - "top": 29.53523, - "right": -9.84375, - "bottom": 28.304381, - "countries": [ - "morocco" - ] - }, - { - "x": 118, - "y": 107, - "left": -14.0625, - "top": 28.304381, - "right": -12.65625, - "bottom": 27.059126, - "countries": [ - "spain", - "western_sahara", - "morocco" - ] - }, - { - "x": 119, - "y": 107, - "left": -12.65625, - "top": 28.304381, - "right": -11.25, - "bottom": 27.059126, - "countries": [ - "western_sahara", - "morocco" - ] - }, - { - "x": 120, - "y": 107, - "left": -11.25, - "top": 28.304381, - "right": -9.84375, - "bottom": 27.059126, - "countries": [ - "western_sahara", - "morocco" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/mozambique.json b/wahoomc/resources/json/africa/mozambique.json deleted file mode 100644 index c314a002..00000000 --- a/wahoomc/resources/json/africa/mozambique.json +++ /dev/null @@ -1,698 +0,0 @@ -[ - { - "x": 152, - "y": 136, - "left": 33.75, - "top": -11.178402, - "right": 35.15625, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania", - "malawi" - ] - }, - { - "x": 152, - "y": 137, - "left": 33.75, - "top": -12.554564, - "right": 35.15625, - "bottom": -13.923404, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 137, - "left": 35.15625, - "top": -12.554564, - "right": 36.5625, - "bottom": -13.923404, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 151, - "y": 138, - "left": 32.34375, - "top": -13.923404, - "right": 33.75, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 138, - "left": 33.75, - "top": -13.923404, - "right": 35.15625, - "bottom": -15.284185, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 138, - "left": 35.15625, - "top": -13.923404, - "right": 36.5625, - "bottom": -15.284185, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 139, - "left": 33.75, - "top": -15.284185, - "right": 35.15625, - "bottom": -16.636192, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 139, - "left": 35.15625, - "top": -15.284185, - "right": 36.5625, - "bottom": -16.636192, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 152, - "y": 140, - "left": 33.75, - "top": -16.636192, - "right": 35.15625, - "bottom": -17.978733, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 153, - "y": 140, - "left": 35.15625, - "top": -16.636192, - "right": 36.5625, - "bottom": -17.978733, - "countries": [ - "mozambique", - "malawi" - ] - }, - { - "x": 155, - "y": 135, - "left": 37.96875, - "top": -9.795678, - "right": 39.375, - "bottom": -11.178402, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 156, - "y": 135, - "left": 39.375, - "top": -9.795678, - "right": 40.78125, - "bottom": -11.178402, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 153, - "y": 136, - "left": 35.15625, - "top": -11.178402, - "right": 36.5625, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 154, - "y": 136, - "left": 36.5625, - "top": -11.178402, - "right": 37.96875, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 155, - "y": 136, - "left": 37.96875, - "top": -11.178402, - "right": 39.375, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 156, - "y": 136, - "left": 39.375, - "top": -11.178402, - "right": 40.78125, - "bottom": -12.554564, - "countries": [ - "mozambique" - ] - }, - { - "x": 154, - "y": 137, - "left": 36.5625, - "top": -12.554564, - "right": 37.96875, - "bottom": -13.923404, - "countries": [ - "mozambique" - ] - }, - { - "x": 155, - "y": 137, - "left": 37.96875, - "top": -12.554564, - "right": 39.375, - "bottom": -13.923404, - "countries": [ - "mozambique" - ] - }, - { - "x": 156, - "y": 137, - "left": 39.375, - "top": -12.554564, - "right": 40.78125, - "bottom": -13.923404, - "countries": [ - "mozambique" - ] - }, - { - "x": 149, - "y": 138, - "left": 29.53125, - "top": -13.923404, - "right": 30.9375, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique" - ] - }, - { - "x": 150, - "y": 138, - "left": 30.9375, - "top": -13.923404, - "right": 32.34375, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique" - ] - }, - { - "x": 154, - "y": 138, - "left": 36.5625, - "top": -13.923404, - "right": 37.96875, - "bottom": -15.284185, - "countries": [ - "mozambique" - ] - }, - { - "x": 155, - "y": 138, - "left": 37.96875, - "top": -13.923404, - "right": 39.375, - "bottom": -15.284185, - "countries": [ - "mozambique" - ] - }, - { - "x": 156, - "y": 138, - "left": 39.375, - "top": -13.923404, - "right": 40.78125, - "bottom": -15.284185, - "countries": [ - "mozambique" - ] - }, - { - "x": 157, - "y": 138, - "left": 40.78125, - "top": -13.923404, - "right": 42.1875, - "bottom": -15.284185, - "countries": [ - "mozambique" - ] - }, - { - "x": 149, - "y": 139, - "left": 29.53125, - "top": -15.284185, - "right": 30.9375, - "bottom": -16.636192, - "countries": [ - "zambia", - "mozambique", - "zimbabwe" - ] - }, - { - "x": 150, - "y": 139, - "left": 30.9375, - "top": -15.284185, - "right": 32.34375, - "bottom": -16.636192, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 139, - "left": 32.34375, - "top": -15.284185, - "right": 33.75, - "bottom": -16.636192, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 154, - "y": 139, - "left": 36.5625, - "top": -15.284185, - "right": 37.96875, - "bottom": -16.636192, - "countries": [ - "mozambique" - ] - }, - { - "x": 155, - "y": 139, - "left": 37.96875, - "top": -15.284185, - "right": 39.375, - "bottom": -16.636192, - "countries": [ - "mozambique" - ] - }, - { - "x": 156, - "y": 139, - "left": 39.375, - "top": -15.284185, - "right": 40.78125, - "bottom": -16.636192, - "countries": [ - "mozambique" - ] - }, - { - "x": 151, - "y": 140, - "left": 32.34375, - "top": -16.636192, - "right": 33.75, - "bottom": -17.978733, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 154, - "y": 140, - "left": 36.5625, - "top": -16.636192, - "right": 37.96875, - "bottom": -17.978733, - "countries": [ - "mozambique" - ] - }, - { - "x": 155, - "y": 140, - "left": 37.96875, - "top": -16.636192, - "right": 39.375, - "bottom": -17.978733, - "countries": [ - "mozambique" - ] - }, - { - "x": 156, - "y": 140, - "left": 39.375, - "top": -16.636192, - "right": 40.78125, - "bottom": -17.978733, - "countries": [ - "mozambique" - ] - }, - { - "x": 151, - "y": 141, - "left": 32.34375, - "top": -17.978733, - "right": 33.75, - "bottom": -19.311143, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 152, - "y": 141, - "left": 33.75, - "top": -17.978733, - "right": 35.15625, - "bottom": -19.311143, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 141, - "left": 35.15625, - "top": -17.978733, - "right": 36.5625, - "bottom": -19.311143, - "countries": [ - "mozambique" - ] - }, - { - "x": 154, - "y": 141, - "left": 36.5625, - "top": -17.978733, - "right": 37.96875, - "bottom": -19.311143, - "countries": [ - "mozambique" - ] - }, - { - "x": 151, - "y": 142, - "left": 32.34375, - "top": -19.311143, - "right": 33.75, - "bottom": -20.632784, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 152, - "y": 142, - "left": 33.75, - "top": -19.311143, - "right": 35.15625, - "bottom": -20.632784, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 142, - "left": 35.15625, - "top": -19.311143, - "right": 36.5625, - "bottom": -20.632784, - "countries": [ - "mozambique" - ] - }, - { - "x": 150, - "y": 143, - "left": 30.9375, - "top": -20.632784, - "right": 32.34375, - "bottom": -21.943046, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 143, - "left": 32.34375, - "top": -20.632784, - "right": 33.75, - "bottom": -21.943046, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 152, - "y": 143, - "left": 33.75, - "top": -20.632784, - "right": 35.15625, - "bottom": -21.943046, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 143, - "left": 35.15625, - "top": -20.632784, - "right": 36.5625, - "bottom": -21.943046, - "countries": [ - "mozambique" - ] - }, - { - "x": 150, - "y": 144, - "left": 30.9375, - "top": -21.943046, - "right": 32.34375, - "bottom": -23.241346, - "countries": [ - "mozambique", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 144, - "left": 32.34375, - "top": -21.943046, - "right": 33.75, - "bottom": -23.241346, - "countries": [ - "mozambique" - ] - }, - { - "x": 152, - "y": 144, - "left": 33.75, - "top": -21.943046, - "right": 35.15625, - "bottom": -23.241346, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 144, - "left": 35.15625, - "top": -21.943046, - "right": 36.5625, - "bottom": -23.241346, - "countries": [ - "mozambique" - ] - }, - { - "x": 150, - "y": 145, - "left": 30.9375, - "top": -23.241346, - "right": 32.34375, - "bottom": -24.527135, - "countries": [ - "mozambique", - "south_africa" - ] - }, - { - "x": 151, - "y": 145, - "left": 32.34375, - "top": -23.241346, - "right": 33.75, - "bottom": -24.527135, - "countries": [ - "mozambique" - ] - }, - { - "x": 152, - "y": 145, - "left": 33.75, - "top": -23.241346, - "right": 35.15625, - "bottom": -24.527135, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 145, - "left": 35.15625, - "top": -23.241346, - "right": 36.5625, - "bottom": -24.527135, - "countries": [ - "mozambique" - ] - }, - { - "x": 150, - "y": 146, - "left": 30.9375, - "top": -24.527135, - "right": 32.34375, - "bottom": -25.799891, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 151, - "y": 146, - "left": 32.34375, - "top": -24.527135, - "right": 33.75, - "bottom": -25.799891, - "countries": [ - "mozambique" - ] - }, - { - "x": 152, - "y": 146, - "left": 33.75, - "top": -24.527135, - "right": 35.15625, - "bottom": -25.799891, - "countries": [ - "mozambique" - ] - }, - { - "x": 153, - "y": 146, - "left": 35.15625, - "top": -24.527135, - "right": 36.5625, - "bottom": -25.799891, - "countries": [ - "mozambique" - ] - }, - { - "x": 150, - "y": 147, - "left": 30.9375, - "top": -25.799891, - "right": 32.34375, - "bottom": -27.059126, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 151, - "y": 147, - "left": 32.34375, - "top": -25.799891, - "right": 33.75, - "bottom": -27.059126, - "countries": [ - "mozambique", - "south_africa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/namibia.json b/wahoomc/resources/json/africa/namibia.json deleted file mode 100644 index f45cca37..00000000 --- a/wahoomc/resources/json/africa/namibia.json +++ /dev/null @@ -1,709 +0,0 @@ -[ - { - "x": 136, - "y": 140, - "left": 11.25, - "top": -16.636192, - "right": 12.65625, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 137, - "y": 140, - "left": 12.65625, - "top": -16.636192, - "right": 14.0625, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 138, - "y": 140, - "left": 14.0625, - "top": -16.636192, - "right": 15.46875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 139, - "y": 140, - "left": 15.46875, - "top": -16.636192, - "right": 16.875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 140, - "y": 140, - "left": 16.875, - "top": -16.636192, - "right": 18.28125, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 141, - "y": 140, - "left": 18.28125, - "top": -16.636192, - "right": 19.6875, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 142, - "y": 140, - "left": 19.6875, - "top": -16.636192, - "right": 21.09375, - "bottom": -17.978733, - "countries": [ - "namibia", - "angola" - ] - }, - { - "x": 143, - "y": 140, - "left": 21.09375, - "top": -16.636192, - "right": 22.5, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 144, - "y": 140, - "left": 22.5, - "top": -16.636192, - "right": 23.90625, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 142, - "y": 141, - "left": 19.6875, - "top": -17.978733, - "right": 21.09375, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - }, - { - "x": 143, - "y": 141, - "left": 21.09375, - "top": -17.978733, - "right": 22.5, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia", - "angola" - ] - }, - { - "x": 145, - "y": 140, - "left": 23.90625, - "top": -16.636192, - "right": 25.3125, - "bottom": -17.978733, - "countries": [ - "zambia", - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 144, - "y": 141, - "left": 22.5, - "top": -17.978733, - "right": 23.90625, - "bottom": -19.311143, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 145, - "y": 141, - "left": 23.90625, - "top": -17.978733, - "right": 25.3125, - "bottom": -19.311143, - "countries": [ - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 142, - "y": 142, - "left": 19.6875, - "top": -19.311143, - "right": 21.09375, - "bottom": -20.632784, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 142, - "y": 143, - "left": 19.6875, - "top": -20.632784, - "right": 21.09375, - "bottom": -21.943046, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 142, - "y": 144, - "left": 19.6875, - "top": -21.943046, - "right": 21.09375, - "bottom": -23.241346, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 142, - "y": 145, - "left": 19.6875, - "top": -23.241346, - "right": 21.09375, - "bottom": -24.527135, - "countries": [ - "botswana", - "namibia" - ] - }, - { - "x": 142, - "y": 146, - "left": 19.6875, - "top": -24.527135, - "right": 21.09375, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 142, - "y": 147, - "left": 19.6875, - "top": -25.799891, - "right": 21.09375, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 136, - "y": 141, - "left": 11.25, - "top": -17.978733, - "right": 12.65625, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 137, - "y": 141, - "left": 12.65625, - "top": -17.978733, - "right": 14.0625, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 141, - "left": 14.0625, - "top": -17.978733, - "right": 15.46875, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 141, - "left": 15.46875, - "top": -17.978733, - "right": 16.875, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 141, - "left": 16.875, - "top": -17.978733, - "right": 18.28125, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 141, - "left": 18.28125, - "top": -17.978733, - "right": 19.6875, - "bottom": -19.311143, - "countries": [ - "namibia" - ] - }, - { - "x": 137, - "y": 142, - "left": 12.65625, - "top": -19.311143, - "right": 14.0625, - "bottom": -20.632784, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 142, - "left": 14.0625, - "top": -19.311143, - "right": 15.46875, - "bottom": -20.632784, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 142, - "left": 15.46875, - "top": -19.311143, - "right": 16.875, - "bottom": -20.632784, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 142, - "left": 16.875, - "top": -19.311143, - "right": 18.28125, - "bottom": -20.632784, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 142, - "left": 18.28125, - "top": -19.311143, - "right": 19.6875, - "bottom": -20.632784, - "countries": [ - "namibia" - ] - }, - { - "x": 137, - "y": 143, - "left": 12.65625, - "top": -20.632784, - "right": 14.0625, - "bottom": -21.943046, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 143, - "left": 14.0625, - "top": -20.632784, - "right": 15.46875, - "bottom": -21.943046, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 143, - "left": 15.46875, - "top": -20.632784, - "right": 16.875, - "bottom": -21.943046, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 143, - "left": 16.875, - "top": -20.632784, - "right": 18.28125, - "bottom": -21.943046, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 143, - "left": 18.28125, - "top": -20.632784, - "right": 19.6875, - "bottom": -21.943046, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 144, - "left": 14.0625, - "top": -21.943046, - "right": 15.46875, - "bottom": -23.241346, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 144, - "left": 15.46875, - "top": -21.943046, - "right": 16.875, - "bottom": -23.241346, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 144, - "left": 16.875, - "top": -21.943046, - "right": 18.28125, - "bottom": -23.241346, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 144, - "left": 18.28125, - "top": -21.943046, - "right": 19.6875, - "bottom": -23.241346, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 145, - "left": 14.0625, - "top": -23.241346, - "right": 15.46875, - "bottom": -24.527135, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 145, - "left": 15.46875, - "top": -23.241346, - "right": 16.875, - "bottom": -24.527135, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 145, - "left": 16.875, - "top": -23.241346, - "right": 18.28125, - "bottom": -24.527135, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 145, - "left": 18.28125, - "top": -23.241346, - "right": 19.6875, - "bottom": -24.527135, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 146, - "left": 14.0625, - "top": -24.527135, - "right": 15.46875, - "bottom": -25.799891, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 146, - "left": 15.46875, - "top": -24.527135, - "right": 16.875, - "bottom": -25.799891, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 146, - "left": 16.875, - "top": -24.527135, - "right": 18.28125, - "bottom": -25.799891, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 146, - "left": 18.28125, - "top": -24.527135, - "right": 19.6875, - "bottom": -25.799891, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 147, - "left": 14.0625, - "top": -25.799891, - "right": 15.46875, - "bottom": -27.059126, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 147, - "left": 15.46875, - "top": -25.799891, - "right": 16.875, - "bottom": -27.059126, - "countries": [ - "namibia" - ] - }, - { - "x": 140, - "y": 147, - "left": 16.875, - "top": -25.799891, - "right": 18.28125, - "bottom": -27.059126, - "countries": [ - "namibia" - ] - }, - { - "x": 141, - "y": 147, - "left": 18.28125, - "top": -25.799891, - "right": 19.6875, - "bottom": -27.059126, - "countries": [ - "namibia" - ] - }, - { - "x": 138, - "y": 148, - "left": 14.0625, - "top": -27.059126, - "right": 15.46875, - "bottom": -28.304381, - "countries": [ - "namibia" - ] - }, - { - "x": 139, - "y": 148, - "left": 15.46875, - "top": -27.059126, - "right": 16.875, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 140, - "y": 148, - "left": 16.875, - "top": -27.059126, - "right": 18.28125, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 141, - "y": 148, - "left": 18.28125, - "top": -27.059126, - "right": 19.6875, - "bottom": -28.304381, - "countries": [ - "namibia" - ] - }, - { - "x": 142, - "y": 148, - "left": 19.6875, - "top": -27.059126, - "right": 21.09375, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 139, - "y": 149, - "left": 15.46875, - "top": -28.304381, - "right": 16.875, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 140, - "y": 149, - "left": 16.875, - "top": -28.304381, - "right": 18.28125, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 141, - "y": 149, - "left": 18.28125, - "top": -28.304381, - "right": 19.6875, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 142, - "y": 149, - "left": 19.6875, - "top": -28.304381, - "right": 21.09375, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/niger.json b/wahoomc/resources/json/africa/niger.json deleted file mode 100644 index d8385023..00000000 --- a/wahoomc/resources/json/africa/niger.json +++ /dev/null @@ -1,863 +0,0 @@ -[ - { - "x": 136, - "y": 110, - "left": 11.25, - "top": 24.527135, - "right": 12.65625, - "bottom": 23.241346, - "countries": [ - "libya", - "algeria", - "niger" - ] - }, - { - "x": 134, - "y": 111, - "left": 8.4375, - "top": 23.241346, - "right": 9.84375, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 135, - "y": 111, - "left": 9.84375, - "top": 23.241346, - "right": 11.25, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 136, - "y": 111, - "left": 11.25, - "top": 23.241346, - "right": 12.65625, - "bottom": 21.943046, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 133, - "y": 112, - "left": 7.03125, - "top": 21.943046, - "right": 8.4375, - "bottom": 20.632784, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 134, - "y": 112, - "left": 8.4375, - "top": 21.943046, - "right": 9.84375, - "bottom": 20.632784, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 131, - "y": 113, - "left": 4.21875, - "top": 20.632784, - "right": 5.625, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 132, - "y": 113, - "left": 5.625, - "top": 20.632784, - "right": 7.03125, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 133, - "y": 113, - "left": 7.03125, - "top": 20.632784, - "right": 8.4375, - "bottom": 19.311143, - "countries": [ - "algeria", - "niger" - ] - }, - { - "x": 131, - "y": 114, - "left": 4.21875, - "top": 19.311143, - "right": 5.625, - "bottom": 17.978733, - "countries": [ - "algeria", - "niger", - "mali" - ] - }, - { - "x": 129, - "y": 119, - "left": 1.40625, - "top": 12.554564, - "right": 2.8125, - "bottom": 11.178402, - "countries": [ - "benin", - "burkina_faso", - "niger" - ] - }, - { - "x": 130, - "y": 119, - "left": 2.8125, - "top": 12.554564, - "right": 4.21875, - "bottom": 11.178402, - "countries": [ - "benin", - "nigeria", - "niger" - ] - }, - { - "x": 128, - "y": 117, - "left": 0.0, - "top": 15.284185, - "right": 1.40625, - "bottom": 13.923404, - "countries": [ - "burkina_faso", - "niger", - "mali" - ] - }, - { - "x": 128, - "y": 118, - "left": 0.0, - "top": 13.923404, - "right": 1.40625, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "niger" - ] - }, - { - "x": 129, - "y": 118, - "left": 1.40625, - "top": 13.923404, - "right": 2.8125, - "bottom": 12.554564, - "countries": [ - "burkina_faso", - "niger" - ] - }, - { - "x": 138, - "y": 111, - "left": 14.0625, - "top": 23.241346, - "right": 15.46875, - "bottom": 21.943046, - "countries": [ - "libya", - "chad", - "niger" - ] - }, - { - "x": 138, - "y": 112, - "left": 14.0625, - "top": 21.943046, - "right": 15.46875, - "bottom": 20.632784, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 112, - "left": 15.46875, - "top": 21.943046, - "right": 16.875, - "bottom": 20.632784, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 113, - "left": 15.46875, - "top": 20.632784, - "right": 16.875, - "bottom": 19.311143, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 114, - "left": 15.46875, - "top": 19.311143, - "right": 16.875, - "bottom": 17.978733, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 138, - "y": 115, - "left": 14.0625, - "top": 17.978733, - "right": 15.46875, - "bottom": 16.636192, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 139, - "y": 115, - "left": 15.46875, - "top": 17.978733, - "right": 16.875, - "bottom": 16.636192, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 137, - "y": 116, - "left": 12.65625, - "top": 16.636192, - "right": 14.0625, - "bottom": 15.284185, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 138, - "y": 116, - "left": 14.0625, - "top": 16.636192, - "right": 15.46875, - "bottom": 15.284185, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 137, - "y": 117, - "left": 12.65625, - "top": 15.284185, - "right": 14.0625, - "bottom": 13.923404, - "countries": [ - "chad", - "niger" - ] - }, - { - "x": 137, - "y": 118, - "left": 12.65625, - "top": 13.923404, - "right": 14.0625, - "bottom": 12.554564, - "countries": [ - "chad", - "nigeria", - "niger" - ] - }, - { - "x": 137, - "y": 110, - "left": 12.65625, - "top": 24.527135, - "right": 14.0625, - "bottom": 23.241346, - "countries": [ - "libya", - "niger" - ] - }, - { - "x": 137, - "y": 111, - "left": 12.65625, - "top": 23.241346, - "right": 14.0625, - "bottom": 21.943046, - "countries": [ - "libya", - "niger" - ] - }, - { - "x": 130, - "y": 115, - "left": 2.8125, - "top": 17.978733, - "right": 4.21875, - "bottom": 16.636192, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 131, - "y": 115, - "left": 4.21875, - "top": 17.978733, - "right": 5.625, - "bottom": 16.636192, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 129, - "y": 116, - "left": 1.40625, - "top": 16.636192, - "right": 2.8125, - "bottom": 15.284185, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 130, - "y": 116, - "left": 2.8125, - "top": 16.636192, - "right": 4.21875, - "bottom": 15.284185, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 129, - "y": 117, - "left": 1.40625, - "top": 15.284185, - "right": 2.8125, - "bottom": 13.923404, - "countries": [ - "niger", - "mali" - ] - }, - { - "x": 135, - "y": 112, - "left": 9.84375, - "top": 21.943046, - "right": 11.25, - "bottom": 20.632784, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 112, - "left": 11.25, - "top": 21.943046, - "right": 12.65625, - "bottom": 20.632784, - "countries": [ - "niger" - ] - }, - { - "x": 137, - "y": 112, - "left": 12.65625, - "top": 21.943046, - "right": 14.0625, - "bottom": 20.632784, - "countries": [ - "niger" - ] - }, - { - "x": 134, - "y": 113, - "left": 8.4375, - "top": 20.632784, - "right": 9.84375, - "bottom": 19.311143, - "countries": [ - "niger" - ] - }, - { - "x": 135, - "y": 113, - "left": 9.84375, - "top": 20.632784, - "right": 11.25, - "bottom": 19.311143, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 113, - "left": 11.25, - "top": 20.632784, - "right": 12.65625, - "bottom": 19.311143, - "countries": [ - "niger" - ] - }, - { - "x": 137, - "y": 113, - "left": 12.65625, - "top": 20.632784, - "right": 14.0625, - "bottom": 19.311143, - "countries": [ - "niger" - ] - }, - { - "x": 138, - "y": 113, - "left": 14.0625, - "top": 20.632784, - "right": 15.46875, - "bottom": 19.311143, - "countries": [ - "niger" - ] - }, - { - "x": 132, - "y": 114, - "left": 5.625, - "top": 19.311143, - "right": 7.03125, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 133, - "y": 114, - "left": 7.03125, - "top": 19.311143, - "right": 8.4375, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 134, - "y": 114, - "left": 8.4375, - "top": 19.311143, - "right": 9.84375, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 135, - "y": 114, - "left": 9.84375, - "top": 19.311143, - "right": 11.25, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 114, - "left": 11.25, - "top": 19.311143, - "right": 12.65625, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 137, - "y": 114, - "left": 12.65625, - "top": 19.311143, - "right": 14.0625, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 138, - "y": 114, - "left": 14.0625, - "top": 19.311143, - "right": 15.46875, - "bottom": 17.978733, - "countries": [ - "niger" - ] - }, - { - "x": 132, - "y": 115, - "left": 5.625, - "top": 17.978733, - "right": 7.03125, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 133, - "y": 115, - "left": 7.03125, - "top": 17.978733, - "right": 8.4375, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 134, - "y": 115, - "left": 8.4375, - "top": 17.978733, - "right": 9.84375, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 135, - "y": 115, - "left": 9.84375, - "top": 17.978733, - "right": 11.25, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 115, - "left": 11.25, - "top": 17.978733, - "right": 12.65625, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 137, - "y": 115, - "left": 12.65625, - "top": 17.978733, - "right": 14.0625, - "bottom": 16.636192, - "countries": [ - "niger" - ] - }, - { - "x": 131, - "y": 116, - "left": 4.21875, - "top": 16.636192, - "right": 5.625, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 132, - "y": 116, - "left": 5.625, - "top": 16.636192, - "right": 7.03125, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 133, - "y": 116, - "left": 7.03125, - "top": 16.636192, - "right": 8.4375, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 134, - "y": 116, - "left": 8.4375, - "top": 16.636192, - "right": 9.84375, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 135, - "y": 116, - "left": 9.84375, - "top": 16.636192, - "right": 11.25, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 116, - "left": 11.25, - "top": 16.636192, - "right": 12.65625, - "bottom": 15.284185, - "countries": [ - "niger" - ] - }, - { - "x": 130, - "y": 117, - "left": 2.8125, - "top": 15.284185, - "right": 4.21875, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 131, - "y": 117, - "left": 4.21875, - "top": 15.284185, - "right": 5.625, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 132, - "y": 117, - "left": 5.625, - "top": 15.284185, - "right": 7.03125, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 133, - "y": 117, - "left": 7.03125, - "top": 15.284185, - "right": 8.4375, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 134, - "y": 117, - "left": 8.4375, - "top": 15.284185, - "right": 9.84375, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 135, - "y": 117, - "left": 9.84375, - "top": 15.284185, - "right": 11.25, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 136, - "y": 117, - "left": 11.25, - "top": 15.284185, - "right": 12.65625, - "bottom": 13.923404, - "countries": [ - "niger" - ] - }, - { - "x": 130, - "y": 118, - "left": 2.8125, - "top": 13.923404, - "right": 4.21875, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 131, - "y": 118, - "left": 4.21875, - "top": 13.923404, - "right": 5.625, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 132, - "y": 118, - "left": 5.625, - "top": 13.923404, - "right": 7.03125, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 133, - "y": 118, - "left": 7.03125, - "top": 13.923404, - "right": 8.4375, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 134, - "y": 118, - "left": 8.4375, - "top": 13.923404, - "right": 9.84375, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 135, - "y": 118, - "left": 9.84375, - "top": 13.923404, - "right": 11.25, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 136, - "y": 118, - "left": 11.25, - "top": 13.923404, - "right": 12.65625, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/nigeria.json b/wahoomc/resources/json/africa/nigeria.json deleted file mode 100644 index 4a4f4915..00000000 --- a/wahoomc/resources/json/africa/nigeria.json +++ /dev/null @@ -1,641 +0,0 @@ -[ - { - "x": 130, - "y": 119, - "left": 2.8125, - "top": 12.554564, - "right": 4.21875, - "bottom": 11.178402, - "countries": [ - "benin", - "nigeria", - "niger" - ] - }, - { - "x": 130, - "y": 120, - "left": 2.8125, - "top": 11.178402, - "right": 4.21875, - "bottom": 9.795678, - "countries": [ - "benin", - "nigeria" - ] - }, - { - "x": 129, - "y": 121, - "left": 1.40625, - "top": 9.795678, - "right": 2.8125, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 130, - "y": 121, - "left": 2.8125, - "top": 9.795678, - "right": 4.21875, - "bottom": 8.407168, - "countries": [ - "benin", - "nigeria" - ] - }, - { - "x": 129, - "y": 122, - "left": 1.40625, - "top": 8.407168, - "right": 2.8125, - "bottom": 7.013668, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 129, - "y": 123, - "left": 1.40625, - "top": 7.013668, - "right": 2.8125, - "bottom": 5.615986, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 138, - "y": 118, - "left": 14.0625, - "top": 13.923404, - "right": 15.46875, - "bottom": 12.554564, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 137, - "y": 119, - "left": 12.65625, - "top": 12.554564, - "right": 14.0625, - "bottom": 11.178402, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 138, - "y": 119, - "left": 14.0625, - "top": 12.554564, - "right": 15.46875, - "bottom": 11.178402, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 137, - "y": 120, - "left": 12.65625, - "top": 11.178402, - "right": 14.0625, - "bottom": 9.795678, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 136, - "y": 121, - "left": 11.25, - "top": 9.795678, - "right": 12.65625, - "bottom": 8.407168, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 137, - "y": 121, - "left": 12.65625, - "top": 9.795678, - "right": 14.0625, - "bottom": 8.407168, - "countries": [ - "cameroon", - "nigeria", - "chad" - ] - }, - { - "x": 135, - "y": 122, - "left": 9.84375, - "top": 8.407168, - "right": 11.25, - "bottom": 7.013668, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 136, - "y": 122, - "left": 11.25, - "top": 8.407168, - "right": 12.65625, - "bottom": 7.013668, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 134, - "y": 123, - "left": 8.4375, - "top": 7.013668, - "right": 9.84375, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 135, - "y": 123, - "left": 9.84375, - "top": 7.013668, - "right": 11.25, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 136, - "y": 123, - "left": 11.25, - "top": 7.013668, - "right": 12.65625, - "bottom": 5.615986, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 134, - "y": 124, - "left": 8.4375, - "top": 5.615986, - "right": 9.84375, - "bottom": 4.214943, - "countries": [ - "cameroon", - "nigeria" - ] - }, - { - "x": 137, - "y": 118, - "left": 12.65625, - "top": 13.923404, - "right": 14.0625, - "bottom": 12.554564, - "countries": [ - "chad", - "nigeria", - "niger" - ] - }, - { - "x": 130, - "y": 118, - "left": 2.8125, - "top": 13.923404, - "right": 4.21875, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 131, - "y": 118, - "left": 4.21875, - "top": 13.923404, - "right": 5.625, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 132, - "y": 118, - "left": 5.625, - "top": 13.923404, - "right": 7.03125, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 133, - "y": 118, - "left": 7.03125, - "top": 13.923404, - "right": 8.4375, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 134, - "y": 118, - "left": 8.4375, - "top": 13.923404, - "right": 9.84375, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 135, - "y": 118, - "left": 9.84375, - "top": 13.923404, - "right": 11.25, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 136, - "y": 118, - "left": 11.25, - "top": 13.923404, - "right": 12.65625, - "bottom": 12.554564, - "countries": [ - "nigeria", - "niger" - ] - }, - { - "x": 131, - "y": 119, - "left": 4.21875, - "top": 12.554564, - "right": 5.625, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 119, - "left": 5.625, - "top": 12.554564, - "right": 7.03125, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 119, - "left": 7.03125, - "top": 12.554564, - "right": 8.4375, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 134, - "y": 119, - "left": 8.4375, - "top": 12.554564, - "right": 9.84375, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 135, - "y": 119, - "left": 9.84375, - "top": 12.554564, - "right": 11.25, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 136, - "y": 119, - "left": 11.25, - "top": 12.554564, - "right": 12.65625, - "bottom": 11.178402, - "countries": [ - "nigeria" - ] - }, - { - "x": 131, - "y": 120, - "left": 4.21875, - "top": 11.178402, - "right": 5.625, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 120, - "left": 5.625, - "top": 11.178402, - "right": 7.03125, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 120, - "left": 7.03125, - "top": 11.178402, - "right": 8.4375, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 134, - "y": 120, - "left": 8.4375, - "top": 11.178402, - "right": 9.84375, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 135, - "y": 120, - "left": 9.84375, - "top": 11.178402, - "right": 11.25, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 136, - "y": 120, - "left": 11.25, - "top": 11.178402, - "right": 12.65625, - "bottom": 9.795678, - "countries": [ - "nigeria" - ] - }, - { - "x": 131, - "y": 121, - "left": 4.21875, - "top": 9.795678, - "right": 5.625, - "bottom": 8.407168, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 121, - "left": 5.625, - "top": 9.795678, - "right": 7.03125, - "bottom": 8.407168, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 121, - "left": 7.03125, - "top": 9.795678, - "right": 8.4375, - "bottom": 8.407168, - "countries": [ - "nigeria" - ] - }, - { - "x": 134, - "y": 121, - "left": 8.4375, - "top": 9.795678, - "right": 9.84375, - "bottom": 8.407168, - "countries": [ - "nigeria" - ] - }, - { - "x": 135, - "y": 121, - "left": 9.84375, - "top": 9.795678, - "right": 11.25, - "bottom": 8.407168, - "countries": [ - "nigeria" - ] - }, - { - "x": 130, - "y": 122, - "left": 2.8125, - "top": 8.407168, - "right": 4.21875, - "bottom": 7.013668, - "countries": [ - "nigeria" - ] - }, - { - "x": 131, - "y": 122, - "left": 4.21875, - "top": 8.407168, - "right": 5.625, - "bottom": 7.013668, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 122, - "left": 5.625, - "top": 8.407168, - "right": 7.03125, - "bottom": 7.013668, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 122, - "left": 7.03125, - "top": 8.407168, - "right": 8.4375, - "bottom": 7.013668, - "countries": [ - "nigeria" - ] - }, - { - "x": 134, - "y": 122, - "left": 8.4375, - "top": 8.407168, - "right": 9.84375, - "bottom": 7.013668, - "countries": [ - "nigeria" - ] - }, - { - "x": 130, - "y": 123, - "left": 2.8125, - "top": 7.013668, - "right": 4.21875, - "bottom": 5.615986, - "countries": [ - "nigeria" - ] - }, - { - "x": 131, - "y": 123, - "left": 4.21875, - "top": 7.013668, - "right": 5.625, - "bottom": 5.615986, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 123, - "left": 5.625, - "top": 7.013668, - "right": 7.03125, - "bottom": 5.615986, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 123, - "left": 7.03125, - "top": 7.013668, - "right": 8.4375, - "bottom": 5.615986, - "countries": [ - "nigeria" - ] - }, - { - "x": 131, - "y": 124, - "left": 4.21875, - "top": 5.615986, - "right": 5.625, - "bottom": 4.214943, - "countries": [ - "nigeria" - ] - }, - { - "x": 132, - "y": 124, - "left": 5.625, - "top": 5.615986, - "right": 7.03125, - "bottom": 4.214943, - "countries": [ - "nigeria" - ] - }, - { - "x": 133, - "y": 124, - "left": 7.03125, - "top": 5.615986, - "right": 8.4375, - "bottom": 4.214943, - "countries": [ - "nigeria" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/republic_of_congo.json b/wahoomc/resources/json/africa/republic_of_congo.json deleted file mode 100644 index be82ebf3..00000000 --- a/wahoomc/resources/json/africa/republic_of_congo.json +++ /dev/null @@ -1,353 +0,0 @@ -[ - { - "x": 136, - "y": 131, - "left": 11.25, - "top": -4.214943, - "right": 12.65625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 131, - "left": 12.65625, - "top": -4.214943, - "right": 14.0625, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 125, - "left": 15.46875, - "top": 4.214943, - "right": 16.875, - "bottom": 2.811371, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 137, - "y": 126, - "left": 12.65625, - "top": 2.811371, - "right": 14.0625, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 126, - "left": 14.0625, - "top": 2.811371, - "right": 15.46875, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo" - ] - }, - { - "x": 139, - "y": 126, - "left": 15.46875, - "top": 2.811371, - "right": 16.875, - "bottom": 1.406109, - "countries": [ - "cameroon", - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 140, - "y": 125, - "left": 16.875, - "top": 4.214943, - "right": 18.28125, - "bottom": 2.811371, - "countries": [ - "republic_of_congo", - "central_african_republic" - ] - }, - { - "x": 141, - "y": 125, - "left": 18.28125, - "top": 4.214943, - "right": 19.6875, - "bottom": 2.811371, - "countries": [ - "republic_of_congo", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 126, - "left": 16.875, - "top": 2.811371, - "right": 18.28125, - "bottom": 1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 141, - "y": 126, - "left": 18.28125, - "top": 2.811371, - "right": 19.6875, - "bottom": 1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 127, - "left": 16.875, - "top": 1.406109, - "right": 18.28125, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 128, - "left": 15.46875, - "top": 0.0, - "right": 16.875, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 140, - "y": 128, - "left": 16.875, - "top": 0.0, - "right": 18.28125, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 129, - "left": 15.46875, - "top": -1.406109, - "right": 16.875, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 130, - "left": 15.46875, - "top": -2.811371, - "right": 16.875, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 138, - "y": 131, - "left": 14.0625, - "top": -4.214943, - "right": 15.46875, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 139, - "y": 131, - "left": 15.46875, - "top": -4.214943, - "right": 16.875, - "bottom": -5.615986, - "countries": [ - "republic_of_congo", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 137, - "y": 127, - "left": 12.65625, - "top": 1.406109, - "right": 14.0625, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 127, - "left": 14.0625, - "top": 1.406109, - "right": 15.46875, - "bottom": 0.0, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 137, - "y": 128, - "left": 12.65625, - "top": 0.0, - "right": 14.0625, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 128, - "left": 14.0625, - "top": 0.0, - "right": 15.46875, - "bottom": -1.406109, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 136, - "y": 129, - "left": 11.25, - "top": -1.406109, - "right": 12.65625, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 137, - "y": 129, - "left": 12.65625, - "top": -1.406109, - "right": 14.0625, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 138, - "y": 129, - "left": 14.0625, - "top": -1.406109, - "right": 15.46875, - "bottom": -2.811371, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 135, - "y": 130, - "left": 9.84375, - "top": -2.811371, - "right": 11.25, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 136, - "y": 130, - "left": 11.25, - "top": -2.811371, - "right": 12.65625, - "bottom": -4.214943, - "countries": [ - "republic_of_congo", - "gabon" - ] - }, - { - "x": 139, - "y": 127, - "left": 15.46875, - "top": 1.406109, - "right": 16.875, - "bottom": 0.0, - "countries": [ - "republic_of_congo" - ] - }, - { - "x": 137, - "y": 130, - "left": 12.65625, - "top": -2.811371, - "right": 14.0625, - "bottom": -4.214943, - "countries": [ - "republic_of_congo" - ] - }, - { - "x": 138, - "y": 130, - "left": 14.0625, - "top": -2.811371, - "right": 15.46875, - "bottom": -4.214943, - "countries": [ - "republic_of_congo" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/reunion.json b/wahoomc/resources/json/africa/reunion.json deleted file mode 100644 index 1074fa15..00000000 --- a/wahoomc/resources/json/africa/reunion.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 167, - "y": 143, - "left": 54.84375, - "top": -20.632784, - "right": 56.25, - "bottom": -21.943046, - "countries": [ - "reunion" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/rwanda.json b/wahoomc/resources/json/africa/rwanda.json deleted file mode 100644 index a742e702..00000000 --- a/wahoomc/resources/json/africa/rwanda.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "x": 148, - "y": 129, - "left": 28.125, - "top": -1.406109, - "right": 29.53125, - "bottom": -2.811371, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 129, - "left": 29.53125, - "top": -1.406109, - "right": 30.9375, - "bottom": -2.811371, - "countries": [ - "burundi", - "democratic_republic_of_the_congo", - "tanzania", - "rwanda", - "uganda" - ] - }, - { - "x": 148, - "y": 130, - "left": 28.125, - "top": -2.811371, - "right": 29.53125, - "bottom": -4.214943, - "countries": [ - "rwanda", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 130, - "left": 29.53125, - "top": -2.811371, - "right": 30.9375, - "bottom": -4.214943, - "countries": [ - "rwanda", - "tanzania", - "burundi" - ] - }, - { - "x": 149, - "y": 128, - "left": 29.53125, - "top": 0.0, - "right": 30.9375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania", - "democratic_republic_of_the_congo", - "rwanda" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/saint_helena.json b/wahoomc/resources/json/africa/saint_helena.json deleted file mode 100644 index 53c52137..00000000 --- a/wahoomc/resources/json/africa/saint_helena.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "x": 117, - "y": 133, - "left": -15.46875, - "top": -7.013668, - "right": -14.0625, - "bottom": -8.407168, - "countries": [ - "saint_helena" - ] - }, - { - "x": 123, - "y": 139, - "left": -7.03125, - "top": -15.284185, - "right": -5.625, - "bottom": -16.636192, - "countries": [ - "saint_helena" - ] - }, - { - "x": 118, - "y": 156, - "left": -14.0625, - "top": -36.597889, - "right": -12.65625, - "bottom": -37.71859, - "countries": [ - "saint_helena" - ] - }, - { - "x": 119, - "y": 156, - "left": -12.65625, - "top": -36.597889, - "right": -11.25, - "bottom": -37.71859, - "countries": [ - "saint_helena" - ] - }, - { - "x": 120, - "y": 159, - "left": -11.25, - "top": -39.909736, - "right": -9.84375, - "bottom": -40.979898, - "countries": [ - "saint_helena" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/sao_tome_and_principe.json b/wahoomc/resources/json/africa/sao_tome_and_principe.json deleted file mode 100644 index 7e7fb39c..00000000 --- a/wahoomc/resources/json/africa/sao_tome_and_principe.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "x": 133, - "y": 126, - "left": 7.03125, - "top": 2.811371, - "right": 8.4375, - "bottom": 1.406109, - "countries": [ - "sao_tome_and_principe" - ] - }, - { - "x": 132, - "y": 127, - "left": 5.625, - "top": 1.406109, - "right": 7.03125, - "bottom": 0.0, - "countries": [ - "sao_tome_and_principe" - ] - }, - { - "x": 133, - "y": 127, - "left": 7.03125, - "top": 1.406109, - "right": 8.4375, - "bottom": 0.0, - "countries": [ - "sao_tome_and_principe" - ] - }, - { - "x": 132, - "y": 128, - "left": 5.625, - "top": 0.0, - "right": 7.03125, - "bottom": -1.406109, - "countries": [ - "sao_tome_and_principe" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/senegal.json b/wahoomc/resources/json/africa/senegal.json deleted file mode 100644 index 327dfc6b..00000000 --- a/wahoomc/resources/json/africa/senegal.json +++ /dev/null @@ -1,210 +0,0 @@ -[ - { - "x": 116, - "y": 118, - "left": -16.875, - "top": 13.923404, - "right": -15.46875, - "bottom": 12.554564, - "countries": [ - "gambia", - "senegal" - ] - }, - { - "x": 117, - "y": 118, - "left": -15.46875, - "top": 13.923404, - "right": -14.0625, - "bottom": 12.554564, - "countries": [ - "gambia", - "senegal", - "guinea-bissau" - ] - }, - { - "x": 118, - "y": 118, - "left": -14.0625, - "top": 13.923404, - "right": -12.65625, - "bottom": 12.554564, - "countries": [ - "gambia", - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 117, - "y": 119, - "left": -15.46875, - "top": 12.554564, - "right": -14.0625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 118, - "y": 119, - "left": -14.0625, - "top": 12.554564, - "right": -12.65625, - "bottom": 11.178402, - "countries": [ - "guinea-bissau", - "senegal", - "guinea" - ] - }, - { - "x": 119, - "y": 119, - "left": -12.65625, - "top": 12.554564, - "right": -11.25, - "bottom": 11.178402, - "countries": [ - "senegal", - "mali", - "guinea" - ] - }, - { - "x": 116, - "y": 119, - "left": -16.875, - "top": 12.554564, - "right": -15.46875, - "bottom": 11.178402, - "countries": [ - "senegal", - "guinea-bissau" - ] - }, - { - "x": 119, - "y": 117, - "left": -12.65625, - "top": 15.284185, - "right": -11.25, - "bottom": 13.923404, - "countries": [ - "senegal", - "mali", - "mauritania" - ] - }, - { - "x": 119, - "y": 118, - "left": -12.65625, - "top": 13.923404, - "right": -11.25, - "bottom": 12.554564, - "countries": [ - "senegal", - "mali" - ] - }, - { - "x": 117, - "y": 115, - "left": -15.46875, - "top": 17.978733, - "right": -14.0625, - "bottom": 16.636192, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 116, - "y": 116, - "left": -16.875, - "top": 16.636192, - "right": -15.46875, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 117, - "y": 116, - "left": -15.46875, - "top": 16.636192, - "right": -14.0625, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 118, - "y": 116, - "left": -14.0625, - "top": 16.636192, - "right": -12.65625, - "bottom": 15.284185, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 118, - "y": 117, - "left": -14.0625, - "top": 15.284185, - "right": -12.65625, - "bottom": 13.923404, - "countries": [ - "senegal", - "mauritania" - ] - }, - { - "x": 115, - "y": 117, - "left": -18.28125, - "top": 15.284185, - "right": -16.875, - "bottom": 13.923404, - "countries": [ - "senegal" - ] - }, - { - "x": 116, - "y": 117, - "left": -16.875, - "top": 15.284185, - "right": -15.46875, - "bottom": 13.923404, - "countries": [ - "senegal" - ] - }, - { - "x": 117, - "y": 117, - "left": -15.46875, - "top": 15.284185, - "right": -14.0625, - "bottom": 13.923404, - "countries": [ - "senegal" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/seychelles.json b/wahoomc/resources/json/africa/seychelles.json deleted file mode 100644 index b6bd5334..00000000 --- a/wahoomc/resources/json/africa/seychelles.json +++ /dev/null @@ -1,156 +0,0 @@ -[ - { - "x": 167, - "y": 130, - "left": 54.84375, - "top": -2.811371, - "right": 56.25, - "bottom": -4.214943, - "countries": [ - "seychelles" - ] - }, - { - "x": 165, - "y": 131, - "left": 52.03125, - "top": -4.214943, - "right": 53.4375, - "bottom": -5.615986, - "countries": [ - "seychelles" - ] - }, - { - "x": 167, - "y": 131, - "left": 54.84375, - "top": -4.214943, - "right": 56.25, - "bottom": -5.615986, - "countries": [ - "seychelles" - ] - }, - { - "x": 165, - "y": 132, - "left": 52.03125, - "top": -5.615986, - "right": 53.4375, - "bottom": -7.013668, - "countries": [ - "seychelles" - ] - }, - { - "x": 166, - "y": 132, - "left": 53.4375, - "top": -5.615986, - "right": 54.84375, - "bottom": -7.013668, - "countries": [ - "seychelles" - ] - }, - { - "x": 167, - "y": 132, - "left": 54.84375, - "top": -5.615986, - "right": 56.25, - "bottom": -7.013668, - "countries": [ - "seychelles" - ] - }, - { - "x": 165, - "y": 133, - "left": 52.03125, - "top": -7.013668, - "right": 53.4375, - "bottom": -8.407168, - "countries": [ - "seychelles" - ] - }, - { - "x": 167, - "y": 133, - "left": 54.84375, - "top": -7.013668, - "right": 56.25, - "bottom": -8.407168, - "countries": [ - "seychelles" - ] - }, - { - "x": 168, - "y": 133, - "left": 56.25, - "top": -7.013668, - "right": 57.65625, - "bottom": -8.407168, - "countries": [ - "seychelles" - ] - }, - { - "x": 160, - "y": 134, - "left": 45.0, - "top": -8.407168, - "right": 46.40625, - "bottom": -9.795678, - "countries": [ - "seychelles" - ] - }, - { - "x": 161, - "y": 134, - "left": 46.40625, - "top": -8.407168, - "right": 47.8125, - "bottom": -9.795678, - "countries": [ - "seychelles" - ] - }, - { - "x": 164, - "y": 134, - "left": 50.625, - "top": -8.407168, - "right": 52.03125, - "bottom": -9.795678, - "countries": [ - "seychelles" - ] - }, - { - "x": 161, - "y": 135, - "left": 46.40625, - "top": -9.795678, - "right": 47.8125, - "bottom": -11.178402, - "countries": [ - "seychelles" - ] - }, - { - "x": 164, - "y": 135, - "left": 50.625, - "top": -9.795678, - "right": 52.03125, - "bottom": -11.178402, - "countries": [ - "seychelles" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/sierra_leone.json b/wahoomc/resources/json/africa/sierra_leone.json deleted file mode 100644 index 7710ead2..00000000 --- a/wahoomc/resources/json/africa/sierra_leone.json +++ /dev/null @@ -1,111 +0,0 @@ -[ - { - "x": 119, - "y": 120, - "left": -12.65625, - "top": 11.178402, - "right": -11.25, - "bottom": 9.795678, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 120, - "y": 120, - "left": -11.25, - "top": 11.178402, - "right": -9.84375, - "bottom": 9.795678, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 118, - "y": 121, - "left": -14.0625, - "top": 9.795678, - "right": -12.65625, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 119, - "y": 121, - "left": -12.65625, - "top": 9.795678, - "right": -11.25, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "guinea" - ] - }, - { - "x": 120, - "y": 121, - "left": -11.25, - "top": 9.795678, - "right": -9.84375, - "bottom": 8.407168, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - }, - { - "x": 120, - "y": 122, - "left": -11.25, - "top": 8.407168, - "right": -9.84375, - "bottom": 7.013668, - "countries": [ - "sierra_leone", - "liberia", - "guinea" - ] - }, - { - "x": 119, - "y": 122, - "left": -12.65625, - "top": 8.407168, - "right": -11.25, - "bottom": 7.013668, - "countries": [ - "sierra_leone", - "liberia" - ] - }, - { - "x": 119, - "y": 123, - "left": -12.65625, - "top": 7.013668, - "right": -11.25, - "bottom": 5.615986, - "countries": [ - "sierra_leone", - "liberia" - ] - }, - { - "x": 118, - "y": 122, - "left": -14.0625, - "top": 8.407168, - "right": -12.65625, - "bottom": 7.013668, - "countries": [ - "sierra_leone" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/somalia.json b/wahoomc/resources/json/africa/somalia.json deleted file mode 100644 index 80b49f80..00000000 --- a/wahoomc/resources/json/africa/somalia.json +++ /dev/null @@ -1,542 +0,0 @@ -[ - { - "x": 158, - "y": 119, - "left": 42.1875, - "top": 12.554564, - "right": 43.59375, - "bottom": 11.178402, - "countries": [ - "somalia", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 158, - "y": 120, - "left": 42.1875, - "top": 11.178402, - "right": 43.59375, - "bottom": 9.795678, - "countries": [ - "somalia", - "ethiopia", - "djibouti" - ] - }, - { - "x": 158, - "y": 121, - "left": 42.1875, - "top": 9.795678, - "right": 43.59375, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 159, - "y": 121, - "left": 43.59375, - "top": 9.795678, - "right": 45.0, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 121, - "left": 45.0, - "top": 9.795678, - "right": 46.40625, - "bottom": 8.407168, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 122, - "left": 45.0, - "top": 8.407168, - "right": 46.40625, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 161, - "y": 122, - "left": 46.40625, - "top": 8.407168, - "right": 47.8125, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 162, - "y": 122, - "left": 47.8125, - "top": 8.407168, - "right": 49.21875, - "bottom": 7.013668, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 123, - "left": 45.0, - "top": 7.013668, - "right": 46.40625, - "bottom": 5.615986, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 161, - "y": 123, - "left": 46.40625, - "top": 7.013668, - "right": 47.8125, - "bottom": 5.615986, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 158, - "y": 124, - "left": 42.1875, - "top": 5.615986, - "right": 43.59375, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 159, - "y": 124, - "left": 43.59375, - "top": 5.615986, - "right": 45.0, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 160, - "y": 124, - "left": 45.0, - "top": 5.615986, - "right": 46.40625, - "bottom": 4.214943, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 157, - "y": 125, - "left": 40.78125, - "top": 4.214943, - "right": 42.1875, - "bottom": 2.811371, - "countries": [ - "kenya", - "somalia", - "ethiopia" - ] - }, - { - "x": 158, - "y": 125, - "left": 42.1875, - "top": 4.214943, - "right": 43.59375, - "bottom": 2.811371, - "countries": [ - "somalia", - "ethiopia" - ] - }, - { - "x": 157, - "y": 126, - "left": 40.78125, - "top": 2.811371, - "right": 42.1875, - "bottom": 1.406109, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 157, - "y": 127, - "left": 40.78125, - "top": 1.406109, - "right": 42.1875, - "bottom": 0.0, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 157, - "y": 128, - "left": 40.78125, - "top": 0.0, - "right": 42.1875, - "bottom": -1.406109, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 157, - "y": 129, - "left": 40.78125, - "top": -1.406109, - "right": 42.1875, - "bottom": -2.811371, - "countries": [ - "somalia", - "kenya" - ] - }, - { - "x": 161, - "y": 119, - "left": 46.40625, - "top": 12.554564, - "right": 47.8125, - "bottom": 11.178402, - "countries": [ - "somalia" - ] - }, - { - "x": 162, - "y": 119, - "left": 47.8125, - "top": 12.554564, - "right": 49.21875, - "bottom": 11.178402, - "countries": [ - "somalia" - ] - }, - { - "x": 163, - "y": 119, - "left": 49.21875, - "top": 12.554564, - "right": 50.625, - "bottom": 11.178402, - "countries": [ - "somalia" - ] - }, - { - "x": 164, - "y": 119, - "left": 50.625, - "top": 12.554564, - "right": 52.03125, - "bottom": 11.178402, - "countries": [ - "somalia" - ] - }, - { - "x": 159, - "y": 120, - "left": 43.59375, - "top": 11.178402, - "right": 45.0, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 160, - "y": 120, - "left": 45.0, - "top": 11.178402, - "right": 46.40625, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 161, - "y": 120, - "left": 46.40625, - "top": 11.178402, - "right": 47.8125, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 162, - "y": 120, - "left": 47.8125, - "top": 11.178402, - "right": 49.21875, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 163, - "y": 120, - "left": 49.21875, - "top": 11.178402, - "right": 50.625, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 164, - "y": 120, - "left": 50.625, - "top": 11.178402, - "right": 52.03125, - "bottom": 9.795678, - "countries": [ - "somalia" - ] - }, - { - "x": 161, - "y": 121, - "left": 46.40625, - "top": 9.795678, - "right": 47.8125, - "bottom": 8.407168, - "countries": [ - "somalia" - ] - }, - { - "x": 162, - "y": 121, - "left": 47.8125, - "top": 9.795678, - "right": 49.21875, - "bottom": 8.407168, - "countries": [ - "somalia" - ] - }, - { - "x": 163, - "y": 121, - "left": 49.21875, - "top": 9.795678, - "right": 50.625, - "bottom": 8.407168, - "countries": [ - "somalia" - ] - }, - { - "x": 164, - "y": 121, - "left": 50.625, - "top": 9.795678, - "right": 52.03125, - "bottom": 8.407168, - "countries": [ - "somalia" - ] - }, - { - "x": 163, - "y": 122, - "left": 49.21875, - "top": 8.407168, - "right": 50.625, - "bottom": 7.013668, - "countries": [ - "somalia" - ] - }, - { - "x": 162, - "y": 123, - "left": 47.8125, - "top": 7.013668, - "right": 49.21875, - "bottom": 5.615986, - "countries": [ - "somalia" - ] - }, - { - "x": 163, - "y": 123, - "left": 49.21875, - "top": 7.013668, - "right": 50.625, - "bottom": 5.615986, - "countries": [ - "somalia" - ] - }, - { - "x": 161, - "y": 124, - "left": 46.40625, - "top": 5.615986, - "right": 47.8125, - "bottom": 4.214943, - "countries": [ - "somalia" - ] - }, - { - "x": 162, - "y": 124, - "left": 47.8125, - "top": 5.615986, - "right": 49.21875, - "bottom": 4.214943, - "countries": [ - "somalia" - ] - }, - { - "x": 159, - "y": 125, - "left": 43.59375, - "top": 4.214943, - "right": 45.0, - "bottom": 2.811371, - "countries": [ - "somalia" - ] - }, - { - "x": 160, - "y": 125, - "left": 45.0, - "top": 4.214943, - "right": 46.40625, - "bottom": 2.811371, - "countries": [ - "somalia" - ] - }, - { - "x": 161, - "y": 125, - "left": 46.40625, - "top": 4.214943, - "right": 47.8125, - "bottom": 2.811371, - "countries": [ - "somalia" - ] - }, - { - "x": 158, - "y": 126, - "left": 42.1875, - "top": 2.811371, - "right": 43.59375, - "bottom": 1.406109, - "countries": [ - "somalia" - ] - }, - { - "x": 159, - "y": 126, - "left": 43.59375, - "top": 2.811371, - "right": 45.0, - "bottom": 1.406109, - "countries": [ - "somalia" - ] - }, - { - "x": 160, - "y": 126, - "left": 45.0, - "top": 2.811371, - "right": 46.40625, - "bottom": 1.406109, - "countries": [ - "somalia" - ] - }, - { - "x": 158, - "y": 127, - "left": 42.1875, - "top": 1.406109, - "right": 43.59375, - "bottom": 0.0, - "countries": [ - "somalia" - ] - }, - { - "x": 159, - "y": 127, - "left": 43.59375, - "top": 1.406109, - "right": 45.0, - "bottom": 0.0, - "countries": [ - "somalia" - ] - }, - { - "x": 158, - "y": 128, - "left": 42.1875, - "top": 0.0, - "right": 43.59375, - "bottom": -1.406109, - "countries": [ - "somalia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/south_africa.json b/wahoomc/resources/json/africa/south_africa.json deleted file mode 100644 index aa81b6dc..00000000 --- a/wahoomc/resources/json/africa/south_africa.json +++ /dev/null @@ -1,1084 +0,0 @@ -[ - { - "x": 147, - "y": 144, - "left": 26.71875, - "top": -21.943046, - "right": 28.125, - "bottom": -23.241346, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 148, - "y": 144, - "left": 28.125, - "top": -21.943046, - "right": 29.53125, - "bottom": -23.241346, - "countries": [ - "botswana", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 146, - "y": 145, - "left": 25.3125, - "top": -23.241346, - "right": 26.71875, - "bottom": -24.527135, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 147, - "y": 145, - "left": 26.71875, - "top": -23.241346, - "right": 28.125, - "bottom": -24.527135, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 142, - "y": 146, - "left": 19.6875, - "top": -24.527135, - "right": 21.09375, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 144, - "y": 146, - "left": 22.5, - "top": -24.527135, - "right": 23.90625, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 145, - "y": 146, - "left": 23.90625, - "top": -24.527135, - "right": 25.3125, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 146, - "y": 146, - "left": 25.3125, - "top": -24.527135, - "right": 26.71875, - "bottom": -25.799891, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 142, - "y": 147, - "left": 19.6875, - "top": -25.799891, - "right": 21.09375, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa", - "namibia" - ] - }, - { - "x": 143, - "y": 147, - "left": 21.09375, - "top": -25.799891, - "right": 22.5, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 144, - "y": 147, - "left": 22.5, - "top": -25.799891, - "right": 23.90625, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 145, - "y": 147, - "left": 23.90625, - "top": -25.799891, - "right": 25.3125, - "bottom": -27.059126, - "countries": [ - "botswana", - "south_africa" - ] - }, - { - "x": 147, - "y": 149, - "left": 26.71875, - "top": -28.304381, - "right": 28.125, - "bottom": -29.53523, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 148, - "y": 149, - "left": 28.125, - "top": -28.304381, - "right": 29.53125, - "bottom": -29.53523, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 147, - "y": 150, - "left": 26.71875, - "top": -29.53523, - "right": 28.125, - "bottom": -30.751278, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 148, - "y": 150, - "left": 28.125, - "top": -29.53523, - "right": 29.53125, - "bottom": -30.751278, - "countries": [ - "lesotho", - "south_africa" - ] - }, - { - "x": 150, - "y": 144, - "left": 30.9375, - "top": -21.943046, - "right": 32.34375, - "bottom": -23.241346, - "countries": [ - "mozambique", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 150, - "y": 145, - "left": 30.9375, - "top": -23.241346, - "right": 32.34375, - "bottom": -24.527135, - "countries": [ - "mozambique", - "south_africa" - ] - }, - { - "x": 150, - "y": 146, - "left": 30.9375, - "top": -24.527135, - "right": 32.34375, - "bottom": -25.799891, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 150, - "y": 147, - "left": 30.9375, - "top": -25.799891, - "right": 32.34375, - "bottom": -27.059126, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 151, - "y": 147, - "left": 32.34375, - "top": -25.799891, - "right": 33.75, - "bottom": -27.059126, - "countries": [ - "mozambique", - "south_africa" - ] - }, - { - "x": 139, - "y": 148, - "left": 15.46875, - "top": -27.059126, - "right": 16.875, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 140, - "y": 148, - "left": 16.875, - "top": -27.059126, - "right": 18.28125, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 142, - "y": 148, - "left": 19.6875, - "top": -27.059126, - "right": 21.09375, - "bottom": -28.304381, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 139, - "y": 149, - "left": 15.46875, - "top": -28.304381, - "right": 16.875, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 140, - "y": 149, - "left": 16.875, - "top": -28.304381, - "right": 18.28125, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 141, - "y": 149, - "left": 18.28125, - "top": -28.304381, - "right": 19.6875, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 142, - "y": 149, - "left": 19.6875, - "top": -28.304381, - "right": 21.09375, - "bottom": -29.53523, - "countries": [ - "south_africa", - "namibia" - ] - }, - { - "x": 149, - "y": 144, - "left": 29.53125, - "top": -21.943046, - "right": 30.9375, - "bottom": -23.241346, - "countries": [ - "south_africa", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 145, - "left": 28.125, - "top": -23.241346, - "right": 29.53125, - "bottom": -24.527135, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 145, - "left": 29.53125, - "top": -23.241346, - "right": 30.9375, - "bottom": -24.527135, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 146, - "left": 26.71875, - "top": -24.527135, - "right": 28.125, - "bottom": -25.799891, - "countries": [ - "south_africa" - ] - }, - { - "x": 148, - "y": 146, - "left": 28.125, - "top": -24.527135, - "right": 29.53125, - "bottom": -25.799891, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 146, - "left": 29.53125, - "top": -24.527135, - "right": 30.9375, - "bottom": -25.799891, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 147, - "left": 25.3125, - "top": -25.799891, - "right": 26.71875, - "bottom": -27.059126, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 147, - "left": 26.71875, - "top": -25.799891, - "right": 28.125, - "bottom": -27.059126, - "countries": [ - "south_africa" - ] - }, - { - "x": 148, - "y": 147, - "left": 28.125, - "top": -25.799891, - "right": 29.53125, - "bottom": -27.059126, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 147, - "left": 29.53125, - "top": -25.799891, - "right": 30.9375, - "bottom": -27.059126, - "countries": [ - "south_africa", - "swaziland" - ] - }, - { - "x": 143, - "y": 148, - "left": 21.09375, - "top": -27.059126, - "right": 22.5, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 148, - "left": 22.5, - "top": -27.059126, - "right": 23.90625, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 148, - "left": 23.90625, - "top": -27.059126, - "right": 25.3125, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 148, - "left": 25.3125, - "top": -27.059126, - "right": 26.71875, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 148, - "left": 26.71875, - "top": -27.059126, - "right": 28.125, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 148, - "y": 148, - "left": 28.125, - "top": -27.059126, - "right": 29.53125, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 148, - "left": 29.53125, - "top": -27.059126, - "right": 30.9375, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 150, - "y": 148, - "left": 30.9375, - "top": -27.059126, - "right": 32.34375, - "bottom": -28.304381, - "countries": [ - "south_africa", - "swaziland" - ] - }, - { - "x": 151, - "y": 148, - "left": 32.34375, - "top": -27.059126, - "right": 33.75, - "bottom": -28.304381, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 149, - "left": 21.09375, - "top": -28.304381, - "right": 22.5, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 149, - "left": 22.5, - "top": -28.304381, - "right": 23.90625, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 149, - "left": 23.90625, - "top": -28.304381, - "right": 25.3125, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 149, - "left": 25.3125, - "top": -28.304381, - "right": 26.71875, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 149, - "left": 29.53125, - "top": -28.304381, - "right": 30.9375, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 150, - "y": 149, - "left": 30.9375, - "top": -28.304381, - "right": 32.34375, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 151, - "y": 149, - "left": 32.34375, - "top": -28.304381, - "right": 33.75, - "bottom": -29.53523, - "countries": [ - "south_africa" - ] - }, - { - "x": 140, - "y": 150, - "left": 16.875, - "top": -29.53523, - "right": 18.28125, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 141, - "y": 150, - "left": 18.28125, - "top": -29.53523, - "right": 19.6875, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 142, - "y": 150, - "left": 19.6875, - "top": -29.53523, - "right": 21.09375, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 150, - "left": 21.09375, - "top": -29.53523, - "right": 22.5, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 150, - "left": 22.5, - "top": -29.53523, - "right": 23.90625, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 150, - "left": 23.90625, - "top": -29.53523, - "right": 25.3125, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 150, - "left": 25.3125, - "top": -29.53523, - "right": 26.71875, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 150, - "left": 29.53125, - "top": -29.53523, - "right": 30.9375, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 150, - "y": 150, - "left": 30.9375, - "top": -29.53523, - "right": 32.34375, - "bottom": -30.751278, - "countries": [ - "south_africa" - ] - }, - { - "x": 140, - "y": 151, - "left": 16.875, - "top": -30.751278, - "right": 18.28125, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 141, - "y": 151, - "left": 18.28125, - "top": -30.751278, - "right": 19.6875, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 142, - "y": 151, - "left": 19.6875, - "top": -30.751278, - "right": 21.09375, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 151, - "left": 21.09375, - "top": -30.751278, - "right": 22.5, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 151, - "left": 22.5, - "top": -30.751278, - "right": 23.90625, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 151, - "left": 23.90625, - "top": -30.751278, - "right": 25.3125, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 151, - "left": 25.3125, - "top": -30.751278, - "right": 26.71875, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 151, - "left": 26.71875, - "top": -30.751278, - "right": 28.125, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 148, - "y": 151, - "left": 28.125, - "top": -30.751278, - "right": 29.53125, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 149, - "y": 151, - "left": 29.53125, - "top": -30.751278, - "right": 30.9375, - "bottom": -31.952162, - "countries": [ - "south_africa" - ] - }, - { - "x": 140, - "y": 152, - "left": 16.875, - "top": -31.952162, - "right": 18.28125, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 141, - "y": 152, - "left": 18.28125, - "top": -31.952162, - "right": 19.6875, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 142, - "y": 152, - "left": 19.6875, - "top": -31.952162, - "right": 21.09375, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 152, - "left": 21.09375, - "top": -31.952162, - "right": 22.5, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 152, - "left": 22.5, - "top": -31.952162, - "right": 23.90625, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 152, - "left": 23.90625, - "top": -31.952162, - "right": 25.3125, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 152, - "left": 25.3125, - "top": -31.952162, - "right": 26.71875, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 152, - "left": 26.71875, - "top": -31.952162, - "right": 28.125, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 148, - "y": 152, - "left": 28.125, - "top": -31.952162, - "right": 29.53125, - "bottom": -33.137551, - "countries": [ - "south_africa" - ] - }, - { - "x": 140, - "y": 153, - "left": 16.875, - "top": -33.137551, - "right": 18.28125, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 141, - "y": 153, - "left": 18.28125, - "top": -33.137551, - "right": 19.6875, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 142, - "y": 153, - "left": 19.6875, - "top": -33.137551, - "right": 21.09375, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 153, - "left": 21.09375, - "top": -33.137551, - "right": 22.5, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 144, - "y": 153, - "left": 22.5, - "top": -33.137551, - "right": 23.90625, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 145, - "y": 153, - "left": 23.90625, - "top": -33.137551, - "right": 25.3125, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 146, - "y": 153, - "left": 25.3125, - "top": -33.137551, - "right": 26.71875, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 147, - "y": 153, - "left": 26.71875, - "top": -33.137551, - "right": 28.125, - "bottom": -34.307144, - "countries": [ - "south_africa" - ] - }, - { - "x": 141, - "y": 154, - "left": 18.28125, - "top": -34.307144, - "right": 19.6875, - "bottom": -35.46067, - "countries": [ - "south_africa" - ] - }, - { - "x": 142, - "y": 154, - "left": 19.6875, - "top": -34.307144, - "right": 21.09375, - "bottom": -35.46067, - "countries": [ - "south_africa" - ] - }, - { - "x": 143, - "y": 154, - "left": 21.09375, - "top": -34.307144, - "right": 22.5, - "bottom": -35.46067, - "countries": [ - "south_africa" - ] - }, - { - "x": 154, - "y": 165, - "left": 36.5625, - "top": -46.073231, - "right": 37.96875, - "bottom": -47.040182, - "countries": [ - "south_africa" - ] - }, - { - "x": 155, - "y": 165, - "left": 37.96875, - "top": -46.073231, - "right": 39.375, - "bottom": -47.040182, - "countries": [ - "south_africa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/sudan.json b/wahoomc/resources/json/africa/sudan.json deleted file mode 100644 index 1e9bed62..00000000 --- a/wahoomc/resources/json/africa/sudan.json +++ /dev/null @@ -1,1604 +0,0 @@ -[ - { - "x": 144, - "y": 120, - "left": 22.5, - "top": 11.178402, - "right": 23.90625, - "bottom": 9.795678, - "countries": [ - "chad", - "sudan", - "central_african_republic" - ] - }, - { - "x": 144, - "y": 121, - "left": 22.5, - "top": 9.795678, - "right": 23.90625, - "bottom": 8.407168, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 145, - "y": 121, - "left": 23.90625, - "top": 9.795678, - "right": 25.3125, - "bottom": 8.407168, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 145, - "y": 122, - "left": 23.90625, - "top": 8.407168, - "right": 25.3125, - "bottom": 7.013668, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 146, - "y": 122, - "left": 25.3125, - "top": 8.407168, - "right": 26.71875, - "bottom": 7.013668, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 146, - "y": 123, - "left": 25.3125, - "top": 7.013668, - "right": 26.71875, - "bottom": 5.615986, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 147, - "y": 123, - "left": 26.71875, - "top": 7.013668, - "right": 28.125, - "bottom": 5.615986, - "countries": [ - "sudan", - "central_african_republic" - ] - }, - { - "x": 147, - "y": 124, - "left": 26.71875, - "top": 5.615986, - "right": 28.125, - "bottom": 4.214943, - "countries": [ - "sudan", - "central_african_republic", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 113, - "left": 23.90625, - "top": 20.632784, - "right": 25.3125, - "bottom": 19.311143, - "countries": [ - "libya", - "chad", - "sudan" - ] - }, - { - "x": 145, - "y": 114, - "left": 23.90625, - "top": 19.311143, - "right": 25.3125, - "bottom": 17.978733, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 145, - "y": 115, - "left": 23.90625, - "top": 17.978733, - "right": 25.3125, - "bottom": 16.636192, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 144, - "y": 116, - "left": 22.5, - "top": 16.636192, - "right": 23.90625, - "bottom": 15.284185, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 145, - "y": 116, - "left": 23.90625, - "top": 16.636192, - "right": 25.3125, - "bottom": 15.284185, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 143, - "y": 117, - "left": 21.09375, - "top": 15.284185, - "right": 22.5, - "bottom": 13.923404, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 144, - "y": 117, - "left": 22.5, - "top": 15.284185, - "right": 23.90625, - "bottom": 13.923404, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 143, - "y": 118, - "left": 21.09375, - "top": 13.923404, - "right": 22.5, - "bottom": 12.554564, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 143, - "y": 119, - "left": 21.09375, - "top": 12.554564, - "right": 22.5, - "bottom": 11.178402, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 144, - "y": 119, - "left": 22.5, - "top": 12.554564, - "right": 23.90625, - "bottom": 11.178402, - "countries": [ - "chad", - "sudan" - ] - }, - { - "x": 148, - "y": 124, - "left": 28.125, - "top": 5.615986, - "right": 29.53125, - "bottom": 4.214943, - "countries": [ - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 124, - "left": 29.53125, - "top": 5.615986, - "right": 30.9375, - "bottom": 4.214943, - "countries": [ - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 125, - "left": 29.53125, - "top": 4.214943, - "right": 30.9375, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 111, - "left": 23.90625, - "top": 23.241346, - "right": 25.3125, - "bottom": 21.943046, - "countries": [ - "libya", - "sudan", - "egypt" - ] - }, - { - "x": 146, - "y": 111, - "left": 25.3125, - "top": 23.241346, - "right": 26.71875, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 147, - "y": 111, - "left": 26.71875, - "top": 23.241346, - "right": 28.125, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 148, - "y": 111, - "left": 28.125, - "top": 23.241346, - "right": 29.53125, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 149, - "y": 111, - "left": 29.53125, - "top": 23.241346, - "right": 30.9375, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 150, - "y": 111, - "left": 30.9375, - "top": 23.241346, - "right": 32.34375, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 151, - "y": 111, - "left": 32.34375, - "top": 23.241346, - "right": 33.75, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 152, - "y": 111, - "left": 33.75, - "top": 23.241346, - "right": 35.15625, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 153, - "y": 111, - "left": 35.15625, - "top": 23.241346, - "right": 36.5625, - "bottom": 21.943046, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 151, - "y": 112, - "left": 32.34375, - "top": 21.943046, - "right": 33.75, - "bottom": 20.632784, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 152, - "y": 112, - "left": 33.75, - "top": 21.943046, - "right": 35.15625, - "bottom": 20.632784, - "countries": [ - "sudan", - "egypt" - ] - }, - { - "x": 155, - "y": 114, - "left": 37.96875, - "top": 19.311143, - "right": 39.375, - "bottom": 17.978733, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 154, - "y": 115, - "left": 36.5625, - "top": 17.978733, - "right": 37.96875, - "bottom": 16.636192, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 155, - "y": 115, - "left": 37.96875, - "top": 17.978733, - "right": 39.375, - "bottom": 16.636192, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 153, - "y": 116, - "left": 35.15625, - "top": 16.636192, - "right": 36.5625, - "bottom": 15.284185, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 154, - "y": 116, - "left": 36.5625, - "top": 16.636192, - "right": 37.96875, - "bottom": 15.284185, - "countries": [ - "sudan", - "eritrea" - ] - }, - { - "x": 153, - "y": 117, - "left": 35.15625, - "top": 15.284185, - "right": 36.5625, - "bottom": 13.923404, - "countries": [ - "sudan", - "ethiopia", - "eritrea" - ] - }, - { - "x": 153, - "y": 118, - "left": 35.15625, - "top": 13.923404, - "right": 36.5625, - "bottom": 12.554564, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 119, - "left": 33.75, - "top": 12.554564, - "right": 35.15625, - "bottom": 11.178402, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 119, - "left": 35.15625, - "top": 12.554564, - "right": 36.5625, - "bottom": 11.178402, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 120, - "left": 33.75, - "top": 11.178402, - "right": 35.15625, - "bottom": 9.795678, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 151, - "y": 121, - "left": 32.34375, - "top": 9.795678, - "right": 33.75, - "bottom": 8.407168, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 121, - "left": 33.75, - "top": 9.795678, - "right": 35.15625, - "bottom": 8.407168, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 151, - "y": 122, - "left": 32.34375, - "top": 8.407168, - "right": 33.75, - "bottom": 7.013668, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 122, - "left": 33.75, - "top": 8.407168, - "right": 35.15625, - "bottom": 7.013668, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 123, - "left": 33.75, - "top": 7.013668, - "right": 35.15625, - "bottom": 5.615986, - "countries": [ - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 124, - "left": 33.75, - "top": 5.615986, - "right": 35.15625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 153, - "y": 124, - "left": 35.15625, - "top": 5.615986, - "right": 36.5625, - "bottom": 4.214943, - "countries": [ - "kenya", - "sudan", - "ethiopia" - ] - }, - { - "x": 152, - "y": 125, - "left": 33.75, - "top": 4.214943, - "right": 35.15625, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "kenya" - ] - }, - { - "x": 145, - "y": 112, - "left": 23.90625, - "top": 21.943046, - "right": 25.3125, - "bottom": 20.632784, - "countries": [ - "libya", - "sudan" - ] - }, - { - "x": 154, - "y": 111, - "left": 36.5625, - "top": 23.241346, - "right": 37.96875, - "bottom": 21.943046, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 112, - "left": 25.3125, - "top": 21.943046, - "right": 26.71875, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 112, - "left": 26.71875, - "top": 21.943046, - "right": 28.125, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 112, - "left": 28.125, - "top": 21.943046, - "right": 29.53125, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 112, - "left": 29.53125, - "top": 21.943046, - "right": 30.9375, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 112, - "left": 30.9375, - "top": 21.943046, - "right": 32.34375, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 153, - "y": 112, - "left": 35.15625, - "top": 21.943046, - "right": 36.5625, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 154, - "y": 112, - "left": 36.5625, - "top": 21.943046, - "right": 37.96875, - "bottom": 20.632784, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 113, - "left": 25.3125, - "top": 20.632784, - "right": 26.71875, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 113, - "left": 26.71875, - "top": 20.632784, - "right": 28.125, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 113, - "left": 28.125, - "top": 20.632784, - "right": 29.53125, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 113, - "left": 29.53125, - "top": 20.632784, - "right": 30.9375, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 113, - "left": 30.9375, - "top": 20.632784, - "right": 32.34375, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 113, - "left": 32.34375, - "top": 20.632784, - "right": 33.75, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 113, - "left": 33.75, - "top": 20.632784, - "right": 35.15625, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 153, - "y": 113, - "left": 35.15625, - "top": 20.632784, - "right": 36.5625, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 154, - "y": 113, - "left": 36.5625, - "top": 20.632784, - "right": 37.96875, - "bottom": 19.311143, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 114, - "left": 25.3125, - "top": 19.311143, - "right": 26.71875, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 114, - "left": 26.71875, - "top": 19.311143, - "right": 28.125, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 114, - "left": 28.125, - "top": 19.311143, - "right": 29.53125, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 114, - "left": 29.53125, - "top": 19.311143, - "right": 30.9375, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 114, - "left": 30.9375, - "top": 19.311143, - "right": 32.34375, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 114, - "left": 32.34375, - "top": 19.311143, - "right": 33.75, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 114, - "left": 33.75, - "top": 19.311143, - "right": 35.15625, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 153, - "y": 114, - "left": 35.15625, - "top": 19.311143, - "right": 36.5625, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 154, - "y": 114, - "left": 36.5625, - "top": 19.311143, - "right": 37.96875, - "bottom": 17.978733, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 115, - "left": 25.3125, - "top": 17.978733, - "right": 26.71875, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 115, - "left": 26.71875, - "top": 17.978733, - "right": 28.125, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 115, - "left": 28.125, - "top": 17.978733, - "right": 29.53125, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 115, - "left": 29.53125, - "top": 17.978733, - "right": 30.9375, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 115, - "left": 30.9375, - "top": 17.978733, - "right": 32.34375, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 115, - "left": 32.34375, - "top": 17.978733, - "right": 33.75, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 115, - "left": 33.75, - "top": 17.978733, - "right": 35.15625, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 153, - "y": 115, - "left": 35.15625, - "top": 17.978733, - "right": 36.5625, - "bottom": 16.636192, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 116, - "left": 25.3125, - "top": 16.636192, - "right": 26.71875, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 116, - "left": 26.71875, - "top": 16.636192, - "right": 28.125, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 116, - "left": 28.125, - "top": 16.636192, - "right": 29.53125, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 116, - "left": 29.53125, - "top": 16.636192, - "right": 30.9375, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 116, - "left": 30.9375, - "top": 16.636192, - "right": 32.34375, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 116, - "left": 32.34375, - "top": 16.636192, - "right": 33.75, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 116, - "left": 33.75, - "top": 16.636192, - "right": 35.15625, - "bottom": 15.284185, - "countries": [ - "sudan" - ] - }, - { - "x": 145, - "y": 117, - "left": 23.90625, - "top": 15.284185, - "right": 25.3125, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 117, - "left": 25.3125, - "top": 15.284185, - "right": 26.71875, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 117, - "left": 26.71875, - "top": 15.284185, - "right": 28.125, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 117, - "left": 28.125, - "top": 15.284185, - "right": 29.53125, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 117, - "left": 29.53125, - "top": 15.284185, - "right": 30.9375, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 117, - "left": 30.9375, - "top": 15.284185, - "right": 32.34375, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 117, - "left": 32.34375, - "top": 15.284185, - "right": 33.75, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 117, - "left": 33.75, - "top": 15.284185, - "right": 35.15625, - "bottom": 13.923404, - "countries": [ - "sudan" - ] - }, - { - "x": 144, - "y": 118, - "left": 22.5, - "top": 13.923404, - "right": 23.90625, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 145, - "y": 118, - "left": 23.90625, - "top": 13.923404, - "right": 25.3125, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 118, - "left": 25.3125, - "top": 13.923404, - "right": 26.71875, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 118, - "left": 26.71875, - "top": 13.923404, - "right": 28.125, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 118, - "left": 28.125, - "top": 13.923404, - "right": 29.53125, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 118, - "left": 29.53125, - "top": 13.923404, - "right": 30.9375, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 118, - "left": 30.9375, - "top": 13.923404, - "right": 32.34375, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 118, - "left": 32.34375, - "top": 13.923404, - "right": 33.75, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 152, - "y": 118, - "left": 33.75, - "top": 13.923404, - "right": 35.15625, - "bottom": 12.554564, - "countries": [ - "sudan" - ] - }, - { - "x": 145, - "y": 119, - "left": 23.90625, - "top": 12.554564, - "right": 25.3125, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 119, - "left": 25.3125, - "top": 12.554564, - "right": 26.71875, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 119, - "left": 26.71875, - "top": 12.554564, - "right": 28.125, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 119, - "left": 28.125, - "top": 12.554564, - "right": 29.53125, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 119, - "left": 29.53125, - "top": 12.554564, - "right": 30.9375, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 119, - "left": 30.9375, - "top": 12.554564, - "right": 32.34375, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 119, - "left": 32.34375, - "top": 12.554564, - "right": 33.75, - "bottom": 11.178402, - "countries": [ - "sudan" - ] - }, - { - "x": 145, - "y": 120, - "left": 23.90625, - "top": 11.178402, - "right": 25.3125, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 120, - "left": 25.3125, - "top": 11.178402, - "right": 26.71875, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 120, - "left": 26.71875, - "top": 11.178402, - "right": 28.125, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 120, - "left": 28.125, - "top": 11.178402, - "right": 29.53125, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 120, - "left": 29.53125, - "top": 11.178402, - "right": 30.9375, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 120, - "left": 30.9375, - "top": 11.178402, - "right": 32.34375, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 120, - "left": 32.34375, - "top": 11.178402, - "right": 33.75, - "bottom": 9.795678, - "countries": [ - "sudan" - ] - }, - { - "x": 146, - "y": 121, - "left": 25.3125, - "top": 9.795678, - "right": 26.71875, - "bottom": 8.407168, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 121, - "left": 26.71875, - "top": 9.795678, - "right": 28.125, - "bottom": 8.407168, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 121, - "left": 28.125, - "top": 9.795678, - "right": 29.53125, - "bottom": 8.407168, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 121, - "left": 29.53125, - "top": 9.795678, - "right": 30.9375, - "bottom": 8.407168, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 121, - "left": 30.9375, - "top": 9.795678, - "right": 32.34375, - "bottom": 8.407168, - "countries": [ - "sudan" - ] - }, - { - "x": 147, - "y": 122, - "left": 26.71875, - "top": 8.407168, - "right": 28.125, - "bottom": 7.013668, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 122, - "left": 28.125, - "top": 8.407168, - "right": 29.53125, - "bottom": 7.013668, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 122, - "left": 29.53125, - "top": 8.407168, - "right": 30.9375, - "bottom": 7.013668, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 122, - "left": 30.9375, - "top": 8.407168, - "right": 32.34375, - "bottom": 7.013668, - "countries": [ - "sudan" - ] - }, - { - "x": 148, - "y": 123, - "left": 28.125, - "top": 7.013668, - "right": 29.53125, - "bottom": 5.615986, - "countries": [ - "sudan" - ] - }, - { - "x": 149, - "y": 123, - "left": 29.53125, - "top": 7.013668, - "right": 30.9375, - "bottom": 5.615986, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 123, - "left": 30.9375, - "top": 7.013668, - "right": 32.34375, - "bottom": 5.615986, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 123, - "left": 32.34375, - "top": 7.013668, - "right": 33.75, - "bottom": 5.615986, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 124, - "left": 30.9375, - "top": 5.615986, - "right": 32.34375, - "bottom": 4.214943, - "countries": [ - "sudan" - ] - }, - { - "x": 151, - "y": 124, - "left": 32.34375, - "top": 5.615986, - "right": 33.75, - "bottom": 4.214943, - "countries": [ - "sudan" - ] - }, - { - "x": 150, - "y": 125, - "left": 30.9375, - "top": 4.214943, - "right": 32.34375, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan" - ] - }, - { - "x": 151, - "y": 125, - "left": 32.34375, - "top": 4.214943, - "right": 33.75, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/swaziland.json b/wahoomc/resources/json/africa/swaziland.json deleted file mode 100644 index ef06aa9f..00000000 --- a/wahoomc/resources/json/africa/swaziland.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "x": 150, - "y": 146, - "left": 30.9375, - "top": -24.527135, - "right": 32.34375, - "bottom": -25.799891, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 150, - "y": 147, - "left": 30.9375, - "top": -25.799891, - "right": 32.34375, - "bottom": -27.059126, - "countries": [ - "mozambique", - "south_africa", - "swaziland" - ] - }, - { - "x": 149, - "y": 147, - "left": 29.53125, - "top": -25.799891, - "right": 30.9375, - "bottom": -27.059126, - "countries": [ - "south_africa", - "swaziland" - ] - }, - { - "x": 150, - "y": 148, - "left": 30.9375, - "top": -27.059126, - "right": 32.34375, - "bottom": -28.304381, - "countries": [ - "south_africa", - "swaziland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/tanzania.json b/wahoomc/resources/json/africa/tanzania.json deleted file mode 100644 index a3a9ef7a..00000000 --- a/wahoomc/resources/json/africa/tanzania.json +++ /dev/null @@ -1,691 +0,0 @@ -[ - { - "x": 149, - "y": 129, - "left": 29.53125, - "top": -1.406109, - "right": 30.9375, - "bottom": -2.811371, - "countries": [ - "burundi", - "democratic_republic_of_the_congo", - "tanzania", - "rwanda", - "uganda" - ] - }, - { - "x": 149, - "y": 130, - "left": 29.53125, - "top": -2.811371, - "right": 30.9375, - "bottom": -4.214943, - "countries": [ - "rwanda", - "tanzania", - "burundi" - ] - }, - { - "x": 148, - "y": 131, - "left": 28.125, - "top": -4.214943, - "right": 29.53125, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 131, - "left": 29.53125, - "top": -4.214943, - "right": 30.9375, - "bottom": -5.615986, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo", - "burundi" - ] - }, - { - "x": 149, - "y": 128, - "left": 29.53125, - "top": 0.0, - "right": 30.9375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania", - "democratic_republic_of_the_congo", - "rwanda" - ] - }, - { - "x": 149, - "y": 132, - "left": 29.53125, - "top": -5.615986, - "right": 30.9375, - "bottom": -7.013668, - "countries": [ - "tanzania", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 133, - "left": 29.53125, - "top": -7.013668, - "right": 30.9375, - "bottom": -8.407168, - "countries": [ - "zambia", - "tanzania", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 152, - "y": 128, - "left": 33.75, - "top": 0.0, - "right": 35.15625, - "bottom": -1.406109, - "countries": [ - "uganda", - "kenya", - "tanzania" - ] - }, - { - "x": 152, - "y": 129, - "left": 33.75, - "top": -1.406109, - "right": 35.15625, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 153, - "y": 129, - "left": 35.15625, - "top": -1.406109, - "right": 36.5625, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 154, - "y": 129, - "left": 36.5625, - "top": -1.406109, - "right": 37.96875, - "bottom": -2.811371, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 154, - "y": 130, - "left": 36.5625, - "top": -2.811371, - "right": 37.96875, - "bottom": -4.214943, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 155, - "y": 130, - "left": 37.96875, - "top": -2.811371, - "right": 39.375, - "bottom": -4.214943, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 155, - "y": 131, - "left": 37.96875, - "top": -4.214943, - "right": 39.375, - "bottom": -5.615986, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 156, - "y": 131, - "left": 39.375, - "top": -4.214943, - "right": 40.78125, - "bottom": -5.615986, - "countries": [ - "kenya", - "tanzania" - ] - }, - { - "x": 151, - "y": 134, - "left": 32.34375, - "top": -8.407168, - "right": 33.75, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania", - "malawi" - ] - }, - { - "x": 152, - "y": 134, - "left": 33.75, - "top": -8.407168, - "right": 35.15625, - "bottom": -9.795678, - "countries": [ - "tanzania", - "malawi" - ] - }, - { - "x": 152, - "y": 135, - "left": 33.75, - "top": -9.795678, - "right": 35.15625, - "bottom": -11.178402, - "countries": [ - "tanzania", - "malawi" - ] - }, - { - "x": 152, - "y": 136, - "left": 33.75, - "top": -11.178402, - "right": 35.15625, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania", - "malawi" - ] - }, - { - "x": 155, - "y": 135, - "left": 37.96875, - "top": -9.795678, - "right": 39.375, - "bottom": -11.178402, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 156, - "y": 135, - "left": 39.375, - "top": -9.795678, - "right": 40.78125, - "bottom": -11.178402, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 153, - "y": 136, - "left": 35.15625, - "top": -11.178402, - "right": 36.5625, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 154, - "y": 136, - "left": 36.5625, - "top": -11.178402, - "right": 37.96875, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 155, - "y": 136, - "left": 37.96875, - "top": -11.178402, - "right": 39.375, - "bottom": -12.554564, - "countries": [ - "mozambique", - "tanzania" - ] - }, - { - "x": 150, - "y": 128, - "left": 30.9375, - "top": 0.0, - "right": 32.34375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania" - ] - }, - { - "x": 151, - "y": 128, - "left": 32.34375, - "top": 0.0, - "right": 33.75, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania" - ] - }, - { - "x": 150, - "y": 129, - "left": 30.9375, - "top": -1.406109, - "right": 32.34375, - "bottom": -2.811371, - "countries": [ - "tanzania" - ] - }, - { - "x": 151, - "y": 129, - "left": 32.34375, - "top": -1.406109, - "right": 33.75, - "bottom": -2.811371, - "countries": [ - "tanzania" - ] - }, - { - "x": 150, - "y": 130, - "left": 30.9375, - "top": -2.811371, - "right": 32.34375, - "bottom": -4.214943, - "countries": [ - "tanzania" - ] - }, - { - "x": 151, - "y": 130, - "left": 32.34375, - "top": -2.811371, - "right": 33.75, - "bottom": -4.214943, - "countries": [ - "tanzania" - ] - }, - { - "x": 152, - "y": 130, - "left": 33.75, - "top": -2.811371, - "right": 35.15625, - "bottom": -4.214943, - "countries": [ - "tanzania" - ] - }, - { - "x": 153, - "y": 130, - "left": 35.15625, - "top": -2.811371, - "right": 36.5625, - "bottom": -4.214943, - "countries": [ - "tanzania" - ] - }, - { - "x": 150, - "y": 131, - "left": 30.9375, - "top": -4.214943, - "right": 32.34375, - "bottom": -5.615986, - "countries": [ - "tanzania" - ] - }, - { - "x": 151, - "y": 131, - "left": 32.34375, - "top": -4.214943, - "right": 33.75, - "bottom": -5.615986, - "countries": [ - "tanzania" - ] - }, - { - "x": 152, - "y": 131, - "left": 33.75, - "top": -4.214943, - "right": 35.15625, - "bottom": -5.615986, - "countries": [ - "tanzania" - ] - }, - { - "x": 153, - "y": 131, - "left": 35.15625, - "top": -4.214943, - "right": 36.5625, - "bottom": -5.615986, - "countries": [ - "tanzania" - ] - }, - { - "x": 154, - "y": 131, - "left": 36.5625, - "top": -4.214943, - "right": 37.96875, - "bottom": -5.615986, - "countries": [ - "tanzania" - ] - }, - { - "x": 150, - "y": 132, - "left": 30.9375, - "top": -5.615986, - "right": 32.34375, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 151, - "y": 132, - "left": 32.34375, - "top": -5.615986, - "right": 33.75, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 152, - "y": 132, - "left": 33.75, - "top": -5.615986, - "right": 35.15625, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 153, - "y": 132, - "left": 35.15625, - "top": -5.615986, - "right": 36.5625, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 154, - "y": 132, - "left": 36.5625, - "top": -5.615986, - "right": 37.96875, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 155, - "y": 132, - "left": 37.96875, - "top": -5.615986, - "right": 39.375, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 156, - "y": 132, - "left": 39.375, - "top": -5.615986, - "right": 40.78125, - "bottom": -7.013668, - "countries": [ - "tanzania" - ] - }, - { - "x": 150, - "y": 133, - "left": 30.9375, - "top": -7.013668, - "right": 32.34375, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 151, - "y": 133, - "left": 32.34375, - "top": -7.013668, - "right": 33.75, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 152, - "y": 133, - "left": 33.75, - "top": -7.013668, - "right": 35.15625, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 153, - "y": 133, - "left": 35.15625, - "top": -7.013668, - "right": 36.5625, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 154, - "y": 133, - "left": 36.5625, - "top": -7.013668, - "right": 37.96875, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 155, - "y": 133, - "left": 37.96875, - "top": -7.013668, - "right": 39.375, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 156, - "y": 133, - "left": 39.375, - "top": -7.013668, - "right": 40.78125, - "bottom": -8.407168, - "countries": [ - "tanzania" - ] - }, - { - "x": 149, - "y": 134, - "left": 29.53125, - "top": -8.407168, - "right": 30.9375, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania" - ] - }, - { - "x": 150, - "y": 134, - "left": 30.9375, - "top": -8.407168, - "right": 32.34375, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania" - ] - }, - { - "x": 153, - "y": 134, - "left": 35.15625, - "top": -8.407168, - "right": 36.5625, - "bottom": -9.795678, - "countries": [ - "tanzania" - ] - }, - { - "x": 154, - "y": 134, - "left": 36.5625, - "top": -8.407168, - "right": 37.96875, - "bottom": -9.795678, - "countries": [ - "tanzania" - ] - }, - { - "x": 155, - "y": 134, - "left": 37.96875, - "top": -8.407168, - "right": 39.375, - "bottom": -9.795678, - "countries": [ - "tanzania" - ] - }, - { - "x": 156, - "y": 134, - "left": 39.375, - "top": -8.407168, - "right": 40.78125, - "bottom": -9.795678, - "countries": [ - "tanzania" - ] - }, - { - "x": 153, - "y": 135, - "left": 35.15625, - "top": -9.795678, - "right": 36.5625, - "bottom": -11.178402, - "countries": [ - "tanzania" - ] - }, - { - "x": 154, - "y": 135, - "left": 36.5625, - "top": -9.795678, - "right": 37.96875, - "bottom": -11.178402, - "countries": [ - "tanzania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/togo.json b/wahoomc/resources/json/africa/togo.json deleted file mode 100644 index 7712bdc0..00000000 --- a/wahoomc/resources/json/africa/togo.json +++ /dev/null @@ -1,105 +0,0 @@ -[ - { - "x": 128, - "y": 120, - "left": 0.0, - "top": 11.178402, - "right": 1.40625, - "bottom": 9.795678, - "countries": [ - "benin", - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 128, - "y": 121, - "left": 0.0, - "top": 9.795678, - "right": 1.40625, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "ghana" - ] - }, - { - "x": 129, - "y": 121, - "left": 1.40625, - "top": 9.795678, - "right": 2.8125, - "bottom": 8.407168, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 129, - "y": 122, - "left": 1.40625, - "top": 8.407168, - "right": 2.8125, - "bottom": 7.013668, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 129, - "y": 123, - "left": 1.40625, - "top": 7.013668, - "right": 2.8125, - "bottom": 5.615986, - "countries": [ - "benin", - "togo", - "nigeria" - ] - }, - { - "x": 127, - "y": 120, - "left": -1.40625, - "top": 11.178402, - "right": 0.0, - "bottom": 9.795678, - "countries": [ - "togo", - "burkina_faso", - "ghana" - ] - }, - { - "x": 128, - "y": 122, - "left": 0.0, - "top": 8.407168, - "right": 1.40625, - "bottom": 7.013668, - "countries": [ - "togo", - "ghana" - ] - }, - { - "x": 128, - "y": 123, - "left": 0.0, - "top": 7.013668, - "right": 1.40625, - "bottom": 5.615986, - "countries": [ - "togo", - "ghana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/tunisia.json b/wahoomc/resources/json/africa/tunisia.json deleted file mode 100644 index afe9c8d3..00000000 --- a/wahoomc/resources/json/africa/tunisia.json +++ /dev/null @@ -1,260 +0,0 @@ -[ - { - "x": 133, - "y": 99, - "left": 7.03125, - "top": 37.71859, - "right": 8.4375, - "bottom": 36.597889, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 99, - "left": 8.4375, - "top": 37.71859, - "right": 9.84375, - "bottom": 36.597889, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 133, - "y": 100, - "left": 7.03125, - "top": 36.597889, - "right": 8.4375, - "bottom": 35.46067, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 133, - "y": 101, - "left": 7.03125, - "top": 35.46067, - "right": 8.4375, - "bottom": 34.307144, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 101, - "left": 8.4375, - "top": 35.46067, - "right": 9.84375, - "bottom": 34.307144, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 133, - "y": 102, - "left": 7.03125, - "top": 34.307144, - "right": 8.4375, - "bottom": 33.137551, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 133, - "y": 103, - "left": 7.03125, - "top": 33.137551, - "right": 8.4375, - "bottom": 31.952162, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 103, - "left": 8.4375, - "top": 33.137551, - "right": 9.84375, - "bottom": 31.952162, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 104, - "left": 8.4375, - "top": 31.952162, - "right": 9.84375, - "bottom": 30.751278, - "countries": [ - "tunisia", - "algeria" - ] - }, - { - "x": 134, - "y": 105, - "left": 8.4375, - "top": 30.751278, - "right": 9.84375, - "bottom": 29.53523, - "countries": [ - "libya", - "tunisia", - "algeria" - ] - }, - { - "x": 136, - "y": 102, - "left": 11.25, - "top": 34.307144, - "right": 12.65625, - "bottom": 33.137551, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 135, - "y": 103, - "left": 9.84375, - "top": 33.137551, - "right": 11.25, - "bottom": 31.952162, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 136, - "y": 103, - "left": 11.25, - "top": 33.137551, - "right": 12.65625, - "bottom": 31.952162, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 135, - "y": 104, - "left": 9.84375, - "top": 31.952162, - "right": 11.25, - "bottom": 30.751278, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 135, - "y": 105, - "left": 9.84375, - "top": 30.751278, - "right": 11.25, - "bottom": 29.53523, - "countries": [ - "libya", - "tunisia" - ] - }, - { - "x": 135, - "y": 99, - "left": 9.84375, - "top": 37.71859, - "right": 11.25, - "bottom": 36.597889, - "countries": [ - "tunisia" - ] - }, - { - "x": 134, - "y": 100, - "left": 8.4375, - "top": 36.597889, - "right": 9.84375, - "bottom": 35.46067, - "countries": [ - "tunisia" - ] - }, - { - "x": 135, - "y": 100, - "left": 9.84375, - "top": 36.597889, - "right": 11.25, - "bottom": 35.46067, - "countries": [ - "tunisia" - ] - }, - { - "x": 135, - "y": 101, - "left": 9.84375, - "top": 35.46067, - "right": 11.25, - "bottom": 34.307144, - "countries": [ - "tunisia" - ] - }, - { - "x": 136, - "y": 101, - "left": 11.25, - "top": 35.46067, - "right": 12.65625, - "bottom": 34.307144, - "countries": [ - "tunisia" - ] - }, - { - "x": 134, - "y": 102, - "left": 8.4375, - "top": 34.307144, - "right": 9.84375, - "bottom": 33.137551, - "countries": [ - "tunisia" - ] - }, - { - "x": 135, - "y": 102, - "left": 9.84375, - "top": 34.307144, - "right": 11.25, - "bottom": 33.137551, - "countries": [ - "tunisia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/uganda.json b/wahoomc/resources/json/africa/uganda.json deleted file mode 100644 index 2370d45b..00000000 --- a/wahoomc/resources/json/africa/uganda.json +++ /dev/null @@ -1,211 +0,0 @@ -[ - { - "x": 149, - "y": 129, - "left": 29.53125, - "top": -1.406109, - "right": 30.9375, - "bottom": -2.811371, - "countries": [ - "burundi", - "democratic_republic_of_the_congo", - "tanzania", - "rwanda", - "uganda" - ] - }, - { - "x": 149, - "y": 125, - "left": 29.53125, - "top": 4.214943, - "right": 30.9375, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 126, - "left": 29.53125, - "top": 2.811371, - "right": 30.9375, - "bottom": 1.406109, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 150, - "y": 126, - "left": 30.9375, - "top": 2.811371, - "right": 32.34375, - "bottom": 1.406109, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 127, - "left": 29.53125, - "top": 1.406109, - "right": 30.9375, - "bottom": 0.0, - "countries": [ - "uganda", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 128, - "left": 29.53125, - "top": 0.0, - "right": 30.9375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania", - "democratic_republic_of_the_congo", - "rwanda" - ] - }, - { - "x": 152, - "y": 125, - "left": 33.75, - "top": 4.214943, - "right": 35.15625, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan", - "kenya" - ] - }, - { - "x": 152, - "y": 126, - "left": 33.75, - "top": 2.811371, - "right": 35.15625, - "bottom": 1.406109, - "countries": [ - "uganda", - "kenya" - ] - }, - { - "x": 152, - "y": 127, - "left": 33.75, - "top": 1.406109, - "right": 35.15625, - "bottom": 0.0, - "countries": [ - "uganda", - "kenya" - ] - }, - { - "x": 152, - "y": 128, - "left": 33.75, - "top": 0.0, - "right": 35.15625, - "bottom": -1.406109, - "countries": [ - "uganda", - "kenya", - "tanzania" - ] - }, - { - "x": 150, - "y": 125, - "left": 30.9375, - "top": 4.214943, - "right": 32.34375, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan" - ] - }, - { - "x": 151, - "y": 125, - "left": 32.34375, - "top": 4.214943, - "right": 33.75, - "bottom": 2.811371, - "countries": [ - "uganda", - "sudan" - ] - }, - { - "x": 150, - "y": 128, - "left": 30.9375, - "top": 0.0, - "right": 32.34375, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania" - ] - }, - { - "x": 151, - "y": 128, - "left": 32.34375, - "top": 0.0, - "right": 33.75, - "bottom": -1.406109, - "countries": [ - "uganda", - "tanzania" - ] - }, - { - "x": 151, - "y": 126, - "left": 32.34375, - "top": 2.811371, - "right": 33.75, - "bottom": 1.406109, - "countries": [ - "uganda" - ] - }, - { - "x": 150, - "y": 127, - "left": 30.9375, - "top": 1.406109, - "right": 32.34375, - "bottom": 0.0, - "countries": [ - "uganda" - ] - }, - { - "x": 151, - "y": 127, - "left": 32.34375, - "top": 1.406109, - "right": 33.75, - "bottom": 0.0, - "countries": [ - "uganda" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/western_sahara.json b/wahoomc/resources/json/africa/western_sahara.json deleted file mode 100644 index 4333197d..00000000 --- a/wahoomc/resources/json/africa/western_sahara.json +++ /dev/null @@ -1,284 +0,0 @@ -[ - { - "x": 121, - "y": 107, - "left": -9.84375, - "top": 28.304381, - "right": -8.4375, - "bottom": 27.059126, - "countries": [ - "morocco", - "algeria", - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 108, - "left": -12.65625, - "top": 27.059126, - "right": -11.25, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 120, - "y": 108, - "left": -11.25, - "top": 27.059126, - "right": -9.84375, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 121, - "y": 108, - "left": -9.84375, - "top": 27.059126, - "right": -8.4375, - "bottom": 25.799891, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 109, - "left": -12.65625, - "top": 25.799891, - "right": -11.25, - "bottom": 24.527135, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 118, - "y": 110, - "left": -14.0625, - "top": 24.527135, - "right": -12.65625, - "bottom": 23.241346, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 119, - "y": 110, - "left": -12.65625, - "top": 24.527135, - "right": -11.25, - "bottom": 23.241346, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 118, - "y": 111, - "left": -14.0625, - "top": 23.241346, - "right": -12.65625, - "bottom": 21.943046, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 115, - "y": 112, - "left": -18.28125, - "top": 21.943046, - "right": -16.875, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 116, - "y": 112, - "left": -16.875, - "top": 21.943046, - "right": -15.46875, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 117, - "y": 112, - "left": -15.46875, - "top": 21.943046, - "right": -14.0625, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 118, - "y": 112, - "left": -14.0625, - "top": 21.943046, - "right": -12.65625, - "bottom": 20.632784, - "countries": [ - "western_sahara", - "mauritania" - ] - }, - { - "x": 118, - "y": 107, - "left": -14.0625, - "top": 28.304381, - "right": -12.65625, - "bottom": 27.059126, - "countries": [ - "spain", - "western_sahara", - "morocco" - ] - }, - { - "x": 119, - "y": 107, - "left": -12.65625, - "top": 28.304381, - "right": -11.25, - "bottom": 27.059126, - "countries": [ - "western_sahara", - "morocco" - ] - }, - { - "x": 120, - "y": 107, - "left": -11.25, - "top": 28.304381, - "right": -9.84375, - "bottom": 27.059126, - "countries": [ - "western_sahara", - "morocco" - ] - }, - { - "x": 117, - "y": 108, - "left": -15.46875, - "top": 27.059126, - "right": -14.0625, - "bottom": 25.799891, - "countries": [ - "western_sahara" - ] - }, - { - "x": 118, - "y": 108, - "left": -14.0625, - "top": 27.059126, - "right": -12.65625, - "bottom": 25.799891, - "countries": [ - "western_sahara" - ] - }, - { - "x": 117, - "y": 109, - "left": -15.46875, - "top": 25.799891, - "right": -14.0625, - "bottom": 24.527135, - "countries": [ - "western_sahara" - ] - }, - { - "x": 118, - "y": 109, - "left": -14.0625, - "top": 25.799891, - "right": -12.65625, - "bottom": 24.527135, - "countries": [ - "western_sahara" - ] - }, - { - "x": 116, - "y": 110, - "left": -16.875, - "top": 24.527135, - "right": -15.46875, - "bottom": 23.241346, - "countries": [ - "western_sahara" - ] - }, - { - "x": 117, - "y": 110, - "left": -15.46875, - "top": 24.527135, - "right": -14.0625, - "bottom": 23.241346, - "countries": [ - "western_sahara" - ] - }, - { - "x": 115, - "y": 111, - "left": -18.28125, - "top": 23.241346, - "right": -16.875, - "bottom": 21.943046, - "countries": [ - "western_sahara" - ] - }, - { - "x": 116, - "y": 111, - "left": -16.875, - "top": 23.241346, - "right": -15.46875, - "bottom": 21.943046, - "countries": [ - "western_sahara" - ] - }, - { - "x": 117, - "y": 111, - "left": -15.46875, - "top": 23.241346, - "right": -14.0625, - "bottom": 21.943046, - "countries": [ - "western_sahara" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/zambia.json b/wahoomc/resources/json/africa/zambia.json deleted file mode 100644 index c7125dd4..00000000 --- a/wahoomc/resources/json/africa/zambia.json +++ /dev/null @@ -1,610 +0,0 @@ -[ - { - "x": 145, - "y": 135, - "left": 23.90625, - "top": -9.795678, - "right": 25.3125, - "bottom": -11.178402, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 145, - "y": 136, - "left": 23.90625, - "top": -11.178402, - "right": 25.3125, - "bottom": -12.554564, - "countries": [ - "zambia", - "angola", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 143, - "y": 137, - "left": 21.09375, - "top": -12.554564, - "right": 22.5, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 144, - "y": 137, - "left": 22.5, - "top": -12.554564, - "right": 23.90625, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 145, - "y": 137, - "left": 23.90625, - "top": -12.554564, - "right": 25.3125, - "bottom": -13.923404, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 143, - "y": 138, - "left": 21.09375, - "top": -13.923404, - "right": 22.5, - "bottom": -15.284185, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 143, - "y": 139, - "left": 21.09375, - "top": -15.284185, - "right": 22.5, - "bottom": -16.636192, - "countries": [ - "zambia", - "angola" - ] - }, - { - "x": 143, - "y": 140, - "left": 21.09375, - "top": -16.636192, - "right": 22.5, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 144, - "y": 140, - "left": 22.5, - "top": -16.636192, - "right": 23.90625, - "bottom": -17.978733, - "countries": [ - "zambia", - "namibia", - "angola" - ] - }, - { - "x": 145, - "y": 140, - "left": 23.90625, - "top": -16.636192, - "right": 25.3125, - "bottom": -17.978733, - "countries": [ - "zambia", - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 146, - "y": 141, - "left": 25.3125, - "top": -17.978733, - "right": 26.71875, - "bottom": -19.311143, - "countries": [ - "zambia", - "botswana", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 133, - "left": 28.125, - "top": -7.013668, - "right": 29.53125, - "bottom": -8.407168, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 133, - "left": 29.53125, - "top": -7.013668, - "right": 30.9375, - "bottom": -8.407168, - "countries": [ - "zambia", - "tanzania", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 134, - "left": 28.125, - "top": -8.407168, - "right": 29.53125, - "bottom": -9.795678, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 135, - "left": 28.125, - "top": -9.795678, - "right": 29.53125, - "bottom": -11.178402, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 146, - "y": 136, - "left": 25.3125, - "top": -11.178402, - "right": 26.71875, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 147, - "y": 136, - "left": 26.71875, - "top": -11.178402, - "right": 28.125, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 136, - "left": 28.125, - "top": -11.178402, - "right": 29.53125, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 136, - "left": 29.53125, - "top": -11.178402, - "right": 30.9375, - "bottom": -12.554564, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 148, - "y": 137, - "left": 28.125, - "top": -12.554564, - "right": 29.53125, - "bottom": -13.923404, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 149, - "y": 137, - "left": 29.53125, - "top": -12.554564, - "right": 30.9375, - "bottom": -13.923404, - "countries": [ - "zambia", - "democratic_republic_of_the_congo" - ] - }, - { - "x": 151, - "y": 134, - "left": 32.34375, - "top": -8.407168, - "right": 33.75, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania", - "malawi" - ] - }, - { - "x": 151, - "y": 135, - "left": 32.34375, - "top": -9.795678, - "right": 33.75, - "bottom": -11.178402, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 151, - "y": 136, - "left": 32.34375, - "top": -11.178402, - "right": 33.75, - "bottom": -12.554564, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 151, - "y": 137, - "left": 32.34375, - "top": -12.554564, - "right": 33.75, - "bottom": -13.923404, - "countries": [ - "zambia", - "malawi" - ] - }, - { - "x": 151, - "y": 138, - "left": 32.34375, - "top": -13.923404, - "right": 33.75, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique", - "malawi" - ] - }, - { - "x": 149, - "y": 138, - "left": 29.53125, - "top": -13.923404, - "right": 30.9375, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique" - ] - }, - { - "x": 150, - "y": 138, - "left": 30.9375, - "top": -13.923404, - "right": 32.34375, - "bottom": -15.284185, - "countries": [ - "zambia", - "mozambique" - ] - }, - { - "x": 149, - "y": 139, - "left": 29.53125, - "top": -15.284185, - "right": 30.9375, - "bottom": -16.636192, - "countries": [ - "zambia", - "mozambique", - "zimbabwe" - ] - }, - { - "x": 149, - "y": 134, - "left": 29.53125, - "top": -8.407168, - "right": 30.9375, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania" - ] - }, - { - "x": 150, - "y": 134, - "left": 30.9375, - "top": -8.407168, - "right": 32.34375, - "bottom": -9.795678, - "countries": [ - "zambia", - "tanzania" - ] - }, - { - "x": 149, - "y": 135, - "left": 29.53125, - "top": -9.795678, - "right": 30.9375, - "bottom": -11.178402, - "countries": [ - "zambia" - ] - }, - { - "x": 150, - "y": 135, - "left": 30.9375, - "top": -9.795678, - "right": 32.34375, - "bottom": -11.178402, - "countries": [ - "zambia" - ] - }, - { - "x": 150, - "y": 136, - "left": 30.9375, - "top": -11.178402, - "right": 32.34375, - "bottom": -12.554564, - "countries": [ - "zambia" - ] - }, - { - "x": 146, - "y": 137, - "left": 25.3125, - "top": -12.554564, - "right": 26.71875, - "bottom": -13.923404, - "countries": [ - "zambia" - ] - }, - { - "x": 147, - "y": 137, - "left": 26.71875, - "top": -12.554564, - "right": 28.125, - "bottom": -13.923404, - "countries": [ - "zambia" - ] - }, - { - "x": 150, - "y": 137, - "left": 30.9375, - "top": -12.554564, - "right": 32.34375, - "bottom": -13.923404, - "countries": [ - "zambia" - ] - }, - { - "x": 144, - "y": 138, - "left": 22.5, - "top": -13.923404, - "right": 23.90625, - "bottom": -15.284185, - "countries": [ - "zambia" - ] - }, - { - "x": 145, - "y": 138, - "left": 23.90625, - "top": -13.923404, - "right": 25.3125, - "bottom": -15.284185, - "countries": [ - "zambia" - ] - }, - { - "x": 146, - "y": 138, - "left": 25.3125, - "top": -13.923404, - "right": 26.71875, - "bottom": -15.284185, - "countries": [ - "zambia" - ] - }, - { - "x": 147, - "y": 138, - "left": 26.71875, - "top": -13.923404, - "right": 28.125, - "bottom": -15.284185, - "countries": [ - "zambia" - ] - }, - { - "x": 148, - "y": 138, - "left": 28.125, - "top": -13.923404, - "right": 29.53125, - "bottom": -15.284185, - "countries": [ - "zambia" - ] - }, - { - "x": 144, - "y": 139, - "left": 22.5, - "top": -15.284185, - "right": 23.90625, - "bottom": -16.636192, - "countries": [ - "zambia" - ] - }, - { - "x": 145, - "y": 139, - "left": 23.90625, - "top": -15.284185, - "right": 25.3125, - "bottom": -16.636192, - "countries": [ - "zambia" - ] - }, - { - "x": 146, - "y": 139, - "left": 25.3125, - "top": -15.284185, - "right": 26.71875, - "bottom": -16.636192, - "countries": [ - "zambia" - ] - }, - { - "x": 147, - "y": 139, - "left": 26.71875, - "top": -15.284185, - "right": 28.125, - "bottom": -16.636192, - "countries": [ - "zambia" - ] - }, - { - "x": 148, - "y": 139, - "left": 28.125, - "top": -15.284185, - "right": 29.53125, - "bottom": -16.636192, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 146, - "y": 140, - "left": 25.3125, - "top": -16.636192, - "right": 26.71875, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 140, - "left": 26.71875, - "top": -16.636192, - "right": 28.125, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 140, - "left": 28.125, - "top": -16.636192, - "right": 29.53125, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 141, - "left": 26.71875, - "top": -17.978733, - "right": 28.125, - "bottom": -19.311143, - "countries": [ - "zambia", - "zimbabwe" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/africa/zimbabwe.json b/wahoomc/resources/json/africa/zimbabwe.json deleted file mode 100644 index 87a63a32..00000000 --- a/wahoomc/resources/json/africa/zimbabwe.json +++ /dev/null @@ -1,384 +0,0 @@ -[ - { - "x": 145, - "y": 140, - "left": 23.90625, - "top": -16.636192, - "right": 25.3125, - "bottom": -17.978733, - "countries": [ - "zambia", - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 145, - "y": 141, - "left": 23.90625, - "top": -17.978733, - "right": 25.3125, - "bottom": -19.311143, - "countries": [ - "botswana", - "zimbabwe", - "namibia" - ] - }, - { - "x": 146, - "y": 141, - "left": 25.3125, - "top": -17.978733, - "right": 26.71875, - "bottom": -19.311143, - "countries": [ - "zambia", - "botswana", - "zimbabwe" - ] - }, - { - "x": 146, - "y": 142, - "left": 25.3125, - "top": -19.311143, - "right": 26.71875, - "bottom": -20.632784, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 142, - "left": 26.71875, - "top": -19.311143, - "right": 28.125, - "bottom": -20.632784, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 143, - "left": 26.71875, - "top": -20.632784, - "right": 28.125, - "bottom": -21.943046, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 143, - "left": 28.125, - "top": -20.632784, - "right": 29.53125, - "bottom": -21.943046, - "countries": [ - "botswana", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 144, - "left": 28.125, - "top": -21.943046, - "right": 29.53125, - "bottom": -23.241346, - "countries": [ - "botswana", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 149, - "y": 139, - "left": 29.53125, - "top": -15.284185, - "right": 30.9375, - "bottom": -16.636192, - "countries": [ - "zambia", - "mozambique", - "zimbabwe" - ] - }, - { - "x": 150, - "y": 139, - "left": 30.9375, - "top": -15.284185, - "right": 32.34375, - "bottom": -16.636192, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 139, - "left": 32.34375, - "top": -15.284185, - "right": 33.75, - "bottom": -16.636192, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 140, - "left": 32.34375, - "top": -16.636192, - "right": 33.75, - "bottom": -17.978733, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 141, - "left": 32.34375, - "top": -17.978733, - "right": 33.75, - "bottom": -19.311143, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 142, - "left": 32.34375, - "top": -19.311143, - "right": 33.75, - "bottom": -20.632784, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 150, - "y": 143, - "left": 30.9375, - "top": -20.632784, - "right": 32.34375, - "bottom": -21.943046, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 151, - "y": 143, - "left": 32.34375, - "top": -20.632784, - "right": 33.75, - "bottom": -21.943046, - "countries": [ - "mozambique", - "zimbabwe" - ] - }, - { - "x": 150, - "y": 144, - "left": 30.9375, - "top": -21.943046, - "right": 32.34375, - "bottom": -23.241346, - "countries": [ - "mozambique", - "south_africa", - "zimbabwe" - ] - }, - { - "x": 149, - "y": 144, - "left": 29.53125, - "top": -21.943046, - "right": 30.9375, - "bottom": -23.241346, - "countries": [ - "south_africa", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 139, - "left": 28.125, - "top": -15.284185, - "right": 29.53125, - "bottom": -16.636192, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 146, - "y": 140, - "left": 25.3125, - "top": -16.636192, - "right": 26.71875, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 140, - "left": 26.71875, - "top": -16.636192, - "right": 28.125, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 148, - "y": 140, - "left": 28.125, - "top": -16.636192, - "right": 29.53125, - "bottom": -17.978733, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 147, - "y": 141, - "left": 26.71875, - "top": -17.978733, - "right": 28.125, - "bottom": -19.311143, - "countries": [ - "zambia", - "zimbabwe" - ] - }, - { - "x": 149, - "y": 140, - "left": 29.53125, - "top": -16.636192, - "right": 30.9375, - "bottom": -17.978733, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 150, - "y": 140, - "left": 30.9375, - "top": -16.636192, - "right": 32.34375, - "bottom": -17.978733, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 148, - "y": 141, - "left": 28.125, - "top": -17.978733, - "right": 29.53125, - "bottom": -19.311143, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 149, - "y": 141, - "left": 29.53125, - "top": -17.978733, - "right": 30.9375, - "bottom": -19.311143, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 150, - "y": 141, - "left": 30.9375, - "top": -17.978733, - "right": 32.34375, - "bottom": -19.311143, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 148, - "y": 142, - "left": 28.125, - "top": -19.311143, - "right": 29.53125, - "bottom": -20.632784, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 149, - "y": 142, - "left": 29.53125, - "top": -19.311143, - "right": 30.9375, - "bottom": -20.632784, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 150, - "y": 142, - "left": 30.9375, - "top": -19.311143, - "right": 32.34375, - "bottom": -20.632784, - "countries": [ - "zimbabwe" - ] - }, - { - "x": 149, - "y": 143, - "left": 29.53125, - "top": -20.632784, - "right": 30.9375, - "bottom": -21.943046, - "countries": [ - "zimbabwe" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/antarctica/antarctica.json b/wahoomc/resources/json/antarctica/antarctica.json deleted file mode 100644 index 29760b90..00000000 --- a/wahoomc/resources/json/antarctica/antarctica.json +++ /dev/null @@ -1,137139 +0,0 @@ -[ - { - "x": 95, - "y": 182, - "left": -46.40625, - "top": -60.239811, - "right": -45.0, - "bottom": -60.930432, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 182, - "left": -45.0, - "top": -60.239811, - "right": -43.59375, - "bottom": -60.930432, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 183, - "left": -56.25, - "top": -60.930432, - "right": -54.84375, - "bottom": -61.606396, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 183, - "left": -54.84375, - "top": -60.930432, - "right": -53.4375, - "bottom": -61.606396, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 184, - "left": -60.46875, - "top": -61.606396, - "right": -59.0625, - "bottom": -62.267923, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 184, - "left": -59.0625, - "top": -61.606396, - "right": -57.65625, - "bottom": -62.267923, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 184, - "left": -57.65625, - "top": -61.606396, - "right": -56.25, - "bottom": -62.267923, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 185, - "left": -63.28125, - "top": -62.267923, - "right": -61.875, - "bottom": -62.915233, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 185, - "left": -61.875, - "top": -62.267923, - "right": -60.46875, - "bottom": -62.915233, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 185, - "left": -60.46875, - "top": -62.267923, - "right": -59.0625, - "bottom": -62.915233, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 185, - "left": -59.0625, - "top": -62.267923, - "right": -57.65625, - "bottom": -62.915233, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 186, - "left": -63.28125, - "top": -62.915233, - "right": -61.875, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 186, - "left": -61.875, - "top": -62.915233, - "right": -60.46875, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 186, - "left": -60.46875, - "top": -62.915233, - "right": -59.0625, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 186, - "left": -59.0625, - "top": -62.915233, - "right": -57.65625, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 186, - "left": -57.65625, - "top": -62.915233, - "right": -56.25, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 186, - "left": -56.25, - "top": -62.915233, - "right": -54.84375, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 186, - "left": -54.84375, - "top": -62.915233, - "right": -53.4375, - "bottom": -63.548552, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 187, - "left": -63.28125, - "top": -63.548552, - "right": -61.875, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 187, - "left": -61.875, - "top": -63.548552, - "right": -60.46875, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 187, - "left": -60.46875, - "top": -63.548552, - "right": -59.0625, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 187, - "left": -59.0625, - "top": -63.548552, - "right": -57.65625, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 187, - "left": -57.65625, - "top": -63.548552, - "right": -56.25, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 187, - "left": -56.25, - "top": -63.548552, - "right": -54.84375, - "bottom": -64.168107, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 188, - "left": -64.6875, - "top": -64.168107, - "right": -63.28125, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 188, - "left": -63.28125, - "top": -64.168107, - "right": -61.875, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 188, - "left": -61.875, - "top": -64.168107, - "right": -60.46875, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 188, - "left": -60.46875, - "top": -64.168107, - "right": -59.0625, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 188, - "left": -59.0625, - "top": -64.168107, - "right": -57.65625, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 188, - "left": -57.65625, - "top": -64.168107, - "right": -56.25, - "bottom": -64.774125, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 189, - "left": -66.09375, - "top": -64.774125, - "right": -64.6875, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 189, - "left": -64.6875, - "top": -64.774125, - "right": -63.28125, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 189, - "left": -63.28125, - "top": -64.774125, - "right": -61.875, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 189, - "left": -61.875, - "top": -64.774125, - "right": -60.46875, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 189, - "left": -60.46875, - "top": -64.774125, - "right": -59.0625, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 189, - "left": 102.65625, - "top": -64.774125, - "right": 104.0625, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 189, - "left": 133.59375, - "top": -64.774125, - "right": 135.0, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 189, - "left": 135.0, - "top": -64.774125, - "right": 136.40625, - "bottom": -65.366837, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 190, - "left": -67.5, - "top": -65.366837, - "right": -66.09375, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 190, - "left": -66.09375, - "top": -65.366837, - "right": -64.6875, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 190, - "left": -64.6875, - "top": -65.366837, - "right": -63.28125, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 190, - "left": -63.28125, - "top": -65.366837, - "right": -61.875, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 190, - "left": -61.875, - "top": -65.366837, - "right": -60.46875, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 190, - "left": 52.03125, - "top": -65.366837, - "right": 53.4375, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 190, - "left": 53.4375, - "top": -65.366837, - "right": 54.84375, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 190, - "left": 54.84375, - "top": -65.366837, - "right": 56.25, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 190, - "left": 91.40625, - "top": -65.366837, - "right": 92.8125, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 190, - "left": 98.4375, - "top": -65.366837, - "right": 99.84375, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 190, - "left": 99.84375, - "top": -65.366837, - "right": 101.25, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 190, - "left": 101.25, - "top": -65.366837, - "right": 102.65625, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 190, - "left": 102.65625, - "top": -65.366837, - "right": 104.0625, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 190, - "left": 111.09375, - "top": -65.366837, - "right": 112.5, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 190, - "left": 112.5, - "top": -65.366837, - "right": 113.90625, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 190, - "left": 120.9375, - "top": -65.366837, - "right": 122.34375, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 190, - "left": 129.375, - "top": -65.366837, - "right": 130.78125, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 190, - "left": 133.59375, - "top": -65.366837, - "right": 135.0, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 190, - "left": 135.0, - "top": -65.366837, - "right": 136.40625, - "bottom": -65.946472, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 191, - "left": -67.5, - "top": -65.946472, - "right": -66.09375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 191, - "left": -66.09375, - "top": -65.946472, - "right": -64.6875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 191, - "left": -64.6875, - "top": -65.946472, - "right": -63.28125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 191, - "left": -63.28125, - "top": -65.946472, - "right": -61.875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 191, - "left": -61.875, - "top": -65.946472, - "right": -60.46875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 191, - "left": 49.21875, - "top": -65.946472, - "right": 50.625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 191, - "left": 50.625, - "top": -65.946472, - "right": 52.03125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 191, - "left": 52.03125, - "top": -65.946472, - "right": 53.4375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 191, - "left": 53.4375, - "top": -65.946472, - "right": 54.84375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 191, - "left": 54.84375, - "top": -65.946472, - "right": 56.25, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 191, - "left": 56.25, - "top": -65.946472, - "right": 57.65625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 191, - "left": 91.40625, - "top": -65.946472, - "right": 92.8125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 191, - "left": 94.21875, - "top": -65.946472, - "right": 95.625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 191, - "left": 95.625, - "top": -65.946472, - "right": 97.03125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 191, - "left": 97.03125, - "top": -65.946472, - "right": 98.4375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 191, - "left": 98.4375, - "top": -65.946472, - "right": 99.84375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 191, - "left": 99.84375, - "top": -65.946472, - "right": 101.25, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 191, - "left": 101.25, - "top": -65.946472, - "right": 102.65625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 191, - "left": 102.65625, - "top": -65.946472, - "right": 104.0625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 191, - "left": 104.0625, - "top": -65.946472, - "right": 105.46875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 191, - "left": 105.46875, - "top": -65.946472, - "right": 106.875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 191, - "left": 106.875, - "top": -65.946472, - "right": 108.28125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 191, - "left": 109.6875, - "top": -65.946472, - "right": 111.09375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 191, - "left": 111.09375, - "top": -65.946472, - "right": 112.5, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 191, - "left": 112.5, - "top": -65.946472, - "right": 113.90625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 191, - "left": 113.90625, - "top": -65.946472, - "right": 115.3125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 191, - "left": 115.3125, - "top": -65.946472, - "right": 116.71875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 191, - "left": 120.9375, - "top": -65.946472, - "right": 122.34375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 191, - "left": 122.34375, - "top": -65.946472, - "right": 123.75, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 191, - "left": 123.75, - "top": -65.946472, - "right": 125.15625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 191, - "left": 125.15625, - "top": -65.946472, - "right": 126.5625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 191, - "left": 126.5625, - "top": -65.946472, - "right": 127.96875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 191, - "left": 129.375, - "top": -65.946472, - "right": 130.78125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 191, - "left": 130.78125, - "top": -65.946472, - "right": 132.1875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 191, - "left": 132.1875, - "top": -65.946472, - "right": 133.59375, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 191, - "left": 133.59375, - "top": -65.946472, - "right": 135.0, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 191, - "left": 135.0, - "top": -65.946472, - "right": 136.40625, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 191, - "left": 136.40625, - "top": -65.946472, - "right": 137.8125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 191, - "left": 137.8125, - "top": -65.946472, - "right": 139.21875, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 191, - "left": 161.71875, - "top": -65.946472, - "right": 163.125, - "bottom": -66.51326, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 192, - "left": -68.90625, - "top": -66.51326, - "right": -67.5, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 192, - "left": -67.5, - "top": -66.51326, - "right": -66.09375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 192, - "left": -66.09375, - "top": -66.51326, - "right": -64.6875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 192, - "left": -64.6875, - "top": -66.51326, - "right": -63.28125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 192, - "left": -63.28125, - "top": -66.51326, - "right": -61.875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 192, - "left": 47.8125, - "top": -66.51326, - "right": 49.21875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 192, - "left": 49.21875, - "top": -66.51326, - "right": 50.625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 192, - "left": 50.625, - "top": -66.51326, - "right": 52.03125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 192, - "left": 52.03125, - "top": -66.51326, - "right": 53.4375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 192, - "left": 53.4375, - "top": -66.51326, - "right": 54.84375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 192, - "left": 54.84375, - "top": -66.51326, - "right": 56.25, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 192, - "left": 56.25, - "top": -66.51326, - "right": 57.65625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 192, - "left": 57.65625, - "top": -66.51326, - "right": 59.0625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 192, - "left": 84.375, - "top": -66.51326, - "right": 85.78125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 192, - "left": 85.78125, - "top": -66.51326, - "right": 87.1875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 192, - "left": 87.1875, - "top": -66.51326, - "right": 88.59375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 192, - "left": 88.59375, - "top": -66.51326, - "right": 90.0, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 192, - "left": 90.0, - "top": -66.51326, - "right": 91.40625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 192, - "left": 91.40625, - "top": -66.51326, - "right": 92.8125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 192, - "left": 92.8125, - "top": -66.51326, - "right": 94.21875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 192, - "left": 94.21875, - "top": -66.51326, - "right": 95.625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 192, - "left": 95.625, - "top": -66.51326, - "right": 97.03125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 192, - "left": 97.03125, - "top": -66.51326, - "right": 98.4375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 192, - "left": 98.4375, - "top": -66.51326, - "right": 99.84375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 192, - "left": 99.84375, - "top": -66.51326, - "right": 101.25, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 192, - "left": 101.25, - "top": -66.51326, - "right": 102.65625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 192, - "left": 102.65625, - "top": -66.51326, - "right": 104.0625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 192, - "left": 104.0625, - "top": -66.51326, - "right": 105.46875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 192, - "left": 105.46875, - "top": -66.51326, - "right": 106.875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 192, - "left": 106.875, - "top": -66.51326, - "right": 108.28125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 192, - "left": 108.28125, - "top": -66.51326, - "right": 109.6875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 192, - "left": 109.6875, - "top": -66.51326, - "right": 111.09375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 192, - "left": 111.09375, - "top": -66.51326, - "right": 112.5, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 192, - "left": 112.5, - "top": -66.51326, - "right": 113.90625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 192, - "left": 113.90625, - "top": -66.51326, - "right": 115.3125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 192, - "left": 115.3125, - "top": -66.51326, - "right": 116.71875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 192, - "left": 116.71875, - "top": -66.51326, - "right": 118.125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 192, - "left": 118.125, - "top": -66.51326, - "right": 119.53125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 192, - "left": 119.53125, - "top": -66.51326, - "right": 120.9375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 192, - "left": 120.9375, - "top": -66.51326, - "right": 122.34375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 192, - "left": 122.34375, - "top": -66.51326, - "right": 123.75, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 192, - "left": 123.75, - "top": -66.51326, - "right": 125.15625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 192, - "left": 125.15625, - "top": -66.51326, - "right": 126.5625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 192, - "left": 126.5625, - "top": -66.51326, - "right": 127.96875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 192, - "left": 127.96875, - "top": -66.51326, - "right": 129.375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 192, - "left": 129.375, - "top": -66.51326, - "right": 130.78125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 192, - "left": 130.78125, - "top": -66.51326, - "right": 132.1875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 192, - "left": 132.1875, - "top": -66.51326, - "right": 133.59375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 192, - "left": 133.59375, - "top": -66.51326, - "right": 135.0, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 192, - "left": 135.0, - "top": -66.51326, - "right": 136.40625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 192, - "left": 136.40625, - "top": -66.51326, - "right": 137.8125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 192, - "left": 137.8125, - "top": -66.51326, - "right": 139.21875, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 192, - "left": 139.21875, - "top": -66.51326, - "right": 140.625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 192, - "left": 140.625, - "top": -66.51326, - "right": 142.03125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 192, - "left": 142.03125, - "top": -66.51326, - "right": 143.4375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 192, - "left": 143.4375, - "top": -66.51326, - "right": 144.84375, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 192, - "left": 144.84375, - "top": -66.51326, - "right": 146.25, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 192, - "left": 146.25, - "top": -66.51326, - "right": 147.65625, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 192, - "left": 161.71875, - "top": -66.51326, - "right": 163.125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 192, - "left": 163.125, - "top": -66.51326, - "right": 164.53125, - "bottom": -67.067433, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 193, - "left": -70.3125, - "top": -67.067433, - "right": -68.90625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 193, - "left": -68.90625, - "top": -67.067433, - "right": -67.5, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 193, - "left": -67.5, - "top": -67.067433, - "right": -66.09375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 193, - "left": -66.09375, - "top": -67.067433, - "right": -64.6875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 193, - "left": -64.6875, - "top": -67.067433, - "right": -63.28125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 193, - "left": 45.0, - "top": -67.067433, - "right": 46.40625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 193, - "left": 46.40625, - "top": -67.067433, - "right": 47.8125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 193, - "left": 47.8125, - "top": -67.067433, - "right": 49.21875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 193, - "left": 49.21875, - "top": -67.067433, - "right": 50.625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 193, - "left": 50.625, - "top": -67.067433, - "right": 52.03125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 193, - "left": 52.03125, - "top": -67.067433, - "right": 53.4375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 193, - "left": 53.4375, - "top": -67.067433, - "right": 54.84375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 193, - "left": 54.84375, - "top": -67.067433, - "right": 56.25, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 193, - "left": 56.25, - "top": -67.067433, - "right": 57.65625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 193, - "left": 57.65625, - "top": -67.067433, - "right": 59.0625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 193, - "left": 59.0625, - "top": -67.067433, - "right": 60.46875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 193, - "left": 60.46875, - "top": -67.067433, - "right": 61.875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 193, - "left": 61.875, - "top": -67.067433, - "right": 63.28125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 193, - "left": 63.28125, - "top": -67.067433, - "right": 64.6875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 193, - "left": 82.96875, - "top": -67.067433, - "right": 84.375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 193, - "left": 84.375, - "top": -67.067433, - "right": 85.78125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 193, - "left": 85.78125, - "top": -67.067433, - "right": 87.1875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 193, - "left": 87.1875, - "top": -67.067433, - "right": 88.59375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 193, - "left": 88.59375, - "top": -67.067433, - "right": 90.0, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 193, - "left": 90.0, - "top": -67.067433, - "right": 91.40625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 193, - "left": 91.40625, - "top": -67.067433, - "right": 92.8125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 193, - "left": 92.8125, - "top": -67.067433, - "right": 94.21875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 193, - "left": 94.21875, - "top": -67.067433, - "right": 95.625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 193, - "left": 95.625, - "top": -67.067433, - "right": 97.03125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 193, - "left": 97.03125, - "top": -67.067433, - "right": 98.4375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 193, - "left": 98.4375, - "top": -67.067433, - "right": 99.84375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 193, - "left": 99.84375, - "top": -67.067433, - "right": 101.25, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 193, - "left": 101.25, - "top": -67.067433, - "right": 102.65625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 193, - "left": 102.65625, - "top": -67.067433, - "right": 104.0625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 193, - "left": 104.0625, - "top": -67.067433, - "right": 105.46875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 193, - "left": 105.46875, - "top": -67.067433, - "right": 106.875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 193, - "left": 106.875, - "top": -67.067433, - "right": 108.28125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 193, - "left": 108.28125, - "top": -67.067433, - "right": 109.6875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 193, - "left": 109.6875, - "top": -67.067433, - "right": 111.09375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 193, - "left": 111.09375, - "top": -67.067433, - "right": 112.5, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 193, - "left": 112.5, - "top": -67.067433, - "right": 113.90625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 193, - "left": 113.90625, - "top": -67.067433, - "right": 115.3125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 193, - "left": 115.3125, - "top": -67.067433, - "right": 116.71875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 193, - "left": 116.71875, - "top": -67.067433, - "right": 118.125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 193, - "left": 118.125, - "top": -67.067433, - "right": 119.53125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 193, - "left": 119.53125, - "top": -67.067433, - "right": 120.9375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 193, - "left": 120.9375, - "top": -67.067433, - "right": 122.34375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 193, - "left": 122.34375, - "top": -67.067433, - "right": 123.75, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 193, - "left": 123.75, - "top": -67.067433, - "right": 125.15625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 193, - "left": 125.15625, - "top": -67.067433, - "right": 126.5625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 193, - "left": 126.5625, - "top": -67.067433, - "right": 127.96875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 193, - "left": 127.96875, - "top": -67.067433, - "right": 129.375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 193, - "left": 129.375, - "top": -67.067433, - "right": 130.78125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 193, - "left": 130.78125, - "top": -67.067433, - "right": 132.1875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 193, - "left": 132.1875, - "top": -67.067433, - "right": 133.59375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 193, - "left": 133.59375, - "top": -67.067433, - "right": 135.0, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 193, - "left": 135.0, - "top": -67.067433, - "right": 136.40625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 193, - "left": 136.40625, - "top": -67.067433, - "right": 137.8125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 193, - "left": 137.8125, - "top": -67.067433, - "right": 139.21875, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 193, - "left": 139.21875, - "top": -67.067433, - "right": 140.625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 193, - "left": 140.625, - "top": -67.067433, - "right": 142.03125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 193, - "left": 142.03125, - "top": -67.067433, - "right": 143.4375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 193, - "left": 143.4375, - "top": -67.067433, - "right": 144.84375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 193, - "left": 144.84375, - "top": -67.067433, - "right": 146.25, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 193, - "left": 146.25, - "top": -67.067433, - "right": 147.65625, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 193, - "left": 163.125, - "top": -67.067433, - "right": 164.53125, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 193, - "left": 164.53125, - "top": -67.067433, - "right": 165.9375, - "bottom": -67.609221, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 194, - "left": -70.3125, - "top": -67.609221, - "right": -68.90625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 194, - "left": -68.90625, - "top": -67.609221, - "right": -67.5, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 194, - "left": -67.5, - "top": -67.609221, - "right": -66.09375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 194, - "left": -66.09375, - "top": -67.609221, - "right": -64.6875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 194, - "left": -64.6875, - "top": -67.609221, - "right": -63.28125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 194, - "left": 42.1875, - "top": -67.609221, - "right": 43.59375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 194, - "left": 43.59375, - "top": -67.609221, - "right": 45.0, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 194, - "left": 45.0, - "top": -67.609221, - "right": 46.40625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 194, - "left": 46.40625, - "top": -67.609221, - "right": 47.8125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 194, - "left": 47.8125, - "top": -67.609221, - "right": 49.21875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 194, - "left": 49.21875, - "top": -67.609221, - "right": 50.625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 194, - "left": 50.625, - "top": -67.609221, - "right": 52.03125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 194, - "left": 52.03125, - "top": -67.609221, - "right": 53.4375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 194, - "left": 53.4375, - "top": -67.609221, - "right": 54.84375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 194, - "left": 54.84375, - "top": -67.609221, - "right": 56.25, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 194, - "left": 56.25, - "top": -67.609221, - "right": 57.65625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 194, - "left": 57.65625, - "top": -67.609221, - "right": 59.0625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 194, - "left": 59.0625, - "top": -67.609221, - "right": 60.46875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 194, - "left": 60.46875, - "top": -67.609221, - "right": 61.875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 194, - "left": 61.875, - "top": -67.609221, - "right": 63.28125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 194, - "left": 63.28125, - "top": -67.609221, - "right": 64.6875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 194, - "left": 64.6875, - "top": -67.609221, - "right": 66.09375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 194, - "left": 66.09375, - "top": -67.609221, - "right": 67.5, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 194, - "left": 67.5, - "top": -67.609221, - "right": 68.90625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 194, - "left": 68.90625, - "top": -67.609221, - "right": 70.3125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 194, - "left": 78.75, - "top": -67.609221, - "right": 80.15625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 194, - "left": 80.15625, - "top": -67.609221, - "right": 81.5625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 194, - "left": 81.5625, - "top": -67.609221, - "right": 82.96875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 194, - "left": 82.96875, - "top": -67.609221, - "right": 84.375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 194, - "left": 84.375, - "top": -67.609221, - "right": 85.78125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 194, - "left": 85.78125, - "top": -67.609221, - "right": 87.1875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 194, - "left": 87.1875, - "top": -67.609221, - "right": 88.59375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 194, - "left": 88.59375, - "top": -67.609221, - "right": 90.0, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 194, - "left": 90.0, - "top": -67.609221, - "right": 91.40625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 194, - "left": 91.40625, - "top": -67.609221, - "right": 92.8125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 194, - "left": 92.8125, - "top": -67.609221, - "right": 94.21875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 194, - "left": 94.21875, - "top": -67.609221, - "right": 95.625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 194, - "left": 95.625, - "top": -67.609221, - "right": 97.03125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 194, - "left": 97.03125, - "top": -67.609221, - "right": 98.4375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 194, - "left": 98.4375, - "top": -67.609221, - "right": 99.84375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 194, - "left": 99.84375, - "top": -67.609221, - "right": 101.25, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 194, - "left": 101.25, - "top": -67.609221, - "right": 102.65625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 194, - "left": 102.65625, - "top": -67.609221, - "right": 104.0625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 194, - "left": 104.0625, - "top": -67.609221, - "right": 105.46875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 194, - "left": 105.46875, - "top": -67.609221, - "right": 106.875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 194, - "left": 106.875, - "top": -67.609221, - "right": 108.28125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 194, - "left": 108.28125, - "top": -67.609221, - "right": 109.6875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 194, - "left": 109.6875, - "top": -67.609221, - "right": 111.09375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 194, - "left": 111.09375, - "top": -67.609221, - "right": 112.5, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 194, - "left": 112.5, - "top": -67.609221, - "right": 113.90625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 194, - "left": 113.90625, - "top": -67.609221, - "right": 115.3125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 194, - "left": 115.3125, - "top": -67.609221, - "right": 116.71875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 194, - "left": 116.71875, - "top": -67.609221, - "right": 118.125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 194, - "left": 118.125, - "top": -67.609221, - "right": 119.53125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 194, - "left": 119.53125, - "top": -67.609221, - "right": 120.9375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 194, - "left": 120.9375, - "top": -67.609221, - "right": 122.34375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 194, - "left": 122.34375, - "top": -67.609221, - "right": 123.75, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 194, - "left": 123.75, - "top": -67.609221, - "right": 125.15625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 194, - "left": 125.15625, - "top": -67.609221, - "right": 126.5625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 194, - "left": 126.5625, - "top": -67.609221, - "right": 127.96875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 194, - "left": 127.96875, - "top": -67.609221, - "right": 129.375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 194, - "left": 129.375, - "top": -67.609221, - "right": 130.78125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 194, - "left": 130.78125, - "top": -67.609221, - "right": 132.1875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 194, - "left": 132.1875, - "top": -67.609221, - "right": 133.59375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 194, - "left": 133.59375, - "top": -67.609221, - "right": 135.0, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 194, - "left": 135.0, - "top": -67.609221, - "right": 136.40625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 194, - "left": 136.40625, - "top": -67.609221, - "right": 137.8125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 194, - "left": 137.8125, - "top": -67.609221, - "right": 139.21875, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 194, - "left": 139.21875, - "top": -67.609221, - "right": 140.625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 194, - "left": 140.625, - "top": -67.609221, - "right": 142.03125, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 194, - "left": 142.03125, - "top": -67.609221, - "right": 143.4375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 194, - "left": 143.4375, - "top": -67.609221, - "right": 144.84375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 194, - "left": 144.84375, - "top": -67.609221, - "right": 146.25, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 194, - "left": 146.25, - "top": -67.609221, - "right": 147.65625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 194, - "left": 147.65625, - "top": -67.609221, - "right": 149.0625, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 194, - "left": 164.53125, - "top": -67.609221, - "right": 165.9375, - "bottom": -68.138852, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 195, - "left": -73.125, - "top": -68.138852, - "right": -71.71875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 195, - "left": -70.3125, - "top": -68.138852, - "right": -68.90625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 195, - "left": -68.90625, - "top": -68.138852, - "right": -67.5, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 195, - "left": -67.5, - "top": -68.138852, - "right": -66.09375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 195, - "left": -66.09375, - "top": -68.138852, - "right": -64.6875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 195, - "left": -64.6875, - "top": -68.138852, - "right": -63.28125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 195, - "left": -63.28125, - "top": -68.138852, - "right": -61.875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 195, - "left": 32.34375, - "top": -68.138852, - "right": 33.75, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 195, - "left": 33.75, - "top": -68.138852, - "right": 35.15625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 195, - "left": 40.78125, - "top": -68.138852, - "right": 42.1875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 195, - "left": 42.1875, - "top": -68.138852, - "right": 43.59375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 195, - "left": 43.59375, - "top": -68.138852, - "right": 45.0, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 195, - "left": 45.0, - "top": -68.138852, - "right": 46.40625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 195, - "left": 46.40625, - "top": -68.138852, - "right": 47.8125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 195, - "left": 47.8125, - "top": -68.138852, - "right": 49.21875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 195, - "left": 49.21875, - "top": -68.138852, - "right": 50.625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 195, - "left": 50.625, - "top": -68.138852, - "right": 52.03125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 195, - "left": 52.03125, - "top": -68.138852, - "right": 53.4375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 195, - "left": 53.4375, - "top": -68.138852, - "right": 54.84375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 195, - "left": 54.84375, - "top": -68.138852, - "right": 56.25, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 195, - "left": 56.25, - "top": -68.138852, - "right": 57.65625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 195, - "left": 57.65625, - "top": -68.138852, - "right": 59.0625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 195, - "left": 59.0625, - "top": -68.138852, - "right": 60.46875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 195, - "left": 60.46875, - "top": -68.138852, - "right": 61.875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 195, - "left": 61.875, - "top": -68.138852, - "right": 63.28125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 195, - "left": 63.28125, - "top": -68.138852, - "right": 64.6875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 195, - "left": 64.6875, - "top": -68.138852, - "right": 66.09375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 195, - "left": 66.09375, - "top": -68.138852, - "right": 67.5, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 195, - "left": 67.5, - "top": -68.138852, - "right": 68.90625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 195, - "left": 68.90625, - "top": -68.138852, - "right": 70.3125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 195, - "left": 77.34375, - "top": -68.138852, - "right": 78.75, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 195, - "left": 78.75, - "top": -68.138852, - "right": 80.15625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 195, - "left": 80.15625, - "top": -68.138852, - "right": 81.5625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 195, - "left": 81.5625, - "top": -68.138852, - "right": 82.96875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 195, - "left": 82.96875, - "top": -68.138852, - "right": 84.375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 195, - "left": 84.375, - "top": -68.138852, - "right": 85.78125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 195, - "left": 85.78125, - "top": -68.138852, - "right": 87.1875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 195, - "left": 87.1875, - "top": -68.138852, - "right": 88.59375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 195, - "left": 88.59375, - "top": -68.138852, - "right": 90.0, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 195, - "left": 90.0, - "top": -68.138852, - "right": 91.40625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 195, - "left": 91.40625, - "top": -68.138852, - "right": 92.8125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 195, - "left": 92.8125, - "top": -68.138852, - "right": 94.21875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 195, - "left": 94.21875, - "top": -68.138852, - "right": 95.625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 195, - "left": 95.625, - "top": -68.138852, - "right": 97.03125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 195, - "left": 97.03125, - "top": -68.138852, - "right": 98.4375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 195, - "left": 98.4375, - "top": -68.138852, - "right": 99.84375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 195, - "left": 99.84375, - "top": -68.138852, - "right": 101.25, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 195, - "left": 101.25, - "top": -68.138852, - "right": 102.65625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 195, - "left": 102.65625, - "top": -68.138852, - "right": 104.0625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 195, - "left": 104.0625, - "top": -68.138852, - "right": 105.46875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 195, - "left": 105.46875, - "top": -68.138852, - "right": 106.875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 195, - "left": 106.875, - "top": -68.138852, - "right": 108.28125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 195, - "left": 108.28125, - "top": -68.138852, - "right": 109.6875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 195, - "left": 109.6875, - "top": -68.138852, - "right": 111.09375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 195, - "left": 111.09375, - "top": -68.138852, - "right": 112.5, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 195, - "left": 112.5, - "top": -68.138852, - "right": 113.90625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 195, - "left": 113.90625, - "top": -68.138852, - "right": 115.3125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 195, - "left": 115.3125, - "top": -68.138852, - "right": 116.71875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 195, - "left": 116.71875, - "top": -68.138852, - "right": 118.125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 195, - "left": 118.125, - "top": -68.138852, - "right": 119.53125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 195, - "left": 119.53125, - "top": -68.138852, - "right": 120.9375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 195, - "left": 120.9375, - "top": -68.138852, - "right": 122.34375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 195, - "left": 122.34375, - "top": -68.138852, - "right": 123.75, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 195, - "left": 123.75, - "top": -68.138852, - "right": 125.15625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 195, - "left": 125.15625, - "top": -68.138852, - "right": 126.5625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 195, - "left": 126.5625, - "top": -68.138852, - "right": 127.96875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 195, - "left": 127.96875, - "top": -68.138852, - "right": 129.375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 195, - "left": 129.375, - "top": -68.138852, - "right": 130.78125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 195, - "left": 130.78125, - "top": -68.138852, - "right": 132.1875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 195, - "left": 132.1875, - "top": -68.138852, - "right": 133.59375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 195, - "left": 133.59375, - "top": -68.138852, - "right": 135.0, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 195, - "left": 135.0, - "top": -68.138852, - "right": 136.40625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 195, - "left": 136.40625, - "top": -68.138852, - "right": 137.8125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 195, - "left": 137.8125, - "top": -68.138852, - "right": 139.21875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 195, - "left": 139.21875, - "top": -68.138852, - "right": 140.625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 195, - "left": 140.625, - "top": -68.138852, - "right": 142.03125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 195, - "left": 142.03125, - "top": -68.138852, - "right": 143.4375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 195, - "left": 143.4375, - "top": -68.138852, - "right": 144.84375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 195, - "left": 144.84375, - "top": -68.138852, - "right": 146.25, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 195, - "left": 146.25, - "top": -68.138852, - "right": 147.65625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 195, - "left": 147.65625, - "top": -68.138852, - "right": 149.0625, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 195, - "left": 149.0625, - "top": -68.138852, - "right": 150.46875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 195, - "left": 150.46875, - "top": -68.138852, - "right": 151.875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 195, - "left": 151.875, - "top": -68.138852, - "right": 153.28125, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 195, - "left": 153.28125, - "top": -68.138852, - "right": 154.6875, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 195, - "left": 154.6875, - "top": -68.138852, - "right": 156.09375, - "bottom": -68.656555, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 196, - "left": -91.40625, - "top": -68.656555, - "right": -90.0, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 196, - "left": -73.125, - "top": -68.656555, - "right": -71.71875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 196, - "left": -71.71875, - "top": -68.656555, - "right": -70.3125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 196, - "left": -70.3125, - "top": -68.656555, - "right": -68.90625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 196, - "left": -68.90625, - "top": -68.656555, - "right": -67.5, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 196, - "left": -67.5, - "top": -68.656555, - "right": -66.09375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 196, - "left": -66.09375, - "top": -68.656555, - "right": -64.6875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 196, - "left": -64.6875, - "top": -68.656555, - "right": -63.28125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 196, - "left": -63.28125, - "top": -68.656555, - "right": -61.875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 196, - "left": 32.34375, - "top": -68.656555, - "right": 33.75, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 196, - "left": 33.75, - "top": -68.656555, - "right": 35.15625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 196, - "left": 35.15625, - "top": -68.656555, - "right": 36.5625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 196, - "left": 39.375, - "top": -68.656555, - "right": 40.78125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 196, - "left": 40.78125, - "top": -68.656555, - "right": 42.1875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 196, - "left": 42.1875, - "top": -68.656555, - "right": 43.59375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 196, - "left": 43.59375, - "top": -68.656555, - "right": 45.0, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 196, - "left": 45.0, - "top": -68.656555, - "right": 46.40625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 196, - "left": 46.40625, - "top": -68.656555, - "right": 47.8125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 196, - "left": 47.8125, - "top": -68.656555, - "right": 49.21875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 196, - "left": 49.21875, - "top": -68.656555, - "right": 50.625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 196, - "left": 50.625, - "top": -68.656555, - "right": 52.03125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 196, - "left": 52.03125, - "top": -68.656555, - "right": 53.4375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 196, - "left": 53.4375, - "top": -68.656555, - "right": 54.84375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 196, - "left": 54.84375, - "top": -68.656555, - "right": 56.25, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 196, - "left": 56.25, - "top": -68.656555, - "right": 57.65625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 196, - "left": 57.65625, - "top": -68.656555, - "right": 59.0625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 196, - "left": 59.0625, - "top": -68.656555, - "right": 60.46875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 196, - "left": 60.46875, - "top": -68.656555, - "right": 61.875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 196, - "left": 61.875, - "top": -68.656555, - "right": 63.28125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 196, - "left": 63.28125, - "top": -68.656555, - "right": 64.6875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 196, - "left": 64.6875, - "top": -68.656555, - "right": 66.09375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 196, - "left": 66.09375, - "top": -68.656555, - "right": 67.5, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 196, - "left": 67.5, - "top": -68.656555, - "right": 68.90625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 196, - "left": 68.90625, - "top": -68.656555, - "right": 70.3125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 196, - "left": 77.34375, - "top": -68.656555, - "right": 78.75, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 196, - "left": 78.75, - "top": -68.656555, - "right": 80.15625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 196, - "left": 80.15625, - "top": -68.656555, - "right": 81.5625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 196, - "left": 81.5625, - "top": -68.656555, - "right": 82.96875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 196, - "left": 82.96875, - "top": -68.656555, - "right": 84.375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 196, - "left": 84.375, - "top": -68.656555, - "right": 85.78125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 196, - "left": 85.78125, - "top": -68.656555, - "right": 87.1875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 196, - "left": 87.1875, - "top": -68.656555, - "right": 88.59375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 196, - "left": 88.59375, - "top": -68.656555, - "right": 90.0, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 196, - "left": 90.0, - "top": -68.656555, - "right": 91.40625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 196, - "left": 91.40625, - "top": -68.656555, - "right": 92.8125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 196, - "left": 92.8125, - "top": -68.656555, - "right": 94.21875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 196, - "left": 94.21875, - "top": -68.656555, - "right": 95.625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 196, - "left": 95.625, - "top": -68.656555, - "right": 97.03125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 196, - "left": 97.03125, - "top": -68.656555, - "right": 98.4375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 196, - "left": 98.4375, - "top": -68.656555, - "right": 99.84375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 196, - "left": 99.84375, - "top": -68.656555, - "right": 101.25, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 196, - "left": 101.25, - "top": -68.656555, - "right": 102.65625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 196, - "left": 102.65625, - "top": -68.656555, - "right": 104.0625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 196, - "left": 104.0625, - "top": -68.656555, - "right": 105.46875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 196, - "left": 105.46875, - "top": -68.656555, - "right": 106.875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 196, - "left": 106.875, - "top": -68.656555, - "right": 108.28125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 196, - "left": 108.28125, - "top": -68.656555, - "right": 109.6875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 196, - "left": 109.6875, - "top": -68.656555, - "right": 111.09375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 196, - "left": 111.09375, - "top": -68.656555, - "right": 112.5, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 196, - "left": 112.5, - "top": -68.656555, - "right": 113.90625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 196, - "left": 113.90625, - "top": -68.656555, - "right": 115.3125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 196, - "left": 115.3125, - "top": -68.656555, - "right": 116.71875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 196, - "left": 116.71875, - "top": -68.656555, - "right": 118.125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 196, - "left": 118.125, - "top": -68.656555, - "right": 119.53125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 196, - "left": 119.53125, - "top": -68.656555, - "right": 120.9375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 196, - "left": 120.9375, - "top": -68.656555, - "right": 122.34375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 196, - "left": 122.34375, - "top": -68.656555, - "right": 123.75, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 196, - "left": 123.75, - "top": -68.656555, - "right": 125.15625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 196, - "left": 125.15625, - "top": -68.656555, - "right": 126.5625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 196, - "left": 126.5625, - "top": -68.656555, - "right": 127.96875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 196, - "left": 127.96875, - "top": -68.656555, - "right": 129.375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 196, - "left": 129.375, - "top": -68.656555, - "right": 130.78125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 196, - "left": 130.78125, - "top": -68.656555, - "right": 132.1875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 196, - "left": 132.1875, - "top": -68.656555, - "right": 133.59375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 196, - "left": 133.59375, - "top": -68.656555, - "right": 135.0, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 196, - "left": 135.0, - "top": -68.656555, - "right": 136.40625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 196, - "left": 136.40625, - "top": -68.656555, - "right": 137.8125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 196, - "left": 137.8125, - "top": -68.656555, - "right": 139.21875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 196, - "left": 139.21875, - "top": -68.656555, - "right": 140.625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 196, - "left": 140.625, - "top": -68.656555, - "right": 142.03125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 196, - "left": 142.03125, - "top": -68.656555, - "right": 143.4375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 196, - "left": 143.4375, - "top": -68.656555, - "right": 144.84375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 196, - "left": 144.84375, - "top": -68.656555, - "right": 146.25, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 196, - "left": 146.25, - "top": -68.656555, - "right": 147.65625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 196, - "left": 147.65625, - "top": -68.656555, - "right": 149.0625, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 196, - "left": 149.0625, - "top": -68.656555, - "right": 150.46875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 196, - "left": 150.46875, - "top": -68.656555, - "right": 151.875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 196, - "left": 151.875, - "top": -68.656555, - "right": 153.28125, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 196, - "left": 153.28125, - "top": -68.656555, - "right": 154.6875, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 196, - "left": 154.6875, - "top": -68.656555, - "right": 156.09375, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 196, - "left": 156.09375, - "top": -68.656555, - "right": 157.5, - "bottom": -69.162558, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 197, - "left": -77.34375, - "top": -69.162558, - "right": -75.9375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 197, - "left": -75.9375, - "top": -69.162558, - "right": -74.53125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 197, - "left": -73.125, - "top": -69.162558, - "right": -71.71875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 197, - "left": -71.71875, - "top": -69.162558, - "right": -70.3125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 197, - "left": -70.3125, - "top": -69.162558, - "right": -68.90625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 197, - "left": -68.90625, - "top": -69.162558, - "right": -67.5, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 197, - "left": -67.5, - "top": -69.162558, - "right": -66.09375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 197, - "left": -66.09375, - "top": -69.162558, - "right": -64.6875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 197, - "left": -64.6875, - "top": -69.162558, - "right": -63.28125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 197, - "left": -63.28125, - "top": -69.162558, - "right": -61.875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 197, - "left": 30.9375, - "top": -69.162558, - "right": 32.34375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 197, - "left": 32.34375, - "top": -69.162558, - "right": 33.75, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 197, - "left": 33.75, - "top": -69.162558, - "right": 35.15625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 197, - "left": 35.15625, - "top": -69.162558, - "right": 36.5625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 197, - "left": 36.5625, - "top": -69.162558, - "right": 37.96875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 197, - "left": 37.96875, - "top": -69.162558, - "right": 39.375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 197, - "left": 39.375, - "top": -69.162558, - "right": 40.78125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 197, - "left": 40.78125, - "top": -69.162558, - "right": 42.1875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 197, - "left": 42.1875, - "top": -69.162558, - "right": 43.59375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 197, - "left": 43.59375, - "top": -69.162558, - "right": 45.0, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 197, - "left": 45.0, - "top": -69.162558, - "right": 46.40625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 197, - "left": 46.40625, - "top": -69.162558, - "right": 47.8125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 197, - "left": 47.8125, - "top": -69.162558, - "right": 49.21875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 197, - "left": 49.21875, - "top": -69.162558, - "right": 50.625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 197, - "left": 50.625, - "top": -69.162558, - "right": 52.03125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 197, - "left": 52.03125, - "top": -69.162558, - "right": 53.4375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 197, - "left": 53.4375, - "top": -69.162558, - "right": 54.84375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 197, - "left": 54.84375, - "top": -69.162558, - "right": 56.25, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 197, - "left": 56.25, - "top": -69.162558, - "right": 57.65625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 197, - "left": 57.65625, - "top": -69.162558, - "right": 59.0625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 197, - "left": 59.0625, - "top": -69.162558, - "right": 60.46875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 197, - "left": 60.46875, - "top": -69.162558, - "right": 61.875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 197, - "left": 61.875, - "top": -69.162558, - "right": 63.28125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 197, - "left": 63.28125, - "top": -69.162558, - "right": 64.6875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 197, - "left": 64.6875, - "top": -69.162558, - "right": 66.09375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 197, - "left": 66.09375, - "top": -69.162558, - "right": 67.5, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 197, - "left": 67.5, - "top": -69.162558, - "right": 68.90625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 197, - "left": 68.90625, - "top": -69.162558, - "right": 70.3125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 197, - "left": 75.9375, - "top": -69.162558, - "right": 77.34375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 197, - "left": 77.34375, - "top": -69.162558, - "right": 78.75, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 197, - "left": 78.75, - "top": -69.162558, - "right": 80.15625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 197, - "left": 80.15625, - "top": -69.162558, - "right": 81.5625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 197, - "left": 81.5625, - "top": -69.162558, - "right": 82.96875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 197, - "left": 82.96875, - "top": -69.162558, - "right": 84.375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 197, - "left": 84.375, - "top": -69.162558, - "right": 85.78125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 197, - "left": 85.78125, - "top": -69.162558, - "right": 87.1875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 197, - "left": 87.1875, - "top": -69.162558, - "right": 88.59375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 197, - "left": 88.59375, - "top": -69.162558, - "right": 90.0, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 197, - "left": 90.0, - "top": -69.162558, - "right": 91.40625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 197, - "left": 91.40625, - "top": -69.162558, - "right": 92.8125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 197, - "left": 92.8125, - "top": -69.162558, - "right": 94.21875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 197, - "left": 94.21875, - "top": -69.162558, - "right": 95.625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 197, - "left": 95.625, - "top": -69.162558, - "right": 97.03125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 197, - "left": 97.03125, - "top": -69.162558, - "right": 98.4375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 197, - "left": 98.4375, - "top": -69.162558, - "right": 99.84375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 197, - "left": 99.84375, - "top": -69.162558, - "right": 101.25, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 197, - "left": 101.25, - "top": -69.162558, - "right": 102.65625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 197, - "left": 102.65625, - "top": -69.162558, - "right": 104.0625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 197, - "left": 104.0625, - "top": -69.162558, - "right": 105.46875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 197, - "left": 105.46875, - "top": -69.162558, - "right": 106.875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 197, - "left": 106.875, - "top": -69.162558, - "right": 108.28125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 197, - "left": 108.28125, - "top": -69.162558, - "right": 109.6875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 197, - "left": 109.6875, - "top": -69.162558, - "right": 111.09375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 197, - "left": 111.09375, - "top": -69.162558, - "right": 112.5, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 197, - "left": 112.5, - "top": -69.162558, - "right": 113.90625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 197, - "left": 113.90625, - "top": -69.162558, - "right": 115.3125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 197, - "left": 115.3125, - "top": -69.162558, - "right": 116.71875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 197, - "left": 116.71875, - "top": -69.162558, - "right": 118.125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 197, - "left": 118.125, - "top": -69.162558, - "right": 119.53125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 197, - "left": 119.53125, - "top": -69.162558, - "right": 120.9375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 197, - "left": 120.9375, - "top": -69.162558, - "right": 122.34375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 197, - "left": 122.34375, - "top": -69.162558, - "right": 123.75, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 197, - "left": 123.75, - "top": -69.162558, - "right": 125.15625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 197, - "left": 125.15625, - "top": -69.162558, - "right": 126.5625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 197, - "left": 126.5625, - "top": -69.162558, - "right": 127.96875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 197, - "left": 127.96875, - "top": -69.162558, - "right": 129.375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 197, - "left": 129.375, - "top": -69.162558, - "right": 130.78125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 197, - "left": 130.78125, - "top": -69.162558, - "right": 132.1875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 197, - "left": 132.1875, - "top": -69.162558, - "right": 133.59375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 197, - "left": 133.59375, - "top": -69.162558, - "right": 135.0, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 197, - "left": 135.0, - "top": -69.162558, - "right": 136.40625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 197, - "left": 136.40625, - "top": -69.162558, - "right": 137.8125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 197, - "left": 137.8125, - "top": -69.162558, - "right": 139.21875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 197, - "left": 139.21875, - "top": -69.162558, - "right": 140.625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 197, - "left": 140.625, - "top": -69.162558, - "right": 142.03125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 197, - "left": 142.03125, - "top": -69.162558, - "right": 143.4375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 197, - "left": 143.4375, - "top": -69.162558, - "right": 144.84375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 197, - "left": 144.84375, - "top": -69.162558, - "right": 146.25, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 197, - "left": 146.25, - "top": -69.162558, - "right": 147.65625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 197, - "left": 147.65625, - "top": -69.162558, - "right": 149.0625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 197, - "left": 149.0625, - "top": -69.162558, - "right": 150.46875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 197, - "left": 150.46875, - "top": -69.162558, - "right": 151.875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 197, - "left": 151.875, - "top": -69.162558, - "right": 153.28125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 197, - "left": 153.28125, - "top": -69.162558, - "right": 154.6875, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 197, - "left": 154.6875, - "top": -69.162558, - "right": 156.09375, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 197, - "left": 156.09375, - "top": -69.162558, - "right": 157.5, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 197, - "left": 157.5, - "top": -69.162558, - "right": 158.90625, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 197, - "left": 158.90625, - "top": -69.162558, - "right": 160.3125, - "bottom": -69.657086, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 198, - "left": -77.34375, - "top": -69.657086, - "right": -75.9375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 198, - "left": -75.9375, - "top": -69.657086, - "right": -74.53125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 198, - "left": -74.53125, - "top": -69.657086, - "right": -73.125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 198, - "left": -73.125, - "top": -69.657086, - "right": -71.71875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 198, - "left": -71.71875, - "top": -69.657086, - "right": -70.3125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 198, - "left": -70.3125, - "top": -69.657086, - "right": -68.90625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 198, - "left": -68.90625, - "top": -69.657086, - "right": -67.5, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 198, - "left": -67.5, - "top": -69.657086, - "right": -66.09375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 198, - "left": -66.09375, - "top": -69.657086, - "right": -64.6875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 198, - "left": -64.6875, - "top": -69.657086, - "right": -63.28125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 198, - "left": -63.28125, - "top": -69.657086, - "right": -61.875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 198, - "left": -61.875, - "top": -69.657086, - "right": -60.46875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 198, - "left": 26.71875, - "top": -69.657086, - "right": 28.125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 198, - "left": 28.125, - "top": -69.657086, - "right": 29.53125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 198, - "left": 29.53125, - "top": -69.657086, - "right": 30.9375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 198, - "left": 30.9375, - "top": -69.657086, - "right": 32.34375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 198, - "left": 32.34375, - "top": -69.657086, - "right": 33.75, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 198, - "left": 33.75, - "top": -69.657086, - "right": 35.15625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 198, - "left": 35.15625, - "top": -69.657086, - "right": 36.5625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 198, - "left": 36.5625, - "top": -69.657086, - "right": 37.96875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 198, - "left": 37.96875, - "top": -69.657086, - "right": 39.375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 198, - "left": 39.375, - "top": -69.657086, - "right": 40.78125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 198, - "left": 40.78125, - "top": -69.657086, - "right": 42.1875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 198, - "left": 42.1875, - "top": -69.657086, - "right": 43.59375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 198, - "left": 43.59375, - "top": -69.657086, - "right": 45.0, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 198, - "left": 45.0, - "top": -69.657086, - "right": 46.40625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 198, - "left": 46.40625, - "top": -69.657086, - "right": 47.8125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 198, - "left": 47.8125, - "top": -69.657086, - "right": 49.21875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 198, - "left": 49.21875, - "top": -69.657086, - "right": 50.625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 198, - "left": 50.625, - "top": -69.657086, - "right": 52.03125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 198, - "left": 52.03125, - "top": -69.657086, - "right": 53.4375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 198, - "left": 53.4375, - "top": -69.657086, - "right": 54.84375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 198, - "left": 54.84375, - "top": -69.657086, - "right": 56.25, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 198, - "left": 56.25, - "top": -69.657086, - "right": 57.65625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 198, - "left": 57.65625, - "top": -69.657086, - "right": 59.0625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 198, - "left": 59.0625, - "top": -69.657086, - "right": 60.46875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 198, - "left": 60.46875, - "top": -69.657086, - "right": 61.875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 198, - "left": 61.875, - "top": -69.657086, - "right": 63.28125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 198, - "left": 63.28125, - "top": -69.657086, - "right": 64.6875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 198, - "left": 64.6875, - "top": -69.657086, - "right": 66.09375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 198, - "left": 66.09375, - "top": -69.657086, - "right": 67.5, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 198, - "left": 67.5, - "top": -69.657086, - "right": 68.90625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 198, - "left": 68.90625, - "top": -69.657086, - "right": 70.3125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 198, - "left": 70.3125, - "top": -69.657086, - "right": 71.71875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 198, - "left": 71.71875, - "top": -69.657086, - "right": 73.125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 198, - "left": 73.125, - "top": -69.657086, - "right": 74.53125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 198, - "left": 74.53125, - "top": -69.657086, - "right": 75.9375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 198, - "left": 75.9375, - "top": -69.657086, - "right": 77.34375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 198, - "left": 77.34375, - "top": -69.657086, - "right": 78.75, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 198, - "left": 78.75, - "top": -69.657086, - "right": 80.15625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 198, - "left": 80.15625, - "top": -69.657086, - "right": 81.5625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 198, - "left": 81.5625, - "top": -69.657086, - "right": 82.96875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 198, - "left": 82.96875, - "top": -69.657086, - "right": 84.375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 198, - "left": 84.375, - "top": -69.657086, - "right": 85.78125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 198, - "left": 85.78125, - "top": -69.657086, - "right": 87.1875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 198, - "left": 87.1875, - "top": -69.657086, - "right": 88.59375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 198, - "left": 88.59375, - "top": -69.657086, - "right": 90.0, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 198, - "left": 90.0, - "top": -69.657086, - "right": 91.40625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 198, - "left": 91.40625, - "top": -69.657086, - "right": 92.8125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 198, - "left": 92.8125, - "top": -69.657086, - "right": 94.21875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 198, - "left": 94.21875, - "top": -69.657086, - "right": 95.625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 198, - "left": 95.625, - "top": -69.657086, - "right": 97.03125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 198, - "left": 97.03125, - "top": -69.657086, - "right": 98.4375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 198, - "left": 98.4375, - "top": -69.657086, - "right": 99.84375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 198, - "left": 99.84375, - "top": -69.657086, - "right": 101.25, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 198, - "left": 101.25, - "top": -69.657086, - "right": 102.65625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 198, - "left": 102.65625, - "top": -69.657086, - "right": 104.0625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 198, - "left": 104.0625, - "top": -69.657086, - "right": 105.46875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 198, - "left": 105.46875, - "top": -69.657086, - "right": 106.875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 198, - "left": 106.875, - "top": -69.657086, - "right": 108.28125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 198, - "left": 108.28125, - "top": -69.657086, - "right": 109.6875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 198, - "left": 109.6875, - "top": -69.657086, - "right": 111.09375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 198, - "left": 111.09375, - "top": -69.657086, - "right": 112.5, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 198, - "left": 112.5, - "top": -69.657086, - "right": 113.90625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 198, - "left": 113.90625, - "top": -69.657086, - "right": 115.3125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 198, - "left": 115.3125, - "top": -69.657086, - "right": 116.71875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 198, - "left": 116.71875, - "top": -69.657086, - "right": 118.125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 198, - "left": 118.125, - "top": -69.657086, - "right": 119.53125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 198, - "left": 119.53125, - "top": -69.657086, - "right": 120.9375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 198, - "left": 120.9375, - "top": -69.657086, - "right": 122.34375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 198, - "left": 122.34375, - "top": -69.657086, - "right": 123.75, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 198, - "left": 123.75, - "top": -69.657086, - "right": 125.15625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 198, - "left": 125.15625, - "top": -69.657086, - "right": 126.5625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 198, - "left": 126.5625, - "top": -69.657086, - "right": 127.96875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 198, - "left": 127.96875, - "top": -69.657086, - "right": 129.375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 198, - "left": 129.375, - "top": -69.657086, - "right": 130.78125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 198, - "left": 130.78125, - "top": -69.657086, - "right": 132.1875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 198, - "left": 132.1875, - "top": -69.657086, - "right": 133.59375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 198, - "left": 133.59375, - "top": -69.657086, - "right": 135.0, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 198, - "left": 135.0, - "top": -69.657086, - "right": 136.40625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 198, - "left": 136.40625, - "top": -69.657086, - "right": 137.8125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 198, - "left": 137.8125, - "top": -69.657086, - "right": 139.21875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 198, - "left": 139.21875, - "top": -69.657086, - "right": 140.625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 198, - "left": 140.625, - "top": -69.657086, - "right": 142.03125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 198, - "left": 142.03125, - "top": -69.657086, - "right": 143.4375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 198, - "left": 143.4375, - "top": -69.657086, - "right": 144.84375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 198, - "left": 144.84375, - "top": -69.657086, - "right": 146.25, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 198, - "left": 146.25, - "top": -69.657086, - "right": 147.65625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 198, - "left": 147.65625, - "top": -69.657086, - "right": 149.0625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 198, - "left": 149.0625, - "top": -69.657086, - "right": 150.46875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 198, - "left": 150.46875, - "top": -69.657086, - "right": 151.875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 198, - "left": 151.875, - "top": -69.657086, - "right": 153.28125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 198, - "left": 153.28125, - "top": -69.657086, - "right": 154.6875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 198, - "left": 154.6875, - "top": -69.657086, - "right": 156.09375, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 198, - "left": 156.09375, - "top": -69.657086, - "right": 157.5, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 198, - "left": 157.5, - "top": -69.657086, - "right": 158.90625, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 198, - "left": 158.90625, - "top": -69.657086, - "right": 160.3125, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 198, - "left": 160.3125, - "top": -69.657086, - "right": 161.71875, - "bottom": -70.140364, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 199, - "left": -75.9375, - "top": -70.140364, - "right": -74.53125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 199, - "left": -74.53125, - "top": -70.140364, - "right": -73.125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 199, - "left": -71.71875, - "top": -70.140364, - "right": -70.3125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 199, - "left": -70.3125, - "top": -70.140364, - "right": -68.90625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 199, - "left": -68.90625, - "top": -70.140364, - "right": -67.5, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 199, - "left": -67.5, - "top": -70.140364, - "right": -66.09375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 199, - "left": -66.09375, - "top": -70.140364, - "right": -64.6875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 199, - "left": -64.6875, - "top": -70.140364, - "right": -63.28125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 199, - "left": -63.28125, - "top": -70.140364, - "right": -61.875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 199, - "left": -61.875, - "top": -70.140364, - "right": -60.46875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 199, - "left": -4.21875, - "top": -70.140364, - "right": -2.8125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 199, - "left": -2.8125, - "top": -70.140364, - "right": -1.40625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 199, - "left": 1.40625, - "top": -70.140364, - "right": 2.8125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 199, - "left": 2.8125, - "top": -70.140364, - "right": 4.21875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 199, - "left": 4.21875, - "top": -70.140364, - "right": 5.625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 199, - "left": 5.625, - "top": -70.140364, - "right": 7.03125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 199, - "left": 7.03125, - "top": -70.140364, - "right": 8.4375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 199, - "left": 8.4375, - "top": -70.140364, - "right": 9.84375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 199, - "left": 9.84375, - "top": -70.140364, - "right": 11.25, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 199, - "left": 11.25, - "top": -70.140364, - "right": 12.65625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 199, - "left": 12.65625, - "top": -70.140364, - "right": 14.0625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 199, - "left": 14.0625, - "top": -70.140364, - "right": 15.46875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 199, - "left": 15.46875, - "top": -70.140364, - "right": 16.875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 199, - "left": 16.875, - "top": -70.140364, - "right": 18.28125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 199, - "left": 18.28125, - "top": -70.140364, - "right": 19.6875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 199, - "left": 19.6875, - "top": -70.140364, - "right": 21.09375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 199, - "left": 21.09375, - "top": -70.140364, - "right": 22.5, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 199, - "left": 22.5, - "top": -70.140364, - "right": 23.90625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 199, - "left": 23.90625, - "top": -70.140364, - "right": 25.3125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 199, - "left": 25.3125, - "top": -70.140364, - "right": 26.71875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 199, - "left": 26.71875, - "top": -70.140364, - "right": 28.125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 199, - "left": 28.125, - "top": -70.140364, - "right": 29.53125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 199, - "left": 29.53125, - "top": -70.140364, - "right": 30.9375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 199, - "left": 30.9375, - "top": -70.140364, - "right": 32.34375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 199, - "left": 32.34375, - "top": -70.140364, - "right": 33.75, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 199, - "left": 33.75, - "top": -70.140364, - "right": 35.15625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 199, - "left": 35.15625, - "top": -70.140364, - "right": 36.5625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 199, - "left": 36.5625, - "top": -70.140364, - "right": 37.96875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 199, - "left": 37.96875, - "top": -70.140364, - "right": 39.375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 199, - "left": 39.375, - "top": -70.140364, - "right": 40.78125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 199, - "left": 40.78125, - "top": -70.140364, - "right": 42.1875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 199, - "left": 42.1875, - "top": -70.140364, - "right": 43.59375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 199, - "left": 43.59375, - "top": -70.140364, - "right": 45.0, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 199, - "left": 45.0, - "top": -70.140364, - "right": 46.40625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 199, - "left": 46.40625, - "top": -70.140364, - "right": 47.8125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 199, - "left": 47.8125, - "top": -70.140364, - "right": 49.21875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 199, - "left": 49.21875, - "top": -70.140364, - "right": 50.625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 199, - "left": 50.625, - "top": -70.140364, - "right": 52.03125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 199, - "left": 52.03125, - "top": -70.140364, - "right": 53.4375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 199, - "left": 53.4375, - "top": -70.140364, - "right": 54.84375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 199, - "left": 54.84375, - "top": -70.140364, - "right": 56.25, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 199, - "left": 56.25, - "top": -70.140364, - "right": 57.65625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 199, - "left": 57.65625, - "top": -70.140364, - "right": 59.0625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 199, - "left": 59.0625, - "top": -70.140364, - "right": 60.46875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 199, - "left": 60.46875, - "top": -70.140364, - "right": 61.875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 199, - "left": 61.875, - "top": -70.140364, - "right": 63.28125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 199, - "left": 63.28125, - "top": -70.140364, - "right": 64.6875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 199, - "left": 64.6875, - "top": -70.140364, - "right": 66.09375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 199, - "left": 66.09375, - "top": -70.140364, - "right": 67.5, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 199, - "left": 67.5, - "top": -70.140364, - "right": 68.90625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 199, - "left": 68.90625, - "top": -70.140364, - "right": 70.3125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 199, - "left": 70.3125, - "top": -70.140364, - "right": 71.71875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 199, - "left": 71.71875, - "top": -70.140364, - "right": 73.125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 199, - "left": 73.125, - "top": -70.140364, - "right": 74.53125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 199, - "left": 74.53125, - "top": -70.140364, - "right": 75.9375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 199, - "left": 75.9375, - "top": -70.140364, - "right": 77.34375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 199, - "left": 77.34375, - "top": -70.140364, - "right": 78.75, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 199, - "left": 78.75, - "top": -70.140364, - "right": 80.15625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 199, - "left": 80.15625, - "top": -70.140364, - "right": 81.5625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 199, - "left": 81.5625, - "top": -70.140364, - "right": 82.96875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 199, - "left": 82.96875, - "top": -70.140364, - "right": 84.375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 199, - "left": 84.375, - "top": -70.140364, - "right": 85.78125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 199, - "left": 85.78125, - "top": -70.140364, - "right": 87.1875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 199, - "left": 87.1875, - "top": -70.140364, - "right": 88.59375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 199, - "left": 88.59375, - "top": -70.140364, - "right": 90.0, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 199, - "left": 90.0, - "top": -70.140364, - "right": 91.40625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 199, - "left": 91.40625, - "top": -70.140364, - "right": 92.8125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 199, - "left": 92.8125, - "top": -70.140364, - "right": 94.21875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 199, - "left": 94.21875, - "top": -70.140364, - "right": 95.625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 199, - "left": 95.625, - "top": -70.140364, - "right": 97.03125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 199, - "left": 97.03125, - "top": -70.140364, - "right": 98.4375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 199, - "left": 98.4375, - "top": -70.140364, - "right": 99.84375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 199, - "left": 99.84375, - "top": -70.140364, - "right": 101.25, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 199, - "left": 101.25, - "top": -70.140364, - "right": 102.65625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 199, - "left": 102.65625, - "top": -70.140364, - "right": 104.0625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 199, - "left": 104.0625, - "top": -70.140364, - "right": 105.46875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 199, - "left": 105.46875, - "top": -70.140364, - "right": 106.875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 199, - "left": 106.875, - "top": -70.140364, - "right": 108.28125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 199, - "left": 108.28125, - "top": -70.140364, - "right": 109.6875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 199, - "left": 109.6875, - "top": -70.140364, - "right": 111.09375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 199, - "left": 111.09375, - "top": -70.140364, - "right": 112.5, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 199, - "left": 112.5, - "top": -70.140364, - "right": 113.90625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 199, - "left": 113.90625, - "top": -70.140364, - "right": 115.3125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 199, - "left": 115.3125, - "top": -70.140364, - "right": 116.71875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 199, - "left": 116.71875, - "top": -70.140364, - "right": 118.125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 199, - "left": 118.125, - "top": -70.140364, - "right": 119.53125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 199, - "left": 119.53125, - "top": -70.140364, - "right": 120.9375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 199, - "left": 120.9375, - "top": -70.140364, - "right": 122.34375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 199, - "left": 122.34375, - "top": -70.140364, - "right": 123.75, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 199, - "left": 123.75, - "top": -70.140364, - "right": 125.15625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 199, - "left": 125.15625, - "top": -70.140364, - "right": 126.5625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 199, - "left": 126.5625, - "top": -70.140364, - "right": 127.96875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 199, - "left": 127.96875, - "top": -70.140364, - "right": 129.375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 199, - "left": 129.375, - "top": -70.140364, - "right": 130.78125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 199, - "left": 130.78125, - "top": -70.140364, - "right": 132.1875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 199, - "left": 132.1875, - "top": -70.140364, - "right": 133.59375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 199, - "left": 133.59375, - "top": -70.140364, - "right": 135.0, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 199, - "left": 135.0, - "top": -70.140364, - "right": 136.40625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 199, - "left": 136.40625, - "top": -70.140364, - "right": 137.8125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 199, - "left": 137.8125, - "top": -70.140364, - "right": 139.21875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 199, - "left": 139.21875, - "top": -70.140364, - "right": 140.625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 199, - "left": 140.625, - "top": -70.140364, - "right": 142.03125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 199, - "left": 142.03125, - "top": -70.140364, - "right": 143.4375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 199, - "left": 143.4375, - "top": -70.140364, - "right": 144.84375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 199, - "left": 144.84375, - "top": -70.140364, - "right": 146.25, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 199, - "left": 146.25, - "top": -70.140364, - "right": 147.65625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 199, - "left": 147.65625, - "top": -70.140364, - "right": 149.0625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 199, - "left": 149.0625, - "top": -70.140364, - "right": 150.46875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 199, - "left": 150.46875, - "top": -70.140364, - "right": 151.875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 199, - "left": 151.875, - "top": -70.140364, - "right": 153.28125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 199, - "left": 153.28125, - "top": -70.140364, - "right": 154.6875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 199, - "left": 154.6875, - "top": -70.140364, - "right": 156.09375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 199, - "left": 156.09375, - "top": -70.140364, - "right": 157.5, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 199, - "left": 157.5, - "top": -70.140364, - "right": 158.90625, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 199, - "left": 158.90625, - "top": -70.140364, - "right": 160.3125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 199, - "left": 160.3125, - "top": -70.140364, - "right": 161.71875, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 199, - "left": 161.71875, - "top": -70.140364, - "right": 163.125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 199, - "left": 163.125, - "top": -70.140364, - "right": 164.53125, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 199, - "left": 164.53125, - "top": -70.140364, - "right": 165.9375, - "bottom": -70.612614, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 200, - "left": -75.9375, - "top": -70.612614, - "right": -74.53125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 200, - "left": -74.53125, - "top": -70.612614, - "right": -73.125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 200, - "left": -73.125, - "top": -70.612614, - "right": -71.71875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 200, - "left": -71.71875, - "top": -70.612614, - "right": -70.3125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 200, - "left": -70.3125, - "top": -70.612614, - "right": -68.90625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 200, - "left": -68.90625, - "top": -70.612614, - "right": -67.5, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 200, - "left": -67.5, - "top": -70.612614, - "right": -66.09375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 200, - "left": -66.09375, - "top": -70.612614, - "right": -64.6875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 200, - "left": -64.6875, - "top": -70.612614, - "right": -63.28125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 200, - "left": -63.28125, - "top": -70.612614, - "right": -61.875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 200, - "left": -61.875, - "top": -70.612614, - "right": -60.46875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 200, - "left": -60.46875, - "top": -70.612614, - "right": -59.0625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 200, - "left": -11.25, - "top": -70.612614, - "right": -9.84375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 200, - "left": -9.84375, - "top": -70.612614, - "right": -8.4375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 200, - "left": -8.4375, - "top": -70.612614, - "right": -7.03125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 200, - "left": -7.03125, - "top": -70.612614, - "right": -5.625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 200, - "left": -4.21875, - "top": -70.612614, - "right": -2.8125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 200, - "left": -2.8125, - "top": -70.612614, - "right": -1.40625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 200, - "left": 1.40625, - "top": -70.612614, - "right": 2.8125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 200, - "left": 2.8125, - "top": -70.612614, - "right": 4.21875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 200, - "left": 4.21875, - "top": -70.612614, - "right": 5.625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 200, - "left": 5.625, - "top": -70.612614, - "right": 7.03125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 200, - "left": 7.03125, - "top": -70.612614, - "right": 8.4375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 200, - "left": 8.4375, - "top": -70.612614, - "right": 9.84375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 200, - "left": 9.84375, - "top": -70.612614, - "right": 11.25, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 200, - "left": 11.25, - "top": -70.612614, - "right": 12.65625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 200, - "left": 12.65625, - "top": -70.612614, - "right": 14.0625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 200, - "left": 14.0625, - "top": -70.612614, - "right": 15.46875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 200, - "left": 15.46875, - "top": -70.612614, - "right": 16.875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 200, - "left": 16.875, - "top": -70.612614, - "right": 18.28125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 200, - "left": 18.28125, - "top": -70.612614, - "right": 19.6875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 200, - "left": 19.6875, - "top": -70.612614, - "right": 21.09375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 200, - "left": 21.09375, - "top": -70.612614, - "right": 22.5, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 200, - "left": 22.5, - "top": -70.612614, - "right": 23.90625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 200, - "left": 23.90625, - "top": -70.612614, - "right": 25.3125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 200, - "left": 25.3125, - "top": -70.612614, - "right": 26.71875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 200, - "left": 26.71875, - "top": -70.612614, - "right": 28.125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 200, - "left": 28.125, - "top": -70.612614, - "right": 29.53125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 200, - "left": 29.53125, - "top": -70.612614, - "right": 30.9375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 200, - "left": 30.9375, - "top": -70.612614, - "right": 32.34375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 200, - "left": 32.34375, - "top": -70.612614, - "right": 33.75, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 200, - "left": 33.75, - "top": -70.612614, - "right": 35.15625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 200, - "left": 35.15625, - "top": -70.612614, - "right": 36.5625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 200, - "left": 36.5625, - "top": -70.612614, - "right": 37.96875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 200, - "left": 37.96875, - "top": -70.612614, - "right": 39.375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 200, - "left": 39.375, - "top": -70.612614, - "right": 40.78125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 200, - "left": 40.78125, - "top": -70.612614, - "right": 42.1875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 200, - "left": 42.1875, - "top": -70.612614, - "right": 43.59375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 200, - "left": 43.59375, - "top": -70.612614, - "right": 45.0, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 200, - "left": 45.0, - "top": -70.612614, - "right": 46.40625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 200, - "left": 46.40625, - "top": -70.612614, - "right": 47.8125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 200, - "left": 47.8125, - "top": -70.612614, - "right": 49.21875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 200, - "left": 49.21875, - "top": -70.612614, - "right": 50.625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 200, - "left": 50.625, - "top": -70.612614, - "right": 52.03125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 200, - "left": 52.03125, - "top": -70.612614, - "right": 53.4375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 200, - "left": 53.4375, - "top": -70.612614, - "right": 54.84375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 200, - "left": 54.84375, - "top": -70.612614, - "right": 56.25, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 200, - "left": 56.25, - "top": -70.612614, - "right": 57.65625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 200, - "left": 57.65625, - "top": -70.612614, - "right": 59.0625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 200, - "left": 59.0625, - "top": -70.612614, - "right": 60.46875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 200, - "left": 60.46875, - "top": -70.612614, - "right": 61.875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 200, - "left": 61.875, - "top": -70.612614, - "right": 63.28125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 200, - "left": 63.28125, - "top": -70.612614, - "right": 64.6875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 200, - "left": 64.6875, - "top": -70.612614, - "right": 66.09375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 200, - "left": 66.09375, - "top": -70.612614, - "right": 67.5, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 200, - "left": 67.5, - "top": -70.612614, - "right": 68.90625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 200, - "left": 68.90625, - "top": -70.612614, - "right": 70.3125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 200, - "left": 71.71875, - "top": -70.612614, - "right": 73.125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 200, - "left": 73.125, - "top": -70.612614, - "right": 74.53125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 200, - "left": 74.53125, - "top": -70.612614, - "right": 75.9375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 200, - "left": 75.9375, - "top": -70.612614, - "right": 77.34375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 200, - "left": 77.34375, - "top": -70.612614, - "right": 78.75, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 200, - "left": 78.75, - "top": -70.612614, - "right": 80.15625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 200, - "left": 80.15625, - "top": -70.612614, - "right": 81.5625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 200, - "left": 81.5625, - "top": -70.612614, - "right": 82.96875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 200, - "left": 82.96875, - "top": -70.612614, - "right": 84.375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 200, - "left": 84.375, - "top": -70.612614, - "right": 85.78125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 200, - "left": 85.78125, - "top": -70.612614, - "right": 87.1875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 200, - "left": 87.1875, - "top": -70.612614, - "right": 88.59375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 200, - "left": 88.59375, - "top": -70.612614, - "right": 90.0, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 200, - "left": 90.0, - "top": -70.612614, - "right": 91.40625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 200, - "left": 91.40625, - "top": -70.612614, - "right": 92.8125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 200, - "left": 92.8125, - "top": -70.612614, - "right": 94.21875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 200, - "left": 94.21875, - "top": -70.612614, - "right": 95.625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 200, - "left": 95.625, - "top": -70.612614, - "right": 97.03125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 200, - "left": 97.03125, - "top": -70.612614, - "right": 98.4375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 200, - "left": 98.4375, - "top": -70.612614, - "right": 99.84375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 200, - "left": 99.84375, - "top": -70.612614, - "right": 101.25, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 200, - "left": 101.25, - "top": -70.612614, - "right": 102.65625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 200, - "left": 102.65625, - "top": -70.612614, - "right": 104.0625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 200, - "left": 104.0625, - "top": -70.612614, - "right": 105.46875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 200, - "left": 105.46875, - "top": -70.612614, - "right": 106.875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 200, - "left": 106.875, - "top": -70.612614, - "right": 108.28125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 200, - "left": 108.28125, - "top": -70.612614, - "right": 109.6875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 200, - "left": 109.6875, - "top": -70.612614, - "right": 111.09375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 200, - "left": 111.09375, - "top": -70.612614, - "right": 112.5, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 200, - "left": 112.5, - "top": -70.612614, - "right": 113.90625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 200, - "left": 113.90625, - "top": -70.612614, - "right": 115.3125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 200, - "left": 115.3125, - "top": -70.612614, - "right": 116.71875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 200, - "left": 116.71875, - "top": -70.612614, - "right": 118.125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 200, - "left": 118.125, - "top": -70.612614, - "right": 119.53125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 200, - "left": 119.53125, - "top": -70.612614, - "right": 120.9375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 200, - "left": 120.9375, - "top": -70.612614, - "right": 122.34375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 200, - "left": 122.34375, - "top": -70.612614, - "right": 123.75, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 200, - "left": 123.75, - "top": -70.612614, - "right": 125.15625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 200, - "left": 125.15625, - "top": -70.612614, - "right": 126.5625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 200, - "left": 126.5625, - "top": -70.612614, - "right": 127.96875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 200, - "left": 127.96875, - "top": -70.612614, - "right": 129.375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 200, - "left": 129.375, - "top": -70.612614, - "right": 130.78125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 200, - "left": 130.78125, - "top": -70.612614, - "right": 132.1875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 200, - "left": 132.1875, - "top": -70.612614, - "right": 133.59375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 200, - "left": 133.59375, - "top": -70.612614, - "right": 135.0, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 200, - "left": 135.0, - "top": -70.612614, - "right": 136.40625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 200, - "left": 136.40625, - "top": -70.612614, - "right": 137.8125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 200, - "left": 137.8125, - "top": -70.612614, - "right": 139.21875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 200, - "left": 139.21875, - "top": -70.612614, - "right": 140.625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 200, - "left": 140.625, - "top": -70.612614, - "right": 142.03125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 200, - "left": 142.03125, - "top": -70.612614, - "right": 143.4375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 200, - "left": 143.4375, - "top": -70.612614, - "right": 144.84375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 200, - "left": 144.84375, - "top": -70.612614, - "right": 146.25, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 200, - "left": 146.25, - "top": -70.612614, - "right": 147.65625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 200, - "left": 147.65625, - "top": -70.612614, - "right": 149.0625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 200, - "left": 149.0625, - "top": -70.612614, - "right": 150.46875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 200, - "left": 150.46875, - "top": -70.612614, - "right": 151.875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 200, - "left": 151.875, - "top": -70.612614, - "right": 153.28125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 200, - "left": 153.28125, - "top": -70.612614, - "right": 154.6875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 200, - "left": 154.6875, - "top": -70.612614, - "right": 156.09375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 200, - "left": 156.09375, - "top": -70.612614, - "right": 157.5, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 200, - "left": 157.5, - "top": -70.612614, - "right": 158.90625, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 200, - "left": 158.90625, - "top": -70.612614, - "right": 160.3125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 200, - "left": 160.3125, - "top": -70.612614, - "right": 161.71875, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 200, - "left": 161.71875, - "top": -70.612614, - "right": 163.125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 200, - "left": 163.125, - "top": -70.612614, - "right": 164.53125, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 200, - "left": 164.53125, - "top": -70.612614, - "right": 165.9375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 200, - "left": 165.9375, - "top": -70.612614, - "right": 167.34375, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 200, - "left": 167.34375, - "top": -70.612614, - "right": 168.75, - "bottom": -71.074056, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 201, - "left": -75.9375, - "top": -71.074056, - "right": -74.53125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 201, - "left": -74.53125, - "top": -71.074056, - "right": -73.125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 201, - "left": -73.125, - "top": -71.074056, - "right": -71.71875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 201, - "left": -71.71875, - "top": -71.074056, - "right": -70.3125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 201, - "left": -70.3125, - "top": -71.074056, - "right": -68.90625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 201, - "left": -68.90625, - "top": -71.074056, - "right": -67.5, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 201, - "left": -67.5, - "top": -71.074056, - "right": -66.09375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 201, - "left": -66.09375, - "top": -71.074056, - "right": -64.6875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 201, - "left": -64.6875, - "top": -71.074056, - "right": -63.28125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 201, - "left": -63.28125, - "top": -71.074056, - "right": -61.875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 201, - "left": -61.875, - "top": -71.074056, - "right": -60.46875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 201, - "left": -12.65625, - "top": -71.074056, - "right": -11.25, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 201, - "left": -11.25, - "top": -71.074056, - "right": -9.84375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 201, - "left": -9.84375, - "top": -71.074056, - "right": -8.4375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 201, - "left": -8.4375, - "top": -71.074056, - "right": -7.03125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 201, - "left": -7.03125, - "top": -71.074056, - "right": -5.625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 201, - "left": -5.625, - "top": -71.074056, - "right": -4.21875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 201, - "left": -4.21875, - "top": -71.074056, - "right": -2.8125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 201, - "left": -2.8125, - "top": -71.074056, - "right": -1.40625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 201, - "left": -1.40625, - "top": -71.074056, - "right": 0.0, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 201, - "left": 0.0, - "top": -71.074056, - "right": 1.40625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 201, - "left": 1.40625, - "top": -71.074056, - "right": 2.8125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 201, - "left": 2.8125, - "top": -71.074056, - "right": 4.21875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 201, - "left": 4.21875, - "top": -71.074056, - "right": 5.625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 201, - "left": 5.625, - "top": -71.074056, - "right": 7.03125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 201, - "left": 7.03125, - "top": -71.074056, - "right": 8.4375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 201, - "left": 8.4375, - "top": -71.074056, - "right": 9.84375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 201, - "left": 9.84375, - "top": -71.074056, - "right": 11.25, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 201, - "left": 11.25, - "top": -71.074056, - "right": 12.65625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 201, - "left": 12.65625, - "top": -71.074056, - "right": 14.0625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 201, - "left": 14.0625, - "top": -71.074056, - "right": 15.46875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 201, - "left": 15.46875, - "top": -71.074056, - "right": 16.875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 201, - "left": 16.875, - "top": -71.074056, - "right": 18.28125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 201, - "left": 18.28125, - "top": -71.074056, - "right": 19.6875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 201, - "left": 19.6875, - "top": -71.074056, - "right": 21.09375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 201, - "left": 21.09375, - "top": -71.074056, - "right": 22.5, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 201, - "left": 22.5, - "top": -71.074056, - "right": 23.90625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 201, - "left": 23.90625, - "top": -71.074056, - "right": 25.3125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 201, - "left": 25.3125, - "top": -71.074056, - "right": 26.71875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 201, - "left": 26.71875, - "top": -71.074056, - "right": 28.125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 201, - "left": 28.125, - "top": -71.074056, - "right": 29.53125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 201, - "left": 29.53125, - "top": -71.074056, - "right": 30.9375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 201, - "left": 30.9375, - "top": -71.074056, - "right": 32.34375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 201, - "left": 32.34375, - "top": -71.074056, - "right": 33.75, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 201, - "left": 33.75, - "top": -71.074056, - "right": 35.15625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 201, - "left": 35.15625, - "top": -71.074056, - "right": 36.5625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 201, - "left": 36.5625, - "top": -71.074056, - "right": 37.96875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 201, - "left": 37.96875, - "top": -71.074056, - "right": 39.375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 201, - "left": 39.375, - "top": -71.074056, - "right": 40.78125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 201, - "left": 40.78125, - "top": -71.074056, - "right": 42.1875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 201, - "left": 42.1875, - "top": -71.074056, - "right": 43.59375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 201, - "left": 43.59375, - "top": -71.074056, - "right": 45.0, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 201, - "left": 45.0, - "top": -71.074056, - "right": 46.40625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 201, - "left": 46.40625, - "top": -71.074056, - "right": 47.8125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 201, - "left": 47.8125, - "top": -71.074056, - "right": 49.21875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 201, - "left": 49.21875, - "top": -71.074056, - "right": 50.625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 201, - "left": 50.625, - "top": -71.074056, - "right": 52.03125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 201, - "left": 52.03125, - "top": -71.074056, - "right": 53.4375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 201, - "left": 53.4375, - "top": -71.074056, - "right": 54.84375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 201, - "left": 54.84375, - "top": -71.074056, - "right": 56.25, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 201, - "left": 56.25, - "top": -71.074056, - "right": 57.65625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 201, - "left": 57.65625, - "top": -71.074056, - "right": 59.0625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 201, - "left": 59.0625, - "top": -71.074056, - "right": 60.46875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 201, - "left": 60.46875, - "top": -71.074056, - "right": 61.875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 201, - "left": 61.875, - "top": -71.074056, - "right": 63.28125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 201, - "left": 63.28125, - "top": -71.074056, - "right": 64.6875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 201, - "left": 64.6875, - "top": -71.074056, - "right": 66.09375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 201, - "left": 66.09375, - "top": -71.074056, - "right": 67.5, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 201, - "left": 67.5, - "top": -71.074056, - "right": 68.90625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 201, - "left": 68.90625, - "top": -71.074056, - "right": 70.3125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 201, - "left": 70.3125, - "top": -71.074056, - "right": 71.71875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 201, - "left": 71.71875, - "top": -71.074056, - "right": 73.125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 201, - "left": 73.125, - "top": -71.074056, - "right": 74.53125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 201, - "left": 74.53125, - "top": -71.074056, - "right": 75.9375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 201, - "left": 75.9375, - "top": -71.074056, - "right": 77.34375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 201, - "left": 77.34375, - "top": -71.074056, - "right": 78.75, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 201, - "left": 78.75, - "top": -71.074056, - "right": 80.15625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 201, - "left": 80.15625, - "top": -71.074056, - "right": 81.5625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 201, - "left": 81.5625, - "top": -71.074056, - "right": 82.96875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 201, - "left": 82.96875, - "top": -71.074056, - "right": 84.375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 201, - "left": 84.375, - "top": -71.074056, - "right": 85.78125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 201, - "left": 85.78125, - "top": -71.074056, - "right": 87.1875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 201, - "left": 87.1875, - "top": -71.074056, - "right": 88.59375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 201, - "left": 88.59375, - "top": -71.074056, - "right": 90.0, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 201, - "left": 90.0, - "top": -71.074056, - "right": 91.40625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 201, - "left": 91.40625, - "top": -71.074056, - "right": 92.8125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 201, - "left": 92.8125, - "top": -71.074056, - "right": 94.21875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 201, - "left": 94.21875, - "top": -71.074056, - "right": 95.625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 201, - "left": 95.625, - "top": -71.074056, - "right": 97.03125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 201, - "left": 97.03125, - "top": -71.074056, - "right": 98.4375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 201, - "left": 98.4375, - "top": -71.074056, - "right": 99.84375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 201, - "left": 99.84375, - "top": -71.074056, - "right": 101.25, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 201, - "left": 101.25, - "top": -71.074056, - "right": 102.65625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 201, - "left": 102.65625, - "top": -71.074056, - "right": 104.0625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 201, - "left": 104.0625, - "top": -71.074056, - "right": 105.46875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 201, - "left": 105.46875, - "top": -71.074056, - "right": 106.875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 201, - "left": 106.875, - "top": -71.074056, - "right": 108.28125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 201, - "left": 108.28125, - "top": -71.074056, - "right": 109.6875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 201, - "left": 109.6875, - "top": -71.074056, - "right": 111.09375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 201, - "left": 111.09375, - "top": -71.074056, - "right": 112.5, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 201, - "left": 112.5, - "top": -71.074056, - "right": 113.90625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 201, - "left": 113.90625, - "top": -71.074056, - "right": 115.3125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 201, - "left": 115.3125, - "top": -71.074056, - "right": 116.71875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 201, - "left": 116.71875, - "top": -71.074056, - "right": 118.125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 201, - "left": 118.125, - "top": -71.074056, - "right": 119.53125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 201, - "left": 119.53125, - "top": -71.074056, - "right": 120.9375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 201, - "left": 120.9375, - "top": -71.074056, - "right": 122.34375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 201, - "left": 122.34375, - "top": -71.074056, - "right": 123.75, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 201, - "left": 123.75, - "top": -71.074056, - "right": 125.15625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 201, - "left": 125.15625, - "top": -71.074056, - "right": 126.5625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 201, - "left": 126.5625, - "top": -71.074056, - "right": 127.96875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 201, - "left": 127.96875, - "top": -71.074056, - "right": 129.375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 201, - "left": 129.375, - "top": -71.074056, - "right": 130.78125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 201, - "left": 130.78125, - "top": -71.074056, - "right": 132.1875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 201, - "left": 132.1875, - "top": -71.074056, - "right": 133.59375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 201, - "left": 133.59375, - "top": -71.074056, - "right": 135.0, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 201, - "left": 135.0, - "top": -71.074056, - "right": 136.40625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 201, - "left": 136.40625, - "top": -71.074056, - "right": 137.8125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 201, - "left": 137.8125, - "top": -71.074056, - "right": 139.21875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 201, - "left": 139.21875, - "top": -71.074056, - "right": 140.625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 201, - "left": 140.625, - "top": -71.074056, - "right": 142.03125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 201, - "left": 142.03125, - "top": -71.074056, - "right": 143.4375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 201, - "left": 143.4375, - "top": -71.074056, - "right": 144.84375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 201, - "left": 144.84375, - "top": -71.074056, - "right": 146.25, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 201, - "left": 146.25, - "top": -71.074056, - "right": 147.65625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 201, - "left": 147.65625, - "top": -71.074056, - "right": 149.0625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 201, - "left": 149.0625, - "top": -71.074056, - "right": 150.46875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 201, - "left": 150.46875, - "top": -71.074056, - "right": 151.875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 201, - "left": 151.875, - "top": -71.074056, - "right": 153.28125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 201, - "left": 153.28125, - "top": -71.074056, - "right": 154.6875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 201, - "left": 154.6875, - "top": -71.074056, - "right": 156.09375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 201, - "left": 156.09375, - "top": -71.074056, - "right": 157.5, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 201, - "left": 157.5, - "top": -71.074056, - "right": 158.90625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 201, - "left": 158.90625, - "top": -71.074056, - "right": 160.3125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 201, - "left": 160.3125, - "top": -71.074056, - "right": 161.71875, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 201, - "left": 161.71875, - "top": -71.074056, - "right": 163.125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 201, - "left": 163.125, - "top": -71.074056, - "right": 164.53125, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 201, - "left": 164.53125, - "top": -71.074056, - "right": 165.9375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 201, - "left": 165.9375, - "top": -71.074056, - "right": 167.34375, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 201, - "left": 167.34375, - "top": -71.074056, - "right": 168.75, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 201, - "left": 168.75, - "top": -71.074056, - "right": 170.15625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 201, - "left": 170.15625, - "top": -71.074056, - "right": 171.5625, - "bottom": -71.524909, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 202, - "left": -102.65625, - "top": -71.524909, - "right": -101.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 202, - "left": -101.25, - "top": -71.524909, - "right": -99.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 202, - "left": -99.84375, - "top": -71.524909, - "right": -98.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 202, - "left": -98.4375, - "top": -71.524909, - "right": -97.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 202, - "left": -97.03125, - "top": -71.524909, - "right": -95.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 202, - "left": -75.9375, - "top": -71.524909, - "right": -74.53125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 202, - "left": -74.53125, - "top": -71.524909, - "right": -73.125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 202, - "left": -73.125, - "top": -71.524909, - "right": -71.71875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 202, - "left": -71.71875, - "top": -71.524909, - "right": -70.3125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 202, - "left": -70.3125, - "top": -71.524909, - "right": -68.90625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 202, - "left": -68.90625, - "top": -71.524909, - "right": -67.5, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 202, - "left": -67.5, - "top": -71.524909, - "right": -66.09375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 202, - "left": -66.09375, - "top": -71.524909, - "right": -64.6875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 202, - "left": -64.6875, - "top": -71.524909, - "right": -63.28125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 202, - "left": -63.28125, - "top": -71.524909, - "right": -61.875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 202, - "left": -61.875, - "top": -71.524909, - "right": -60.46875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 202, - "left": -12.65625, - "top": -71.524909, - "right": -11.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 202, - "left": -11.25, - "top": -71.524909, - "right": -9.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 202, - "left": -9.84375, - "top": -71.524909, - "right": -8.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 202, - "left": -8.4375, - "top": -71.524909, - "right": -7.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 202, - "left": -7.03125, - "top": -71.524909, - "right": -5.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 202, - "left": -5.625, - "top": -71.524909, - "right": -4.21875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 202, - "left": -4.21875, - "top": -71.524909, - "right": -2.8125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 202, - "left": -2.8125, - "top": -71.524909, - "right": -1.40625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 202, - "left": -1.40625, - "top": -71.524909, - "right": 0.0, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 202, - "left": 0.0, - "top": -71.524909, - "right": 1.40625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 202, - "left": 1.40625, - "top": -71.524909, - "right": 2.8125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 202, - "left": 2.8125, - "top": -71.524909, - "right": 4.21875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 202, - "left": 4.21875, - "top": -71.524909, - "right": 5.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 202, - "left": 5.625, - "top": -71.524909, - "right": 7.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 202, - "left": 7.03125, - "top": -71.524909, - "right": 8.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 202, - "left": 8.4375, - "top": -71.524909, - "right": 9.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 202, - "left": 9.84375, - "top": -71.524909, - "right": 11.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 202, - "left": 11.25, - "top": -71.524909, - "right": 12.65625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 202, - "left": 12.65625, - "top": -71.524909, - "right": 14.0625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 202, - "left": 14.0625, - "top": -71.524909, - "right": 15.46875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 202, - "left": 15.46875, - "top": -71.524909, - "right": 16.875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 202, - "left": 16.875, - "top": -71.524909, - "right": 18.28125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 202, - "left": 18.28125, - "top": -71.524909, - "right": 19.6875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 202, - "left": 19.6875, - "top": -71.524909, - "right": 21.09375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 202, - "left": 21.09375, - "top": -71.524909, - "right": 22.5, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 202, - "left": 22.5, - "top": -71.524909, - "right": 23.90625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 202, - "left": 23.90625, - "top": -71.524909, - "right": 25.3125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 202, - "left": 25.3125, - "top": -71.524909, - "right": 26.71875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 202, - "left": 26.71875, - "top": -71.524909, - "right": 28.125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 202, - "left": 28.125, - "top": -71.524909, - "right": 29.53125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 202, - "left": 29.53125, - "top": -71.524909, - "right": 30.9375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 202, - "left": 30.9375, - "top": -71.524909, - "right": 32.34375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 202, - "left": 32.34375, - "top": -71.524909, - "right": 33.75, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 202, - "left": 33.75, - "top": -71.524909, - "right": 35.15625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 202, - "left": 35.15625, - "top": -71.524909, - "right": 36.5625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 202, - "left": 36.5625, - "top": -71.524909, - "right": 37.96875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 202, - "left": 37.96875, - "top": -71.524909, - "right": 39.375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 202, - "left": 39.375, - "top": -71.524909, - "right": 40.78125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 202, - "left": 40.78125, - "top": -71.524909, - "right": 42.1875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 202, - "left": 42.1875, - "top": -71.524909, - "right": 43.59375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 202, - "left": 43.59375, - "top": -71.524909, - "right": 45.0, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 202, - "left": 45.0, - "top": -71.524909, - "right": 46.40625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 202, - "left": 46.40625, - "top": -71.524909, - "right": 47.8125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 202, - "left": 47.8125, - "top": -71.524909, - "right": 49.21875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 202, - "left": 49.21875, - "top": -71.524909, - "right": 50.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 202, - "left": 50.625, - "top": -71.524909, - "right": 52.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 202, - "left": 52.03125, - "top": -71.524909, - "right": 53.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 202, - "left": 53.4375, - "top": -71.524909, - "right": 54.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 202, - "left": 54.84375, - "top": -71.524909, - "right": 56.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 202, - "left": 56.25, - "top": -71.524909, - "right": 57.65625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 202, - "left": 57.65625, - "top": -71.524909, - "right": 59.0625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 202, - "left": 59.0625, - "top": -71.524909, - "right": 60.46875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 202, - "left": 60.46875, - "top": -71.524909, - "right": 61.875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 202, - "left": 61.875, - "top": -71.524909, - "right": 63.28125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 202, - "left": 63.28125, - "top": -71.524909, - "right": 64.6875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 202, - "left": 64.6875, - "top": -71.524909, - "right": 66.09375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 202, - "left": 66.09375, - "top": -71.524909, - "right": 67.5, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 202, - "left": 67.5, - "top": -71.524909, - "right": 68.90625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 202, - "left": 68.90625, - "top": -71.524909, - "right": 70.3125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 202, - "left": 70.3125, - "top": -71.524909, - "right": 71.71875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 202, - "left": 71.71875, - "top": -71.524909, - "right": 73.125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 202, - "left": 73.125, - "top": -71.524909, - "right": 74.53125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 202, - "left": 74.53125, - "top": -71.524909, - "right": 75.9375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 202, - "left": 75.9375, - "top": -71.524909, - "right": 77.34375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 202, - "left": 77.34375, - "top": -71.524909, - "right": 78.75, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 202, - "left": 78.75, - "top": -71.524909, - "right": 80.15625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 202, - "left": 80.15625, - "top": -71.524909, - "right": 81.5625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 202, - "left": 81.5625, - "top": -71.524909, - "right": 82.96875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 202, - "left": 82.96875, - "top": -71.524909, - "right": 84.375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 202, - "left": 84.375, - "top": -71.524909, - "right": 85.78125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 202, - "left": 85.78125, - "top": -71.524909, - "right": 87.1875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 202, - "left": 87.1875, - "top": -71.524909, - "right": 88.59375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 202, - "left": 88.59375, - "top": -71.524909, - "right": 90.0, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 202, - "left": 90.0, - "top": -71.524909, - "right": 91.40625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 202, - "left": 91.40625, - "top": -71.524909, - "right": 92.8125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 202, - "left": 92.8125, - "top": -71.524909, - "right": 94.21875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 202, - "left": 94.21875, - "top": -71.524909, - "right": 95.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 202, - "left": 95.625, - "top": -71.524909, - "right": 97.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 202, - "left": 97.03125, - "top": -71.524909, - "right": 98.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 202, - "left": 98.4375, - "top": -71.524909, - "right": 99.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 202, - "left": 99.84375, - "top": -71.524909, - "right": 101.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 202, - "left": 101.25, - "top": -71.524909, - "right": 102.65625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 202, - "left": 102.65625, - "top": -71.524909, - "right": 104.0625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 202, - "left": 104.0625, - "top": -71.524909, - "right": 105.46875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 202, - "left": 105.46875, - "top": -71.524909, - "right": 106.875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 202, - "left": 106.875, - "top": -71.524909, - "right": 108.28125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 202, - "left": 108.28125, - "top": -71.524909, - "right": 109.6875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 202, - "left": 109.6875, - "top": -71.524909, - "right": 111.09375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 202, - "left": 111.09375, - "top": -71.524909, - "right": 112.5, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 202, - "left": 112.5, - "top": -71.524909, - "right": 113.90625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 202, - "left": 113.90625, - "top": -71.524909, - "right": 115.3125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 202, - "left": 115.3125, - "top": -71.524909, - "right": 116.71875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 202, - "left": 116.71875, - "top": -71.524909, - "right": 118.125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 202, - "left": 118.125, - "top": -71.524909, - "right": 119.53125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 202, - "left": 119.53125, - "top": -71.524909, - "right": 120.9375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 202, - "left": 120.9375, - "top": -71.524909, - "right": 122.34375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 202, - "left": 122.34375, - "top": -71.524909, - "right": 123.75, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 202, - "left": 123.75, - "top": -71.524909, - "right": 125.15625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 202, - "left": 125.15625, - "top": -71.524909, - "right": 126.5625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 202, - "left": 126.5625, - "top": -71.524909, - "right": 127.96875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 202, - "left": 127.96875, - "top": -71.524909, - "right": 129.375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 202, - "left": 129.375, - "top": -71.524909, - "right": 130.78125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 202, - "left": 130.78125, - "top": -71.524909, - "right": 132.1875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 202, - "left": 132.1875, - "top": -71.524909, - "right": 133.59375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 202, - "left": 133.59375, - "top": -71.524909, - "right": 135.0, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 202, - "left": 135.0, - "top": -71.524909, - "right": 136.40625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 202, - "left": 136.40625, - "top": -71.524909, - "right": 137.8125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 202, - "left": 137.8125, - "top": -71.524909, - "right": 139.21875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 202, - "left": 139.21875, - "top": -71.524909, - "right": 140.625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 202, - "left": 140.625, - "top": -71.524909, - "right": 142.03125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 202, - "left": 142.03125, - "top": -71.524909, - "right": 143.4375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 202, - "left": 143.4375, - "top": -71.524909, - "right": 144.84375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 202, - "left": 144.84375, - "top": -71.524909, - "right": 146.25, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 202, - "left": 146.25, - "top": -71.524909, - "right": 147.65625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 202, - "left": 147.65625, - "top": -71.524909, - "right": 149.0625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 202, - "left": 149.0625, - "top": -71.524909, - "right": 150.46875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 202, - "left": 150.46875, - "top": -71.524909, - "right": 151.875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 202, - "left": 151.875, - "top": -71.524909, - "right": 153.28125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 202, - "left": 153.28125, - "top": -71.524909, - "right": 154.6875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 202, - "left": 154.6875, - "top": -71.524909, - "right": 156.09375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 202, - "left": 156.09375, - "top": -71.524909, - "right": 157.5, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 202, - "left": 157.5, - "top": -71.524909, - "right": 158.90625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 202, - "left": 158.90625, - "top": -71.524909, - "right": 160.3125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 202, - "left": 160.3125, - "top": -71.524909, - "right": 161.71875, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 202, - "left": 161.71875, - "top": -71.524909, - "right": 163.125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 202, - "left": 163.125, - "top": -71.524909, - "right": 164.53125, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 202, - "left": 164.53125, - "top": -71.524909, - "right": 165.9375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 202, - "left": 165.9375, - "top": -71.524909, - "right": 167.34375, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 202, - "left": 167.34375, - "top": -71.524909, - "right": 168.75, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 202, - "left": 168.75, - "top": -71.524909, - "right": 170.15625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 202, - "left": 170.15625, - "top": -71.524909, - "right": 171.5625, - "bottom": -71.965388, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 203, - "left": -102.65625, - "top": -71.965388, - "right": -101.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 203, - "left": -101.25, - "top": -71.965388, - "right": -99.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 203, - "left": -99.84375, - "top": -71.965388, - "right": -98.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 203, - "left": -98.4375, - "top": -71.965388, - "right": -97.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 203, - "left": -97.03125, - "top": -71.965388, - "right": -95.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 203, - "left": -95.625, - "top": -71.965388, - "right": -94.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 203, - "left": -74.53125, - "top": -71.965388, - "right": -73.125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 203, - "left": -73.125, - "top": -71.965388, - "right": -71.71875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 203, - "left": -71.71875, - "top": -71.965388, - "right": -70.3125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 203, - "left": -70.3125, - "top": -71.965388, - "right": -68.90625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 203, - "left": -68.90625, - "top": -71.965388, - "right": -67.5, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 203, - "left": -67.5, - "top": -71.965388, - "right": -66.09375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 203, - "left": -66.09375, - "top": -71.965388, - "right": -64.6875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 203, - "left": -64.6875, - "top": -71.965388, - "right": -63.28125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 203, - "left": -63.28125, - "top": -71.965388, - "right": -61.875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 203, - "left": -61.875, - "top": -71.965388, - "right": -60.46875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 203, - "left": -60.46875, - "top": -71.965388, - "right": -59.0625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 203, - "left": -12.65625, - "top": -71.965388, - "right": -11.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 203, - "left": -11.25, - "top": -71.965388, - "right": -9.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 203, - "left": -9.84375, - "top": -71.965388, - "right": -8.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 203, - "left": -8.4375, - "top": -71.965388, - "right": -7.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 203, - "left": -7.03125, - "top": -71.965388, - "right": -5.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 203, - "left": -5.625, - "top": -71.965388, - "right": -4.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 203, - "left": -4.21875, - "top": -71.965388, - "right": -2.8125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 203, - "left": -2.8125, - "top": -71.965388, - "right": -1.40625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 203, - "left": -1.40625, - "top": -71.965388, - "right": 0.0, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 203, - "left": 0.0, - "top": -71.965388, - "right": 1.40625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 203, - "left": 1.40625, - "top": -71.965388, - "right": 2.8125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 203, - "left": 2.8125, - "top": -71.965388, - "right": 4.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 203, - "left": 4.21875, - "top": -71.965388, - "right": 5.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 203, - "left": 5.625, - "top": -71.965388, - "right": 7.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 203, - "left": 7.03125, - "top": -71.965388, - "right": 8.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 203, - "left": 8.4375, - "top": -71.965388, - "right": 9.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 203, - "left": 9.84375, - "top": -71.965388, - "right": 11.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 203, - "left": 11.25, - "top": -71.965388, - "right": 12.65625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 203, - "left": 12.65625, - "top": -71.965388, - "right": 14.0625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 203, - "left": 14.0625, - "top": -71.965388, - "right": 15.46875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 203, - "left": 15.46875, - "top": -71.965388, - "right": 16.875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 203, - "left": 16.875, - "top": -71.965388, - "right": 18.28125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 203, - "left": 18.28125, - "top": -71.965388, - "right": 19.6875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 203, - "left": 19.6875, - "top": -71.965388, - "right": 21.09375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 203, - "left": 21.09375, - "top": -71.965388, - "right": 22.5, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 203, - "left": 22.5, - "top": -71.965388, - "right": 23.90625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 203, - "left": 23.90625, - "top": -71.965388, - "right": 25.3125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 203, - "left": 25.3125, - "top": -71.965388, - "right": 26.71875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 203, - "left": 26.71875, - "top": -71.965388, - "right": 28.125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 203, - "left": 28.125, - "top": -71.965388, - "right": 29.53125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 203, - "left": 29.53125, - "top": -71.965388, - "right": 30.9375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 203, - "left": 30.9375, - "top": -71.965388, - "right": 32.34375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 203, - "left": 32.34375, - "top": -71.965388, - "right": 33.75, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 203, - "left": 33.75, - "top": -71.965388, - "right": 35.15625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 203, - "left": 35.15625, - "top": -71.965388, - "right": 36.5625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 203, - "left": 36.5625, - "top": -71.965388, - "right": 37.96875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 203, - "left": 37.96875, - "top": -71.965388, - "right": 39.375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 203, - "left": 39.375, - "top": -71.965388, - "right": 40.78125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 203, - "left": 40.78125, - "top": -71.965388, - "right": 42.1875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 203, - "left": 42.1875, - "top": -71.965388, - "right": 43.59375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 203, - "left": 43.59375, - "top": -71.965388, - "right": 45.0, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 203, - "left": 45.0, - "top": -71.965388, - "right": 46.40625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 203, - "left": 46.40625, - "top": -71.965388, - "right": 47.8125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 203, - "left": 47.8125, - "top": -71.965388, - "right": 49.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 203, - "left": 49.21875, - "top": -71.965388, - "right": 50.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 203, - "left": 50.625, - "top": -71.965388, - "right": 52.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 203, - "left": 52.03125, - "top": -71.965388, - "right": 53.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 203, - "left": 53.4375, - "top": -71.965388, - "right": 54.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 203, - "left": 54.84375, - "top": -71.965388, - "right": 56.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 203, - "left": 56.25, - "top": -71.965388, - "right": 57.65625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 203, - "left": 57.65625, - "top": -71.965388, - "right": 59.0625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 203, - "left": 59.0625, - "top": -71.965388, - "right": 60.46875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 203, - "left": 60.46875, - "top": -71.965388, - "right": 61.875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 203, - "left": 61.875, - "top": -71.965388, - "right": 63.28125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 203, - "left": 63.28125, - "top": -71.965388, - "right": 64.6875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 203, - "left": 64.6875, - "top": -71.965388, - "right": 66.09375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 203, - "left": 66.09375, - "top": -71.965388, - "right": 67.5, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 203, - "left": 67.5, - "top": -71.965388, - "right": 68.90625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 203, - "left": 68.90625, - "top": -71.965388, - "right": 70.3125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 203, - "left": 70.3125, - "top": -71.965388, - "right": 71.71875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 203, - "left": 71.71875, - "top": -71.965388, - "right": 73.125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 203, - "left": 73.125, - "top": -71.965388, - "right": 74.53125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 203, - "left": 74.53125, - "top": -71.965388, - "right": 75.9375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 203, - "left": 75.9375, - "top": -71.965388, - "right": 77.34375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 203, - "left": 77.34375, - "top": -71.965388, - "right": 78.75, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 203, - "left": 78.75, - "top": -71.965388, - "right": 80.15625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 203, - "left": 80.15625, - "top": -71.965388, - "right": 81.5625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 203, - "left": 81.5625, - "top": -71.965388, - "right": 82.96875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 203, - "left": 82.96875, - "top": -71.965388, - "right": 84.375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 203, - "left": 84.375, - "top": -71.965388, - "right": 85.78125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 203, - "left": 85.78125, - "top": -71.965388, - "right": 87.1875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 203, - "left": 87.1875, - "top": -71.965388, - "right": 88.59375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 203, - "left": 88.59375, - "top": -71.965388, - "right": 90.0, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 203, - "left": 90.0, - "top": -71.965388, - "right": 91.40625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 203, - "left": 91.40625, - "top": -71.965388, - "right": 92.8125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 203, - "left": 92.8125, - "top": -71.965388, - "right": 94.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 203, - "left": 94.21875, - "top": -71.965388, - "right": 95.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 203, - "left": 95.625, - "top": -71.965388, - "right": 97.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 203, - "left": 97.03125, - "top": -71.965388, - "right": 98.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 203, - "left": 98.4375, - "top": -71.965388, - "right": 99.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 203, - "left": 99.84375, - "top": -71.965388, - "right": 101.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 203, - "left": 101.25, - "top": -71.965388, - "right": 102.65625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 203, - "left": 102.65625, - "top": -71.965388, - "right": 104.0625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 203, - "left": 104.0625, - "top": -71.965388, - "right": 105.46875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 203, - "left": 105.46875, - "top": -71.965388, - "right": 106.875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 203, - "left": 106.875, - "top": -71.965388, - "right": 108.28125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 203, - "left": 108.28125, - "top": -71.965388, - "right": 109.6875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 203, - "left": 109.6875, - "top": -71.965388, - "right": 111.09375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 203, - "left": 111.09375, - "top": -71.965388, - "right": 112.5, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 203, - "left": 112.5, - "top": -71.965388, - "right": 113.90625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 203, - "left": 113.90625, - "top": -71.965388, - "right": 115.3125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 203, - "left": 115.3125, - "top": -71.965388, - "right": 116.71875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 203, - "left": 116.71875, - "top": -71.965388, - "right": 118.125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 203, - "left": 118.125, - "top": -71.965388, - "right": 119.53125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 203, - "left": 119.53125, - "top": -71.965388, - "right": 120.9375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 203, - "left": 120.9375, - "top": -71.965388, - "right": 122.34375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 203, - "left": 122.34375, - "top": -71.965388, - "right": 123.75, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 203, - "left": 123.75, - "top": -71.965388, - "right": 125.15625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 203, - "left": 125.15625, - "top": -71.965388, - "right": 126.5625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 203, - "left": 126.5625, - "top": -71.965388, - "right": 127.96875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 203, - "left": 127.96875, - "top": -71.965388, - "right": 129.375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 203, - "left": 129.375, - "top": -71.965388, - "right": 130.78125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 203, - "left": 130.78125, - "top": -71.965388, - "right": 132.1875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 203, - "left": 132.1875, - "top": -71.965388, - "right": 133.59375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 203, - "left": 133.59375, - "top": -71.965388, - "right": 135.0, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 203, - "left": 135.0, - "top": -71.965388, - "right": 136.40625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 203, - "left": 136.40625, - "top": -71.965388, - "right": 137.8125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 203, - "left": 137.8125, - "top": -71.965388, - "right": 139.21875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 203, - "left": 139.21875, - "top": -71.965388, - "right": 140.625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 203, - "left": 140.625, - "top": -71.965388, - "right": 142.03125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 203, - "left": 142.03125, - "top": -71.965388, - "right": 143.4375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 203, - "left": 143.4375, - "top": -71.965388, - "right": 144.84375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 203, - "left": 144.84375, - "top": -71.965388, - "right": 146.25, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 203, - "left": 146.25, - "top": -71.965388, - "right": 147.65625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 203, - "left": 147.65625, - "top": -71.965388, - "right": 149.0625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 203, - "left": 149.0625, - "top": -71.965388, - "right": 150.46875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 203, - "left": 150.46875, - "top": -71.965388, - "right": 151.875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 203, - "left": 151.875, - "top": -71.965388, - "right": 153.28125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 203, - "left": 153.28125, - "top": -71.965388, - "right": 154.6875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 203, - "left": 154.6875, - "top": -71.965388, - "right": 156.09375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 203, - "left": 156.09375, - "top": -71.965388, - "right": 157.5, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 203, - "left": 157.5, - "top": -71.965388, - "right": 158.90625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 203, - "left": 158.90625, - "top": -71.965388, - "right": 160.3125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 203, - "left": 160.3125, - "top": -71.965388, - "right": 161.71875, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 203, - "left": 161.71875, - "top": -71.965388, - "right": 163.125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 203, - "left": 163.125, - "top": -71.965388, - "right": 164.53125, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 203, - "left": 164.53125, - "top": -71.965388, - "right": 165.9375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 203, - "left": 165.9375, - "top": -71.965388, - "right": 167.34375, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 203, - "left": 167.34375, - "top": -71.965388, - "right": 168.75, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 203, - "left": 168.75, - "top": -71.965388, - "right": 170.15625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 203, - "left": 170.15625, - "top": -71.965388, - "right": 171.5625, - "bottom": -72.395706, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 204, - "left": -104.0625, - "top": -72.395706, - "right": -102.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 204, - "left": -102.65625, - "top": -72.395706, - "right": -101.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 204, - "left": -101.25, - "top": -72.395706, - "right": -99.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 204, - "left": -99.84375, - "top": -72.395706, - "right": -98.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 204, - "left": -98.4375, - "top": -72.395706, - "right": -97.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 204, - "left": -97.03125, - "top": -72.395706, - "right": -95.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 204, - "left": -95.625, - "top": -72.395706, - "right": -94.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 204, - "left": -94.21875, - "top": -72.395706, - "right": -92.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 204, - "left": -92.8125, - "top": -72.395706, - "right": -91.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 204, - "left": -91.40625, - "top": -72.395706, - "right": -90.0, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 204, - "left": -90.0, - "top": -72.395706, - "right": -88.59375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 204, - "left": -88.59375, - "top": -72.395706, - "right": -87.1875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 204, - "left": -78.75, - "top": -72.395706, - "right": -77.34375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 204, - "left": -77.34375, - "top": -72.395706, - "right": -75.9375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 204, - "left": -75.9375, - "top": -72.395706, - "right": -74.53125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 204, - "left": -73.125, - "top": -72.395706, - "right": -71.71875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 204, - "left": -71.71875, - "top": -72.395706, - "right": -70.3125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 204, - "left": -70.3125, - "top": -72.395706, - "right": -68.90625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 204, - "left": -68.90625, - "top": -72.395706, - "right": -67.5, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 204, - "left": -67.5, - "top": -72.395706, - "right": -66.09375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 204, - "left": -66.09375, - "top": -72.395706, - "right": -64.6875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 204, - "left": -64.6875, - "top": -72.395706, - "right": -63.28125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 204, - "left": -63.28125, - "top": -72.395706, - "right": -61.875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 204, - "left": -61.875, - "top": -72.395706, - "right": -60.46875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 204, - "left": -14.0625, - "top": -72.395706, - "right": -12.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 204, - "left": -12.65625, - "top": -72.395706, - "right": -11.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 204, - "left": -11.25, - "top": -72.395706, - "right": -9.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 204, - "left": -9.84375, - "top": -72.395706, - "right": -8.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 204, - "left": -8.4375, - "top": -72.395706, - "right": -7.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 204, - "left": -7.03125, - "top": -72.395706, - "right": -5.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 204, - "left": -5.625, - "top": -72.395706, - "right": -4.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 204, - "left": -4.21875, - "top": -72.395706, - "right": -2.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 204, - "left": -2.8125, - "top": -72.395706, - "right": -1.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 204, - "left": -1.40625, - "top": -72.395706, - "right": 0.0, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 204, - "left": 0.0, - "top": -72.395706, - "right": 1.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 204, - "left": 1.40625, - "top": -72.395706, - "right": 2.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 204, - "left": 2.8125, - "top": -72.395706, - "right": 4.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 204, - "left": 4.21875, - "top": -72.395706, - "right": 5.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 204, - "left": 5.625, - "top": -72.395706, - "right": 7.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 204, - "left": 7.03125, - "top": -72.395706, - "right": 8.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 204, - "left": 8.4375, - "top": -72.395706, - "right": 9.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 204, - "left": 9.84375, - "top": -72.395706, - "right": 11.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 204, - "left": 11.25, - "top": -72.395706, - "right": 12.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 204, - "left": 12.65625, - "top": -72.395706, - "right": 14.0625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 204, - "left": 14.0625, - "top": -72.395706, - "right": 15.46875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 204, - "left": 15.46875, - "top": -72.395706, - "right": 16.875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 204, - "left": 16.875, - "top": -72.395706, - "right": 18.28125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 204, - "left": 18.28125, - "top": -72.395706, - "right": 19.6875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 204, - "left": 19.6875, - "top": -72.395706, - "right": 21.09375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 204, - "left": 21.09375, - "top": -72.395706, - "right": 22.5, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 204, - "left": 22.5, - "top": -72.395706, - "right": 23.90625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 204, - "left": 23.90625, - "top": -72.395706, - "right": 25.3125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 204, - "left": 25.3125, - "top": -72.395706, - "right": 26.71875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 204, - "left": 26.71875, - "top": -72.395706, - "right": 28.125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 204, - "left": 28.125, - "top": -72.395706, - "right": 29.53125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 204, - "left": 29.53125, - "top": -72.395706, - "right": 30.9375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 204, - "left": 30.9375, - "top": -72.395706, - "right": 32.34375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 204, - "left": 32.34375, - "top": -72.395706, - "right": 33.75, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 204, - "left": 33.75, - "top": -72.395706, - "right": 35.15625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 204, - "left": 35.15625, - "top": -72.395706, - "right": 36.5625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 204, - "left": 36.5625, - "top": -72.395706, - "right": 37.96875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 204, - "left": 37.96875, - "top": -72.395706, - "right": 39.375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 204, - "left": 39.375, - "top": -72.395706, - "right": 40.78125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 204, - "left": 40.78125, - "top": -72.395706, - "right": 42.1875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 204, - "left": 42.1875, - "top": -72.395706, - "right": 43.59375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 204, - "left": 43.59375, - "top": -72.395706, - "right": 45.0, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 204, - "left": 45.0, - "top": -72.395706, - "right": 46.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 204, - "left": 46.40625, - "top": -72.395706, - "right": 47.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 204, - "left": 47.8125, - "top": -72.395706, - "right": 49.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 204, - "left": 49.21875, - "top": -72.395706, - "right": 50.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 204, - "left": 50.625, - "top": -72.395706, - "right": 52.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 204, - "left": 52.03125, - "top": -72.395706, - "right": 53.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 204, - "left": 53.4375, - "top": -72.395706, - "right": 54.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 204, - "left": 54.84375, - "top": -72.395706, - "right": 56.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 204, - "left": 56.25, - "top": -72.395706, - "right": 57.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 204, - "left": 57.65625, - "top": -72.395706, - "right": 59.0625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 204, - "left": 59.0625, - "top": -72.395706, - "right": 60.46875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 204, - "left": 60.46875, - "top": -72.395706, - "right": 61.875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 204, - "left": 61.875, - "top": -72.395706, - "right": 63.28125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 204, - "left": 63.28125, - "top": -72.395706, - "right": 64.6875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 204, - "left": 64.6875, - "top": -72.395706, - "right": 66.09375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 204, - "left": 66.09375, - "top": -72.395706, - "right": 67.5, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 204, - "left": 67.5, - "top": -72.395706, - "right": 68.90625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 204, - "left": 68.90625, - "top": -72.395706, - "right": 70.3125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 204, - "left": 70.3125, - "top": -72.395706, - "right": 71.71875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 204, - "left": 71.71875, - "top": -72.395706, - "right": 73.125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 204, - "left": 73.125, - "top": -72.395706, - "right": 74.53125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 204, - "left": 74.53125, - "top": -72.395706, - "right": 75.9375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 204, - "left": 75.9375, - "top": -72.395706, - "right": 77.34375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 204, - "left": 77.34375, - "top": -72.395706, - "right": 78.75, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 204, - "left": 78.75, - "top": -72.395706, - "right": 80.15625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 204, - "left": 80.15625, - "top": -72.395706, - "right": 81.5625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 204, - "left": 81.5625, - "top": -72.395706, - "right": 82.96875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 204, - "left": 82.96875, - "top": -72.395706, - "right": 84.375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 204, - "left": 84.375, - "top": -72.395706, - "right": 85.78125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 204, - "left": 85.78125, - "top": -72.395706, - "right": 87.1875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 204, - "left": 87.1875, - "top": -72.395706, - "right": 88.59375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 204, - "left": 88.59375, - "top": -72.395706, - "right": 90.0, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 204, - "left": 90.0, - "top": -72.395706, - "right": 91.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 204, - "left": 91.40625, - "top": -72.395706, - "right": 92.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 204, - "left": 92.8125, - "top": -72.395706, - "right": 94.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 204, - "left": 94.21875, - "top": -72.395706, - "right": 95.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 204, - "left": 95.625, - "top": -72.395706, - "right": 97.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 204, - "left": 97.03125, - "top": -72.395706, - "right": 98.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 204, - "left": 98.4375, - "top": -72.395706, - "right": 99.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 204, - "left": 99.84375, - "top": -72.395706, - "right": 101.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 204, - "left": 101.25, - "top": -72.395706, - "right": 102.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 204, - "left": 102.65625, - "top": -72.395706, - "right": 104.0625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 204, - "left": 104.0625, - "top": -72.395706, - "right": 105.46875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 204, - "left": 105.46875, - "top": -72.395706, - "right": 106.875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 204, - "left": 106.875, - "top": -72.395706, - "right": 108.28125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 204, - "left": 108.28125, - "top": -72.395706, - "right": 109.6875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 204, - "left": 109.6875, - "top": -72.395706, - "right": 111.09375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 204, - "left": 111.09375, - "top": -72.395706, - "right": 112.5, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 204, - "left": 112.5, - "top": -72.395706, - "right": 113.90625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 204, - "left": 113.90625, - "top": -72.395706, - "right": 115.3125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 204, - "left": 115.3125, - "top": -72.395706, - "right": 116.71875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 204, - "left": 116.71875, - "top": -72.395706, - "right": 118.125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 204, - "left": 118.125, - "top": -72.395706, - "right": 119.53125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 204, - "left": 119.53125, - "top": -72.395706, - "right": 120.9375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 204, - "left": 120.9375, - "top": -72.395706, - "right": 122.34375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 204, - "left": 122.34375, - "top": -72.395706, - "right": 123.75, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 204, - "left": 123.75, - "top": -72.395706, - "right": 125.15625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 204, - "left": 125.15625, - "top": -72.395706, - "right": 126.5625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 204, - "left": 126.5625, - "top": -72.395706, - "right": 127.96875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 204, - "left": 127.96875, - "top": -72.395706, - "right": 129.375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 204, - "left": 129.375, - "top": -72.395706, - "right": 130.78125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 204, - "left": 130.78125, - "top": -72.395706, - "right": 132.1875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 204, - "left": 132.1875, - "top": -72.395706, - "right": 133.59375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 204, - "left": 133.59375, - "top": -72.395706, - "right": 135.0, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 204, - "left": 135.0, - "top": -72.395706, - "right": 136.40625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 204, - "left": 136.40625, - "top": -72.395706, - "right": 137.8125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 204, - "left": 137.8125, - "top": -72.395706, - "right": 139.21875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 204, - "left": 139.21875, - "top": -72.395706, - "right": 140.625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 204, - "left": 140.625, - "top": -72.395706, - "right": 142.03125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 204, - "left": 142.03125, - "top": -72.395706, - "right": 143.4375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 204, - "left": 143.4375, - "top": -72.395706, - "right": 144.84375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 204, - "left": 144.84375, - "top": -72.395706, - "right": 146.25, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 204, - "left": 146.25, - "top": -72.395706, - "right": 147.65625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 204, - "left": 147.65625, - "top": -72.395706, - "right": 149.0625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 204, - "left": 149.0625, - "top": -72.395706, - "right": 150.46875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 204, - "left": 150.46875, - "top": -72.395706, - "right": 151.875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 204, - "left": 151.875, - "top": -72.395706, - "right": 153.28125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 204, - "left": 153.28125, - "top": -72.395706, - "right": 154.6875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 204, - "left": 154.6875, - "top": -72.395706, - "right": 156.09375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 204, - "left": 156.09375, - "top": -72.395706, - "right": 157.5, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 204, - "left": 157.5, - "top": -72.395706, - "right": 158.90625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 204, - "left": 158.90625, - "top": -72.395706, - "right": 160.3125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 204, - "left": 160.3125, - "top": -72.395706, - "right": 161.71875, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 204, - "left": 161.71875, - "top": -72.395706, - "right": 163.125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 204, - "left": 163.125, - "top": -72.395706, - "right": 164.53125, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 204, - "left": 164.53125, - "top": -72.395706, - "right": 165.9375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 204, - "left": 165.9375, - "top": -72.395706, - "right": 167.34375, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 204, - "left": 167.34375, - "top": -72.395706, - "right": 168.75, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 204, - "left": 168.75, - "top": -72.395706, - "right": 170.15625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 204, - "left": 170.15625, - "top": -72.395706, - "right": 171.5625, - "bottom": -72.816074, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 205, - "left": -127.96875, - "top": -72.816074, - "right": -126.5625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 205, - "left": -126.5625, - "top": -72.816074, - "right": -125.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 205, - "left": -125.15625, - "top": -72.816074, - "right": -123.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 205, - "left": -105.46875, - "top": -72.816074, - "right": -104.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 205, - "left": -104.0625, - "top": -72.816074, - "right": -102.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 205, - "left": -102.65625, - "top": -72.816074, - "right": -101.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 205, - "left": -101.25, - "top": -72.816074, - "right": -99.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 205, - "left": -99.84375, - "top": -72.816074, - "right": -98.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 205, - "left": -98.4375, - "top": -72.816074, - "right": -97.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 205, - "left": -97.03125, - "top": -72.816074, - "right": -95.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 205, - "left": -95.625, - "top": -72.816074, - "right": -94.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 205, - "left": -94.21875, - "top": -72.816074, - "right": -92.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 205, - "left": -92.8125, - "top": -72.816074, - "right": -91.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 205, - "left": -91.40625, - "top": -72.816074, - "right": -90.0, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 205, - "left": -90.0, - "top": -72.816074, - "right": -88.59375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 205, - "left": -88.59375, - "top": -72.816074, - "right": -87.1875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 205, - "left": -87.1875, - "top": -72.816074, - "right": -85.78125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 205, - "left": -85.78125, - "top": -72.816074, - "right": -84.375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 205, - "left": -81.5625, - "top": -72.816074, - "right": -80.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 205, - "left": -80.15625, - "top": -72.816074, - "right": -78.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 205, - "left": -78.75, - "top": -72.816074, - "right": -77.34375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 205, - "left": -77.34375, - "top": -72.816074, - "right": -75.9375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 205, - "left": -75.9375, - "top": -72.816074, - "right": -74.53125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 205, - "left": -74.53125, - "top": -72.816074, - "right": -73.125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 205, - "left": -73.125, - "top": -72.816074, - "right": -71.71875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 205, - "left": -70.3125, - "top": -72.816074, - "right": -68.90625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 205, - "left": -68.90625, - "top": -72.816074, - "right": -67.5, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 205, - "left": -67.5, - "top": -72.816074, - "right": -66.09375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 205, - "left": -66.09375, - "top": -72.816074, - "right": -64.6875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 205, - "left": -64.6875, - "top": -72.816074, - "right": -63.28125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 205, - "left": -63.28125, - "top": -72.816074, - "right": -61.875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 205, - "left": -61.875, - "top": -72.816074, - "right": -60.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 205, - "left": -60.46875, - "top": -72.816074, - "right": -59.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 205, - "left": -16.875, - "top": -72.816074, - "right": -15.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 205, - "left": -15.46875, - "top": -72.816074, - "right": -14.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 205, - "left": -14.0625, - "top": -72.816074, - "right": -12.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 205, - "left": -12.65625, - "top": -72.816074, - "right": -11.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 205, - "left": -11.25, - "top": -72.816074, - "right": -9.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 205, - "left": -9.84375, - "top": -72.816074, - "right": -8.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 205, - "left": -8.4375, - "top": -72.816074, - "right": -7.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 205, - "left": -7.03125, - "top": -72.816074, - "right": -5.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 205, - "left": -5.625, - "top": -72.816074, - "right": -4.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 205, - "left": -4.21875, - "top": -72.816074, - "right": -2.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 205, - "left": -2.8125, - "top": -72.816074, - "right": -1.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 205, - "left": -1.40625, - "top": -72.816074, - "right": 0.0, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 205, - "left": 0.0, - "top": -72.816074, - "right": 1.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 205, - "left": 1.40625, - "top": -72.816074, - "right": 2.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 205, - "left": 2.8125, - "top": -72.816074, - "right": 4.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 205, - "left": 4.21875, - "top": -72.816074, - "right": 5.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 205, - "left": 5.625, - "top": -72.816074, - "right": 7.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 205, - "left": 7.03125, - "top": -72.816074, - "right": 8.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 205, - "left": 8.4375, - "top": -72.816074, - "right": 9.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 205, - "left": 9.84375, - "top": -72.816074, - "right": 11.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 205, - "left": 11.25, - "top": -72.816074, - "right": 12.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 205, - "left": 12.65625, - "top": -72.816074, - "right": 14.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 205, - "left": 14.0625, - "top": -72.816074, - "right": 15.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 205, - "left": 15.46875, - "top": -72.816074, - "right": 16.875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 205, - "left": 16.875, - "top": -72.816074, - "right": 18.28125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 205, - "left": 18.28125, - "top": -72.816074, - "right": 19.6875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 205, - "left": 19.6875, - "top": -72.816074, - "right": 21.09375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 205, - "left": 21.09375, - "top": -72.816074, - "right": 22.5, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 205, - "left": 22.5, - "top": -72.816074, - "right": 23.90625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 205, - "left": 23.90625, - "top": -72.816074, - "right": 25.3125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 205, - "left": 25.3125, - "top": -72.816074, - "right": 26.71875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 205, - "left": 26.71875, - "top": -72.816074, - "right": 28.125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 205, - "left": 28.125, - "top": -72.816074, - "right": 29.53125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 205, - "left": 29.53125, - "top": -72.816074, - "right": 30.9375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 205, - "left": 30.9375, - "top": -72.816074, - "right": 32.34375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 205, - "left": 32.34375, - "top": -72.816074, - "right": 33.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 205, - "left": 33.75, - "top": -72.816074, - "right": 35.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 205, - "left": 35.15625, - "top": -72.816074, - "right": 36.5625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 205, - "left": 36.5625, - "top": -72.816074, - "right": 37.96875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 205, - "left": 37.96875, - "top": -72.816074, - "right": 39.375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 205, - "left": 39.375, - "top": -72.816074, - "right": 40.78125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 205, - "left": 40.78125, - "top": -72.816074, - "right": 42.1875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 205, - "left": 42.1875, - "top": -72.816074, - "right": 43.59375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 205, - "left": 43.59375, - "top": -72.816074, - "right": 45.0, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 205, - "left": 45.0, - "top": -72.816074, - "right": 46.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 205, - "left": 46.40625, - "top": -72.816074, - "right": 47.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 205, - "left": 47.8125, - "top": -72.816074, - "right": 49.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 205, - "left": 49.21875, - "top": -72.816074, - "right": 50.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 205, - "left": 50.625, - "top": -72.816074, - "right": 52.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 205, - "left": 52.03125, - "top": -72.816074, - "right": 53.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 205, - "left": 53.4375, - "top": -72.816074, - "right": 54.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 205, - "left": 54.84375, - "top": -72.816074, - "right": 56.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 205, - "left": 56.25, - "top": -72.816074, - "right": 57.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 205, - "left": 57.65625, - "top": -72.816074, - "right": 59.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 205, - "left": 59.0625, - "top": -72.816074, - "right": 60.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 205, - "left": 60.46875, - "top": -72.816074, - "right": 61.875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 205, - "left": 61.875, - "top": -72.816074, - "right": 63.28125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 205, - "left": 63.28125, - "top": -72.816074, - "right": 64.6875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 205, - "left": 64.6875, - "top": -72.816074, - "right": 66.09375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 205, - "left": 66.09375, - "top": -72.816074, - "right": 67.5, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 205, - "left": 67.5, - "top": -72.816074, - "right": 68.90625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 205, - "left": 68.90625, - "top": -72.816074, - "right": 70.3125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 205, - "left": 70.3125, - "top": -72.816074, - "right": 71.71875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 205, - "left": 71.71875, - "top": -72.816074, - "right": 73.125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 205, - "left": 73.125, - "top": -72.816074, - "right": 74.53125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 205, - "left": 74.53125, - "top": -72.816074, - "right": 75.9375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 205, - "left": 75.9375, - "top": -72.816074, - "right": 77.34375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 205, - "left": 77.34375, - "top": -72.816074, - "right": 78.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 205, - "left": 78.75, - "top": -72.816074, - "right": 80.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 205, - "left": 80.15625, - "top": -72.816074, - "right": 81.5625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 205, - "left": 81.5625, - "top": -72.816074, - "right": 82.96875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 205, - "left": 82.96875, - "top": -72.816074, - "right": 84.375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 205, - "left": 84.375, - "top": -72.816074, - "right": 85.78125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 205, - "left": 85.78125, - "top": -72.816074, - "right": 87.1875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 205, - "left": 87.1875, - "top": -72.816074, - "right": 88.59375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 205, - "left": 88.59375, - "top": -72.816074, - "right": 90.0, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 205, - "left": 90.0, - "top": -72.816074, - "right": 91.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 205, - "left": 91.40625, - "top": -72.816074, - "right": 92.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 205, - "left": 92.8125, - "top": -72.816074, - "right": 94.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 205, - "left": 94.21875, - "top": -72.816074, - "right": 95.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 205, - "left": 95.625, - "top": -72.816074, - "right": 97.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 205, - "left": 97.03125, - "top": -72.816074, - "right": 98.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 205, - "left": 98.4375, - "top": -72.816074, - "right": 99.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 205, - "left": 99.84375, - "top": -72.816074, - "right": 101.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 205, - "left": 101.25, - "top": -72.816074, - "right": 102.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 205, - "left": 102.65625, - "top": -72.816074, - "right": 104.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 205, - "left": 104.0625, - "top": -72.816074, - "right": 105.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 205, - "left": 105.46875, - "top": -72.816074, - "right": 106.875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 205, - "left": 106.875, - "top": -72.816074, - "right": 108.28125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 205, - "left": 108.28125, - "top": -72.816074, - "right": 109.6875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 205, - "left": 109.6875, - "top": -72.816074, - "right": 111.09375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 205, - "left": 111.09375, - "top": -72.816074, - "right": 112.5, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 205, - "left": 112.5, - "top": -72.816074, - "right": 113.90625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 205, - "left": 113.90625, - "top": -72.816074, - "right": 115.3125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 205, - "left": 115.3125, - "top": -72.816074, - "right": 116.71875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 205, - "left": 116.71875, - "top": -72.816074, - "right": 118.125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 205, - "left": 118.125, - "top": -72.816074, - "right": 119.53125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 205, - "left": 119.53125, - "top": -72.816074, - "right": 120.9375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 205, - "left": 120.9375, - "top": -72.816074, - "right": 122.34375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 205, - "left": 122.34375, - "top": -72.816074, - "right": 123.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 205, - "left": 123.75, - "top": -72.816074, - "right": 125.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 205, - "left": 125.15625, - "top": -72.816074, - "right": 126.5625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 205, - "left": 126.5625, - "top": -72.816074, - "right": 127.96875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 205, - "left": 127.96875, - "top": -72.816074, - "right": 129.375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 205, - "left": 129.375, - "top": -72.816074, - "right": 130.78125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 205, - "left": 130.78125, - "top": -72.816074, - "right": 132.1875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 205, - "left": 132.1875, - "top": -72.816074, - "right": 133.59375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 205, - "left": 133.59375, - "top": -72.816074, - "right": 135.0, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 205, - "left": 135.0, - "top": -72.816074, - "right": 136.40625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 205, - "left": 136.40625, - "top": -72.816074, - "right": 137.8125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 205, - "left": 137.8125, - "top": -72.816074, - "right": 139.21875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 205, - "left": 139.21875, - "top": -72.816074, - "right": 140.625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 205, - "left": 140.625, - "top": -72.816074, - "right": 142.03125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 205, - "left": 142.03125, - "top": -72.816074, - "right": 143.4375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 205, - "left": 143.4375, - "top": -72.816074, - "right": 144.84375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 205, - "left": 144.84375, - "top": -72.816074, - "right": 146.25, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 205, - "left": 146.25, - "top": -72.816074, - "right": 147.65625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 205, - "left": 147.65625, - "top": -72.816074, - "right": 149.0625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 205, - "left": 149.0625, - "top": -72.816074, - "right": 150.46875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 205, - "left": 150.46875, - "top": -72.816074, - "right": 151.875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 205, - "left": 151.875, - "top": -72.816074, - "right": 153.28125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 205, - "left": 153.28125, - "top": -72.816074, - "right": 154.6875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 205, - "left": 154.6875, - "top": -72.816074, - "right": 156.09375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 205, - "left": 156.09375, - "top": -72.816074, - "right": 157.5, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 205, - "left": 157.5, - "top": -72.816074, - "right": 158.90625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 205, - "left": 158.90625, - "top": -72.816074, - "right": 160.3125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 205, - "left": 160.3125, - "top": -72.816074, - "right": 161.71875, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 205, - "left": 161.71875, - "top": -72.816074, - "right": 163.125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 205, - "left": 163.125, - "top": -72.816074, - "right": 164.53125, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 205, - "left": 164.53125, - "top": -72.816074, - "right": 165.9375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 205, - "left": 165.9375, - "top": -72.816074, - "right": 167.34375, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 205, - "left": 167.34375, - "top": -72.816074, - "right": 168.75, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 205, - "left": 168.75, - "top": -72.816074, - "right": 170.15625, - "bottom": -73.2267, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 206, - "left": -127.96875, - "top": -73.2267, - "right": -126.5625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 206, - "left": -126.5625, - "top": -73.2267, - "right": -125.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 206, - "left": -125.15625, - "top": -73.2267, - "right": -123.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 206, - "left": -123.75, - "top": -73.2267, - "right": -122.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 206, - "left": -122.34375, - "top": -73.2267, - "right": -120.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 206, - "left": -105.46875, - "top": -73.2267, - "right": -104.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 206, - "left": -104.0625, - "top": -73.2267, - "right": -102.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 206, - "left": -102.65625, - "top": -73.2267, - "right": -101.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 206, - "left": -101.25, - "top": -73.2267, - "right": -99.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 206, - "left": -99.84375, - "top": -73.2267, - "right": -98.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 206, - "left": -98.4375, - "top": -73.2267, - "right": -97.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 206, - "left": -97.03125, - "top": -73.2267, - "right": -95.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 206, - "left": -95.625, - "top": -73.2267, - "right": -94.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 206, - "left": -94.21875, - "top": -73.2267, - "right": -92.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 206, - "left": -92.8125, - "top": -73.2267, - "right": -91.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 206, - "left": -91.40625, - "top": -73.2267, - "right": -90.0, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 206, - "left": -90.0, - "top": -73.2267, - "right": -88.59375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 206, - "left": -88.59375, - "top": -73.2267, - "right": -87.1875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 206, - "left": -87.1875, - "top": -73.2267, - "right": -85.78125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 206, - "left": -85.78125, - "top": -73.2267, - "right": -84.375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 206, - "left": -84.375, - "top": -73.2267, - "right": -82.96875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 206, - "left": -81.5625, - "top": -73.2267, - "right": -80.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 206, - "left": -80.15625, - "top": -73.2267, - "right": -78.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 206, - "left": -78.75, - "top": -73.2267, - "right": -77.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 206, - "left": -77.34375, - "top": -73.2267, - "right": -75.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 206, - "left": -75.9375, - "top": -73.2267, - "right": -74.53125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 206, - "left": -74.53125, - "top": -73.2267, - "right": -73.125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 206, - "left": -73.125, - "top": -73.2267, - "right": -71.71875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 206, - "left": -71.71875, - "top": -73.2267, - "right": -70.3125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 206, - "left": -70.3125, - "top": -73.2267, - "right": -68.90625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 206, - "left": -68.90625, - "top": -73.2267, - "right": -67.5, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 206, - "left": -67.5, - "top": -73.2267, - "right": -66.09375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 206, - "left": -66.09375, - "top": -73.2267, - "right": -64.6875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 206, - "left": -64.6875, - "top": -73.2267, - "right": -63.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 206, - "left": -63.28125, - "top": -73.2267, - "right": -61.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 206, - "left": -61.875, - "top": -73.2267, - "right": -60.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 206, - "left": -60.46875, - "top": -73.2267, - "right": -59.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 206, - "left": -19.6875, - "top": -73.2267, - "right": -18.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 206, - "left": -18.28125, - "top": -73.2267, - "right": -16.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 206, - "left": -16.875, - "top": -73.2267, - "right": -15.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 206, - "left": -15.46875, - "top": -73.2267, - "right": -14.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 206, - "left": -14.0625, - "top": -73.2267, - "right": -12.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 206, - "left": -12.65625, - "top": -73.2267, - "right": -11.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 206, - "left": -11.25, - "top": -73.2267, - "right": -9.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 206, - "left": -9.84375, - "top": -73.2267, - "right": -8.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 206, - "left": -8.4375, - "top": -73.2267, - "right": -7.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 206, - "left": -7.03125, - "top": -73.2267, - "right": -5.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 206, - "left": -5.625, - "top": -73.2267, - "right": -4.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 206, - "left": -4.21875, - "top": -73.2267, - "right": -2.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 206, - "left": -2.8125, - "top": -73.2267, - "right": -1.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 206, - "left": -1.40625, - "top": -73.2267, - "right": 0.0, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 206, - "left": 0.0, - "top": -73.2267, - "right": 1.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 206, - "left": 1.40625, - "top": -73.2267, - "right": 2.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 206, - "left": 2.8125, - "top": -73.2267, - "right": 4.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 206, - "left": 4.21875, - "top": -73.2267, - "right": 5.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 206, - "left": 5.625, - "top": -73.2267, - "right": 7.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 206, - "left": 7.03125, - "top": -73.2267, - "right": 8.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 206, - "left": 8.4375, - "top": -73.2267, - "right": 9.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 206, - "left": 9.84375, - "top": -73.2267, - "right": 11.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 206, - "left": 11.25, - "top": -73.2267, - "right": 12.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 206, - "left": 12.65625, - "top": -73.2267, - "right": 14.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 206, - "left": 14.0625, - "top": -73.2267, - "right": 15.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 206, - "left": 15.46875, - "top": -73.2267, - "right": 16.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 206, - "left": 16.875, - "top": -73.2267, - "right": 18.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 206, - "left": 18.28125, - "top": -73.2267, - "right": 19.6875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 206, - "left": 19.6875, - "top": -73.2267, - "right": 21.09375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 206, - "left": 21.09375, - "top": -73.2267, - "right": 22.5, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 206, - "left": 22.5, - "top": -73.2267, - "right": 23.90625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 206, - "left": 23.90625, - "top": -73.2267, - "right": 25.3125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 206, - "left": 25.3125, - "top": -73.2267, - "right": 26.71875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 206, - "left": 26.71875, - "top": -73.2267, - "right": 28.125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 206, - "left": 28.125, - "top": -73.2267, - "right": 29.53125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 206, - "left": 29.53125, - "top": -73.2267, - "right": 30.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 206, - "left": 30.9375, - "top": -73.2267, - "right": 32.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 206, - "left": 32.34375, - "top": -73.2267, - "right": 33.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 206, - "left": 33.75, - "top": -73.2267, - "right": 35.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 206, - "left": 35.15625, - "top": -73.2267, - "right": 36.5625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 206, - "left": 36.5625, - "top": -73.2267, - "right": 37.96875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 206, - "left": 37.96875, - "top": -73.2267, - "right": 39.375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 206, - "left": 39.375, - "top": -73.2267, - "right": 40.78125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 206, - "left": 40.78125, - "top": -73.2267, - "right": 42.1875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 206, - "left": 42.1875, - "top": -73.2267, - "right": 43.59375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 206, - "left": 43.59375, - "top": -73.2267, - "right": 45.0, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 206, - "left": 45.0, - "top": -73.2267, - "right": 46.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 206, - "left": 46.40625, - "top": -73.2267, - "right": 47.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 206, - "left": 47.8125, - "top": -73.2267, - "right": 49.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 206, - "left": 49.21875, - "top": -73.2267, - "right": 50.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 206, - "left": 50.625, - "top": -73.2267, - "right": 52.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 206, - "left": 52.03125, - "top": -73.2267, - "right": 53.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 206, - "left": 53.4375, - "top": -73.2267, - "right": 54.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 206, - "left": 54.84375, - "top": -73.2267, - "right": 56.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 206, - "left": 56.25, - "top": -73.2267, - "right": 57.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 206, - "left": 57.65625, - "top": -73.2267, - "right": 59.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 206, - "left": 59.0625, - "top": -73.2267, - "right": 60.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 206, - "left": 60.46875, - "top": -73.2267, - "right": 61.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 206, - "left": 61.875, - "top": -73.2267, - "right": 63.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 206, - "left": 63.28125, - "top": -73.2267, - "right": 64.6875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 206, - "left": 64.6875, - "top": -73.2267, - "right": 66.09375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 206, - "left": 66.09375, - "top": -73.2267, - "right": 67.5, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 206, - "left": 67.5, - "top": -73.2267, - "right": 68.90625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 206, - "left": 68.90625, - "top": -73.2267, - "right": 70.3125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 206, - "left": 70.3125, - "top": -73.2267, - "right": 71.71875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 206, - "left": 71.71875, - "top": -73.2267, - "right": 73.125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 206, - "left": 73.125, - "top": -73.2267, - "right": 74.53125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 206, - "left": 74.53125, - "top": -73.2267, - "right": 75.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 206, - "left": 75.9375, - "top": -73.2267, - "right": 77.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 206, - "left": 77.34375, - "top": -73.2267, - "right": 78.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 206, - "left": 78.75, - "top": -73.2267, - "right": 80.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 206, - "left": 80.15625, - "top": -73.2267, - "right": 81.5625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 206, - "left": 81.5625, - "top": -73.2267, - "right": 82.96875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 206, - "left": 82.96875, - "top": -73.2267, - "right": 84.375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 206, - "left": 84.375, - "top": -73.2267, - "right": 85.78125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 206, - "left": 85.78125, - "top": -73.2267, - "right": 87.1875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 206, - "left": 87.1875, - "top": -73.2267, - "right": 88.59375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 206, - "left": 88.59375, - "top": -73.2267, - "right": 90.0, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 206, - "left": 90.0, - "top": -73.2267, - "right": 91.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 206, - "left": 91.40625, - "top": -73.2267, - "right": 92.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 206, - "left": 92.8125, - "top": -73.2267, - "right": 94.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 206, - "left": 94.21875, - "top": -73.2267, - "right": 95.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 206, - "left": 95.625, - "top": -73.2267, - "right": 97.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 206, - "left": 97.03125, - "top": -73.2267, - "right": 98.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 206, - "left": 98.4375, - "top": -73.2267, - "right": 99.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 206, - "left": 99.84375, - "top": -73.2267, - "right": 101.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 206, - "left": 101.25, - "top": -73.2267, - "right": 102.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 206, - "left": 102.65625, - "top": -73.2267, - "right": 104.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 206, - "left": 104.0625, - "top": -73.2267, - "right": 105.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 206, - "left": 105.46875, - "top": -73.2267, - "right": 106.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 206, - "left": 106.875, - "top": -73.2267, - "right": 108.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 206, - "left": 108.28125, - "top": -73.2267, - "right": 109.6875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 206, - "left": 109.6875, - "top": -73.2267, - "right": 111.09375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 206, - "left": 111.09375, - "top": -73.2267, - "right": 112.5, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 206, - "left": 112.5, - "top": -73.2267, - "right": 113.90625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 206, - "left": 113.90625, - "top": -73.2267, - "right": 115.3125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 206, - "left": 115.3125, - "top": -73.2267, - "right": 116.71875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 206, - "left": 116.71875, - "top": -73.2267, - "right": 118.125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 206, - "left": 118.125, - "top": -73.2267, - "right": 119.53125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 206, - "left": 119.53125, - "top": -73.2267, - "right": 120.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 206, - "left": 120.9375, - "top": -73.2267, - "right": 122.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 206, - "left": 122.34375, - "top": -73.2267, - "right": 123.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 206, - "left": 123.75, - "top": -73.2267, - "right": 125.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 206, - "left": 125.15625, - "top": -73.2267, - "right": 126.5625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 206, - "left": 126.5625, - "top": -73.2267, - "right": 127.96875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 206, - "left": 127.96875, - "top": -73.2267, - "right": 129.375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 206, - "left": 129.375, - "top": -73.2267, - "right": 130.78125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 206, - "left": 130.78125, - "top": -73.2267, - "right": 132.1875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 206, - "left": 132.1875, - "top": -73.2267, - "right": 133.59375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 206, - "left": 133.59375, - "top": -73.2267, - "right": 135.0, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 206, - "left": 135.0, - "top": -73.2267, - "right": 136.40625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 206, - "left": 136.40625, - "top": -73.2267, - "right": 137.8125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 206, - "left": 137.8125, - "top": -73.2267, - "right": 139.21875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 206, - "left": 139.21875, - "top": -73.2267, - "right": 140.625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 206, - "left": 140.625, - "top": -73.2267, - "right": 142.03125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 206, - "left": 142.03125, - "top": -73.2267, - "right": 143.4375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 206, - "left": 143.4375, - "top": -73.2267, - "right": 144.84375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 206, - "left": 144.84375, - "top": -73.2267, - "right": 146.25, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 206, - "left": 146.25, - "top": -73.2267, - "right": 147.65625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 206, - "left": 147.65625, - "top": -73.2267, - "right": 149.0625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 206, - "left": 149.0625, - "top": -73.2267, - "right": 150.46875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 206, - "left": 150.46875, - "top": -73.2267, - "right": 151.875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 206, - "left": 151.875, - "top": -73.2267, - "right": 153.28125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 206, - "left": 153.28125, - "top": -73.2267, - "right": 154.6875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 206, - "left": 154.6875, - "top": -73.2267, - "right": 156.09375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 206, - "left": 156.09375, - "top": -73.2267, - "right": 157.5, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 206, - "left": 157.5, - "top": -73.2267, - "right": 158.90625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 206, - "left": 158.90625, - "top": -73.2267, - "right": 160.3125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 206, - "left": 160.3125, - "top": -73.2267, - "right": 161.71875, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 206, - "left": 161.71875, - "top": -73.2267, - "right": 163.125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 206, - "left": 163.125, - "top": -73.2267, - "right": 164.53125, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 206, - "left": 164.53125, - "top": -73.2267, - "right": 165.9375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 206, - "left": 165.9375, - "top": -73.2267, - "right": 167.34375, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 206, - "left": 167.34375, - "top": -73.2267, - "right": 168.75, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 206, - "left": 168.75, - "top": -73.2267, - "right": 170.15625, - "bottom": -73.627789, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 207, - "left": -126.5625, - "top": -73.627789, - "right": -125.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 207, - "left": -125.15625, - "top": -73.627789, - "right": -123.75, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 207, - "left": -123.75, - "top": -73.627789, - "right": -122.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 207, - "left": -122.34375, - "top": -73.627789, - "right": -120.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 207, - "left": -120.9375, - "top": -73.627789, - "right": -119.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 207, - "left": -119.53125, - "top": -73.627789, - "right": -118.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 207, - "left": -118.125, - "top": -73.627789, - "right": -116.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 207, - "left": -116.71875, - "top": -73.627789, - "right": -115.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 207, - "left": -115.3125, - "top": -73.627789, - "right": -113.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 207, - "left": -113.90625, - "top": -73.627789, - "right": -112.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 207, - "left": -102.65625, - "top": -73.627789, - "right": -101.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 207, - "left": -101.25, - "top": -73.627789, - "right": -99.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 207, - "left": -99.84375, - "top": -73.627789, - "right": -98.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 207, - "left": -98.4375, - "top": -73.627789, - "right": -97.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 207, - "left": -97.03125, - "top": -73.627789, - "right": -95.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 207, - "left": -95.625, - "top": -73.627789, - "right": -94.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 207, - "left": -94.21875, - "top": -73.627789, - "right": -92.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 207, - "left": -92.8125, - "top": -73.627789, - "right": -91.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 207, - "left": -91.40625, - "top": -73.627789, - "right": -90.0, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 207, - "left": -90.0, - "top": -73.627789, - "right": -88.59375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 207, - "left": -88.59375, - "top": -73.627789, - "right": -87.1875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 207, - "left": -87.1875, - "top": -73.627789, - "right": -85.78125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 207, - "left": -85.78125, - "top": -73.627789, - "right": -84.375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 207, - "left": -84.375, - "top": -73.627789, - "right": -82.96875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 207, - "left": -82.96875, - "top": -73.627789, - "right": -81.5625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 207, - "left": -81.5625, - "top": -73.627789, - "right": -80.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 207, - "left": -80.15625, - "top": -73.627789, - "right": -78.75, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 207, - "left": -78.75, - "top": -73.627789, - "right": -77.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 207, - "left": -77.34375, - "top": -73.627789, - "right": -75.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 207, - "left": -75.9375, - "top": -73.627789, - "right": -74.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 207, - "left": -74.53125, - "top": -73.627789, - "right": -73.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 207, - "left": -73.125, - "top": -73.627789, - "right": -71.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 207, - "left": -71.71875, - "top": -73.627789, - "right": -70.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 207, - "left": -70.3125, - "top": -73.627789, - "right": -68.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 207, - "left": -68.90625, - "top": -73.627789, - "right": -67.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 207, - "left": -67.5, - "top": -73.627789, - "right": -66.09375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 207, - "left": -66.09375, - "top": -73.627789, - "right": -64.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 207, - "left": -64.6875, - "top": -73.627789, - "right": -63.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 207, - "left": -63.28125, - "top": -73.627789, - "right": -61.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 207, - "left": -61.875, - "top": -73.627789, - "right": -60.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 207, - "left": -21.09375, - "top": -73.627789, - "right": -19.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 207, - "left": -19.6875, - "top": -73.627789, - "right": -18.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 207, - "left": -18.28125, - "top": -73.627789, - "right": -16.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 207, - "left": -16.875, - "top": -73.627789, - "right": -15.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 207, - "left": -15.46875, - "top": -73.627789, - "right": -14.0625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 207, - "left": -14.0625, - "top": -73.627789, - "right": -12.65625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 207, - "left": -12.65625, - "top": -73.627789, - "right": -11.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 207, - "left": -11.25, - "top": -73.627789, - "right": -9.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 207, - "left": -9.84375, - "top": -73.627789, - "right": -8.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 207, - "left": -8.4375, - "top": -73.627789, - "right": -7.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 207, - "left": -7.03125, - "top": -73.627789, - "right": -5.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 207, - "left": -5.625, - "top": -73.627789, - "right": -4.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 207, - "left": -4.21875, - "top": -73.627789, - "right": -2.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 207, - "left": -2.8125, - "top": -73.627789, - "right": -1.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 207, - "left": -1.40625, - "top": -73.627789, - "right": 0.0, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 207, - "left": 0.0, - "top": -73.627789, - "right": 1.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 207, - "left": 1.40625, - "top": -73.627789, - "right": 2.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 207, - "left": 2.8125, - "top": -73.627789, - "right": 4.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 207, - "left": 4.21875, - "top": -73.627789, - "right": 5.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 207, - "left": 5.625, - "top": -73.627789, - "right": 7.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 207, - "left": 7.03125, - "top": -73.627789, - "right": 8.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 207, - "left": 8.4375, - "top": -73.627789, - "right": 9.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 207, - "left": 9.84375, - "top": -73.627789, - "right": 11.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 207, - "left": 11.25, - "top": -73.627789, - "right": 12.65625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 207, - "left": 12.65625, - "top": -73.627789, - "right": 14.0625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 207, - "left": 14.0625, - "top": -73.627789, - "right": 15.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 207, - "left": 15.46875, - "top": -73.627789, - "right": 16.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 207, - "left": 16.875, - "top": -73.627789, - "right": 18.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 207, - "left": 18.28125, - "top": -73.627789, - "right": 19.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 207, - "left": 19.6875, - "top": -73.627789, - "right": 21.09375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 207, - "left": 21.09375, - "top": -73.627789, - "right": 22.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 207, - "left": 22.5, - "top": -73.627789, - "right": 23.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 207, - "left": 23.90625, - "top": -73.627789, - "right": 25.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 207, - "left": 25.3125, - "top": -73.627789, - "right": 26.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 207, - "left": 26.71875, - "top": -73.627789, - "right": 28.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 207, - "left": 28.125, - "top": -73.627789, - "right": 29.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 207, - "left": 29.53125, - "top": -73.627789, - "right": 30.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 207, - "left": 30.9375, - "top": -73.627789, - "right": 32.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 207, - "left": 32.34375, - "top": -73.627789, - "right": 33.75, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 207, - "left": 33.75, - "top": -73.627789, - "right": 35.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 207, - "left": 35.15625, - "top": -73.627789, - "right": 36.5625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 207, - "left": 36.5625, - "top": -73.627789, - "right": 37.96875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 207, - "left": 37.96875, - "top": -73.627789, - "right": 39.375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 207, - "left": 39.375, - "top": -73.627789, - "right": 40.78125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 207, - "left": 40.78125, - "top": -73.627789, - "right": 42.1875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 207, - "left": 42.1875, - "top": -73.627789, - "right": 43.59375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 207, - "left": 43.59375, - "top": -73.627789, - "right": 45.0, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 207, - "left": 45.0, - "top": -73.627789, - "right": 46.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 207, - "left": 46.40625, - "top": -73.627789, - "right": 47.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 207, - "left": 47.8125, - "top": -73.627789, - "right": 49.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 207, - "left": 49.21875, - "top": -73.627789, - "right": 50.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 207, - "left": 50.625, - "top": -73.627789, - "right": 52.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 207, - "left": 52.03125, - "top": -73.627789, - "right": 53.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 207, - "left": 53.4375, - "top": -73.627789, - "right": 54.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 207, - "left": 54.84375, - "top": -73.627789, - "right": 56.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 207, - "left": 56.25, - "top": -73.627789, - "right": 57.65625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 207, - "left": 57.65625, - "top": -73.627789, - "right": 59.0625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 207, - "left": 59.0625, - "top": -73.627789, - "right": 60.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 207, - "left": 60.46875, - "top": -73.627789, - "right": 61.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 207, - "left": 61.875, - "top": -73.627789, - "right": 63.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 207, - "left": 63.28125, - "top": -73.627789, - "right": 64.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 207, - "left": 64.6875, - "top": -73.627789, - "right": 66.09375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 207, - "left": 66.09375, - "top": -73.627789, - "right": 67.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 207, - "left": 67.5, - "top": -73.627789, - "right": 68.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 207, - "left": 68.90625, - "top": -73.627789, - "right": 70.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 207, - "left": 70.3125, - "top": -73.627789, - "right": 71.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 207, - "left": 71.71875, - "top": -73.627789, - "right": 73.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 207, - "left": 73.125, - "top": -73.627789, - "right": 74.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 207, - "left": 74.53125, - "top": -73.627789, - "right": 75.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 207, - "left": 75.9375, - "top": -73.627789, - "right": 77.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 207, - "left": 77.34375, - "top": -73.627789, - "right": 78.75, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 207, - "left": 78.75, - "top": -73.627789, - "right": 80.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 207, - "left": 80.15625, - "top": -73.627789, - "right": 81.5625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 207, - "left": 81.5625, - "top": -73.627789, - "right": 82.96875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 207, - "left": 82.96875, - "top": -73.627789, - "right": 84.375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 207, - "left": 84.375, - "top": -73.627789, - "right": 85.78125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 207, - "left": 85.78125, - "top": -73.627789, - "right": 87.1875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 207, - "left": 87.1875, - "top": -73.627789, - "right": 88.59375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 207, - "left": 88.59375, - "top": -73.627789, - "right": 90.0, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 207, - "left": 90.0, - "top": -73.627789, - "right": 91.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 207, - "left": 91.40625, - "top": -73.627789, - "right": 92.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 207, - "left": 92.8125, - "top": -73.627789, - "right": 94.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 207, - "left": 94.21875, - "top": -73.627789, - "right": 95.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 207, - "left": 95.625, - "top": -73.627789, - "right": 97.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 207, - "left": 97.03125, - "top": -73.627789, - "right": 98.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 207, - "left": 98.4375, - "top": -73.627789, - "right": 99.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 207, - "left": 99.84375, - "top": -73.627789, - "right": 101.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 207, - "left": 101.25, - "top": -73.627789, - "right": 102.65625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 207, - "left": 102.65625, - "top": -73.627789, - "right": 104.0625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 207, - "left": 104.0625, - "top": -73.627789, - "right": 105.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 207, - "left": 105.46875, - "top": -73.627789, - "right": 106.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 207, - "left": 106.875, - "top": -73.627789, - "right": 108.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 207, - "left": 108.28125, - "top": -73.627789, - "right": 109.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 207, - "left": 109.6875, - "top": -73.627789, - "right": 111.09375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 207, - "left": 111.09375, - "top": -73.627789, - "right": 112.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 207, - "left": 112.5, - "top": -73.627789, - "right": 113.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 207, - "left": 113.90625, - "top": -73.627789, - "right": 115.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 207, - "left": 115.3125, - "top": -73.627789, - "right": 116.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 207, - "left": 116.71875, - "top": -73.627789, - "right": 118.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 207, - "left": 118.125, - "top": -73.627789, - "right": 119.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 207, - "left": 119.53125, - "top": -73.627789, - "right": 120.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 207, - "left": 120.9375, - "top": -73.627789, - "right": 122.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 207, - "left": 122.34375, - "top": -73.627789, - "right": 123.75, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 207, - "left": 123.75, - "top": -73.627789, - "right": 125.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 207, - "left": 125.15625, - "top": -73.627789, - "right": 126.5625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 207, - "left": 126.5625, - "top": -73.627789, - "right": 127.96875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 207, - "left": 127.96875, - "top": -73.627789, - "right": 129.375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 207, - "left": 129.375, - "top": -73.627789, - "right": 130.78125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 207, - "left": 130.78125, - "top": -73.627789, - "right": 132.1875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 207, - "left": 132.1875, - "top": -73.627789, - "right": 133.59375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 207, - "left": 133.59375, - "top": -73.627789, - "right": 135.0, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 207, - "left": 135.0, - "top": -73.627789, - "right": 136.40625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 207, - "left": 136.40625, - "top": -73.627789, - "right": 137.8125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 207, - "left": 137.8125, - "top": -73.627789, - "right": 139.21875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 207, - "left": 139.21875, - "top": -73.627789, - "right": 140.625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 207, - "left": 140.625, - "top": -73.627789, - "right": 142.03125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 207, - "left": 142.03125, - "top": -73.627789, - "right": 143.4375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 207, - "left": 143.4375, - "top": -73.627789, - "right": 144.84375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 207, - "left": 144.84375, - "top": -73.627789, - "right": 146.25, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 207, - "left": 146.25, - "top": -73.627789, - "right": 147.65625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 207, - "left": 147.65625, - "top": -73.627789, - "right": 149.0625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 207, - "left": 149.0625, - "top": -73.627789, - "right": 150.46875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 207, - "left": 150.46875, - "top": -73.627789, - "right": 151.875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 207, - "left": 151.875, - "top": -73.627789, - "right": 153.28125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 207, - "left": 153.28125, - "top": -73.627789, - "right": 154.6875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 207, - "left": 154.6875, - "top": -73.627789, - "right": 156.09375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 207, - "left": 156.09375, - "top": -73.627789, - "right": 157.5, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 207, - "left": 157.5, - "top": -73.627789, - "right": 158.90625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 207, - "left": 158.90625, - "top": -73.627789, - "right": 160.3125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 207, - "left": 160.3125, - "top": -73.627789, - "right": 161.71875, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 207, - "left": 161.71875, - "top": -73.627789, - "right": 163.125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 207, - "left": 163.125, - "top": -73.627789, - "right": 164.53125, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 207, - "left": 164.53125, - "top": -73.627789, - "right": 165.9375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 207, - "left": 165.9375, - "top": -73.627789, - "right": 167.34375, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 207, - "left": 168.75, - "top": -73.627789, - "right": 170.15625, - "bottom": -74.019543, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 208, - "left": -133.59375, - "top": -74.019543, - "right": -132.1875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 208, - "left": -132.1875, - "top": -74.019543, - "right": -130.78125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 208, - "left": -130.78125, - "top": -74.019543, - "right": -129.375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 208, - "left": -127.96875, - "top": -74.019543, - "right": -126.5625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 208, - "left": -125.15625, - "top": -74.019543, - "right": -123.75, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 208, - "left": -123.75, - "top": -74.019543, - "right": -122.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 208, - "left": -122.34375, - "top": -74.019543, - "right": -120.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 208, - "left": -120.9375, - "top": -74.019543, - "right": -119.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 208, - "left": -119.53125, - "top": -74.019543, - "right": -118.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 208, - "left": -118.125, - "top": -74.019543, - "right": -116.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 208, - "left": -116.71875, - "top": -74.019543, - "right": -115.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 208, - "left": -115.3125, - "top": -74.019543, - "right": -113.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 208, - "left": -113.90625, - "top": -74.019543, - "right": -112.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 208, - "left": -112.5, - "top": -74.019543, - "right": -111.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 208, - "left": -111.09375, - "top": -74.019543, - "right": -109.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 208, - "left": -105.46875, - "top": -74.019543, - "right": -104.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 208, - "left": -104.0625, - "top": -74.019543, - "right": -102.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 208, - "left": -102.65625, - "top": -74.019543, - "right": -101.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 208, - "left": -101.25, - "top": -74.019543, - "right": -99.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 208, - "left": -99.84375, - "top": -74.019543, - "right": -98.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 208, - "left": -98.4375, - "top": -74.019543, - "right": -97.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 208, - "left": -97.03125, - "top": -74.019543, - "right": -95.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 208, - "left": -95.625, - "top": -74.019543, - "right": -94.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 208, - "left": -94.21875, - "top": -74.019543, - "right": -92.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 208, - "left": -92.8125, - "top": -74.019543, - "right": -91.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 208, - "left": -91.40625, - "top": -74.019543, - "right": -90.0, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 208, - "left": -90.0, - "top": -74.019543, - "right": -88.59375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 208, - "left": -88.59375, - "top": -74.019543, - "right": -87.1875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 208, - "left": -87.1875, - "top": -74.019543, - "right": -85.78125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 208, - "left": -85.78125, - "top": -74.019543, - "right": -84.375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 208, - "left": -84.375, - "top": -74.019543, - "right": -82.96875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 208, - "left": -82.96875, - "top": -74.019543, - "right": -81.5625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 208, - "left": -81.5625, - "top": -74.019543, - "right": -80.15625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 208, - "left": -80.15625, - "top": -74.019543, - "right": -78.75, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 208, - "left": -78.75, - "top": -74.019543, - "right": -77.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 208, - "left": -77.34375, - "top": -74.019543, - "right": -75.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 208, - "left": -75.9375, - "top": -74.019543, - "right": -74.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 208, - "left": -74.53125, - "top": -74.019543, - "right": -73.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 208, - "left": -73.125, - "top": -74.019543, - "right": -71.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 208, - "left": -71.71875, - "top": -74.019543, - "right": -70.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 208, - "left": -70.3125, - "top": -74.019543, - "right": -68.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 208, - "left": -68.90625, - "top": -74.019543, - "right": -67.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 208, - "left": -67.5, - "top": -74.019543, - "right": -66.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 208, - "left": -66.09375, - "top": -74.019543, - "right": -64.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 208, - "left": -64.6875, - "top": -74.019543, - "right": -63.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 208, - "left": -63.28125, - "top": -74.019543, - "right": -61.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 208, - "left": -61.875, - "top": -74.019543, - "right": -60.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 208, - "left": -22.5, - "top": -74.019543, - "right": -21.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 208, - "left": -21.09375, - "top": -74.019543, - "right": -19.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 208, - "left": -19.6875, - "top": -74.019543, - "right": -18.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 208, - "left": -18.28125, - "top": -74.019543, - "right": -16.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 208, - "left": -16.875, - "top": -74.019543, - "right": -15.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 208, - "left": -15.46875, - "top": -74.019543, - "right": -14.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 208, - "left": -14.0625, - "top": -74.019543, - "right": -12.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 208, - "left": -12.65625, - "top": -74.019543, - "right": -11.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 208, - "left": -11.25, - "top": -74.019543, - "right": -9.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 208, - "left": -9.84375, - "top": -74.019543, - "right": -8.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 208, - "left": -8.4375, - "top": -74.019543, - "right": -7.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 208, - "left": -7.03125, - "top": -74.019543, - "right": -5.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 208, - "left": -5.625, - "top": -74.019543, - "right": -4.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 208, - "left": -4.21875, - "top": -74.019543, - "right": -2.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 208, - "left": -2.8125, - "top": -74.019543, - "right": -1.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 208, - "left": -1.40625, - "top": -74.019543, - "right": 0.0, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 208, - "left": 0.0, - "top": -74.019543, - "right": 1.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 208, - "left": 1.40625, - "top": -74.019543, - "right": 2.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 208, - "left": 2.8125, - "top": -74.019543, - "right": 4.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 208, - "left": 4.21875, - "top": -74.019543, - "right": 5.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 208, - "left": 5.625, - "top": -74.019543, - "right": 7.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 208, - "left": 7.03125, - "top": -74.019543, - "right": 8.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 208, - "left": 8.4375, - "top": -74.019543, - "right": 9.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 208, - "left": 9.84375, - "top": -74.019543, - "right": 11.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 208, - "left": 11.25, - "top": -74.019543, - "right": 12.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 208, - "left": 12.65625, - "top": -74.019543, - "right": 14.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 208, - "left": 14.0625, - "top": -74.019543, - "right": 15.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 208, - "left": 15.46875, - "top": -74.019543, - "right": 16.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 208, - "left": 16.875, - "top": -74.019543, - "right": 18.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 208, - "left": 18.28125, - "top": -74.019543, - "right": 19.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 208, - "left": 19.6875, - "top": -74.019543, - "right": 21.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 208, - "left": 21.09375, - "top": -74.019543, - "right": 22.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 208, - "left": 22.5, - "top": -74.019543, - "right": 23.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 208, - "left": 23.90625, - "top": -74.019543, - "right": 25.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 208, - "left": 25.3125, - "top": -74.019543, - "right": 26.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 208, - "left": 26.71875, - "top": -74.019543, - "right": 28.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 208, - "left": 28.125, - "top": -74.019543, - "right": 29.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 208, - "left": 29.53125, - "top": -74.019543, - "right": 30.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 208, - "left": 30.9375, - "top": -74.019543, - "right": 32.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 208, - "left": 32.34375, - "top": -74.019543, - "right": 33.75, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 208, - "left": 33.75, - "top": -74.019543, - "right": 35.15625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 208, - "left": 35.15625, - "top": -74.019543, - "right": 36.5625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 208, - "left": 36.5625, - "top": -74.019543, - "right": 37.96875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 208, - "left": 37.96875, - "top": -74.019543, - "right": 39.375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 208, - "left": 39.375, - "top": -74.019543, - "right": 40.78125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 208, - "left": 40.78125, - "top": -74.019543, - "right": 42.1875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 208, - "left": 42.1875, - "top": -74.019543, - "right": 43.59375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 208, - "left": 43.59375, - "top": -74.019543, - "right": 45.0, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 208, - "left": 45.0, - "top": -74.019543, - "right": 46.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 208, - "left": 46.40625, - "top": -74.019543, - "right": 47.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 208, - "left": 47.8125, - "top": -74.019543, - "right": 49.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 208, - "left": 49.21875, - "top": -74.019543, - "right": 50.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 208, - "left": 50.625, - "top": -74.019543, - "right": 52.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 208, - "left": 52.03125, - "top": -74.019543, - "right": 53.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 208, - "left": 53.4375, - "top": -74.019543, - "right": 54.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 208, - "left": 54.84375, - "top": -74.019543, - "right": 56.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 208, - "left": 56.25, - "top": -74.019543, - "right": 57.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 208, - "left": 57.65625, - "top": -74.019543, - "right": 59.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 208, - "left": 59.0625, - "top": -74.019543, - "right": 60.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 208, - "left": 60.46875, - "top": -74.019543, - "right": 61.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 208, - "left": 61.875, - "top": -74.019543, - "right": 63.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 208, - "left": 63.28125, - "top": -74.019543, - "right": 64.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 208, - "left": 64.6875, - "top": -74.019543, - "right": 66.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 208, - "left": 66.09375, - "top": -74.019543, - "right": 67.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 208, - "left": 67.5, - "top": -74.019543, - "right": 68.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 208, - "left": 68.90625, - "top": -74.019543, - "right": 70.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 208, - "left": 70.3125, - "top": -74.019543, - "right": 71.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 208, - "left": 71.71875, - "top": -74.019543, - "right": 73.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 208, - "left": 73.125, - "top": -74.019543, - "right": 74.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 208, - "left": 74.53125, - "top": -74.019543, - "right": 75.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 208, - "left": 75.9375, - "top": -74.019543, - "right": 77.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 208, - "left": 77.34375, - "top": -74.019543, - "right": 78.75, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 208, - "left": 78.75, - "top": -74.019543, - "right": 80.15625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 208, - "left": 80.15625, - "top": -74.019543, - "right": 81.5625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 208, - "left": 81.5625, - "top": -74.019543, - "right": 82.96875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 208, - "left": 82.96875, - "top": -74.019543, - "right": 84.375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 208, - "left": 84.375, - "top": -74.019543, - "right": 85.78125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 208, - "left": 85.78125, - "top": -74.019543, - "right": 87.1875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 208, - "left": 87.1875, - "top": -74.019543, - "right": 88.59375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 208, - "left": 88.59375, - "top": -74.019543, - "right": 90.0, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 208, - "left": 90.0, - "top": -74.019543, - "right": 91.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 208, - "left": 91.40625, - "top": -74.019543, - "right": 92.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 208, - "left": 92.8125, - "top": -74.019543, - "right": 94.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 208, - "left": 94.21875, - "top": -74.019543, - "right": 95.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 208, - "left": 95.625, - "top": -74.019543, - "right": 97.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 208, - "left": 97.03125, - "top": -74.019543, - "right": 98.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 208, - "left": 98.4375, - "top": -74.019543, - "right": 99.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 208, - "left": 99.84375, - "top": -74.019543, - "right": 101.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 208, - "left": 101.25, - "top": -74.019543, - "right": 102.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 208, - "left": 102.65625, - "top": -74.019543, - "right": 104.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 208, - "left": 104.0625, - "top": -74.019543, - "right": 105.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 208, - "left": 105.46875, - "top": -74.019543, - "right": 106.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 208, - "left": 106.875, - "top": -74.019543, - "right": 108.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 208, - "left": 108.28125, - "top": -74.019543, - "right": 109.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 208, - "left": 109.6875, - "top": -74.019543, - "right": 111.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 208, - "left": 111.09375, - "top": -74.019543, - "right": 112.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 208, - "left": 112.5, - "top": -74.019543, - "right": 113.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 208, - "left": 113.90625, - "top": -74.019543, - "right": 115.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 208, - "left": 115.3125, - "top": -74.019543, - "right": 116.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 208, - "left": 116.71875, - "top": -74.019543, - "right": 118.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 208, - "left": 118.125, - "top": -74.019543, - "right": 119.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 208, - "left": 119.53125, - "top": -74.019543, - "right": 120.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 208, - "left": 120.9375, - "top": -74.019543, - "right": 122.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 208, - "left": 122.34375, - "top": -74.019543, - "right": 123.75, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 208, - "left": 123.75, - "top": -74.019543, - "right": 125.15625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 208, - "left": 125.15625, - "top": -74.019543, - "right": 126.5625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 208, - "left": 126.5625, - "top": -74.019543, - "right": 127.96875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 208, - "left": 127.96875, - "top": -74.019543, - "right": 129.375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 208, - "left": 129.375, - "top": -74.019543, - "right": 130.78125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 208, - "left": 130.78125, - "top": -74.019543, - "right": 132.1875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 208, - "left": 132.1875, - "top": -74.019543, - "right": 133.59375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 208, - "left": 133.59375, - "top": -74.019543, - "right": 135.0, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 208, - "left": 135.0, - "top": -74.019543, - "right": 136.40625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 208, - "left": 136.40625, - "top": -74.019543, - "right": 137.8125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 208, - "left": 137.8125, - "top": -74.019543, - "right": 139.21875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 208, - "left": 139.21875, - "top": -74.019543, - "right": 140.625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 208, - "left": 140.625, - "top": -74.019543, - "right": 142.03125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 208, - "left": 142.03125, - "top": -74.019543, - "right": 143.4375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 208, - "left": 143.4375, - "top": -74.019543, - "right": 144.84375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 208, - "left": 144.84375, - "top": -74.019543, - "right": 146.25, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 208, - "left": 146.25, - "top": -74.019543, - "right": 147.65625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 208, - "left": 147.65625, - "top": -74.019543, - "right": 149.0625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 208, - "left": 149.0625, - "top": -74.019543, - "right": 150.46875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 208, - "left": 150.46875, - "top": -74.019543, - "right": 151.875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 208, - "left": 151.875, - "top": -74.019543, - "right": 153.28125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 208, - "left": 153.28125, - "top": -74.019543, - "right": 154.6875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 208, - "left": 154.6875, - "top": -74.019543, - "right": 156.09375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 208, - "left": 156.09375, - "top": -74.019543, - "right": 157.5, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 208, - "left": 157.5, - "top": -74.019543, - "right": 158.90625, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 208, - "left": 158.90625, - "top": -74.019543, - "right": 160.3125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 208, - "left": 160.3125, - "top": -74.019543, - "right": 161.71875, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 208, - "left": 161.71875, - "top": -74.019543, - "right": 163.125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 208, - "left": 163.125, - "top": -74.019543, - "right": 164.53125, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 208, - "left": 164.53125, - "top": -74.019543, - "right": 165.9375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 208, - "left": 165.9375, - "top": -74.019543, - "right": 167.34375, - "bottom": -74.402163, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 209, - "left": -140.625, - "top": -74.402163, - "right": -139.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 209, - "left": -137.8125, - "top": -74.402163, - "right": -136.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 209, - "left": -136.40625, - "top": -74.402163, - "right": -135.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 209, - "left": -135.0, - "top": -74.402163, - "right": -133.59375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 209, - "left": -133.59375, - "top": -74.402163, - "right": -132.1875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 209, - "left": -132.1875, - "top": -74.402163, - "right": -130.78125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 209, - "left": -130.78125, - "top": -74.402163, - "right": -129.375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 209, - "left": -129.375, - "top": -74.402163, - "right": -127.96875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 209, - "left": -127.96875, - "top": -74.402163, - "right": -126.5625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 209, - "left": -126.5625, - "top": -74.402163, - "right": -125.15625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 209, - "left": -125.15625, - "top": -74.402163, - "right": -123.75, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 209, - "left": -123.75, - "top": -74.402163, - "right": -122.34375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 209, - "left": -122.34375, - "top": -74.402163, - "right": -120.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 209, - "left": -120.9375, - "top": -74.402163, - "right": -119.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 209, - "left": -119.53125, - "top": -74.402163, - "right": -118.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 209, - "left": -118.125, - "top": -74.402163, - "right": -116.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 209, - "left": -116.71875, - "top": -74.402163, - "right": -115.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 209, - "left": -115.3125, - "top": -74.402163, - "right": -113.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 209, - "left": -113.90625, - "top": -74.402163, - "right": -112.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 209, - "left": -112.5, - "top": -74.402163, - "right": -111.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 209, - "left": -111.09375, - "top": -74.402163, - "right": -109.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 209, - "left": -109.6875, - "top": -74.402163, - "right": -108.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 209, - "left": -108.28125, - "top": -74.402163, - "right": -106.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 209, - "left": -105.46875, - "top": -74.402163, - "right": -104.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 209, - "left": -104.0625, - "top": -74.402163, - "right": -102.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 209, - "left": -102.65625, - "top": -74.402163, - "right": -101.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 209, - "left": -101.25, - "top": -74.402163, - "right": -99.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 209, - "left": -99.84375, - "top": -74.402163, - "right": -98.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 209, - "left": -98.4375, - "top": -74.402163, - "right": -97.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 209, - "left": -97.03125, - "top": -74.402163, - "right": -95.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 209, - "left": -95.625, - "top": -74.402163, - "right": -94.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 209, - "left": -94.21875, - "top": -74.402163, - "right": -92.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 209, - "left": -92.8125, - "top": -74.402163, - "right": -91.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 209, - "left": -91.40625, - "top": -74.402163, - "right": -90.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 209, - "left": -90.0, - "top": -74.402163, - "right": -88.59375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 209, - "left": -88.59375, - "top": -74.402163, - "right": -87.1875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 209, - "left": -87.1875, - "top": -74.402163, - "right": -85.78125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 209, - "left": -85.78125, - "top": -74.402163, - "right": -84.375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 209, - "left": -84.375, - "top": -74.402163, - "right": -82.96875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 209, - "left": -82.96875, - "top": -74.402163, - "right": -81.5625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 209, - "left": -81.5625, - "top": -74.402163, - "right": -80.15625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 209, - "left": -80.15625, - "top": -74.402163, - "right": -78.75, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 209, - "left": -78.75, - "top": -74.402163, - "right": -77.34375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 209, - "left": -77.34375, - "top": -74.402163, - "right": -75.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 209, - "left": -75.9375, - "top": -74.402163, - "right": -74.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 209, - "left": -74.53125, - "top": -74.402163, - "right": -73.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 209, - "left": -73.125, - "top": -74.402163, - "right": -71.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 209, - "left": -71.71875, - "top": -74.402163, - "right": -70.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 209, - "left": -70.3125, - "top": -74.402163, - "right": -68.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 209, - "left": -68.90625, - "top": -74.402163, - "right": -67.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 209, - "left": -67.5, - "top": -74.402163, - "right": -66.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 209, - "left": -66.09375, - "top": -74.402163, - "right": -64.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 209, - "left": -64.6875, - "top": -74.402163, - "right": -63.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 209, - "left": -63.28125, - "top": -74.402163, - "right": -61.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 209, - "left": -61.875, - "top": -74.402163, - "right": -60.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 209, - "left": -23.90625, - "top": -74.402163, - "right": -22.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 209, - "left": -22.5, - "top": -74.402163, - "right": -21.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 209, - "left": -21.09375, - "top": -74.402163, - "right": -19.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 209, - "left": -19.6875, - "top": -74.402163, - "right": -18.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 209, - "left": -18.28125, - "top": -74.402163, - "right": -16.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 209, - "left": -16.875, - "top": -74.402163, - "right": -15.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 209, - "left": -15.46875, - "top": -74.402163, - "right": -14.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 209, - "left": -14.0625, - "top": -74.402163, - "right": -12.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 209, - "left": -12.65625, - "top": -74.402163, - "right": -11.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 209, - "left": -11.25, - "top": -74.402163, - "right": -9.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 209, - "left": -9.84375, - "top": -74.402163, - "right": -8.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 209, - "left": -8.4375, - "top": -74.402163, - "right": -7.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 209, - "left": -7.03125, - "top": -74.402163, - "right": -5.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 209, - "left": -5.625, - "top": -74.402163, - "right": -4.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 209, - "left": -4.21875, - "top": -74.402163, - "right": -2.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 209, - "left": -2.8125, - "top": -74.402163, - "right": -1.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 209, - "left": -1.40625, - "top": -74.402163, - "right": 0.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 209, - "left": 0.0, - "top": -74.402163, - "right": 1.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 209, - "left": 1.40625, - "top": -74.402163, - "right": 2.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 209, - "left": 2.8125, - "top": -74.402163, - "right": 4.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 209, - "left": 4.21875, - "top": -74.402163, - "right": 5.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 209, - "left": 5.625, - "top": -74.402163, - "right": 7.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 209, - "left": 7.03125, - "top": -74.402163, - "right": 8.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 209, - "left": 8.4375, - "top": -74.402163, - "right": 9.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 209, - "left": 9.84375, - "top": -74.402163, - "right": 11.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 209, - "left": 11.25, - "top": -74.402163, - "right": 12.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 209, - "left": 12.65625, - "top": -74.402163, - "right": 14.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 209, - "left": 14.0625, - "top": -74.402163, - "right": 15.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 209, - "left": 15.46875, - "top": -74.402163, - "right": 16.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 209, - "left": 16.875, - "top": -74.402163, - "right": 18.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 209, - "left": 18.28125, - "top": -74.402163, - "right": 19.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 209, - "left": 19.6875, - "top": -74.402163, - "right": 21.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 209, - "left": 21.09375, - "top": -74.402163, - "right": 22.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 209, - "left": 22.5, - "top": -74.402163, - "right": 23.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 209, - "left": 23.90625, - "top": -74.402163, - "right": 25.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 209, - "left": 25.3125, - "top": -74.402163, - "right": 26.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 209, - "left": 26.71875, - "top": -74.402163, - "right": 28.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 209, - "left": 28.125, - "top": -74.402163, - "right": 29.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 209, - "left": 29.53125, - "top": -74.402163, - "right": 30.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 209, - "left": 30.9375, - "top": -74.402163, - "right": 32.34375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 209, - "left": 32.34375, - "top": -74.402163, - "right": 33.75, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 209, - "left": 33.75, - "top": -74.402163, - "right": 35.15625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 209, - "left": 35.15625, - "top": -74.402163, - "right": 36.5625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 209, - "left": 36.5625, - "top": -74.402163, - "right": 37.96875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 209, - "left": 37.96875, - "top": -74.402163, - "right": 39.375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 209, - "left": 39.375, - "top": -74.402163, - "right": 40.78125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 209, - "left": 40.78125, - "top": -74.402163, - "right": 42.1875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 209, - "left": 42.1875, - "top": -74.402163, - "right": 43.59375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 209, - "left": 43.59375, - "top": -74.402163, - "right": 45.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 209, - "left": 45.0, - "top": -74.402163, - "right": 46.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 209, - "left": 46.40625, - "top": -74.402163, - "right": 47.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 209, - "left": 47.8125, - "top": -74.402163, - "right": 49.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 209, - "left": 49.21875, - "top": -74.402163, - "right": 50.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 209, - "left": 50.625, - "top": -74.402163, - "right": 52.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 209, - "left": 52.03125, - "top": -74.402163, - "right": 53.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 209, - "left": 53.4375, - "top": -74.402163, - "right": 54.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 209, - "left": 54.84375, - "top": -74.402163, - "right": 56.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 209, - "left": 56.25, - "top": -74.402163, - "right": 57.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 209, - "left": 57.65625, - "top": -74.402163, - "right": 59.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 209, - "left": 59.0625, - "top": -74.402163, - "right": 60.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 209, - "left": 60.46875, - "top": -74.402163, - "right": 61.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 209, - "left": 61.875, - "top": -74.402163, - "right": 63.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 209, - "left": 63.28125, - "top": -74.402163, - "right": 64.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 209, - "left": 64.6875, - "top": -74.402163, - "right": 66.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 209, - "left": 66.09375, - "top": -74.402163, - "right": 67.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 209, - "left": 67.5, - "top": -74.402163, - "right": 68.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 209, - "left": 68.90625, - "top": -74.402163, - "right": 70.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 209, - "left": 70.3125, - "top": -74.402163, - "right": 71.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 209, - "left": 71.71875, - "top": -74.402163, - "right": 73.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 209, - "left": 73.125, - "top": -74.402163, - "right": 74.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 209, - "left": 74.53125, - "top": -74.402163, - "right": 75.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 209, - "left": 75.9375, - "top": -74.402163, - "right": 77.34375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 209, - "left": 77.34375, - "top": -74.402163, - "right": 78.75, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 209, - "left": 78.75, - "top": -74.402163, - "right": 80.15625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 209, - "left": 80.15625, - "top": -74.402163, - "right": 81.5625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 209, - "left": 81.5625, - "top": -74.402163, - "right": 82.96875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 209, - "left": 82.96875, - "top": -74.402163, - "right": 84.375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 209, - "left": 84.375, - "top": -74.402163, - "right": 85.78125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 209, - "left": 85.78125, - "top": -74.402163, - "right": 87.1875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 209, - "left": 87.1875, - "top": -74.402163, - "right": 88.59375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 209, - "left": 88.59375, - "top": -74.402163, - "right": 90.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 209, - "left": 90.0, - "top": -74.402163, - "right": 91.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 209, - "left": 91.40625, - "top": -74.402163, - "right": 92.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 209, - "left": 92.8125, - "top": -74.402163, - "right": 94.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 209, - "left": 94.21875, - "top": -74.402163, - "right": 95.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 209, - "left": 95.625, - "top": -74.402163, - "right": 97.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 209, - "left": 97.03125, - "top": -74.402163, - "right": 98.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 209, - "left": 98.4375, - "top": -74.402163, - "right": 99.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 209, - "left": 99.84375, - "top": -74.402163, - "right": 101.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 209, - "left": 101.25, - "top": -74.402163, - "right": 102.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 209, - "left": 102.65625, - "top": -74.402163, - "right": 104.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 209, - "left": 104.0625, - "top": -74.402163, - "right": 105.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 209, - "left": 105.46875, - "top": -74.402163, - "right": 106.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 209, - "left": 106.875, - "top": -74.402163, - "right": 108.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 209, - "left": 108.28125, - "top": -74.402163, - "right": 109.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 209, - "left": 109.6875, - "top": -74.402163, - "right": 111.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 209, - "left": 111.09375, - "top": -74.402163, - "right": 112.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 209, - "left": 112.5, - "top": -74.402163, - "right": 113.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 209, - "left": 113.90625, - "top": -74.402163, - "right": 115.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 209, - "left": 115.3125, - "top": -74.402163, - "right": 116.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 209, - "left": 116.71875, - "top": -74.402163, - "right": 118.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 209, - "left": 118.125, - "top": -74.402163, - "right": 119.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 209, - "left": 119.53125, - "top": -74.402163, - "right": 120.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 209, - "left": 120.9375, - "top": -74.402163, - "right": 122.34375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 209, - "left": 122.34375, - "top": -74.402163, - "right": 123.75, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 209, - "left": 123.75, - "top": -74.402163, - "right": 125.15625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 209, - "left": 125.15625, - "top": -74.402163, - "right": 126.5625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 209, - "left": 126.5625, - "top": -74.402163, - "right": 127.96875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 209, - "left": 127.96875, - "top": -74.402163, - "right": 129.375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 209, - "left": 129.375, - "top": -74.402163, - "right": 130.78125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 209, - "left": 130.78125, - "top": -74.402163, - "right": 132.1875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 209, - "left": 132.1875, - "top": -74.402163, - "right": 133.59375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 209, - "left": 133.59375, - "top": -74.402163, - "right": 135.0, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 209, - "left": 135.0, - "top": -74.402163, - "right": 136.40625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 209, - "left": 136.40625, - "top": -74.402163, - "right": 137.8125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 209, - "left": 137.8125, - "top": -74.402163, - "right": 139.21875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 209, - "left": 139.21875, - "top": -74.402163, - "right": 140.625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 209, - "left": 140.625, - "top": -74.402163, - "right": 142.03125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 209, - "left": 142.03125, - "top": -74.402163, - "right": 143.4375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 209, - "left": 143.4375, - "top": -74.402163, - "right": 144.84375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 209, - "left": 144.84375, - "top": -74.402163, - "right": 146.25, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 209, - "left": 146.25, - "top": -74.402163, - "right": 147.65625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 209, - "left": 147.65625, - "top": -74.402163, - "right": 149.0625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 209, - "left": 149.0625, - "top": -74.402163, - "right": 150.46875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 209, - "left": 150.46875, - "top": -74.402163, - "right": 151.875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 209, - "left": 151.875, - "top": -74.402163, - "right": 153.28125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 209, - "left": 153.28125, - "top": -74.402163, - "right": 154.6875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 209, - "left": 154.6875, - "top": -74.402163, - "right": 156.09375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 209, - "left": 156.09375, - "top": -74.402163, - "right": 157.5, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 209, - "left": 157.5, - "top": -74.402163, - "right": 158.90625, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 209, - "left": 158.90625, - "top": -74.402163, - "right": 160.3125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 209, - "left": 160.3125, - "top": -74.402163, - "right": 161.71875, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 209, - "left": 161.71875, - "top": -74.402163, - "right": 163.125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 209, - "left": 163.125, - "top": -74.402163, - "right": 164.53125, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 209, - "left": 164.53125, - "top": -74.402163, - "right": 165.9375, - "bottom": -74.775843, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 210, - "left": -140.625, - "top": -74.775843, - "right": -139.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 210, - "left": -139.21875, - "top": -74.775843, - "right": -137.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 210, - "left": -137.8125, - "top": -74.775843, - "right": -136.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 210, - "left": -136.40625, - "top": -74.775843, - "right": -135.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 210, - "left": -135.0, - "top": -74.775843, - "right": -133.59375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 210, - "left": -133.59375, - "top": -74.775843, - "right": -132.1875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 210, - "left": -132.1875, - "top": -74.775843, - "right": -130.78125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 210, - "left": -130.78125, - "top": -74.775843, - "right": -129.375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 210, - "left": -129.375, - "top": -74.775843, - "right": -127.96875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 210, - "left": -127.96875, - "top": -74.775843, - "right": -126.5625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 210, - "left": -126.5625, - "top": -74.775843, - "right": -125.15625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 210, - "left": -125.15625, - "top": -74.775843, - "right": -123.75, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 210, - "left": -123.75, - "top": -74.775843, - "right": -122.34375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 210, - "left": -122.34375, - "top": -74.775843, - "right": -120.9375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 210, - "left": -120.9375, - "top": -74.775843, - "right": -119.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 210, - "left": -119.53125, - "top": -74.775843, - "right": -118.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 210, - "left": -118.125, - "top": -74.775843, - "right": -116.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 210, - "left": -116.71875, - "top": -74.775843, - "right": -115.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 210, - "left": -115.3125, - "top": -74.775843, - "right": -113.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 210, - "left": -113.90625, - "top": -74.775843, - "right": -112.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 210, - "left": -112.5, - "top": -74.775843, - "right": -111.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 210, - "left": -111.09375, - "top": -74.775843, - "right": -109.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 210, - "left": -109.6875, - "top": -74.775843, - "right": -108.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 210, - "left": -108.28125, - "top": -74.775843, - "right": -106.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 210, - "left": -106.875, - "top": -74.775843, - "right": -105.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 210, - "left": -105.46875, - "top": -74.775843, - "right": -104.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 210, - "left": -104.0625, - "top": -74.775843, - "right": -102.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 210, - "left": -102.65625, - "top": -74.775843, - "right": -101.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 210, - "left": -101.25, - "top": -74.775843, - "right": -99.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 210, - "left": -99.84375, - "top": -74.775843, - "right": -98.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 210, - "left": -98.4375, - "top": -74.775843, - "right": -97.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 210, - "left": -97.03125, - "top": -74.775843, - "right": -95.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 210, - "left": -95.625, - "top": -74.775843, - "right": -94.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 210, - "left": -94.21875, - "top": -74.775843, - "right": -92.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 210, - "left": -92.8125, - "top": -74.775843, - "right": -91.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 210, - "left": -91.40625, - "top": -74.775843, - "right": -90.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 210, - "left": -90.0, - "top": -74.775843, - "right": -88.59375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 210, - "left": -88.59375, - "top": -74.775843, - "right": -87.1875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 210, - "left": -87.1875, - "top": -74.775843, - "right": -85.78125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 210, - "left": -85.78125, - "top": -74.775843, - "right": -84.375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 210, - "left": -84.375, - "top": -74.775843, - "right": -82.96875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 210, - "left": -82.96875, - "top": -74.775843, - "right": -81.5625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 210, - "left": -81.5625, - "top": -74.775843, - "right": -80.15625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 210, - "left": -80.15625, - "top": -74.775843, - "right": -78.75, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 210, - "left": -78.75, - "top": -74.775843, - "right": -77.34375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 210, - "left": -77.34375, - "top": -74.775843, - "right": -75.9375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 210, - "left": -75.9375, - "top": -74.775843, - "right": -74.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 210, - "left": -74.53125, - "top": -74.775843, - "right": -73.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 210, - "left": -73.125, - "top": -74.775843, - "right": -71.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 210, - "left": -71.71875, - "top": -74.775843, - "right": -70.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 210, - "left": -70.3125, - "top": -74.775843, - "right": -68.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 210, - "left": -68.90625, - "top": -74.775843, - "right": -67.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 210, - "left": -67.5, - "top": -74.775843, - "right": -66.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 210, - "left": -66.09375, - "top": -74.775843, - "right": -64.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 210, - "left": -64.6875, - "top": -74.775843, - "right": -63.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 210, - "left": -63.28125, - "top": -74.775843, - "right": -61.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 210, - "left": -23.90625, - "top": -74.775843, - "right": -22.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 210, - "left": -22.5, - "top": -74.775843, - "right": -21.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 210, - "left": -21.09375, - "top": -74.775843, - "right": -19.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 210, - "left": -19.6875, - "top": -74.775843, - "right": -18.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 210, - "left": -18.28125, - "top": -74.775843, - "right": -16.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 210, - "left": -16.875, - "top": -74.775843, - "right": -15.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 210, - "left": -15.46875, - "top": -74.775843, - "right": -14.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 210, - "left": -14.0625, - "top": -74.775843, - "right": -12.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 210, - "left": -12.65625, - "top": -74.775843, - "right": -11.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 210, - "left": -11.25, - "top": -74.775843, - "right": -9.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 210, - "left": -9.84375, - "top": -74.775843, - "right": -8.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 210, - "left": -8.4375, - "top": -74.775843, - "right": -7.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 210, - "left": -7.03125, - "top": -74.775843, - "right": -5.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 210, - "left": -5.625, - "top": -74.775843, - "right": -4.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 210, - "left": -4.21875, - "top": -74.775843, - "right": -2.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 210, - "left": -2.8125, - "top": -74.775843, - "right": -1.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 210, - "left": -1.40625, - "top": -74.775843, - "right": 0.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 210, - "left": 0.0, - "top": -74.775843, - "right": 1.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 210, - "left": 1.40625, - "top": -74.775843, - "right": 2.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 210, - "left": 2.8125, - "top": -74.775843, - "right": 4.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 210, - "left": 4.21875, - "top": -74.775843, - "right": 5.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 210, - "left": 5.625, - "top": -74.775843, - "right": 7.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 210, - "left": 7.03125, - "top": -74.775843, - "right": 8.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 210, - "left": 8.4375, - "top": -74.775843, - "right": 9.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 210, - "left": 9.84375, - "top": -74.775843, - "right": 11.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 210, - "left": 11.25, - "top": -74.775843, - "right": 12.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 210, - "left": 12.65625, - "top": -74.775843, - "right": 14.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 210, - "left": 14.0625, - "top": -74.775843, - "right": 15.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 210, - "left": 15.46875, - "top": -74.775843, - "right": 16.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 210, - "left": 16.875, - "top": -74.775843, - "right": 18.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 210, - "left": 18.28125, - "top": -74.775843, - "right": 19.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 210, - "left": 19.6875, - "top": -74.775843, - "right": 21.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 210, - "left": 21.09375, - "top": -74.775843, - "right": 22.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 210, - "left": 22.5, - "top": -74.775843, - "right": 23.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 210, - "left": 23.90625, - "top": -74.775843, - "right": 25.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 210, - "left": 25.3125, - "top": -74.775843, - "right": 26.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 210, - "left": 26.71875, - "top": -74.775843, - "right": 28.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 210, - "left": 28.125, - "top": -74.775843, - "right": 29.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 210, - "left": 29.53125, - "top": -74.775843, - "right": 30.9375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 210, - "left": 30.9375, - "top": -74.775843, - "right": 32.34375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 210, - "left": 32.34375, - "top": -74.775843, - "right": 33.75, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 210, - "left": 33.75, - "top": -74.775843, - "right": 35.15625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 210, - "left": 35.15625, - "top": -74.775843, - "right": 36.5625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 210, - "left": 36.5625, - "top": -74.775843, - "right": 37.96875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 210, - "left": 37.96875, - "top": -74.775843, - "right": 39.375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 210, - "left": 39.375, - "top": -74.775843, - "right": 40.78125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 210, - "left": 40.78125, - "top": -74.775843, - "right": 42.1875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 210, - "left": 42.1875, - "top": -74.775843, - "right": 43.59375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 210, - "left": 43.59375, - "top": -74.775843, - "right": 45.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 210, - "left": 45.0, - "top": -74.775843, - "right": 46.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 210, - "left": 46.40625, - "top": -74.775843, - "right": 47.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 210, - "left": 47.8125, - "top": -74.775843, - "right": 49.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 210, - "left": 49.21875, - "top": -74.775843, - "right": 50.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 210, - "left": 50.625, - "top": -74.775843, - "right": 52.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 210, - "left": 52.03125, - "top": -74.775843, - "right": 53.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 210, - "left": 53.4375, - "top": -74.775843, - "right": 54.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 210, - "left": 54.84375, - "top": -74.775843, - "right": 56.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 210, - "left": 56.25, - "top": -74.775843, - "right": 57.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 210, - "left": 57.65625, - "top": -74.775843, - "right": 59.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 210, - "left": 59.0625, - "top": -74.775843, - "right": 60.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 210, - "left": 60.46875, - "top": -74.775843, - "right": 61.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 210, - "left": 61.875, - "top": -74.775843, - "right": 63.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 210, - "left": 63.28125, - "top": -74.775843, - "right": 64.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 210, - "left": 64.6875, - "top": -74.775843, - "right": 66.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 210, - "left": 66.09375, - "top": -74.775843, - "right": 67.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 210, - "left": 67.5, - "top": -74.775843, - "right": 68.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 210, - "left": 68.90625, - "top": -74.775843, - "right": 70.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 210, - "left": 70.3125, - "top": -74.775843, - "right": 71.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 210, - "left": 71.71875, - "top": -74.775843, - "right": 73.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 210, - "left": 73.125, - "top": -74.775843, - "right": 74.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 210, - "left": 74.53125, - "top": -74.775843, - "right": 75.9375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 210, - "left": 75.9375, - "top": -74.775843, - "right": 77.34375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 210, - "left": 77.34375, - "top": -74.775843, - "right": 78.75, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 210, - "left": 78.75, - "top": -74.775843, - "right": 80.15625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 210, - "left": 80.15625, - "top": -74.775843, - "right": 81.5625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 210, - "left": 81.5625, - "top": -74.775843, - "right": 82.96875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 210, - "left": 82.96875, - "top": -74.775843, - "right": 84.375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 210, - "left": 84.375, - "top": -74.775843, - "right": 85.78125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 210, - "left": 85.78125, - "top": -74.775843, - "right": 87.1875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 210, - "left": 87.1875, - "top": -74.775843, - "right": 88.59375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 210, - "left": 88.59375, - "top": -74.775843, - "right": 90.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 210, - "left": 90.0, - "top": -74.775843, - "right": 91.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 210, - "left": 91.40625, - "top": -74.775843, - "right": 92.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 210, - "left": 92.8125, - "top": -74.775843, - "right": 94.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 210, - "left": 94.21875, - "top": -74.775843, - "right": 95.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 210, - "left": 95.625, - "top": -74.775843, - "right": 97.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 210, - "left": 97.03125, - "top": -74.775843, - "right": 98.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 210, - "left": 98.4375, - "top": -74.775843, - "right": 99.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 210, - "left": 99.84375, - "top": -74.775843, - "right": 101.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 210, - "left": 101.25, - "top": -74.775843, - "right": 102.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 210, - "left": 102.65625, - "top": -74.775843, - "right": 104.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 210, - "left": 104.0625, - "top": -74.775843, - "right": 105.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 210, - "left": 105.46875, - "top": -74.775843, - "right": 106.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 210, - "left": 106.875, - "top": -74.775843, - "right": 108.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 210, - "left": 108.28125, - "top": -74.775843, - "right": 109.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 210, - "left": 109.6875, - "top": -74.775843, - "right": 111.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 210, - "left": 111.09375, - "top": -74.775843, - "right": 112.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 210, - "left": 112.5, - "top": -74.775843, - "right": 113.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 210, - "left": 113.90625, - "top": -74.775843, - "right": 115.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 210, - "left": 115.3125, - "top": -74.775843, - "right": 116.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 210, - "left": 116.71875, - "top": -74.775843, - "right": 118.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 210, - "left": 118.125, - "top": -74.775843, - "right": 119.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 210, - "left": 119.53125, - "top": -74.775843, - "right": 120.9375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 210, - "left": 120.9375, - "top": -74.775843, - "right": 122.34375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 210, - "left": 122.34375, - "top": -74.775843, - "right": 123.75, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 210, - "left": 123.75, - "top": -74.775843, - "right": 125.15625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 210, - "left": 125.15625, - "top": -74.775843, - "right": 126.5625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 210, - "left": 126.5625, - "top": -74.775843, - "right": 127.96875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 210, - "left": 127.96875, - "top": -74.775843, - "right": 129.375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 210, - "left": 129.375, - "top": -74.775843, - "right": 130.78125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 210, - "left": 130.78125, - "top": -74.775843, - "right": 132.1875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 210, - "left": 132.1875, - "top": -74.775843, - "right": 133.59375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 210, - "left": 133.59375, - "top": -74.775843, - "right": 135.0, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 210, - "left": 135.0, - "top": -74.775843, - "right": 136.40625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 210, - "left": 136.40625, - "top": -74.775843, - "right": 137.8125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 210, - "left": 137.8125, - "top": -74.775843, - "right": 139.21875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 210, - "left": 139.21875, - "top": -74.775843, - "right": 140.625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 210, - "left": 140.625, - "top": -74.775843, - "right": 142.03125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 210, - "left": 142.03125, - "top": -74.775843, - "right": 143.4375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 210, - "left": 143.4375, - "top": -74.775843, - "right": 144.84375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 210, - "left": 144.84375, - "top": -74.775843, - "right": 146.25, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 210, - "left": 146.25, - "top": -74.775843, - "right": 147.65625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 210, - "left": 147.65625, - "top": -74.775843, - "right": 149.0625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 210, - "left": 149.0625, - "top": -74.775843, - "right": 150.46875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 210, - "left": 150.46875, - "top": -74.775843, - "right": 151.875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 210, - "left": 151.875, - "top": -74.775843, - "right": 153.28125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 210, - "left": 153.28125, - "top": -74.775843, - "right": 154.6875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 210, - "left": 154.6875, - "top": -74.775843, - "right": 156.09375, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 210, - "left": 156.09375, - "top": -74.775843, - "right": 157.5, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 210, - "left": 157.5, - "top": -74.775843, - "right": 158.90625, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 210, - "left": 158.90625, - "top": -74.775843, - "right": 160.3125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 210, - "left": 160.3125, - "top": -74.775843, - "right": 161.71875, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 210, - "left": 161.71875, - "top": -74.775843, - "right": 163.125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 210, - "left": 163.125, - "top": -74.775843, - "right": 164.53125, - "bottom": -75.140778, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 211, - "left": -143.4375, - "top": -75.140778, - "right": -142.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 211, - "left": -140.625, - "top": -75.140778, - "right": -139.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 211, - "left": -139.21875, - "top": -75.140778, - "right": -137.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 211, - "left": -137.8125, - "top": -75.140778, - "right": -136.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 211, - "left": -136.40625, - "top": -75.140778, - "right": -135.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 211, - "left": -135.0, - "top": -75.140778, - "right": -133.59375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 211, - "left": -133.59375, - "top": -75.140778, - "right": -132.1875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 211, - "left": -132.1875, - "top": -75.140778, - "right": -130.78125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 211, - "left": -130.78125, - "top": -75.140778, - "right": -129.375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 211, - "left": -129.375, - "top": -75.140778, - "right": -127.96875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 211, - "left": -127.96875, - "top": -75.140778, - "right": -126.5625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 211, - "left": -126.5625, - "top": -75.140778, - "right": -125.15625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 211, - "left": -125.15625, - "top": -75.140778, - "right": -123.75, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 211, - "left": -123.75, - "top": -75.140778, - "right": -122.34375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 211, - "left": -122.34375, - "top": -75.140778, - "right": -120.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 211, - "left": -120.9375, - "top": -75.140778, - "right": -119.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 211, - "left": -119.53125, - "top": -75.140778, - "right": -118.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 211, - "left": -118.125, - "top": -75.140778, - "right": -116.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 211, - "left": -116.71875, - "top": -75.140778, - "right": -115.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 211, - "left": -115.3125, - "top": -75.140778, - "right": -113.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 211, - "left": -113.90625, - "top": -75.140778, - "right": -112.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 211, - "left": -112.5, - "top": -75.140778, - "right": -111.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 211, - "left": -111.09375, - "top": -75.140778, - "right": -109.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 211, - "left": -109.6875, - "top": -75.140778, - "right": -108.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 211, - "left": -108.28125, - "top": -75.140778, - "right": -106.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 211, - "left": -106.875, - "top": -75.140778, - "right": -105.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 211, - "left": -105.46875, - "top": -75.140778, - "right": -104.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 211, - "left": -104.0625, - "top": -75.140778, - "right": -102.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 211, - "left": -102.65625, - "top": -75.140778, - "right": -101.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 211, - "left": -101.25, - "top": -75.140778, - "right": -99.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 211, - "left": -99.84375, - "top": -75.140778, - "right": -98.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 211, - "left": -98.4375, - "top": -75.140778, - "right": -97.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 211, - "left": -97.03125, - "top": -75.140778, - "right": -95.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 211, - "left": -95.625, - "top": -75.140778, - "right": -94.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 211, - "left": -94.21875, - "top": -75.140778, - "right": -92.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 211, - "left": -92.8125, - "top": -75.140778, - "right": -91.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 211, - "left": -91.40625, - "top": -75.140778, - "right": -90.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 211, - "left": -90.0, - "top": -75.140778, - "right": -88.59375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 211, - "left": -88.59375, - "top": -75.140778, - "right": -87.1875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 211, - "left": -87.1875, - "top": -75.140778, - "right": -85.78125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 211, - "left": -85.78125, - "top": -75.140778, - "right": -84.375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 211, - "left": -84.375, - "top": -75.140778, - "right": -82.96875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 211, - "left": -82.96875, - "top": -75.140778, - "right": -81.5625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 211, - "left": -81.5625, - "top": -75.140778, - "right": -80.15625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 211, - "left": -80.15625, - "top": -75.140778, - "right": -78.75, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 211, - "left": -78.75, - "top": -75.140778, - "right": -77.34375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 211, - "left": -77.34375, - "top": -75.140778, - "right": -75.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 211, - "left": -75.9375, - "top": -75.140778, - "right": -74.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 211, - "left": -74.53125, - "top": -75.140778, - "right": -73.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 211, - "left": -73.125, - "top": -75.140778, - "right": -71.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 211, - "left": -71.71875, - "top": -75.140778, - "right": -70.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 211, - "left": -70.3125, - "top": -75.140778, - "right": -68.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 211, - "left": -68.90625, - "top": -75.140778, - "right": -67.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 211, - "left": -67.5, - "top": -75.140778, - "right": -66.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 211, - "left": -66.09375, - "top": -75.140778, - "right": -64.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 211, - "left": -64.6875, - "top": -75.140778, - "right": -63.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 211, - "left": -63.28125, - "top": -75.140778, - "right": -61.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 211, - "left": -25.3125, - "top": -75.140778, - "right": -23.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 211, - "left": -23.90625, - "top": -75.140778, - "right": -22.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 211, - "left": -22.5, - "top": -75.140778, - "right": -21.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 211, - "left": -21.09375, - "top": -75.140778, - "right": -19.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 211, - "left": -19.6875, - "top": -75.140778, - "right": -18.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 211, - "left": -18.28125, - "top": -75.140778, - "right": -16.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 211, - "left": -16.875, - "top": -75.140778, - "right": -15.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 211, - "left": -15.46875, - "top": -75.140778, - "right": -14.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 211, - "left": -14.0625, - "top": -75.140778, - "right": -12.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 211, - "left": -12.65625, - "top": -75.140778, - "right": -11.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 211, - "left": -11.25, - "top": -75.140778, - "right": -9.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 211, - "left": -9.84375, - "top": -75.140778, - "right": -8.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 211, - "left": -8.4375, - "top": -75.140778, - "right": -7.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 211, - "left": -7.03125, - "top": -75.140778, - "right": -5.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 211, - "left": -5.625, - "top": -75.140778, - "right": -4.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 211, - "left": -4.21875, - "top": -75.140778, - "right": -2.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 211, - "left": -2.8125, - "top": -75.140778, - "right": -1.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 211, - "left": -1.40625, - "top": -75.140778, - "right": 0.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 211, - "left": 0.0, - "top": -75.140778, - "right": 1.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 211, - "left": 1.40625, - "top": -75.140778, - "right": 2.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 211, - "left": 2.8125, - "top": -75.140778, - "right": 4.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 211, - "left": 4.21875, - "top": -75.140778, - "right": 5.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 211, - "left": 5.625, - "top": -75.140778, - "right": 7.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 211, - "left": 7.03125, - "top": -75.140778, - "right": 8.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 211, - "left": 8.4375, - "top": -75.140778, - "right": 9.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 211, - "left": 9.84375, - "top": -75.140778, - "right": 11.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 211, - "left": 11.25, - "top": -75.140778, - "right": 12.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 211, - "left": 12.65625, - "top": -75.140778, - "right": 14.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 211, - "left": 14.0625, - "top": -75.140778, - "right": 15.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 211, - "left": 15.46875, - "top": -75.140778, - "right": 16.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 211, - "left": 16.875, - "top": -75.140778, - "right": 18.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 211, - "left": 18.28125, - "top": -75.140778, - "right": 19.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 211, - "left": 19.6875, - "top": -75.140778, - "right": 21.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 211, - "left": 21.09375, - "top": -75.140778, - "right": 22.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 211, - "left": 22.5, - "top": -75.140778, - "right": 23.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 211, - "left": 23.90625, - "top": -75.140778, - "right": 25.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 211, - "left": 25.3125, - "top": -75.140778, - "right": 26.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 211, - "left": 26.71875, - "top": -75.140778, - "right": 28.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 211, - "left": 28.125, - "top": -75.140778, - "right": 29.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 211, - "left": 29.53125, - "top": -75.140778, - "right": 30.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 211, - "left": 30.9375, - "top": -75.140778, - "right": 32.34375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 211, - "left": 32.34375, - "top": -75.140778, - "right": 33.75, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 211, - "left": 33.75, - "top": -75.140778, - "right": 35.15625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 211, - "left": 35.15625, - "top": -75.140778, - "right": 36.5625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 211, - "left": 36.5625, - "top": -75.140778, - "right": 37.96875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 211, - "left": 37.96875, - "top": -75.140778, - "right": 39.375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 211, - "left": 39.375, - "top": -75.140778, - "right": 40.78125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 211, - "left": 40.78125, - "top": -75.140778, - "right": 42.1875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 211, - "left": 42.1875, - "top": -75.140778, - "right": 43.59375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 211, - "left": 43.59375, - "top": -75.140778, - "right": 45.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 211, - "left": 45.0, - "top": -75.140778, - "right": 46.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 211, - "left": 46.40625, - "top": -75.140778, - "right": 47.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 211, - "left": 47.8125, - "top": -75.140778, - "right": 49.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 211, - "left": 49.21875, - "top": -75.140778, - "right": 50.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 211, - "left": 50.625, - "top": -75.140778, - "right": 52.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 211, - "left": 52.03125, - "top": -75.140778, - "right": 53.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 211, - "left": 53.4375, - "top": -75.140778, - "right": 54.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 211, - "left": 54.84375, - "top": -75.140778, - "right": 56.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 211, - "left": 56.25, - "top": -75.140778, - "right": 57.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 211, - "left": 57.65625, - "top": -75.140778, - "right": 59.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 211, - "left": 59.0625, - "top": -75.140778, - "right": 60.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 211, - "left": 60.46875, - "top": -75.140778, - "right": 61.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 211, - "left": 61.875, - "top": -75.140778, - "right": 63.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 211, - "left": 63.28125, - "top": -75.140778, - "right": 64.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 211, - "left": 64.6875, - "top": -75.140778, - "right": 66.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 211, - "left": 66.09375, - "top": -75.140778, - "right": 67.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 211, - "left": 67.5, - "top": -75.140778, - "right": 68.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 211, - "left": 68.90625, - "top": -75.140778, - "right": 70.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 211, - "left": 70.3125, - "top": -75.140778, - "right": 71.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 211, - "left": 71.71875, - "top": -75.140778, - "right": 73.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 211, - "left": 73.125, - "top": -75.140778, - "right": 74.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 211, - "left": 74.53125, - "top": -75.140778, - "right": 75.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 211, - "left": 75.9375, - "top": -75.140778, - "right": 77.34375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 211, - "left": 77.34375, - "top": -75.140778, - "right": 78.75, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 211, - "left": 78.75, - "top": -75.140778, - "right": 80.15625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 211, - "left": 80.15625, - "top": -75.140778, - "right": 81.5625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 211, - "left": 81.5625, - "top": -75.140778, - "right": 82.96875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 211, - "left": 82.96875, - "top": -75.140778, - "right": 84.375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 211, - "left": 84.375, - "top": -75.140778, - "right": 85.78125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 211, - "left": 85.78125, - "top": -75.140778, - "right": 87.1875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 211, - "left": 87.1875, - "top": -75.140778, - "right": 88.59375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 211, - "left": 88.59375, - "top": -75.140778, - "right": 90.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 211, - "left": 90.0, - "top": -75.140778, - "right": 91.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 211, - "left": 91.40625, - "top": -75.140778, - "right": 92.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 211, - "left": 92.8125, - "top": -75.140778, - "right": 94.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 211, - "left": 94.21875, - "top": -75.140778, - "right": 95.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 211, - "left": 95.625, - "top": -75.140778, - "right": 97.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 211, - "left": 97.03125, - "top": -75.140778, - "right": 98.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 211, - "left": 98.4375, - "top": -75.140778, - "right": 99.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 211, - "left": 99.84375, - "top": -75.140778, - "right": 101.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 211, - "left": 101.25, - "top": -75.140778, - "right": 102.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 211, - "left": 102.65625, - "top": -75.140778, - "right": 104.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 211, - "left": 104.0625, - "top": -75.140778, - "right": 105.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 211, - "left": 105.46875, - "top": -75.140778, - "right": 106.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 211, - "left": 106.875, - "top": -75.140778, - "right": 108.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 211, - "left": 108.28125, - "top": -75.140778, - "right": 109.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 211, - "left": 109.6875, - "top": -75.140778, - "right": 111.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 211, - "left": 111.09375, - "top": -75.140778, - "right": 112.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 211, - "left": 112.5, - "top": -75.140778, - "right": 113.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 211, - "left": 113.90625, - "top": -75.140778, - "right": 115.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 211, - "left": 115.3125, - "top": -75.140778, - "right": 116.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 211, - "left": 116.71875, - "top": -75.140778, - "right": 118.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 211, - "left": 118.125, - "top": -75.140778, - "right": 119.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 211, - "left": 119.53125, - "top": -75.140778, - "right": 120.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 211, - "left": 120.9375, - "top": -75.140778, - "right": 122.34375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 211, - "left": 122.34375, - "top": -75.140778, - "right": 123.75, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 211, - "left": 123.75, - "top": -75.140778, - "right": 125.15625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 211, - "left": 125.15625, - "top": -75.140778, - "right": 126.5625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 211, - "left": 126.5625, - "top": -75.140778, - "right": 127.96875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 211, - "left": 127.96875, - "top": -75.140778, - "right": 129.375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 211, - "left": 129.375, - "top": -75.140778, - "right": 130.78125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 211, - "left": 130.78125, - "top": -75.140778, - "right": 132.1875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 211, - "left": 132.1875, - "top": -75.140778, - "right": 133.59375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 211, - "left": 133.59375, - "top": -75.140778, - "right": 135.0, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 211, - "left": 135.0, - "top": -75.140778, - "right": 136.40625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 211, - "left": 136.40625, - "top": -75.140778, - "right": 137.8125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 211, - "left": 137.8125, - "top": -75.140778, - "right": 139.21875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 211, - "left": 139.21875, - "top": -75.140778, - "right": 140.625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 211, - "left": 140.625, - "top": -75.140778, - "right": 142.03125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 211, - "left": 142.03125, - "top": -75.140778, - "right": 143.4375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 211, - "left": 143.4375, - "top": -75.140778, - "right": 144.84375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 211, - "left": 144.84375, - "top": -75.140778, - "right": 146.25, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 211, - "left": 146.25, - "top": -75.140778, - "right": 147.65625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 211, - "left": 147.65625, - "top": -75.140778, - "right": 149.0625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 211, - "left": 149.0625, - "top": -75.140778, - "right": 150.46875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 211, - "left": 150.46875, - "top": -75.140778, - "right": 151.875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 211, - "left": 151.875, - "top": -75.140778, - "right": 153.28125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 211, - "left": 153.28125, - "top": -75.140778, - "right": 154.6875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 211, - "left": 154.6875, - "top": -75.140778, - "right": 156.09375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 211, - "left": 156.09375, - "top": -75.140778, - "right": 157.5, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 211, - "left": 157.5, - "top": -75.140778, - "right": 158.90625, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 211, - "left": 158.90625, - "top": -75.140778, - "right": 160.3125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 211, - "left": 160.3125, - "top": -75.140778, - "right": 161.71875, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 211, - "left": 161.71875, - "top": -75.140778, - "right": 163.125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 211, - "left": 163.125, - "top": -75.140778, - "right": 164.53125, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 211, - "left": 164.53125, - "top": -75.140778, - "right": 165.9375, - "bottom": -75.497157, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 212, - "left": -146.25, - "top": -75.497157, - "right": -144.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 212, - "left": -144.84375, - "top": -75.497157, - "right": -143.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 212, - "left": -143.4375, - "top": -75.497157, - "right": -142.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 212, - "left": -142.03125, - "top": -75.497157, - "right": -140.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 212, - "left": -140.625, - "top": -75.497157, - "right": -139.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 212, - "left": -139.21875, - "top": -75.497157, - "right": -137.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 212, - "left": -137.8125, - "top": -75.497157, - "right": -136.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 212, - "left": -136.40625, - "top": -75.497157, - "right": -135.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 212, - "left": -135.0, - "top": -75.497157, - "right": -133.59375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 212, - "left": -133.59375, - "top": -75.497157, - "right": -132.1875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 212, - "left": -132.1875, - "top": -75.497157, - "right": -130.78125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 212, - "left": -130.78125, - "top": -75.497157, - "right": -129.375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 212, - "left": -129.375, - "top": -75.497157, - "right": -127.96875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 212, - "left": -127.96875, - "top": -75.497157, - "right": -126.5625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 212, - "left": -126.5625, - "top": -75.497157, - "right": -125.15625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 212, - "left": -125.15625, - "top": -75.497157, - "right": -123.75, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 212, - "left": -123.75, - "top": -75.497157, - "right": -122.34375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 212, - "left": -122.34375, - "top": -75.497157, - "right": -120.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 212, - "left": -120.9375, - "top": -75.497157, - "right": -119.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 212, - "left": -119.53125, - "top": -75.497157, - "right": -118.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 212, - "left": -118.125, - "top": -75.497157, - "right": -116.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 212, - "left": -116.71875, - "top": -75.497157, - "right": -115.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 212, - "left": -115.3125, - "top": -75.497157, - "right": -113.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 212, - "left": -113.90625, - "top": -75.497157, - "right": -112.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 212, - "left": -112.5, - "top": -75.497157, - "right": -111.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 212, - "left": -111.09375, - "top": -75.497157, - "right": -109.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 212, - "left": -109.6875, - "top": -75.497157, - "right": -108.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 212, - "left": -108.28125, - "top": -75.497157, - "right": -106.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 212, - "left": -106.875, - "top": -75.497157, - "right": -105.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 212, - "left": -105.46875, - "top": -75.497157, - "right": -104.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 212, - "left": -104.0625, - "top": -75.497157, - "right": -102.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 212, - "left": -102.65625, - "top": -75.497157, - "right": -101.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 212, - "left": -101.25, - "top": -75.497157, - "right": -99.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 212, - "left": -99.84375, - "top": -75.497157, - "right": -98.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 212, - "left": -98.4375, - "top": -75.497157, - "right": -97.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 212, - "left": -97.03125, - "top": -75.497157, - "right": -95.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 212, - "left": -95.625, - "top": -75.497157, - "right": -94.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 212, - "left": -94.21875, - "top": -75.497157, - "right": -92.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 212, - "left": -92.8125, - "top": -75.497157, - "right": -91.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 212, - "left": -91.40625, - "top": -75.497157, - "right": -90.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 212, - "left": -90.0, - "top": -75.497157, - "right": -88.59375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 212, - "left": -88.59375, - "top": -75.497157, - "right": -87.1875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 212, - "left": -87.1875, - "top": -75.497157, - "right": -85.78125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 212, - "left": -85.78125, - "top": -75.497157, - "right": -84.375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 212, - "left": -84.375, - "top": -75.497157, - "right": -82.96875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 212, - "left": -82.96875, - "top": -75.497157, - "right": -81.5625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 212, - "left": -81.5625, - "top": -75.497157, - "right": -80.15625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 212, - "left": -80.15625, - "top": -75.497157, - "right": -78.75, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 212, - "left": -78.75, - "top": -75.497157, - "right": -77.34375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 212, - "left": -77.34375, - "top": -75.497157, - "right": -75.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 212, - "left": -75.9375, - "top": -75.497157, - "right": -74.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 212, - "left": -74.53125, - "top": -75.497157, - "right": -73.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 212, - "left": -73.125, - "top": -75.497157, - "right": -71.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 212, - "left": -71.71875, - "top": -75.497157, - "right": -70.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 212, - "left": -70.3125, - "top": -75.497157, - "right": -68.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 212, - "left": -68.90625, - "top": -75.497157, - "right": -67.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 212, - "left": -67.5, - "top": -75.497157, - "right": -66.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 212, - "left": -66.09375, - "top": -75.497157, - "right": -64.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 212, - "left": -64.6875, - "top": -75.497157, - "right": -63.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 212, - "left": -25.3125, - "top": -75.497157, - "right": -23.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 212, - "left": -23.90625, - "top": -75.497157, - "right": -22.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 212, - "left": -22.5, - "top": -75.497157, - "right": -21.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 212, - "left": -21.09375, - "top": -75.497157, - "right": -19.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 212, - "left": -19.6875, - "top": -75.497157, - "right": -18.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 212, - "left": -18.28125, - "top": -75.497157, - "right": -16.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 212, - "left": -16.875, - "top": -75.497157, - "right": -15.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 212, - "left": -15.46875, - "top": -75.497157, - "right": -14.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 212, - "left": -14.0625, - "top": -75.497157, - "right": -12.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 212, - "left": -12.65625, - "top": -75.497157, - "right": -11.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 212, - "left": -11.25, - "top": -75.497157, - "right": -9.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 212, - "left": -9.84375, - "top": -75.497157, - "right": -8.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 212, - "left": -8.4375, - "top": -75.497157, - "right": -7.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 212, - "left": -7.03125, - "top": -75.497157, - "right": -5.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 212, - "left": -5.625, - "top": -75.497157, - "right": -4.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 212, - "left": -4.21875, - "top": -75.497157, - "right": -2.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 212, - "left": -2.8125, - "top": -75.497157, - "right": -1.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 212, - "left": -1.40625, - "top": -75.497157, - "right": 0.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 212, - "left": 0.0, - "top": -75.497157, - "right": 1.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 212, - "left": 1.40625, - "top": -75.497157, - "right": 2.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 212, - "left": 2.8125, - "top": -75.497157, - "right": 4.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 212, - "left": 4.21875, - "top": -75.497157, - "right": 5.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 212, - "left": 5.625, - "top": -75.497157, - "right": 7.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 212, - "left": 7.03125, - "top": -75.497157, - "right": 8.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 212, - "left": 8.4375, - "top": -75.497157, - "right": 9.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 212, - "left": 9.84375, - "top": -75.497157, - "right": 11.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 212, - "left": 11.25, - "top": -75.497157, - "right": 12.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 212, - "left": 12.65625, - "top": -75.497157, - "right": 14.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 212, - "left": 14.0625, - "top": -75.497157, - "right": 15.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 212, - "left": 15.46875, - "top": -75.497157, - "right": 16.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 212, - "left": 16.875, - "top": -75.497157, - "right": 18.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 212, - "left": 18.28125, - "top": -75.497157, - "right": 19.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 212, - "left": 19.6875, - "top": -75.497157, - "right": 21.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 212, - "left": 21.09375, - "top": -75.497157, - "right": 22.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 212, - "left": 22.5, - "top": -75.497157, - "right": 23.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 212, - "left": 23.90625, - "top": -75.497157, - "right": 25.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 212, - "left": 25.3125, - "top": -75.497157, - "right": 26.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 212, - "left": 26.71875, - "top": -75.497157, - "right": 28.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 212, - "left": 28.125, - "top": -75.497157, - "right": 29.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 212, - "left": 29.53125, - "top": -75.497157, - "right": 30.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 212, - "left": 30.9375, - "top": -75.497157, - "right": 32.34375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 212, - "left": 32.34375, - "top": -75.497157, - "right": 33.75, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 212, - "left": 33.75, - "top": -75.497157, - "right": 35.15625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 212, - "left": 35.15625, - "top": -75.497157, - "right": 36.5625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 212, - "left": 36.5625, - "top": -75.497157, - "right": 37.96875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 212, - "left": 37.96875, - "top": -75.497157, - "right": 39.375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 212, - "left": 39.375, - "top": -75.497157, - "right": 40.78125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 212, - "left": 40.78125, - "top": -75.497157, - "right": 42.1875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 212, - "left": 42.1875, - "top": -75.497157, - "right": 43.59375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 212, - "left": 43.59375, - "top": -75.497157, - "right": 45.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 212, - "left": 45.0, - "top": -75.497157, - "right": 46.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 212, - "left": 46.40625, - "top": -75.497157, - "right": 47.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 212, - "left": 47.8125, - "top": -75.497157, - "right": 49.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 212, - "left": 49.21875, - "top": -75.497157, - "right": 50.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 212, - "left": 50.625, - "top": -75.497157, - "right": 52.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 212, - "left": 52.03125, - "top": -75.497157, - "right": 53.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 212, - "left": 53.4375, - "top": -75.497157, - "right": 54.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 212, - "left": 54.84375, - "top": -75.497157, - "right": 56.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 212, - "left": 56.25, - "top": -75.497157, - "right": 57.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 212, - "left": 57.65625, - "top": -75.497157, - "right": 59.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 212, - "left": 59.0625, - "top": -75.497157, - "right": 60.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 212, - "left": 60.46875, - "top": -75.497157, - "right": 61.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 212, - "left": 61.875, - "top": -75.497157, - "right": 63.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 212, - "left": 63.28125, - "top": -75.497157, - "right": 64.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 212, - "left": 64.6875, - "top": -75.497157, - "right": 66.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 212, - "left": 66.09375, - "top": -75.497157, - "right": 67.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 212, - "left": 67.5, - "top": -75.497157, - "right": 68.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 212, - "left": 68.90625, - "top": -75.497157, - "right": 70.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 212, - "left": 70.3125, - "top": -75.497157, - "right": 71.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 212, - "left": 71.71875, - "top": -75.497157, - "right": 73.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 212, - "left": 73.125, - "top": -75.497157, - "right": 74.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 212, - "left": 74.53125, - "top": -75.497157, - "right": 75.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 212, - "left": 75.9375, - "top": -75.497157, - "right": 77.34375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 212, - "left": 77.34375, - "top": -75.497157, - "right": 78.75, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 212, - "left": 78.75, - "top": -75.497157, - "right": 80.15625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 212, - "left": 80.15625, - "top": -75.497157, - "right": 81.5625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 212, - "left": 81.5625, - "top": -75.497157, - "right": 82.96875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 212, - "left": 82.96875, - "top": -75.497157, - "right": 84.375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 212, - "left": 84.375, - "top": -75.497157, - "right": 85.78125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 212, - "left": 85.78125, - "top": -75.497157, - "right": 87.1875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 212, - "left": 87.1875, - "top": -75.497157, - "right": 88.59375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 212, - "left": 88.59375, - "top": -75.497157, - "right": 90.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 212, - "left": 90.0, - "top": -75.497157, - "right": 91.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 212, - "left": 91.40625, - "top": -75.497157, - "right": 92.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 212, - "left": 92.8125, - "top": -75.497157, - "right": 94.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 212, - "left": 94.21875, - "top": -75.497157, - "right": 95.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 212, - "left": 95.625, - "top": -75.497157, - "right": 97.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 212, - "left": 97.03125, - "top": -75.497157, - "right": 98.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 212, - "left": 98.4375, - "top": -75.497157, - "right": 99.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 212, - "left": 99.84375, - "top": -75.497157, - "right": 101.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 212, - "left": 101.25, - "top": -75.497157, - "right": 102.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 212, - "left": 102.65625, - "top": -75.497157, - "right": 104.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 212, - "left": 104.0625, - "top": -75.497157, - "right": 105.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 212, - "left": 105.46875, - "top": -75.497157, - "right": 106.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 212, - "left": 106.875, - "top": -75.497157, - "right": 108.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 212, - "left": 108.28125, - "top": -75.497157, - "right": 109.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 212, - "left": 109.6875, - "top": -75.497157, - "right": 111.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 212, - "left": 111.09375, - "top": -75.497157, - "right": 112.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 212, - "left": 112.5, - "top": -75.497157, - "right": 113.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 212, - "left": 113.90625, - "top": -75.497157, - "right": 115.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 212, - "left": 115.3125, - "top": -75.497157, - "right": 116.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 212, - "left": 116.71875, - "top": -75.497157, - "right": 118.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 212, - "left": 118.125, - "top": -75.497157, - "right": 119.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 212, - "left": 119.53125, - "top": -75.497157, - "right": 120.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 212, - "left": 120.9375, - "top": -75.497157, - "right": 122.34375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 212, - "left": 122.34375, - "top": -75.497157, - "right": 123.75, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 212, - "left": 123.75, - "top": -75.497157, - "right": 125.15625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 212, - "left": 125.15625, - "top": -75.497157, - "right": 126.5625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 212, - "left": 126.5625, - "top": -75.497157, - "right": 127.96875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 212, - "left": 127.96875, - "top": -75.497157, - "right": 129.375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 212, - "left": 129.375, - "top": -75.497157, - "right": 130.78125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 212, - "left": 130.78125, - "top": -75.497157, - "right": 132.1875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 212, - "left": 132.1875, - "top": -75.497157, - "right": 133.59375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 212, - "left": 133.59375, - "top": -75.497157, - "right": 135.0, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 212, - "left": 135.0, - "top": -75.497157, - "right": 136.40625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 212, - "left": 136.40625, - "top": -75.497157, - "right": 137.8125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 212, - "left": 137.8125, - "top": -75.497157, - "right": 139.21875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 212, - "left": 139.21875, - "top": -75.497157, - "right": 140.625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 212, - "left": 140.625, - "top": -75.497157, - "right": 142.03125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 212, - "left": 142.03125, - "top": -75.497157, - "right": 143.4375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 212, - "left": 143.4375, - "top": -75.497157, - "right": 144.84375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 212, - "left": 144.84375, - "top": -75.497157, - "right": 146.25, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 212, - "left": 146.25, - "top": -75.497157, - "right": 147.65625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 212, - "left": 147.65625, - "top": -75.497157, - "right": 149.0625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 212, - "left": 149.0625, - "top": -75.497157, - "right": 150.46875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 212, - "left": 150.46875, - "top": -75.497157, - "right": 151.875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 212, - "left": 151.875, - "top": -75.497157, - "right": 153.28125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 212, - "left": 153.28125, - "top": -75.497157, - "right": 154.6875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 212, - "left": 154.6875, - "top": -75.497157, - "right": 156.09375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 212, - "left": 156.09375, - "top": -75.497157, - "right": 157.5, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 212, - "left": 157.5, - "top": -75.497157, - "right": 158.90625, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 212, - "left": 158.90625, - "top": -75.497157, - "right": 160.3125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 212, - "left": 160.3125, - "top": -75.497157, - "right": 161.71875, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 212, - "left": 161.71875, - "top": -75.497157, - "right": 163.125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 212, - "left": 163.125, - "top": -75.497157, - "right": 164.53125, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 212, - "left": 164.53125, - "top": -75.497157, - "right": 165.9375, - "bottom": -75.845169, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 213, - "left": -149.0625, - "top": -75.845169, - "right": -147.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 213, - "left": -147.65625, - "top": -75.845169, - "right": -146.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 213, - "left": -146.25, - "top": -75.845169, - "right": -144.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 213, - "left": -144.84375, - "top": -75.845169, - "right": -143.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 213, - "left": -143.4375, - "top": -75.845169, - "right": -142.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 213, - "left": -142.03125, - "top": -75.845169, - "right": -140.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 213, - "left": -140.625, - "top": -75.845169, - "right": -139.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 213, - "left": -139.21875, - "top": -75.845169, - "right": -137.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 213, - "left": -137.8125, - "top": -75.845169, - "right": -136.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 213, - "left": -136.40625, - "top": -75.845169, - "right": -135.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 213, - "left": -135.0, - "top": -75.845169, - "right": -133.59375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 213, - "left": -133.59375, - "top": -75.845169, - "right": -132.1875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 213, - "left": -132.1875, - "top": -75.845169, - "right": -130.78125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 213, - "left": -130.78125, - "top": -75.845169, - "right": -129.375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 213, - "left": -129.375, - "top": -75.845169, - "right": -127.96875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 213, - "left": -127.96875, - "top": -75.845169, - "right": -126.5625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 213, - "left": -126.5625, - "top": -75.845169, - "right": -125.15625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 213, - "left": -125.15625, - "top": -75.845169, - "right": -123.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 213, - "left": -123.75, - "top": -75.845169, - "right": -122.34375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 213, - "left": -122.34375, - "top": -75.845169, - "right": -120.9375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 213, - "left": -120.9375, - "top": -75.845169, - "right": -119.53125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 213, - "left": -119.53125, - "top": -75.845169, - "right": -118.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 213, - "left": -118.125, - "top": -75.845169, - "right": -116.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 213, - "left": -116.71875, - "top": -75.845169, - "right": -115.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 213, - "left": -115.3125, - "top": -75.845169, - "right": -113.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 213, - "left": -113.90625, - "top": -75.845169, - "right": -112.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 213, - "left": -112.5, - "top": -75.845169, - "right": -111.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 213, - "left": -111.09375, - "top": -75.845169, - "right": -109.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 213, - "left": -109.6875, - "top": -75.845169, - "right": -108.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 213, - "left": -108.28125, - "top": -75.845169, - "right": -106.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 213, - "left": -106.875, - "top": -75.845169, - "right": -105.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 213, - "left": -105.46875, - "top": -75.845169, - "right": -104.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 213, - "left": -104.0625, - "top": -75.845169, - "right": -102.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 213, - "left": -102.65625, - "top": -75.845169, - "right": -101.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 213, - "left": -101.25, - "top": -75.845169, - "right": -99.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 213, - "left": -99.84375, - "top": -75.845169, - "right": -98.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 213, - "left": -98.4375, - "top": -75.845169, - "right": -97.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 213, - "left": -97.03125, - "top": -75.845169, - "right": -95.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 213, - "left": -95.625, - "top": -75.845169, - "right": -94.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 213, - "left": -94.21875, - "top": -75.845169, - "right": -92.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 213, - "left": -92.8125, - "top": -75.845169, - "right": -91.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 213, - "left": -91.40625, - "top": -75.845169, - "right": -90.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 213, - "left": -90.0, - "top": -75.845169, - "right": -88.59375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 213, - "left": -88.59375, - "top": -75.845169, - "right": -87.1875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 213, - "left": -87.1875, - "top": -75.845169, - "right": -85.78125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 213, - "left": -85.78125, - "top": -75.845169, - "right": -84.375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 213, - "left": -84.375, - "top": -75.845169, - "right": -82.96875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 213, - "left": -82.96875, - "top": -75.845169, - "right": -81.5625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 213, - "left": -81.5625, - "top": -75.845169, - "right": -80.15625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 213, - "left": -80.15625, - "top": -75.845169, - "right": -78.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 213, - "left": -78.75, - "top": -75.845169, - "right": -77.34375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 213, - "left": -77.34375, - "top": -75.845169, - "right": -75.9375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 213, - "left": -75.9375, - "top": -75.845169, - "right": -74.53125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 213, - "left": -74.53125, - "top": -75.845169, - "right": -73.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 213, - "left": -73.125, - "top": -75.845169, - "right": -71.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 213, - "left": -71.71875, - "top": -75.845169, - "right": -70.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 213, - "left": -70.3125, - "top": -75.845169, - "right": -68.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 213, - "left": -68.90625, - "top": -75.845169, - "right": -67.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 213, - "left": -67.5, - "top": -75.845169, - "right": -66.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 213, - "left": -66.09375, - "top": -75.845169, - "right": -64.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 213, - "left": -28.125, - "top": -75.845169, - "right": -26.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 213, - "left": -26.71875, - "top": -75.845169, - "right": -25.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 213, - "left": -25.3125, - "top": -75.845169, - "right": -23.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 213, - "left": -23.90625, - "top": -75.845169, - "right": -22.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 213, - "left": -22.5, - "top": -75.845169, - "right": -21.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 213, - "left": -21.09375, - "top": -75.845169, - "right": -19.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 213, - "left": -19.6875, - "top": -75.845169, - "right": -18.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 213, - "left": -18.28125, - "top": -75.845169, - "right": -16.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 213, - "left": -16.875, - "top": -75.845169, - "right": -15.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 213, - "left": -15.46875, - "top": -75.845169, - "right": -14.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 213, - "left": -14.0625, - "top": -75.845169, - "right": -12.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 213, - "left": -12.65625, - "top": -75.845169, - "right": -11.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 213, - "left": -11.25, - "top": -75.845169, - "right": -9.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 213, - "left": -9.84375, - "top": -75.845169, - "right": -8.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 213, - "left": -8.4375, - "top": -75.845169, - "right": -7.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 213, - "left": -7.03125, - "top": -75.845169, - "right": -5.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 213, - "left": -5.625, - "top": -75.845169, - "right": -4.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 213, - "left": -4.21875, - "top": -75.845169, - "right": -2.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 213, - "left": -2.8125, - "top": -75.845169, - "right": -1.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 213, - "left": -1.40625, - "top": -75.845169, - "right": 0.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 213, - "left": 0.0, - "top": -75.845169, - "right": 1.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 213, - "left": 1.40625, - "top": -75.845169, - "right": 2.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 213, - "left": 2.8125, - "top": -75.845169, - "right": 4.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 213, - "left": 4.21875, - "top": -75.845169, - "right": 5.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 213, - "left": 5.625, - "top": -75.845169, - "right": 7.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 213, - "left": 7.03125, - "top": -75.845169, - "right": 8.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 213, - "left": 8.4375, - "top": -75.845169, - "right": 9.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 213, - "left": 9.84375, - "top": -75.845169, - "right": 11.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 213, - "left": 11.25, - "top": -75.845169, - "right": 12.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 213, - "left": 12.65625, - "top": -75.845169, - "right": 14.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 213, - "left": 14.0625, - "top": -75.845169, - "right": 15.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 213, - "left": 15.46875, - "top": -75.845169, - "right": 16.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 213, - "left": 16.875, - "top": -75.845169, - "right": 18.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 213, - "left": 18.28125, - "top": -75.845169, - "right": 19.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 213, - "left": 19.6875, - "top": -75.845169, - "right": 21.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 213, - "left": 21.09375, - "top": -75.845169, - "right": 22.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 213, - "left": 22.5, - "top": -75.845169, - "right": 23.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 213, - "left": 23.90625, - "top": -75.845169, - "right": 25.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 213, - "left": 25.3125, - "top": -75.845169, - "right": 26.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 213, - "left": 26.71875, - "top": -75.845169, - "right": 28.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 213, - "left": 28.125, - "top": -75.845169, - "right": 29.53125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 213, - "left": 29.53125, - "top": -75.845169, - "right": 30.9375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 213, - "left": 30.9375, - "top": -75.845169, - "right": 32.34375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 213, - "left": 32.34375, - "top": -75.845169, - "right": 33.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 213, - "left": 33.75, - "top": -75.845169, - "right": 35.15625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 213, - "left": 35.15625, - "top": -75.845169, - "right": 36.5625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 213, - "left": 36.5625, - "top": -75.845169, - "right": 37.96875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 213, - "left": 37.96875, - "top": -75.845169, - "right": 39.375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 213, - "left": 39.375, - "top": -75.845169, - "right": 40.78125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 213, - "left": 40.78125, - "top": -75.845169, - "right": 42.1875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 213, - "left": 42.1875, - "top": -75.845169, - "right": 43.59375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 213, - "left": 43.59375, - "top": -75.845169, - "right": 45.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 213, - "left": 45.0, - "top": -75.845169, - "right": 46.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 213, - "left": 46.40625, - "top": -75.845169, - "right": 47.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 213, - "left": 47.8125, - "top": -75.845169, - "right": 49.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 213, - "left": 49.21875, - "top": -75.845169, - "right": 50.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 213, - "left": 50.625, - "top": -75.845169, - "right": 52.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 213, - "left": 52.03125, - "top": -75.845169, - "right": 53.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 213, - "left": 53.4375, - "top": -75.845169, - "right": 54.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 213, - "left": 54.84375, - "top": -75.845169, - "right": 56.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 213, - "left": 56.25, - "top": -75.845169, - "right": 57.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 213, - "left": 57.65625, - "top": -75.845169, - "right": 59.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 213, - "left": 59.0625, - "top": -75.845169, - "right": 60.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 213, - "left": 60.46875, - "top": -75.845169, - "right": 61.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 213, - "left": 61.875, - "top": -75.845169, - "right": 63.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 213, - "left": 63.28125, - "top": -75.845169, - "right": 64.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 213, - "left": 64.6875, - "top": -75.845169, - "right": 66.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 213, - "left": 66.09375, - "top": -75.845169, - "right": 67.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 213, - "left": 67.5, - "top": -75.845169, - "right": 68.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 213, - "left": 68.90625, - "top": -75.845169, - "right": 70.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 213, - "left": 70.3125, - "top": -75.845169, - "right": 71.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 213, - "left": 71.71875, - "top": -75.845169, - "right": 73.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 213, - "left": 73.125, - "top": -75.845169, - "right": 74.53125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 213, - "left": 74.53125, - "top": -75.845169, - "right": 75.9375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 213, - "left": 75.9375, - "top": -75.845169, - "right": 77.34375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 213, - "left": 77.34375, - "top": -75.845169, - "right": 78.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 213, - "left": 78.75, - "top": -75.845169, - "right": 80.15625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 213, - "left": 80.15625, - "top": -75.845169, - "right": 81.5625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 213, - "left": 81.5625, - "top": -75.845169, - "right": 82.96875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 213, - "left": 82.96875, - "top": -75.845169, - "right": 84.375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 213, - "left": 84.375, - "top": -75.845169, - "right": 85.78125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 213, - "left": 85.78125, - "top": -75.845169, - "right": 87.1875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 213, - "left": 87.1875, - "top": -75.845169, - "right": 88.59375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 213, - "left": 88.59375, - "top": -75.845169, - "right": 90.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 213, - "left": 90.0, - "top": -75.845169, - "right": 91.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 213, - "left": 91.40625, - "top": -75.845169, - "right": 92.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 213, - "left": 92.8125, - "top": -75.845169, - "right": 94.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 213, - "left": 94.21875, - "top": -75.845169, - "right": 95.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 213, - "left": 95.625, - "top": -75.845169, - "right": 97.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 213, - "left": 97.03125, - "top": -75.845169, - "right": 98.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 213, - "left": 98.4375, - "top": -75.845169, - "right": 99.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 213, - "left": 99.84375, - "top": -75.845169, - "right": 101.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 213, - "left": 101.25, - "top": -75.845169, - "right": 102.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 213, - "left": 102.65625, - "top": -75.845169, - "right": 104.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 213, - "left": 104.0625, - "top": -75.845169, - "right": 105.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 213, - "left": 105.46875, - "top": -75.845169, - "right": 106.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 213, - "left": 106.875, - "top": -75.845169, - "right": 108.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 213, - "left": 108.28125, - "top": -75.845169, - "right": 109.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 213, - "left": 109.6875, - "top": -75.845169, - "right": 111.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 213, - "left": 111.09375, - "top": -75.845169, - "right": 112.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 213, - "left": 112.5, - "top": -75.845169, - "right": 113.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 213, - "left": 113.90625, - "top": -75.845169, - "right": 115.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 213, - "left": 115.3125, - "top": -75.845169, - "right": 116.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 213, - "left": 116.71875, - "top": -75.845169, - "right": 118.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 213, - "left": 118.125, - "top": -75.845169, - "right": 119.53125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 213, - "left": 119.53125, - "top": -75.845169, - "right": 120.9375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 213, - "left": 120.9375, - "top": -75.845169, - "right": 122.34375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 213, - "left": 122.34375, - "top": -75.845169, - "right": 123.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 213, - "left": 123.75, - "top": -75.845169, - "right": 125.15625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 213, - "left": 125.15625, - "top": -75.845169, - "right": 126.5625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 213, - "left": 126.5625, - "top": -75.845169, - "right": 127.96875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 213, - "left": 127.96875, - "top": -75.845169, - "right": 129.375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 213, - "left": 129.375, - "top": -75.845169, - "right": 130.78125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 213, - "left": 130.78125, - "top": -75.845169, - "right": 132.1875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 213, - "left": 132.1875, - "top": -75.845169, - "right": 133.59375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 213, - "left": 133.59375, - "top": -75.845169, - "right": 135.0, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 213, - "left": 135.0, - "top": -75.845169, - "right": 136.40625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 213, - "left": 136.40625, - "top": -75.845169, - "right": 137.8125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 213, - "left": 137.8125, - "top": -75.845169, - "right": 139.21875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 213, - "left": 139.21875, - "top": -75.845169, - "right": 140.625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 213, - "left": 140.625, - "top": -75.845169, - "right": 142.03125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 213, - "left": 142.03125, - "top": -75.845169, - "right": 143.4375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 213, - "left": 143.4375, - "top": -75.845169, - "right": 144.84375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 213, - "left": 144.84375, - "top": -75.845169, - "right": 146.25, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 213, - "left": 146.25, - "top": -75.845169, - "right": 147.65625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 213, - "left": 147.65625, - "top": -75.845169, - "right": 149.0625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 213, - "left": 149.0625, - "top": -75.845169, - "right": 150.46875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 213, - "left": 150.46875, - "top": -75.845169, - "right": 151.875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 213, - "left": 151.875, - "top": -75.845169, - "right": 153.28125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 213, - "left": 153.28125, - "top": -75.845169, - "right": 154.6875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 213, - "left": 154.6875, - "top": -75.845169, - "right": 156.09375, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 213, - "left": 156.09375, - "top": -75.845169, - "right": 157.5, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 213, - "left": 157.5, - "top": -75.845169, - "right": 158.90625, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 213, - "left": 158.90625, - "top": -75.845169, - "right": 160.3125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 213, - "left": 160.3125, - "top": -75.845169, - "right": 161.71875, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 213, - "left": 161.71875, - "top": -75.845169, - "right": 163.125, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 213, - "left": 167.34375, - "top": -75.845169, - "right": 168.75, - "bottom": -76.184995, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 214, - "left": -150.46875, - "top": -76.184995, - "right": -149.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 214, - "left": -149.0625, - "top": -76.184995, - "right": -147.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 214, - "left": -147.65625, - "top": -76.184995, - "right": -146.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 214, - "left": -146.25, - "top": -76.184995, - "right": -144.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 214, - "left": -144.84375, - "top": -76.184995, - "right": -143.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 214, - "left": -143.4375, - "top": -76.184995, - "right": -142.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 214, - "left": -142.03125, - "top": -76.184995, - "right": -140.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 214, - "left": -140.625, - "top": -76.184995, - "right": -139.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 214, - "left": -139.21875, - "top": -76.184995, - "right": -137.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 214, - "left": -137.8125, - "top": -76.184995, - "right": -136.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 214, - "left": -136.40625, - "top": -76.184995, - "right": -135.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 214, - "left": -135.0, - "top": -76.184995, - "right": -133.59375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 214, - "left": -133.59375, - "top": -76.184995, - "right": -132.1875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 214, - "left": -132.1875, - "top": -76.184995, - "right": -130.78125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 214, - "left": -130.78125, - "top": -76.184995, - "right": -129.375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 214, - "left": -129.375, - "top": -76.184995, - "right": -127.96875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 214, - "left": -127.96875, - "top": -76.184995, - "right": -126.5625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 214, - "left": -126.5625, - "top": -76.184995, - "right": -125.15625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 214, - "left": -125.15625, - "top": -76.184995, - "right": -123.75, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 214, - "left": -123.75, - "top": -76.184995, - "right": -122.34375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 214, - "left": -122.34375, - "top": -76.184995, - "right": -120.9375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 214, - "left": -120.9375, - "top": -76.184995, - "right": -119.53125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 214, - "left": -119.53125, - "top": -76.184995, - "right": -118.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 214, - "left": -118.125, - "top": -76.184995, - "right": -116.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 214, - "left": -116.71875, - "top": -76.184995, - "right": -115.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 214, - "left": -115.3125, - "top": -76.184995, - "right": -113.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 214, - "left": -113.90625, - "top": -76.184995, - "right": -112.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 214, - "left": -112.5, - "top": -76.184995, - "right": -111.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 214, - "left": -111.09375, - "top": -76.184995, - "right": -109.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 214, - "left": -109.6875, - "top": -76.184995, - "right": -108.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 214, - "left": -108.28125, - "top": -76.184995, - "right": -106.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 214, - "left": -106.875, - "top": -76.184995, - "right": -105.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 214, - "left": -105.46875, - "top": -76.184995, - "right": -104.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 214, - "left": -104.0625, - "top": -76.184995, - "right": -102.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 214, - "left": -102.65625, - "top": -76.184995, - "right": -101.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 214, - "left": -101.25, - "top": -76.184995, - "right": -99.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 214, - "left": -99.84375, - "top": -76.184995, - "right": -98.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 214, - "left": -98.4375, - "top": -76.184995, - "right": -97.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 214, - "left": -97.03125, - "top": -76.184995, - "right": -95.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 214, - "left": -95.625, - "top": -76.184995, - "right": -94.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 214, - "left": -94.21875, - "top": -76.184995, - "right": -92.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 214, - "left": -92.8125, - "top": -76.184995, - "right": -91.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 214, - "left": -91.40625, - "top": -76.184995, - "right": -90.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 214, - "left": -90.0, - "top": -76.184995, - "right": -88.59375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 214, - "left": -88.59375, - "top": -76.184995, - "right": -87.1875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 214, - "left": -87.1875, - "top": -76.184995, - "right": -85.78125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 214, - "left": -85.78125, - "top": -76.184995, - "right": -84.375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 214, - "left": -84.375, - "top": -76.184995, - "right": -82.96875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 214, - "left": -82.96875, - "top": -76.184995, - "right": -81.5625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 214, - "left": -81.5625, - "top": -76.184995, - "right": -80.15625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 214, - "left": -80.15625, - "top": -76.184995, - "right": -78.75, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 214, - "left": -78.75, - "top": -76.184995, - "right": -77.34375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 214, - "left": -77.34375, - "top": -76.184995, - "right": -75.9375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 214, - "left": -75.9375, - "top": -76.184995, - "right": -74.53125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 214, - "left": -74.53125, - "top": -76.184995, - "right": -73.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 214, - "left": -73.125, - "top": -76.184995, - "right": -71.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 214, - "left": -71.71875, - "top": -76.184995, - "right": -70.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 214, - "left": -70.3125, - "top": -76.184995, - "right": -68.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 214, - "left": -68.90625, - "top": -76.184995, - "right": -67.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 214, - "left": -29.53125, - "top": -76.184995, - "right": -28.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 214, - "left": -28.125, - "top": -76.184995, - "right": -26.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 214, - "left": -26.71875, - "top": -76.184995, - "right": -25.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 214, - "left": -25.3125, - "top": -76.184995, - "right": -23.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 214, - "left": -23.90625, - "top": -76.184995, - "right": -22.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 214, - "left": -22.5, - "top": -76.184995, - "right": -21.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 214, - "left": -21.09375, - "top": -76.184995, - "right": -19.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 214, - "left": -19.6875, - "top": -76.184995, - "right": -18.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 214, - "left": -18.28125, - "top": -76.184995, - "right": -16.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 214, - "left": -16.875, - "top": -76.184995, - "right": -15.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 214, - "left": -15.46875, - "top": -76.184995, - "right": -14.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 214, - "left": -14.0625, - "top": -76.184995, - "right": -12.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 214, - "left": -12.65625, - "top": -76.184995, - "right": -11.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 214, - "left": -11.25, - "top": -76.184995, - "right": -9.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 214, - "left": -9.84375, - "top": -76.184995, - "right": -8.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 214, - "left": -8.4375, - "top": -76.184995, - "right": -7.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 214, - "left": -7.03125, - "top": -76.184995, - "right": -5.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 214, - "left": -5.625, - "top": -76.184995, - "right": -4.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 214, - "left": -4.21875, - "top": -76.184995, - "right": -2.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 214, - "left": -2.8125, - "top": -76.184995, - "right": -1.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 214, - "left": -1.40625, - "top": -76.184995, - "right": 0.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 214, - "left": 0.0, - "top": -76.184995, - "right": 1.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 214, - "left": 1.40625, - "top": -76.184995, - "right": 2.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 214, - "left": 2.8125, - "top": -76.184995, - "right": 4.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 214, - "left": 4.21875, - "top": -76.184995, - "right": 5.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 214, - "left": 5.625, - "top": -76.184995, - "right": 7.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 214, - "left": 7.03125, - "top": -76.184995, - "right": 8.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 214, - "left": 8.4375, - "top": -76.184995, - "right": 9.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 214, - "left": 9.84375, - "top": -76.184995, - "right": 11.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 214, - "left": 11.25, - "top": -76.184995, - "right": 12.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 214, - "left": 12.65625, - "top": -76.184995, - "right": 14.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 214, - "left": 14.0625, - "top": -76.184995, - "right": 15.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 214, - "left": 15.46875, - "top": -76.184995, - "right": 16.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 214, - "left": 16.875, - "top": -76.184995, - "right": 18.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 214, - "left": 18.28125, - "top": -76.184995, - "right": 19.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 214, - "left": 19.6875, - "top": -76.184995, - "right": 21.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 214, - "left": 21.09375, - "top": -76.184995, - "right": 22.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 214, - "left": 22.5, - "top": -76.184995, - "right": 23.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 214, - "left": 23.90625, - "top": -76.184995, - "right": 25.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 214, - "left": 25.3125, - "top": -76.184995, - "right": 26.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 214, - "left": 26.71875, - "top": -76.184995, - "right": 28.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 214, - "left": 28.125, - "top": -76.184995, - "right": 29.53125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 214, - "left": 29.53125, - "top": -76.184995, - "right": 30.9375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 214, - "left": 30.9375, - "top": -76.184995, - "right": 32.34375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 214, - "left": 32.34375, - "top": -76.184995, - "right": 33.75, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 214, - "left": 33.75, - "top": -76.184995, - "right": 35.15625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 214, - "left": 35.15625, - "top": -76.184995, - "right": 36.5625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 214, - "left": 36.5625, - "top": -76.184995, - "right": 37.96875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 214, - "left": 37.96875, - "top": -76.184995, - "right": 39.375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 214, - "left": 39.375, - "top": -76.184995, - "right": 40.78125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 214, - "left": 40.78125, - "top": -76.184995, - "right": 42.1875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 214, - "left": 42.1875, - "top": -76.184995, - "right": 43.59375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 214, - "left": 43.59375, - "top": -76.184995, - "right": 45.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 214, - "left": 45.0, - "top": -76.184995, - "right": 46.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 214, - "left": 46.40625, - "top": -76.184995, - "right": 47.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 214, - "left": 47.8125, - "top": -76.184995, - "right": 49.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 214, - "left": 49.21875, - "top": -76.184995, - "right": 50.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 214, - "left": 50.625, - "top": -76.184995, - "right": 52.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 214, - "left": 52.03125, - "top": -76.184995, - "right": 53.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 214, - "left": 53.4375, - "top": -76.184995, - "right": 54.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 214, - "left": 54.84375, - "top": -76.184995, - "right": 56.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 214, - "left": 56.25, - "top": -76.184995, - "right": 57.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 214, - "left": 57.65625, - "top": -76.184995, - "right": 59.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 214, - "left": 59.0625, - "top": -76.184995, - "right": 60.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 214, - "left": 60.46875, - "top": -76.184995, - "right": 61.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 214, - "left": 61.875, - "top": -76.184995, - "right": 63.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 214, - "left": 63.28125, - "top": -76.184995, - "right": 64.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 214, - "left": 64.6875, - "top": -76.184995, - "right": 66.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 214, - "left": 66.09375, - "top": -76.184995, - "right": 67.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 214, - "left": 67.5, - "top": -76.184995, - "right": 68.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 214, - "left": 68.90625, - "top": -76.184995, - "right": 70.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 214, - "left": 70.3125, - "top": -76.184995, - "right": 71.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 214, - "left": 71.71875, - "top": -76.184995, - "right": 73.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 214, - "left": 73.125, - "top": -76.184995, - "right": 74.53125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 214, - "left": 74.53125, - "top": -76.184995, - "right": 75.9375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 214, - "left": 75.9375, - "top": -76.184995, - "right": 77.34375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 214, - "left": 77.34375, - "top": -76.184995, - "right": 78.75, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 214, - "left": 78.75, - "top": -76.184995, - "right": 80.15625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 214, - "left": 80.15625, - "top": -76.184995, - "right": 81.5625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 214, - "left": 81.5625, - "top": -76.184995, - "right": 82.96875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 214, - "left": 82.96875, - "top": -76.184995, - "right": 84.375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 214, - "left": 84.375, - "top": -76.184995, - "right": 85.78125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 214, - "left": 85.78125, - "top": -76.184995, - "right": 87.1875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 214, - "left": 87.1875, - "top": -76.184995, - "right": 88.59375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 214, - "left": 88.59375, - "top": -76.184995, - "right": 90.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 214, - "left": 90.0, - "top": -76.184995, - "right": 91.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 214, - "left": 91.40625, - "top": -76.184995, - "right": 92.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 214, - "left": 92.8125, - "top": -76.184995, - "right": 94.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 214, - "left": 94.21875, - "top": -76.184995, - "right": 95.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 214, - "left": 95.625, - "top": -76.184995, - "right": 97.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 214, - "left": 97.03125, - "top": -76.184995, - "right": 98.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 214, - "left": 98.4375, - "top": -76.184995, - "right": 99.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 214, - "left": 99.84375, - "top": -76.184995, - "right": 101.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 214, - "left": 101.25, - "top": -76.184995, - "right": 102.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 214, - "left": 102.65625, - "top": -76.184995, - "right": 104.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 214, - "left": 104.0625, - "top": -76.184995, - "right": 105.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 214, - "left": 105.46875, - "top": -76.184995, - "right": 106.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 214, - "left": 106.875, - "top": -76.184995, - "right": 108.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 214, - "left": 108.28125, - "top": -76.184995, - "right": 109.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 214, - "left": 109.6875, - "top": -76.184995, - "right": 111.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 214, - "left": 111.09375, - "top": -76.184995, - "right": 112.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 214, - "left": 112.5, - "top": -76.184995, - "right": 113.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 214, - "left": 113.90625, - "top": -76.184995, - "right": 115.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 214, - "left": 115.3125, - "top": -76.184995, - "right": 116.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 214, - "left": 116.71875, - "top": -76.184995, - "right": 118.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 214, - "left": 118.125, - "top": -76.184995, - "right": 119.53125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 214, - "left": 119.53125, - "top": -76.184995, - "right": 120.9375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 214, - "left": 120.9375, - "top": -76.184995, - "right": 122.34375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 214, - "left": 122.34375, - "top": -76.184995, - "right": 123.75, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 214, - "left": 123.75, - "top": -76.184995, - "right": 125.15625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 214, - "left": 125.15625, - "top": -76.184995, - "right": 126.5625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 214, - "left": 126.5625, - "top": -76.184995, - "right": 127.96875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 214, - "left": 127.96875, - "top": -76.184995, - "right": 129.375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 214, - "left": 129.375, - "top": -76.184995, - "right": 130.78125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 214, - "left": 130.78125, - "top": -76.184995, - "right": 132.1875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 214, - "left": 132.1875, - "top": -76.184995, - "right": 133.59375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 214, - "left": 133.59375, - "top": -76.184995, - "right": 135.0, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 214, - "left": 135.0, - "top": -76.184995, - "right": 136.40625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 214, - "left": 136.40625, - "top": -76.184995, - "right": 137.8125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 214, - "left": 137.8125, - "top": -76.184995, - "right": 139.21875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 214, - "left": 139.21875, - "top": -76.184995, - "right": 140.625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 214, - "left": 140.625, - "top": -76.184995, - "right": 142.03125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 214, - "left": 142.03125, - "top": -76.184995, - "right": 143.4375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 214, - "left": 143.4375, - "top": -76.184995, - "right": 144.84375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 214, - "left": 144.84375, - "top": -76.184995, - "right": 146.25, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 214, - "left": 146.25, - "top": -76.184995, - "right": 147.65625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 214, - "left": 147.65625, - "top": -76.184995, - "right": 149.0625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 214, - "left": 149.0625, - "top": -76.184995, - "right": 150.46875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 214, - "left": 150.46875, - "top": -76.184995, - "right": 151.875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 214, - "left": 151.875, - "top": -76.184995, - "right": 153.28125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 214, - "left": 153.28125, - "top": -76.184995, - "right": 154.6875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 214, - "left": 154.6875, - "top": -76.184995, - "right": 156.09375, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 214, - "left": 156.09375, - "top": -76.184995, - "right": 157.5, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 214, - "left": 157.5, - "top": -76.184995, - "right": 158.90625, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 214, - "left": 158.90625, - "top": -76.184995, - "right": 160.3125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 214, - "left": 160.3125, - "top": -76.184995, - "right": 161.71875, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 214, - "left": 161.71875, - "top": -76.184995, - "right": 163.125, - "bottom": -76.516819, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 215, - "left": -151.875, - "top": -76.516819, - "right": -150.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 215, - "left": -150.46875, - "top": -76.516819, - "right": -149.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 215, - "left": -149.0625, - "top": -76.516819, - "right": -147.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 215, - "left": -147.65625, - "top": -76.516819, - "right": -146.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 215, - "left": -146.25, - "top": -76.516819, - "right": -144.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 215, - "left": -144.84375, - "top": -76.516819, - "right": -143.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 215, - "left": -143.4375, - "top": -76.516819, - "right": -142.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 215, - "left": -142.03125, - "top": -76.516819, - "right": -140.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 215, - "left": -140.625, - "top": -76.516819, - "right": -139.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 215, - "left": -139.21875, - "top": -76.516819, - "right": -137.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 215, - "left": -137.8125, - "top": -76.516819, - "right": -136.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 215, - "left": -136.40625, - "top": -76.516819, - "right": -135.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 215, - "left": -135.0, - "top": -76.516819, - "right": -133.59375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 215, - "left": -133.59375, - "top": -76.516819, - "right": -132.1875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 215, - "left": -132.1875, - "top": -76.516819, - "right": -130.78125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 215, - "left": -130.78125, - "top": -76.516819, - "right": -129.375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 215, - "left": -129.375, - "top": -76.516819, - "right": -127.96875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 215, - "left": -127.96875, - "top": -76.516819, - "right": -126.5625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 215, - "left": -126.5625, - "top": -76.516819, - "right": -125.15625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 215, - "left": -125.15625, - "top": -76.516819, - "right": -123.75, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 215, - "left": -123.75, - "top": -76.516819, - "right": -122.34375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 215, - "left": -122.34375, - "top": -76.516819, - "right": -120.9375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 215, - "left": -120.9375, - "top": -76.516819, - "right": -119.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 215, - "left": -119.53125, - "top": -76.516819, - "right": -118.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 215, - "left": -118.125, - "top": -76.516819, - "right": -116.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 215, - "left": -116.71875, - "top": -76.516819, - "right": -115.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 215, - "left": -115.3125, - "top": -76.516819, - "right": -113.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 215, - "left": -113.90625, - "top": -76.516819, - "right": -112.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 215, - "left": -112.5, - "top": -76.516819, - "right": -111.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 215, - "left": -111.09375, - "top": -76.516819, - "right": -109.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 215, - "left": -109.6875, - "top": -76.516819, - "right": -108.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 215, - "left": -108.28125, - "top": -76.516819, - "right": -106.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 215, - "left": -106.875, - "top": -76.516819, - "right": -105.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 215, - "left": -105.46875, - "top": -76.516819, - "right": -104.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 215, - "left": -104.0625, - "top": -76.516819, - "right": -102.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 215, - "left": -102.65625, - "top": -76.516819, - "right": -101.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 215, - "left": -101.25, - "top": -76.516819, - "right": -99.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 215, - "left": -99.84375, - "top": -76.516819, - "right": -98.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 215, - "left": -98.4375, - "top": -76.516819, - "right": -97.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 215, - "left": -97.03125, - "top": -76.516819, - "right": -95.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 215, - "left": -95.625, - "top": -76.516819, - "right": -94.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 215, - "left": -94.21875, - "top": -76.516819, - "right": -92.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 215, - "left": -92.8125, - "top": -76.516819, - "right": -91.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 215, - "left": -91.40625, - "top": -76.516819, - "right": -90.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 215, - "left": -90.0, - "top": -76.516819, - "right": -88.59375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 215, - "left": -88.59375, - "top": -76.516819, - "right": -87.1875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 215, - "left": -87.1875, - "top": -76.516819, - "right": -85.78125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 215, - "left": -85.78125, - "top": -76.516819, - "right": -84.375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 215, - "left": -84.375, - "top": -76.516819, - "right": -82.96875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 215, - "left": -82.96875, - "top": -76.516819, - "right": -81.5625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 215, - "left": -81.5625, - "top": -76.516819, - "right": -80.15625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 215, - "left": -80.15625, - "top": -76.516819, - "right": -78.75, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 215, - "left": -78.75, - "top": -76.516819, - "right": -77.34375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 215, - "left": -77.34375, - "top": -76.516819, - "right": -75.9375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 215, - "left": -75.9375, - "top": -76.516819, - "right": -74.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 215, - "left": -74.53125, - "top": -76.516819, - "right": -73.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 215, - "left": -73.125, - "top": -76.516819, - "right": -71.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 215, - "left": -71.71875, - "top": -76.516819, - "right": -70.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 215, - "left": -70.3125, - "top": -76.516819, - "right": -68.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 215, - "left": -68.90625, - "top": -76.516819, - "right": -67.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 215, - "left": -30.9375, - "top": -76.516819, - "right": -29.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 215, - "left": -29.53125, - "top": -76.516819, - "right": -28.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 215, - "left": -28.125, - "top": -76.516819, - "right": -26.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 215, - "left": -26.71875, - "top": -76.516819, - "right": -25.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 215, - "left": -25.3125, - "top": -76.516819, - "right": -23.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 215, - "left": -23.90625, - "top": -76.516819, - "right": -22.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 215, - "left": -22.5, - "top": -76.516819, - "right": -21.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 215, - "left": -21.09375, - "top": -76.516819, - "right": -19.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 215, - "left": -19.6875, - "top": -76.516819, - "right": -18.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 215, - "left": -18.28125, - "top": -76.516819, - "right": -16.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 215, - "left": -16.875, - "top": -76.516819, - "right": -15.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 215, - "left": -15.46875, - "top": -76.516819, - "right": -14.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 215, - "left": -14.0625, - "top": -76.516819, - "right": -12.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 215, - "left": -12.65625, - "top": -76.516819, - "right": -11.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 215, - "left": -11.25, - "top": -76.516819, - "right": -9.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 215, - "left": -9.84375, - "top": -76.516819, - "right": -8.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 215, - "left": -8.4375, - "top": -76.516819, - "right": -7.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 215, - "left": -7.03125, - "top": -76.516819, - "right": -5.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 215, - "left": -5.625, - "top": -76.516819, - "right": -4.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 215, - "left": -4.21875, - "top": -76.516819, - "right": -2.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 215, - "left": -2.8125, - "top": -76.516819, - "right": -1.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 215, - "left": -1.40625, - "top": -76.516819, - "right": 0.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 215, - "left": 0.0, - "top": -76.516819, - "right": 1.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 215, - "left": 1.40625, - "top": -76.516819, - "right": 2.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 215, - "left": 2.8125, - "top": -76.516819, - "right": 4.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 215, - "left": 4.21875, - "top": -76.516819, - "right": 5.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 215, - "left": 5.625, - "top": -76.516819, - "right": 7.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 215, - "left": 7.03125, - "top": -76.516819, - "right": 8.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 215, - "left": 8.4375, - "top": -76.516819, - "right": 9.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 215, - "left": 9.84375, - "top": -76.516819, - "right": 11.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 215, - "left": 11.25, - "top": -76.516819, - "right": 12.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 215, - "left": 12.65625, - "top": -76.516819, - "right": 14.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 215, - "left": 14.0625, - "top": -76.516819, - "right": 15.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 215, - "left": 15.46875, - "top": -76.516819, - "right": 16.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 215, - "left": 16.875, - "top": -76.516819, - "right": 18.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 215, - "left": 18.28125, - "top": -76.516819, - "right": 19.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 215, - "left": 19.6875, - "top": -76.516819, - "right": 21.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 215, - "left": 21.09375, - "top": -76.516819, - "right": 22.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 215, - "left": 22.5, - "top": -76.516819, - "right": 23.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 215, - "left": 23.90625, - "top": -76.516819, - "right": 25.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 215, - "left": 25.3125, - "top": -76.516819, - "right": 26.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 215, - "left": 26.71875, - "top": -76.516819, - "right": 28.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 215, - "left": 28.125, - "top": -76.516819, - "right": 29.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 215, - "left": 29.53125, - "top": -76.516819, - "right": 30.9375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 215, - "left": 30.9375, - "top": -76.516819, - "right": 32.34375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 215, - "left": 32.34375, - "top": -76.516819, - "right": 33.75, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 215, - "left": 33.75, - "top": -76.516819, - "right": 35.15625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 215, - "left": 35.15625, - "top": -76.516819, - "right": 36.5625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 215, - "left": 36.5625, - "top": -76.516819, - "right": 37.96875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 215, - "left": 37.96875, - "top": -76.516819, - "right": 39.375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 215, - "left": 39.375, - "top": -76.516819, - "right": 40.78125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 215, - "left": 40.78125, - "top": -76.516819, - "right": 42.1875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 215, - "left": 42.1875, - "top": -76.516819, - "right": 43.59375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 215, - "left": 43.59375, - "top": -76.516819, - "right": 45.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 215, - "left": 45.0, - "top": -76.516819, - "right": 46.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 215, - "left": 46.40625, - "top": -76.516819, - "right": 47.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 215, - "left": 47.8125, - "top": -76.516819, - "right": 49.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 215, - "left": 49.21875, - "top": -76.516819, - "right": 50.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 215, - "left": 50.625, - "top": -76.516819, - "right": 52.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 215, - "left": 52.03125, - "top": -76.516819, - "right": 53.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 215, - "left": 53.4375, - "top": -76.516819, - "right": 54.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 215, - "left": 54.84375, - "top": -76.516819, - "right": 56.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 215, - "left": 56.25, - "top": -76.516819, - "right": 57.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 215, - "left": 57.65625, - "top": -76.516819, - "right": 59.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 215, - "left": 59.0625, - "top": -76.516819, - "right": 60.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 215, - "left": 60.46875, - "top": -76.516819, - "right": 61.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 215, - "left": 61.875, - "top": -76.516819, - "right": 63.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 215, - "left": 63.28125, - "top": -76.516819, - "right": 64.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 215, - "left": 64.6875, - "top": -76.516819, - "right": 66.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 215, - "left": 66.09375, - "top": -76.516819, - "right": 67.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 215, - "left": 67.5, - "top": -76.516819, - "right": 68.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 215, - "left": 68.90625, - "top": -76.516819, - "right": 70.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 215, - "left": 70.3125, - "top": -76.516819, - "right": 71.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 215, - "left": 71.71875, - "top": -76.516819, - "right": 73.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 215, - "left": 73.125, - "top": -76.516819, - "right": 74.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 215, - "left": 74.53125, - "top": -76.516819, - "right": 75.9375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 215, - "left": 75.9375, - "top": -76.516819, - "right": 77.34375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 215, - "left": 77.34375, - "top": -76.516819, - "right": 78.75, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 215, - "left": 78.75, - "top": -76.516819, - "right": 80.15625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 215, - "left": 80.15625, - "top": -76.516819, - "right": 81.5625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 215, - "left": 81.5625, - "top": -76.516819, - "right": 82.96875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 215, - "left": 82.96875, - "top": -76.516819, - "right": 84.375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 215, - "left": 84.375, - "top": -76.516819, - "right": 85.78125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 215, - "left": 85.78125, - "top": -76.516819, - "right": 87.1875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 215, - "left": 87.1875, - "top": -76.516819, - "right": 88.59375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 215, - "left": 88.59375, - "top": -76.516819, - "right": 90.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 215, - "left": 90.0, - "top": -76.516819, - "right": 91.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 215, - "left": 91.40625, - "top": -76.516819, - "right": 92.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 215, - "left": 92.8125, - "top": -76.516819, - "right": 94.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 215, - "left": 94.21875, - "top": -76.516819, - "right": 95.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 215, - "left": 95.625, - "top": -76.516819, - "right": 97.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 215, - "left": 97.03125, - "top": -76.516819, - "right": 98.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 215, - "left": 98.4375, - "top": -76.516819, - "right": 99.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 215, - "left": 99.84375, - "top": -76.516819, - "right": 101.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 215, - "left": 101.25, - "top": -76.516819, - "right": 102.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 215, - "left": 102.65625, - "top": -76.516819, - "right": 104.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 215, - "left": 104.0625, - "top": -76.516819, - "right": 105.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 215, - "left": 105.46875, - "top": -76.516819, - "right": 106.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 215, - "left": 106.875, - "top": -76.516819, - "right": 108.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 215, - "left": 108.28125, - "top": -76.516819, - "right": 109.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 215, - "left": 109.6875, - "top": -76.516819, - "right": 111.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 215, - "left": 111.09375, - "top": -76.516819, - "right": 112.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 215, - "left": 112.5, - "top": -76.516819, - "right": 113.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 215, - "left": 113.90625, - "top": -76.516819, - "right": 115.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 215, - "left": 115.3125, - "top": -76.516819, - "right": 116.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 215, - "left": 116.71875, - "top": -76.516819, - "right": 118.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 215, - "left": 118.125, - "top": -76.516819, - "right": 119.53125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 215, - "left": 119.53125, - "top": -76.516819, - "right": 120.9375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 215, - "left": 120.9375, - "top": -76.516819, - "right": 122.34375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 215, - "left": 122.34375, - "top": -76.516819, - "right": 123.75, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 215, - "left": 123.75, - "top": -76.516819, - "right": 125.15625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 215, - "left": 125.15625, - "top": -76.516819, - "right": 126.5625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 215, - "left": 126.5625, - "top": -76.516819, - "right": 127.96875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 215, - "left": 127.96875, - "top": -76.516819, - "right": 129.375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 215, - "left": 129.375, - "top": -76.516819, - "right": 130.78125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 215, - "left": 130.78125, - "top": -76.516819, - "right": 132.1875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 215, - "left": 132.1875, - "top": -76.516819, - "right": 133.59375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 215, - "left": 133.59375, - "top": -76.516819, - "right": 135.0, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 215, - "left": 135.0, - "top": -76.516819, - "right": 136.40625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 215, - "left": 136.40625, - "top": -76.516819, - "right": 137.8125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 215, - "left": 137.8125, - "top": -76.516819, - "right": 139.21875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 215, - "left": 139.21875, - "top": -76.516819, - "right": 140.625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 215, - "left": 140.625, - "top": -76.516819, - "right": 142.03125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 215, - "left": 142.03125, - "top": -76.516819, - "right": 143.4375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 215, - "left": 143.4375, - "top": -76.516819, - "right": 144.84375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 215, - "left": 144.84375, - "top": -76.516819, - "right": 146.25, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 215, - "left": 146.25, - "top": -76.516819, - "right": 147.65625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 215, - "left": 147.65625, - "top": -76.516819, - "right": 149.0625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 215, - "left": 149.0625, - "top": -76.516819, - "right": 150.46875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 215, - "left": 150.46875, - "top": -76.516819, - "right": 151.875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 215, - "left": 151.875, - "top": -76.516819, - "right": 153.28125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 215, - "left": 153.28125, - "top": -76.516819, - "right": 154.6875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 215, - "left": 154.6875, - "top": -76.516819, - "right": 156.09375, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 215, - "left": 156.09375, - "top": -76.516819, - "right": 157.5, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 215, - "left": 157.5, - "top": -76.516819, - "right": 158.90625, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 215, - "left": 158.90625, - "top": -76.516819, - "right": 160.3125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 215, - "left": 160.3125, - "top": -76.516819, - "right": 161.71875, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 215, - "left": 161.71875, - "top": -76.516819, - "right": 163.125, - "bottom": -76.840816, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 216, - "left": -158.90625, - "top": -76.840816, - "right": -157.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 216, - "left": -157.5, - "top": -76.840816, - "right": -156.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 216, - "left": -156.09375, - "top": -76.840816, - "right": -154.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 216, - "left": -154.6875, - "top": -76.840816, - "right": -153.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 216, - "left": -151.875, - "top": -76.840816, - "right": -150.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 216, - "left": -150.46875, - "top": -76.840816, - "right": -149.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 216, - "left": -149.0625, - "top": -76.840816, - "right": -147.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 216, - "left": -147.65625, - "top": -76.840816, - "right": -146.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 216, - "left": -146.25, - "top": -76.840816, - "right": -144.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 216, - "left": -144.84375, - "top": -76.840816, - "right": -143.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 216, - "left": -143.4375, - "top": -76.840816, - "right": -142.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 216, - "left": -142.03125, - "top": -76.840816, - "right": -140.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 216, - "left": -140.625, - "top": -76.840816, - "right": -139.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 216, - "left": -139.21875, - "top": -76.840816, - "right": -137.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 216, - "left": -137.8125, - "top": -76.840816, - "right": -136.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 216, - "left": -136.40625, - "top": -76.840816, - "right": -135.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 216, - "left": -135.0, - "top": -76.840816, - "right": -133.59375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 216, - "left": -133.59375, - "top": -76.840816, - "right": -132.1875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 216, - "left": -132.1875, - "top": -76.840816, - "right": -130.78125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 216, - "left": -130.78125, - "top": -76.840816, - "right": -129.375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 216, - "left": -129.375, - "top": -76.840816, - "right": -127.96875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 216, - "left": -127.96875, - "top": -76.840816, - "right": -126.5625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 216, - "left": -126.5625, - "top": -76.840816, - "right": -125.15625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 216, - "left": -125.15625, - "top": -76.840816, - "right": -123.75, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 216, - "left": -123.75, - "top": -76.840816, - "right": -122.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 216, - "left": -122.34375, - "top": -76.840816, - "right": -120.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 216, - "left": -120.9375, - "top": -76.840816, - "right": -119.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 216, - "left": -119.53125, - "top": -76.840816, - "right": -118.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 216, - "left": -118.125, - "top": -76.840816, - "right": -116.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 216, - "left": -116.71875, - "top": -76.840816, - "right": -115.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 216, - "left": -115.3125, - "top": -76.840816, - "right": -113.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 216, - "left": -113.90625, - "top": -76.840816, - "right": -112.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 216, - "left": -112.5, - "top": -76.840816, - "right": -111.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 216, - "left": -111.09375, - "top": -76.840816, - "right": -109.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 216, - "left": -109.6875, - "top": -76.840816, - "right": -108.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 216, - "left": -108.28125, - "top": -76.840816, - "right": -106.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 216, - "left": -106.875, - "top": -76.840816, - "right": -105.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 216, - "left": -105.46875, - "top": -76.840816, - "right": -104.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 216, - "left": -104.0625, - "top": -76.840816, - "right": -102.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 216, - "left": -102.65625, - "top": -76.840816, - "right": -101.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 216, - "left": -101.25, - "top": -76.840816, - "right": -99.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 216, - "left": -99.84375, - "top": -76.840816, - "right": -98.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 216, - "left": -98.4375, - "top": -76.840816, - "right": -97.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 216, - "left": -97.03125, - "top": -76.840816, - "right": -95.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 216, - "left": -95.625, - "top": -76.840816, - "right": -94.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 216, - "left": -94.21875, - "top": -76.840816, - "right": -92.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 216, - "left": -92.8125, - "top": -76.840816, - "right": -91.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 216, - "left": -91.40625, - "top": -76.840816, - "right": -90.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 216, - "left": -90.0, - "top": -76.840816, - "right": -88.59375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 216, - "left": -88.59375, - "top": -76.840816, - "right": -87.1875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 216, - "left": -87.1875, - "top": -76.840816, - "right": -85.78125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 216, - "left": -85.78125, - "top": -76.840816, - "right": -84.375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 216, - "left": -84.375, - "top": -76.840816, - "right": -82.96875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 216, - "left": -82.96875, - "top": -76.840816, - "right": -81.5625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 216, - "left": -81.5625, - "top": -76.840816, - "right": -80.15625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 216, - "left": -80.15625, - "top": -76.840816, - "right": -78.75, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 216, - "left": -78.75, - "top": -76.840816, - "right": -77.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 216, - "left": -77.34375, - "top": -76.840816, - "right": -75.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 216, - "left": -75.9375, - "top": -76.840816, - "right": -74.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 216, - "left": -74.53125, - "top": -76.840816, - "right": -73.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 216, - "left": -73.125, - "top": -76.840816, - "right": -71.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 216, - "left": -71.71875, - "top": -76.840816, - "right": -70.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 216, - "left": -70.3125, - "top": -76.840816, - "right": -68.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 216, - "left": -68.90625, - "top": -76.840816, - "right": -67.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 216, - "left": -32.34375, - "top": -76.840816, - "right": -30.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 216, - "left": -30.9375, - "top": -76.840816, - "right": -29.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 216, - "left": -29.53125, - "top": -76.840816, - "right": -28.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 216, - "left": -28.125, - "top": -76.840816, - "right": -26.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 216, - "left": -26.71875, - "top": -76.840816, - "right": -25.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 216, - "left": -25.3125, - "top": -76.840816, - "right": -23.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 216, - "left": -23.90625, - "top": -76.840816, - "right": -22.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 216, - "left": -22.5, - "top": -76.840816, - "right": -21.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 216, - "left": -21.09375, - "top": -76.840816, - "right": -19.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 216, - "left": -19.6875, - "top": -76.840816, - "right": -18.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 216, - "left": -18.28125, - "top": -76.840816, - "right": -16.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 216, - "left": -16.875, - "top": -76.840816, - "right": -15.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 216, - "left": -15.46875, - "top": -76.840816, - "right": -14.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 216, - "left": -14.0625, - "top": -76.840816, - "right": -12.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 216, - "left": -12.65625, - "top": -76.840816, - "right": -11.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 216, - "left": -11.25, - "top": -76.840816, - "right": -9.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 216, - "left": -9.84375, - "top": -76.840816, - "right": -8.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 216, - "left": -8.4375, - "top": -76.840816, - "right": -7.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 216, - "left": -7.03125, - "top": -76.840816, - "right": -5.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 216, - "left": -5.625, - "top": -76.840816, - "right": -4.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 216, - "left": -4.21875, - "top": -76.840816, - "right": -2.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 216, - "left": -2.8125, - "top": -76.840816, - "right": -1.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 216, - "left": -1.40625, - "top": -76.840816, - "right": 0.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 216, - "left": 0.0, - "top": -76.840816, - "right": 1.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 216, - "left": 1.40625, - "top": -76.840816, - "right": 2.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 216, - "left": 2.8125, - "top": -76.840816, - "right": 4.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 216, - "left": 4.21875, - "top": -76.840816, - "right": 5.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 216, - "left": 5.625, - "top": -76.840816, - "right": 7.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 216, - "left": 7.03125, - "top": -76.840816, - "right": 8.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 216, - "left": 8.4375, - "top": -76.840816, - "right": 9.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 216, - "left": 9.84375, - "top": -76.840816, - "right": 11.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 216, - "left": 11.25, - "top": -76.840816, - "right": 12.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 216, - "left": 12.65625, - "top": -76.840816, - "right": 14.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 216, - "left": 14.0625, - "top": -76.840816, - "right": 15.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 216, - "left": 15.46875, - "top": -76.840816, - "right": 16.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 216, - "left": 16.875, - "top": -76.840816, - "right": 18.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 216, - "left": 18.28125, - "top": -76.840816, - "right": 19.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 216, - "left": 19.6875, - "top": -76.840816, - "right": 21.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 216, - "left": 21.09375, - "top": -76.840816, - "right": 22.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 216, - "left": 22.5, - "top": -76.840816, - "right": 23.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 216, - "left": 23.90625, - "top": -76.840816, - "right": 25.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 216, - "left": 25.3125, - "top": -76.840816, - "right": 26.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 216, - "left": 26.71875, - "top": -76.840816, - "right": 28.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 216, - "left": 28.125, - "top": -76.840816, - "right": 29.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 216, - "left": 29.53125, - "top": -76.840816, - "right": 30.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 216, - "left": 30.9375, - "top": -76.840816, - "right": 32.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 216, - "left": 32.34375, - "top": -76.840816, - "right": 33.75, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 216, - "left": 33.75, - "top": -76.840816, - "right": 35.15625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 216, - "left": 35.15625, - "top": -76.840816, - "right": 36.5625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 216, - "left": 36.5625, - "top": -76.840816, - "right": 37.96875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 216, - "left": 37.96875, - "top": -76.840816, - "right": 39.375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 216, - "left": 39.375, - "top": -76.840816, - "right": 40.78125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 216, - "left": 40.78125, - "top": -76.840816, - "right": 42.1875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 216, - "left": 42.1875, - "top": -76.840816, - "right": 43.59375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 216, - "left": 43.59375, - "top": -76.840816, - "right": 45.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 216, - "left": 45.0, - "top": -76.840816, - "right": 46.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 216, - "left": 46.40625, - "top": -76.840816, - "right": 47.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 216, - "left": 47.8125, - "top": -76.840816, - "right": 49.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 216, - "left": 49.21875, - "top": -76.840816, - "right": 50.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 216, - "left": 50.625, - "top": -76.840816, - "right": 52.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 216, - "left": 52.03125, - "top": -76.840816, - "right": 53.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 216, - "left": 53.4375, - "top": -76.840816, - "right": 54.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 216, - "left": 54.84375, - "top": -76.840816, - "right": 56.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 216, - "left": 56.25, - "top": -76.840816, - "right": 57.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 216, - "left": 57.65625, - "top": -76.840816, - "right": 59.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 216, - "left": 59.0625, - "top": -76.840816, - "right": 60.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 216, - "left": 60.46875, - "top": -76.840816, - "right": 61.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 216, - "left": 61.875, - "top": -76.840816, - "right": 63.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 216, - "left": 63.28125, - "top": -76.840816, - "right": 64.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 216, - "left": 64.6875, - "top": -76.840816, - "right": 66.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 216, - "left": 66.09375, - "top": -76.840816, - "right": 67.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 216, - "left": 67.5, - "top": -76.840816, - "right": 68.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 216, - "left": 68.90625, - "top": -76.840816, - "right": 70.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 216, - "left": 70.3125, - "top": -76.840816, - "right": 71.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 216, - "left": 71.71875, - "top": -76.840816, - "right": 73.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 216, - "left": 73.125, - "top": -76.840816, - "right": 74.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 216, - "left": 74.53125, - "top": -76.840816, - "right": 75.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 216, - "left": 75.9375, - "top": -76.840816, - "right": 77.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 216, - "left": 77.34375, - "top": -76.840816, - "right": 78.75, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 216, - "left": 78.75, - "top": -76.840816, - "right": 80.15625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 216, - "left": 80.15625, - "top": -76.840816, - "right": 81.5625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 216, - "left": 81.5625, - "top": -76.840816, - "right": 82.96875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 216, - "left": 82.96875, - "top": -76.840816, - "right": 84.375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 216, - "left": 84.375, - "top": -76.840816, - "right": 85.78125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 216, - "left": 85.78125, - "top": -76.840816, - "right": 87.1875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 216, - "left": 87.1875, - "top": -76.840816, - "right": 88.59375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 216, - "left": 88.59375, - "top": -76.840816, - "right": 90.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 216, - "left": 90.0, - "top": -76.840816, - "right": 91.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 216, - "left": 91.40625, - "top": -76.840816, - "right": 92.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 216, - "left": 92.8125, - "top": -76.840816, - "right": 94.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 216, - "left": 94.21875, - "top": -76.840816, - "right": 95.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 216, - "left": 95.625, - "top": -76.840816, - "right": 97.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 216, - "left": 97.03125, - "top": -76.840816, - "right": 98.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 216, - "left": 98.4375, - "top": -76.840816, - "right": 99.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 216, - "left": 99.84375, - "top": -76.840816, - "right": 101.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 216, - "left": 101.25, - "top": -76.840816, - "right": 102.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 216, - "left": 102.65625, - "top": -76.840816, - "right": 104.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 216, - "left": 104.0625, - "top": -76.840816, - "right": 105.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 216, - "left": 105.46875, - "top": -76.840816, - "right": 106.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 216, - "left": 106.875, - "top": -76.840816, - "right": 108.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 216, - "left": 108.28125, - "top": -76.840816, - "right": 109.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 216, - "left": 109.6875, - "top": -76.840816, - "right": 111.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 216, - "left": 111.09375, - "top": -76.840816, - "right": 112.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 216, - "left": 112.5, - "top": -76.840816, - "right": 113.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 216, - "left": 113.90625, - "top": -76.840816, - "right": 115.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 216, - "left": 115.3125, - "top": -76.840816, - "right": 116.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 216, - "left": 116.71875, - "top": -76.840816, - "right": 118.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 216, - "left": 118.125, - "top": -76.840816, - "right": 119.53125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 216, - "left": 119.53125, - "top": -76.840816, - "right": 120.9375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 216, - "left": 120.9375, - "top": -76.840816, - "right": 122.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 216, - "left": 122.34375, - "top": -76.840816, - "right": 123.75, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 216, - "left": 123.75, - "top": -76.840816, - "right": 125.15625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 216, - "left": 125.15625, - "top": -76.840816, - "right": 126.5625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 216, - "left": 126.5625, - "top": -76.840816, - "right": 127.96875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 216, - "left": 127.96875, - "top": -76.840816, - "right": 129.375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 216, - "left": 129.375, - "top": -76.840816, - "right": 130.78125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 216, - "left": 130.78125, - "top": -76.840816, - "right": 132.1875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 216, - "left": 132.1875, - "top": -76.840816, - "right": 133.59375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 216, - "left": 133.59375, - "top": -76.840816, - "right": 135.0, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 216, - "left": 135.0, - "top": -76.840816, - "right": 136.40625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 216, - "left": 136.40625, - "top": -76.840816, - "right": 137.8125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 216, - "left": 137.8125, - "top": -76.840816, - "right": 139.21875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 216, - "left": 139.21875, - "top": -76.840816, - "right": 140.625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 216, - "left": 140.625, - "top": -76.840816, - "right": 142.03125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 216, - "left": 142.03125, - "top": -76.840816, - "right": 143.4375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 216, - "left": 143.4375, - "top": -76.840816, - "right": 144.84375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 216, - "left": 144.84375, - "top": -76.840816, - "right": 146.25, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 216, - "left": 146.25, - "top": -76.840816, - "right": 147.65625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 216, - "left": 147.65625, - "top": -76.840816, - "right": 149.0625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 216, - "left": 149.0625, - "top": -76.840816, - "right": 150.46875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 216, - "left": 150.46875, - "top": -76.840816, - "right": 151.875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 216, - "left": 151.875, - "top": -76.840816, - "right": 153.28125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 216, - "left": 153.28125, - "top": -76.840816, - "right": 154.6875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 216, - "left": 154.6875, - "top": -76.840816, - "right": 156.09375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 216, - "left": 156.09375, - "top": -76.840816, - "right": 157.5, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 216, - "left": 157.5, - "top": -76.840816, - "right": 158.90625, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 216, - "left": 158.90625, - "top": -76.840816, - "right": 160.3125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 216, - "left": 160.3125, - "top": -76.840816, - "right": 161.71875, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 216, - "left": 161.71875, - "top": -76.840816, - "right": 163.125, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 216, - "left": 165.9375, - "top": -76.840816, - "right": 167.34375, - "bottom": -77.157163, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 217, - "left": -158.90625, - "top": -77.157163, - "right": -157.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 217, - "left": -157.5, - "top": -77.157163, - "right": -156.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 217, - "left": -156.09375, - "top": -77.157163, - "right": -154.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 217, - "left": -154.6875, - "top": -77.157163, - "right": -153.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 217, - "left": -153.28125, - "top": -77.157163, - "right": -151.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 217, - "left": -151.875, - "top": -77.157163, - "right": -150.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 217, - "left": -150.46875, - "top": -77.157163, - "right": -149.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 217, - "left": -149.0625, - "top": -77.157163, - "right": -147.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 217, - "left": -147.65625, - "top": -77.157163, - "right": -146.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 217, - "left": -146.25, - "top": -77.157163, - "right": -144.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 217, - "left": -144.84375, - "top": -77.157163, - "right": -143.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 217, - "left": -143.4375, - "top": -77.157163, - "right": -142.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 217, - "left": -142.03125, - "top": -77.157163, - "right": -140.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 217, - "left": -140.625, - "top": -77.157163, - "right": -139.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 217, - "left": -139.21875, - "top": -77.157163, - "right": -137.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 217, - "left": -137.8125, - "top": -77.157163, - "right": -136.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 217, - "left": -136.40625, - "top": -77.157163, - "right": -135.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 217, - "left": -135.0, - "top": -77.157163, - "right": -133.59375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 217, - "left": -133.59375, - "top": -77.157163, - "right": -132.1875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 217, - "left": -132.1875, - "top": -77.157163, - "right": -130.78125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 217, - "left": -130.78125, - "top": -77.157163, - "right": -129.375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 217, - "left": -129.375, - "top": -77.157163, - "right": -127.96875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 217, - "left": -127.96875, - "top": -77.157163, - "right": -126.5625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 217, - "left": -126.5625, - "top": -77.157163, - "right": -125.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 217, - "left": -125.15625, - "top": -77.157163, - "right": -123.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 217, - "left": -123.75, - "top": -77.157163, - "right": -122.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 217, - "left": -122.34375, - "top": -77.157163, - "right": -120.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 217, - "left": -120.9375, - "top": -77.157163, - "right": -119.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 217, - "left": -119.53125, - "top": -77.157163, - "right": -118.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 217, - "left": -118.125, - "top": -77.157163, - "right": -116.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 217, - "left": -116.71875, - "top": -77.157163, - "right": -115.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 217, - "left": -115.3125, - "top": -77.157163, - "right": -113.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 217, - "left": -113.90625, - "top": -77.157163, - "right": -112.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 217, - "left": -112.5, - "top": -77.157163, - "right": -111.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 217, - "left": -111.09375, - "top": -77.157163, - "right": -109.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 217, - "left": -109.6875, - "top": -77.157163, - "right": -108.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 217, - "left": -108.28125, - "top": -77.157163, - "right": -106.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 217, - "left": -106.875, - "top": -77.157163, - "right": -105.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 217, - "left": -105.46875, - "top": -77.157163, - "right": -104.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 217, - "left": -104.0625, - "top": -77.157163, - "right": -102.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 217, - "left": -102.65625, - "top": -77.157163, - "right": -101.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 217, - "left": -101.25, - "top": -77.157163, - "right": -99.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 217, - "left": -99.84375, - "top": -77.157163, - "right": -98.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 217, - "left": -98.4375, - "top": -77.157163, - "right": -97.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 217, - "left": -97.03125, - "top": -77.157163, - "right": -95.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 217, - "left": -95.625, - "top": -77.157163, - "right": -94.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 217, - "left": -94.21875, - "top": -77.157163, - "right": -92.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 217, - "left": -92.8125, - "top": -77.157163, - "right": -91.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 217, - "left": -91.40625, - "top": -77.157163, - "right": -90.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 217, - "left": -90.0, - "top": -77.157163, - "right": -88.59375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 217, - "left": -88.59375, - "top": -77.157163, - "right": -87.1875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 217, - "left": -87.1875, - "top": -77.157163, - "right": -85.78125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 217, - "left": -85.78125, - "top": -77.157163, - "right": -84.375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 217, - "left": -84.375, - "top": -77.157163, - "right": -82.96875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 217, - "left": -82.96875, - "top": -77.157163, - "right": -81.5625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 217, - "left": -81.5625, - "top": -77.157163, - "right": -80.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 217, - "left": -80.15625, - "top": -77.157163, - "right": -78.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 217, - "left": -78.75, - "top": -77.157163, - "right": -77.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 217, - "left": -77.34375, - "top": -77.157163, - "right": -75.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 217, - "left": -75.9375, - "top": -77.157163, - "right": -74.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 217, - "left": -74.53125, - "top": -77.157163, - "right": -73.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 217, - "left": -73.125, - "top": -77.157163, - "right": -71.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 217, - "left": -71.71875, - "top": -77.157163, - "right": -70.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 217, - "left": -70.3125, - "top": -77.157163, - "right": -68.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 217, - "left": -68.90625, - "top": -77.157163, - "right": -67.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 217, - "left": -33.75, - "top": -77.157163, - "right": -32.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 217, - "left": -32.34375, - "top": -77.157163, - "right": -30.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 217, - "left": -30.9375, - "top": -77.157163, - "right": -29.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 217, - "left": -29.53125, - "top": -77.157163, - "right": -28.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 217, - "left": -28.125, - "top": -77.157163, - "right": -26.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 217, - "left": -26.71875, - "top": -77.157163, - "right": -25.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 217, - "left": -25.3125, - "top": -77.157163, - "right": -23.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 217, - "left": -23.90625, - "top": -77.157163, - "right": -22.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 217, - "left": -22.5, - "top": -77.157163, - "right": -21.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 217, - "left": -21.09375, - "top": -77.157163, - "right": -19.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 217, - "left": -19.6875, - "top": -77.157163, - "right": -18.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 217, - "left": -18.28125, - "top": -77.157163, - "right": -16.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 217, - "left": -16.875, - "top": -77.157163, - "right": -15.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 217, - "left": -15.46875, - "top": -77.157163, - "right": -14.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 217, - "left": -14.0625, - "top": -77.157163, - "right": -12.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 217, - "left": -12.65625, - "top": -77.157163, - "right": -11.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 217, - "left": -11.25, - "top": -77.157163, - "right": -9.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 217, - "left": -9.84375, - "top": -77.157163, - "right": -8.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 217, - "left": -8.4375, - "top": -77.157163, - "right": -7.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 217, - "left": -7.03125, - "top": -77.157163, - "right": -5.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 217, - "left": -5.625, - "top": -77.157163, - "right": -4.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 217, - "left": -4.21875, - "top": -77.157163, - "right": -2.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 217, - "left": -2.8125, - "top": -77.157163, - "right": -1.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 217, - "left": -1.40625, - "top": -77.157163, - "right": 0.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 217, - "left": 0.0, - "top": -77.157163, - "right": 1.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 217, - "left": 1.40625, - "top": -77.157163, - "right": 2.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 217, - "left": 2.8125, - "top": -77.157163, - "right": 4.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 217, - "left": 4.21875, - "top": -77.157163, - "right": 5.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 217, - "left": 5.625, - "top": -77.157163, - "right": 7.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 217, - "left": 7.03125, - "top": -77.157163, - "right": 8.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 217, - "left": 8.4375, - "top": -77.157163, - "right": 9.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 217, - "left": 9.84375, - "top": -77.157163, - "right": 11.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 217, - "left": 11.25, - "top": -77.157163, - "right": 12.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 217, - "left": 12.65625, - "top": -77.157163, - "right": 14.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 217, - "left": 14.0625, - "top": -77.157163, - "right": 15.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 217, - "left": 15.46875, - "top": -77.157163, - "right": 16.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 217, - "left": 16.875, - "top": -77.157163, - "right": 18.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 217, - "left": 18.28125, - "top": -77.157163, - "right": 19.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 217, - "left": 19.6875, - "top": -77.157163, - "right": 21.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 217, - "left": 21.09375, - "top": -77.157163, - "right": 22.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 217, - "left": 22.5, - "top": -77.157163, - "right": 23.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 217, - "left": 23.90625, - "top": -77.157163, - "right": 25.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 217, - "left": 25.3125, - "top": -77.157163, - "right": 26.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 217, - "left": 26.71875, - "top": -77.157163, - "right": 28.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 217, - "left": 28.125, - "top": -77.157163, - "right": 29.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 217, - "left": 29.53125, - "top": -77.157163, - "right": 30.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 217, - "left": 30.9375, - "top": -77.157163, - "right": 32.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 217, - "left": 32.34375, - "top": -77.157163, - "right": 33.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 217, - "left": 33.75, - "top": -77.157163, - "right": 35.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 217, - "left": 35.15625, - "top": -77.157163, - "right": 36.5625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 217, - "left": 36.5625, - "top": -77.157163, - "right": 37.96875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 217, - "left": 37.96875, - "top": -77.157163, - "right": 39.375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 217, - "left": 39.375, - "top": -77.157163, - "right": 40.78125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 217, - "left": 40.78125, - "top": -77.157163, - "right": 42.1875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 217, - "left": 42.1875, - "top": -77.157163, - "right": 43.59375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 217, - "left": 43.59375, - "top": -77.157163, - "right": 45.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 217, - "left": 45.0, - "top": -77.157163, - "right": 46.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 217, - "left": 46.40625, - "top": -77.157163, - "right": 47.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 217, - "left": 47.8125, - "top": -77.157163, - "right": 49.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 217, - "left": 49.21875, - "top": -77.157163, - "right": 50.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 217, - "left": 50.625, - "top": -77.157163, - "right": 52.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 217, - "left": 52.03125, - "top": -77.157163, - "right": 53.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 217, - "left": 53.4375, - "top": -77.157163, - "right": 54.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 217, - "left": 54.84375, - "top": -77.157163, - "right": 56.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 217, - "left": 56.25, - "top": -77.157163, - "right": 57.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 217, - "left": 57.65625, - "top": -77.157163, - "right": 59.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 217, - "left": 59.0625, - "top": -77.157163, - "right": 60.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 217, - "left": 60.46875, - "top": -77.157163, - "right": 61.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 217, - "left": 61.875, - "top": -77.157163, - "right": 63.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 217, - "left": 63.28125, - "top": -77.157163, - "right": 64.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 217, - "left": 64.6875, - "top": -77.157163, - "right": 66.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 217, - "left": 66.09375, - "top": -77.157163, - "right": 67.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 217, - "left": 67.5, - "top": -77.157163, - "right": 68.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 217, - "left": 68.90625, - "top": -77.157163, - "right": 70.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 217, - "left": 70.3125, - "top": -77.157163, - "right": 71.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 217, - "left": 71.71875, - "top": -77.157163, - "right": 73.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 217, - "left": 73.125, - "top": -77.157163, - "right": 74.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 217, - "left": 74.53125, - "top": -77.157163, - "right": 75.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 217, - "left": 75.9375, - "top": -77.157163, - "right": 77.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 217, - "left": 77.34375, - "top": -77.157163, - "right": 78.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 217, - "left": 78.75, - "top": -77.157163, - "right": 80.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 217, - "left": 80.15625, - "top": -77.157163, - "right": 81.5625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 217, - "left": 81.5625, - "top": -77.157163, - "right": 82.96875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 217, - "left": 82.96875, - "top": -77.157163, - "right": 84.375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 217, - "left": 84.375, - "top": -77.157163, - "right": 85.78125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 217, - "left": 85.78125, - "top": -77.157163, - "right": 87.1875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 217, - "left": 87.1875, - "top": -77.157163, - "right": 88.59375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 217, - "left": 88.59375, - "top": -77.157163, - "right": 90.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 217, - "left": 90.0, - "top": -77.157163, - "right": 91.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 217, - "left": 91.40625, - "top": -77.157163, - "right": 92.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 217, - "left": 92.8125, - "top": -77.157163, - "right": 94.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 217, - "left": 94.21875, - "top": -77.157163, - "right": 95.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 217, - "left": 95.625, - "top": -77.157163, - "right": 97.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 217, - "left": 97.03125, - "top": -77.157163, - "right": 98.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 217, - "left": 98.4375, - "top": -77.157163, - "right": 99.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 217, - "left": 99.84375, - "top": -77.157163, - "right": 101.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 217, - "left": 101.25, - "top": -77.157163, - "right": 102.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 217, - "left": 102.65625, - "top": -77.157163, - "right": 104.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 217, - "left": 104.0625, - "top": -77.157163, - "right": 105.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 217, - "left": 105.46875, - "top": -77.157163, - "right": 106.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 217, - "left": 106.875, - "top": -77.157163, - "right": 108.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 217, - "left": 108.28125, - "top": -77.157163, - "right": 109.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 217, - "left": 109.6875, - "top": -77.157163, - "right": 111.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 217, - "left": 111.09375, - "top": -77.157163, - "right": 112.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 217, - "left": 112.5, - "top": -77.157163, - "right": 113.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 217, - "left": 113.90625, - "top": -77.157163, - "right": 115.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 217, - "left": 115.3125, - "top": -77.157163, - "right": 116.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 217, - "left": 116.71875, - "top": -77.157163, - "right": 118.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 217, - "left": 118.125, - "top": -77.157163, - "right": 119.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 217, - "left": 119.53125, - "top": -77.157163, - "right": 120.9375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 217, - "left": 120.9375, - "top": -77.157163, - "right": 122.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 217, - "left": 122.34375, - "top": -77.157163, - "right": 123.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 217, - "left": 123.75, - "top": -77.157163, - "right": 125.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 217, - "left": 125.15625, - "top": -77.157163, - "right": 126.5625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 217, - "left": 126.5625, - "top": -77.157163, - "right": 127.96875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 217, - "left": 127.96875, - "top": -77.157163, - "right": 129.375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 217, - "left": 129.375, - "top": -77.157163, - "right": 130.78125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 217, - "left": 130.78125, - "top": -77.157163, - "right": 132.1875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 217, - "left": 132.1875, - "top": -77.157163, - "right": 133.59375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 217, - "left": 133.59375, - "top": -77.157163, - "right": 135.0, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 217, - "left": 135.0, - "top": -77.157163, - "right": 136.40625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 217, - "left": 136.40625, - "top": -77.157163, - "right": 137.8125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 217, - "left": 137.8125, - "top": -77.157163, - "right": 139.21875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 217, - "left": 139.21875, - "top": -77.157163, - "right": 140.625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 217, - "left": 140.625, - "top": -77.157163, - "right": 142.03125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 217, - "left": 142.03125, - "top": -77.157163, - "right": 143.4375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 217, - "left": 143.4375, - "top": -77.157163, - "right": 144.84375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 217, - "left": 144.84375, - "top": -77.157163, - "right": 146.25, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 217, - "left": 146.25, - "top": -77.157163, - "right": 147.65625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 217, - "left": 147.65625, - "top": -77.157163, - "right": 149.0625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 217, - "left": 149.0625, - "top": -77.157163, - "right": 150.46875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 217, - "left": 150.46875, - "top": -77.157163, - "right": 151.875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 217, - "left": 151.875, - "top": -77.157163, - "right": 153.28125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 217, - "left": 153.28125, - "top": -77.157163, - "right": 154.6875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 217, - "left": 154.6875, - "top": -77.157163, - "right": 156.09375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 217, - "left": 156.09375, - "top": -77.157163, - "right": 157.5, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 217, - "left": 157.5, - "top": -77.157163, - "right": 158.90625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 217, - "left": 158.90625, - "top": -77.157163, - "right": 160.3125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 217, - "left": 160.3125, - "top": -77.157163, - "right": 161.71875, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 217, - "left": 161.71875, - "top": -77.157163, - "right": 163.125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 217, - "left": 163.125, - "top": -77.157163, - "right": 164.53125, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 217, - "left": 165.9375, - "top": -77.157163, - "right": 167.34375, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 217, - "left": 167.34375, - "top": -77.157163, - "right": 168.75, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 217, - "left": 168.75, - "top": -77.157163, - "right": 170.15625, - "bottom": -77.466028, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 218, - "left": -158.90625, - "top": -77.466028, - "right": -157.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 218, - "left": -157.5, - "top": -77.466028, - "right": -156.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 218, - "left": -156.09375, - "top": -77.466028, - "right": -154.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 218, - "left": -154.6875, - "top": -77.466028, - "right": -153.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 218, - "left": -153.28125, - "top": -77.466028, - "right": -151.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 218, - "left": -151.875, - "top": -77.466028, - "right": -150.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 218, - "left": -150.46875, - "top": -77.466028, - "right": -149.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 218, - "left": -149.0625, - "top": -77.466028, - "right": -147.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 218, - "left": -147.65625, - "top": -77.466028, - "right": -146.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 218, - "left": -146.25, - "top": -77.466028, - "right": -144.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 218, - "left": -144.84375, - "top": -77.466028, - "right": -143.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 218, - "left": -143.4375, - "top": -77.466028, - "right": -142.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 218, - "left": -142.03125, - "top": -77.466028, - "right": -140.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 218, - "left": -140.625, - "top": -77.466028, - "right": -139.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 218, - "left": -139.21875, - "top": -77.466028, - "right": -137.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 218, - "left": -137.8125, - "top": -77.466028, - "right": -136.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 218, - "left": -136.40625, - "top": -77.466028, - "right": -135.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 218, - "left": -135.0, - "top": -77.466028, - "right": -133.59375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 218, - "left": -133.59375, - "top": -77.466028, - "right": -132.1875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 218, - "left": -132.1875, - "top": -77.466028, - "right": -130.78125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 218, - "left": -130.78125, - "top": -77.466028, - "right": -129.375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 218, - "left": -129.375, - "top": -77.466028, - "right": -127.96875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 218, - "left": -127.96875, - "top": -77.466028, - "right": -126.5625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 218, - "left": -126.5625, - "top": -77.466028, - "right": -125.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 218, - "left": -125.15625, - "top": -77.466028, - "right": -123.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 218, - "left": -123.75, - "top": -77.466028, - "right": -122.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 218, - "left": -122.34375, - "top": -77.466028, - "right": -120.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 218, - "left": -120.9375, - "top": -77.466028, - "right": -119.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 218, - "left": -119.53125, - "top": -77.466028, - "right": -118.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 218, - "left": -118.125, - "top": -77.466028, - "right": -116.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 218, - "left": -116.71875, - "top": -77.466028, - "right": -115.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 218, - "left": -115.3125, - "top": -77.466028, - "right": -113.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 218, - "left": -113.90625, - "top": -77.466028, - "right": -112.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 218, - "left": -112.5, - "top": -77.466028, - "right": -111.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 218, - "left": -111.09375, - "top": -77.466028, - "right": -109.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 218, - "left": -109.6875, - "top": -77.466028, - "right": -108.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 218, - "left": -108.28125, - "top": -77.466028, - "right": -106.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 218, - "left": -106.875, - "top": -77.466028, - "right": -105.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 218, - "left": -105.46875, - "top": -77.466028, - "right": -104.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 218, - "left": -104.0625, - "top": -77.466028, - "right": -102.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 218, - "left": -102.65625, - "top": -77.466028, - "right": -101.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 218, - "left": -101.25, - "top": -77.466028, - "right": -99.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 218, - "left": -99.84375, - "top": -77.466028, - "right": -98.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 218, - "left": -98.4375, - "top": -77.466028, - "right": -97.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 218, - "left": -97.03125, - "top": -77.466028, - "right": -95.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 218, - "left": -95.625, - "top": -77.466028, - "right": -94.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 218, - "left": -94.21875, - "top": -77.466028, - "right": -92.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 218, - "left": -92.8125, - "top": -77.466028, - "right": -91.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 218, - "left": -91.40625, - "top": -77.466028, - "right": -90.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 218, - "left": -90.0, - "top": -77.466028, - "right": -88.59375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 218, - "left": -88.59375, - "top": -77.466028, - "right": -87.1875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 218, - "left": -87.1875, - "top": -77.466028, - "right": -85.78125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 218, - "left": -85.78125, - "top": -77.466028, - "right": -84.375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 218, - "left": -84.375, - "top": -77.466028, - "right": -82.96875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 218, - "left": -82.96875, - "top": -77.466028, - "right": -81.5625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 218, - "left": -81.5625, - "top": -77.466028, - "right": -80.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 218, - "left": -80.15625, - "top": -77.466028, - "right": -78.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 218, - "left": -78.75, - "top": -77.466028, - "right": -77.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 218, - "left": -77.34375, - "top": -77.466028, - "right": -75.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 218, - "left": -75.9375, - "top": -77.466028, - "right": -74.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 218, - "left": -74.53125, - "top": -77.466028, - "right": -73.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 218, - "left": -73.125, - "top": -77.466028, - "right": -71.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 218, - "left": -71.71875, - "top": -77.466028, - "right": -70.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 218, - "left": -70.3125, - "top": -77.466028, - "right": -68.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 218, - "left": -68.90625, - "top": -77.466028, - "right": -67.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 218, - "left": -50.625, - "top": -77.466028, - "right": -49.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 218, - "left": -49.21875, - "top": -77.466028, - "right": -47.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 218, - "left": -35.15625, - "top": -77.466028, - "right": -33.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 218, - "left": -33.75, - "top": -77.466028, - "right": -32.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 218, - "left": -32.34375, - "top": -77.466028, - "right": -30.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 218, - "left": -30.9375, - "top": -77.466028, - "right": -29.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 218, - "left": -29.53125, - "top": -77.466028, - "right": -28.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 218, - "left": -28.125, - "top": -77.466028, - "right": -26.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 218, - "left": -26.71875, - "top": -77.466028, - "right": -25.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 218, - "left": -25.3125, - "top": -77.466028, - "right": -23.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 218, - "left": -23.90625, - "top": -77.466028, - "right": -22.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 218, - "left": -22.5, - "top": -77.466028, - "right": -21.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 218, - "left": -21.09375, - "top": -77.466028, - "right": -19.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 218, - "left": -19.6875, - "top": -77.466028, - "right": -18.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 218, - "left": -18.28125, - "top": -77.466028, - "right": -16.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 218, - "left": -16.875, - "top": -77.466028, - "right": -15.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 218, - "left": -15.46875, - "top": -77.466028, - "right": -14.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 218, - "left": -14.0625, - "top": -77.466028, - "right": -12.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 218, - "left": -12.65625, - "top": -77.466028, - "right": -11.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 218, - "left": -11.25, - "top": -77.466028, - "right": -9.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 218, - "left": -9.84375, - "top": -77.466028, - "right": -8.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 218, - "left": -8.4375, - "top": -77.466028, - "right": -7.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 218, - "left": -7.03125, - "top": -77.466028, - "right": -5.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 218, - "left": -5.625, - "top": -77.466028, - "right": -4.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 218, - "left": -4.21875, - "top": -77.466028, - "right": -2.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 218, - "left": -2.8125, - "top": -77.466028, - "right": -1.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 218, - "left": -1.40625, - "top": -77.466028, - "right": 0.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 218, - "left": 0.0, - "top": -77.466028, - "right": 1.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 218, - "left": 1.40625, - "top": -77.466028, - "right": 2.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 218, - "left": 2.8125, - "top": -77.466028, - "right": 4.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 218, - "left": 4.21875, - "top": -77.466028, - "right": 5.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 218, - "left": 5.625, - "top": -77.466028, - "right": 7.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 218, - "left": 7.03125, - "top": -77.466028, - "right": 8.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 218, - "left": 8.4375, - "top": -77.466028, - "right": 9.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 218, - "left": 9.84375, - "top": -77.466028, - "right": 11.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 218, - "left": 11.25, - "top": -77.466028, - "right": 12.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 218, - "left": 12.65625, - "top": -77.466028, - "right": 14.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 218, - "left": 14.0625, - "top": -77.466028, - "right": 15.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 218, - "left": 15.46875, - "top": -77.466028, - "right": 16.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 218, - "left": 16.875, - "top": -77.466028, - "right": 18.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 218, - "left": 18.28125, - "top": -77.466028, - "right": 19.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 218, - "left": 19.6875, - "top": -77.466028, - "right": 21.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 218, - "left": 21.09375, - "top": -77.466028, - "right": 22.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 218, - "left": 22.5, - "top": -77.466028, - "right": 23.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 218, - "left": 23.90625, - "top": -77.466028, - "right": 25.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 218, - "left": 25.3125, - "top": -77.466028, - "right": 26.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 218, - "left": 26.71875, - "top": -77.466028, - "right": 28.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 218, - "left": 28.125, - "top": -77.466028, - "right": 29.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 218, - "left": 29.53125, - "top": -77.466028, - "right": 30.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 218, - "left": 30.9375, - "top": -77.466028, - "right": 32.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 218, - "left": 32.34375, - "top": -77.466028, - "right": 33.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 218, - "left": 33.75, - "top": -77.466028, - "right": 35.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 218, - "left": 35.15625, - "top": -77.466028, - "right": 36.5625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 218, - "left": 36.5625, - "top": -77.466028, - "right": 37.96875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 218, - "left": 37.96875, - "top": -77.466028, - "right": 39.375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 218, - "left": 39.375, - "top": -77.466028, - "right": 40.78125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 218, - "left": 40.78125, - "top": -77.466028, - "right": 42.1875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 218, - "left": 42.1875, - "top": -77.466028, - "right": 43.59375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 218, - "left": 43.59375, - "top": -77.466028, - "right": 45.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 218, - "left": 45.0, - "top": -77.466028, - "right": 46.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 218, - "left": 46.40625, - "top": -77.466028, - "right": 47.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 218, - "left": 47.8125, - "top": -77.466028, - "right": 49.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 218, - "left": 49.21875, - "top": -77.466028, - "right": 50.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 218, - "left": 50.625, - "top": -77.466028, - "right": 52.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 218, - "left": 52.03125, - "top": -77.466028, - "right": 53.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 218, - "left": 53.4375, - "top": -77.466028, - "right": 54.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 218, - "left": 54.84375, - "top": -77.466028, - "right": 56.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 218, - "left": 56.25, - "top": -77.466028, - "right": 57.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 218, - "left": 57.65625, - "top": -77.466028, - "right": 59.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 218, - "left": 59.0625, - "top": -77.466028, - "right": 60.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 218, - "left": 60.46875, - "top": -77.466028, - "right": 61.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 218, - "left": 61.875, - "top": -77.466028, - "right": 63.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 218, - "left": 63.28125, - "top": -77.466028, - "right": 64.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 218, - "left": 64.6875, - "top": -77.466028, - "right": 66.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 218, - "left": 66.09375, - "top": -77.466028, - "right": 67.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 218, - "left": 67.5, - "top": -77.466028, - "right": 68.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 218, - "left": 68.90625, - "top": -77.466028, - "right": 70.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 218, - "left": 70.3125, - "top": -77.466028, - "right": 71.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 218, - "left": 71.71875, - "top": -77.466028, - "right": 73.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 218, - "left": 73.125, - "top": -77.466028, - "right": 74.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 218, - "left": 74.53125, - "top": -77.466028, - "right": 75.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 218, - "left": 75.9375, - "top": -77.466028, - "right": 77.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 218, - "left": 77.34375, - "top": -77.466028, - "right": 78.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 218, - "left": 78.75, - "top": -77.466028, - "right": 80.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 218, - "left": 80.15625, - "top": -77.466028, - "right": 81.5625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 218, - "left": 81.5625, - "top": -77.466028, - "right": 82.96875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 218, - "left": 82.96875, - "top": -77.466028, - "right": 84.375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 218, - "left": 84.375, - "top": -77.466028, - "right": 85.78125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 218, - "left": 85.78125, - "top": -77.466028, - "right": 87.1875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 218, - "left": 87.1875, - "top": -77.466028, - "right": 88.59375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 218, - "left": 88.59375, - "top": -77.466028, - "right": 90.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 218, - "left": 90.0, - "top": -77.466028, - "right": 91.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 218, - "left": 91.40625, - "top": -77.466028, - "right": 92.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 218, - "left": 92.8125, - "top": -77.466028, - "right": 94.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 218, - "left": 94.21875, - "top": -77.466028, - "right": 95.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 218, - "left": 95.625, - "top": -77.466028, - "right": 97.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 218, - "left": 97.03125, - "top": -77.466028, - "right": 98.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 218, - "left": 98.4375, - "top": -77.466028, - "right": 99.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 218, - "left": 99.84375, - "top": -77.466028, - "right": 101.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 218, - "left": 101.25, - "top": -77.466028, - "right": 102.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 218, - "left": 102.65625, - "top": -77.466028, - "right": 104.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 218, - "left": 104.0625, - "top": -77.466028, - "right": 105.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 218, - "left": 105.46875, - "top": -77.466028, - "right": 106.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 218, - "left": 106.875, - "top": -77.466028, - "right": 108.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 218, - "left": 108.28125, - "top": -77.466028, - "right": 109.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 218, - "left": 109.6875, - "top": -77.466028, - "right": 111.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 218, - "left": 111.09375, - "top": -77.466028, - "right": 112.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 218, - "left": 112.5, - "top": -77.466028, - "right": 113.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 218, - "left": 113.90625, - "top": -77.466028, - "right": 115.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 218, - "left": 115.3125, - "top": -77.466028, - "right": 116.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 218, - "left": 116.71875, - "top": -77.466028, - "right": 118.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 218, - "left": 118.125, - "top": -77.466028, - "right": 119.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 218, - "left": 119.53125, - "top": -77.466028, - "right": 120.9375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 218, - "left": 120.9375, - "top": -77.466028, - "right": 122.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 218, - "left": 122.34375, - "top": -77.466028, - "right": 123.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 218, - "left": 123.75, - "top": -77.466028, - "right": 125.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 218, - "left": 125.15625, - "top": -77.466028, - "right": 126.5625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 218, - "left": 126.5625, - "top": -77.466028, - "right": 127.96875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 218, - "left": 127.96875, - "top": -77.466028, - "right": 129.375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 218, - "left": 129.375, - "top": -77.466028, - "right": 130.78125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 218, - "left": 130.78125, - "top": -77.466028, - "right": 132.1875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 218, - "left": 132.1875, - "top": -77.466028, - "right": 133.59375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 218, - "left": 133.59375, - "top": -77.466028, - "right": 135.0, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 218, - "left": 135.0, - "top": -77.466028, - "right": 136.40625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 218, - "left": 136.40625, - "top": -77.466028, - "right": 137.8125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 218, - "left": 137.8125, - "top": -77.466028, - "right": 139.21875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 218, - "left": 139.21875, - "top": -77.466028, - "right": 140.625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 218, - "left": 140.625, - "top": -77.466028, - "right": 142.03125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 218, - "left": 142.03125, - "top": -77.466028, - "right": 143.4375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 218, - "left": 143.4375, - "top": -77.466028, - "right": 144.84375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 218, - "left": 144.84375, - "top": -77.466028, - "right": 146.25, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 218, - "left": 146.25, - "top": -77.466028, - "right": 147.65625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 218, - "left": 147.65625, - "top": -77.466028, - "right": 149.0625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 218, - "left": 149.0625, - "top": -77.466028, - "right": 150.46875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 218, - "left": 150.46875, - "top": -77.466028, - "right": 151.875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 218, - "left": 151.875, - "top": -77.466028, - "right": 153.28125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 218, - "left": 153.28125, - "top": -77.466028, - "right": 154.6875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 218, - "left": 154.6875, - "top": -77.466028, - "right": 156.09375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 218, - "left": 156.09375, - "top": -77.466028, - "right": 157.5, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 218, - "left": 157.5, - "top": -77.466028, - "right": 158.90625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 218, - "left": 158.90625, - "top": -77.466028, - "right": 160.3125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 218, - "left": 160.3125, - "top": -77.466028, - "right": 161.71875, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 218, - "left": 161.71875, - "top": -77.466028, - "right": 163.125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 218, - "left": 163.125, - "top": -77.466028, - "right": 164.53125, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 218, - "left": 165.9375, - "top": -77.466028, - "right": 167.34375, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 218, - "left": 167.34375, - "top": -77.466028, - "right": 168.75, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 218, - "left": 168.75, - "top": -77.466028, - "right": 170.15625, - "bottom": -77.767582, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 219, - "left": -158.90625, - "top": -77.767582, - "right": -157.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 219, - "left": -157.5, - "top": -77.767582, - "right": -156.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 219, - "left": -156.09375, - "top": -77.767582, - "right": -154.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 219, - "left": -154.6875, - "top": -77.767582, - "right": -153.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 219, - "left": -153.28125, - "top": -77.767582, - "right": -151.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 219, - "left": -151.875, - "top": -77.767582, - "right": -150.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 219, - "left": -150.46875, - "top": -77.767582, - "right": -149.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 219, - "left": -149.0625, - "top": -77.767582, - "right": -147.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 219, - "left": -147.65625, - "top": -77.767582, - "right": -146.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 219, - "left": -146.25, - "top": -77.767582, - "right": -144.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 219, - "left": -144.84375, - "top": -77.767582, - "right": -143.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 219, - "left": -143.4375, - "top": -77.767582, - "right": -142.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 219, - "left": -142.03125, - "top": -77.767582, - "right": -140.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 219, - "left": -140.625, - "top": -77.767582, - "right": -139.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 219, - "left": -139.21875, - "top": -77.767582, - "right": -137.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 219, - "left": -137.8125, - "top": -77.767582, - "right": -136.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 219, - "left": -136.40625, - "top": -77.767582, - "right": -135.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 219, - "left": -135.0, - "top": -77.767582, - "right": -133.59375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 219, - "left": -133.59375, - "top": -77.767582, - "right": -132.1875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 219, - "left": -132.1875, - "top": -77.767582, - "right": -130.78125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 219, - "left": -130.78125, - "top": -77.767582, - "right": -129.375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 219, - "left": -129.375, - "top": -77.767582, - "right": -127.96875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 219, - "left": -127.96875, - "top": -77.767582, - "right": -126.5625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 219, - "left": -126.5625, - "top": -77.767582, - "right": -125.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 219, - "left": -125.15625, - "top": -77.767582, - "right": -123.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 219, - "left": -123.75, - "top": -77.767582, - "right": -122.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 219, - "left": -122.34375, - "top": -77.767582, - "right": -120.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 219, - "left": -120.9375, - "top": -77.767582, - "right": -119.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 219, - "left": -119.53125, - "top": -77.767582, - "right": -118.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 219, - "left": -118.125, - "top": -77.767582, - "right": -116.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 219, - "left": -116.71875, - "top": -77.767582, - "right": -115.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 219, - "left": -115.3125, - "top": -77.767582, - "right": -113.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 219, - "left": -113.90625, - "top": -77.767582, - "right": -112.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 219, - "left": -112.5, - "top": -77.767582, - "right": -111.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 219, - "left": -111.09375, - "top": -77.767582, - "right": -109.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 219, - "left": -109.6875, - "top": -77.767582, - "right": -108.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 219, - "left": -108.28125, - "top": -77.767582, - "right": -106.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 219, - "left": -106.875, - "top": -77.767582, - "right": -105.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 219, - "left": -105.46875, - "top": -77.767582, - "right": -104.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 219, - "left": -104.0625, - "top": -77.767582, - "right": -102.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 219, - "left": -102.65625, - "top": -77.767582, - "right": -101.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 219, - "left": -101.25, - "top": -77.767582, - "right": -99.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 219, - "left": -99.84375, - "top": -77.767582, - "right": -98.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 219, - "left": -98.4375, - "top": -77.767582, - "right": -97.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 219, - "left": -97.03125, - "top": -77.767582, - "right": -95.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 219, - "left": -95.625, - "top": -77.767582, - "right": -94.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 219, - "left": -94.21875, - "top": -77.767582, - "right": -92.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 219, - "left": -92.8125, - "top": -77.767582, - "right": -91.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 219, - "left": -91.40625, - "top": -77.767582, - "right": -90.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 219, - "left": -90.0, - "top": -77.767582, - "right": -88.59375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 219, - "left": -88.59375, - "top": -77.767582, - "right": -87.1875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 219, - "left": -87.1875, - "top": -77.767582, - "right": -85.78125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 219, - "left": -85.78125, - "top": -77.767582, - "right": -84.375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 219, - "left": -84.375, - "top": -77.767582, - "right": -82.96875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 219, - "left": -82.96875, - "top": -77.767582, - "right": -81.5625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 219, - "left": -81.5625, - "top": -77.767582, - "right": -80.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 219, - "left": -80.15625, - "top": -77.767582, - "right": -78.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 219, - "left": -78.75, - "top": -77.767582, - "right": -77.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 219, - "left": -77.34375, - "top": -77.767582, - "right": -75.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 219, - "left": -75.9375, - "top": -77.767582, - "right": -74.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 219, - "left": -74.53125, - "top": -77.767582, - "right": -73.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 219, - "left": -73.125, - "top": -77.767582, - "right": -71.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 219, - "left": -71.71875, - "top": -77.767582, - "right": -70.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 219, - "left": -70.3125, - "top": -77.767582, - "right": -68.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 219, - "left": -68.90625, - "top": -77.767582, - "right": -67.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 219, - "left": -50.625, - "top": -77.767582, - "right": -49.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 219, - "left": -49.21875, - "top": -77.767582, - "right": -47.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 219, - "left": -47.8125, - "top": -77.767582, - "right": -46.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 219, - "left": -46.40625, - "top": -77.767582, - "right": -45.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 219, - "left": -36.5625, - "top": -77.767582, - "right": -35.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 219, - "left": -35.15625, - "top": -77.767582, - "right": -33.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 219, - "left": -33.75, - "top": -77.767582, - "right": -32.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 219, - "left": -32.34375, - "top": -77.767582, - "right": -30.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 219, - "left": -30.9375, - "top": -77.767582, - "right": -29.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 219, - "left": -29.53125, - "top": -77.767582, - "right": -28.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 219, - "left": -28.125, - "top": -77.767582, - "right": -26.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 219, - "left": -26.71875, - "top": -77.767582, - "right": -25.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 219, - "left": -25.3125, - "top": -77.767582, - "right": -23.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 219, - "left": -23.90625, - "top": -77.767582, - "right": -22.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 219, - "left": -22.5, - "top": -77.767582, - "right": -21.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 219, - "left": -21.09375, - "top": -77.767582, - "right": -19.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 219, - "left": -19.6875, - "top": -77.767582, - "right": -18.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 219, - "left": -18.28125, - "top": -77.767582, - "right": -16.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 219, - "left": -16.875, - "top": -77.767582, - "right": -15.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 219, - "left": -15.46875, - "top": -77.767582, - "right": -14.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 219, - "left": -14.0625, - "top": -77.767582, - "right": -12.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 219, - "left": -12.65625, - "top": -77.767582, - "right": -11.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 219, - "left": -11.25, - "top": -77.767582, - "right": -9.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 219, - "left": -9.84375, - "top": -77.767582, - "right": -8.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 219, - "left": -8.4375, - "top": -77.767582, - "right": -7.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 219, - "left": -7.03125, - "top": -77.767582, - "right": -5.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 219, - "left": -5.625, - "top": -77.767582, - "right": -4.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 219, - "left": -4.21875, - "top": -77.767582, - "right": -2.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 219, - "left": -2.8125, - "top": -77.767582, - "right": -1.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 219, - "left": -1.40625, - "top": -77.767582, - "right": 0.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 219, - "left": 0.0, - "top": -77.767582, - "right": 1.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 219, - "left": 1.40625, - "top": -77.767582, - "right": 2.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 219, - "left": 2.8125, - "top": -77.767582, - "right": 4.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 219, - "left": 4.21875, - "top": -77.767582, - "right": 5.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 219, - "left": 5.625, - "top": -77.767582, - "right": 7.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 219, - "left": 7.03125, - "top": -77.767582, - "right": 8.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 219, - "left": 8.4375, - "top": -77.767582, - "right": 9.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 219, - "left": 9.84375, - "top": -77.767582, - "right": 11.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 219, - "left": 11.25, - "top": -77.767582, - "right": 12.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 219, - "left": 12.65625, - "top": -77.767582, - "right": 14.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 219, - "left": 14.0625, - "top": -77.767582, - "right": 15.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 219, - "left": 15.46875, - "top": -77.767582, - "right": 16.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 219, - "left": 16.875, - "top": -77.767582, - "right": 18.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 219, - "left": 18.28125, - "top": -77.767582, - "right": 19.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 219, - "left": 19.6875, - "top": -77.767582, - "right": 21.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 219, - "left": 21.09375, - "top": -77.767582, - "right": 22.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 219, - "left": 22.5, - "top": -77.767582, - "right": 23.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 219, - "left": 23.90625, - "top": -77.767582, - "right": 25.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 219, - "left": 25.3125, - "top": -77.767582, - "right": 26.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 219, - "left": 26.71875, - "top": -77.767582, - "right": 28.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 219, - "left": 28.125, - "top": -77.767582, - "right": 29.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 219, - "left": 29.53125, - "top": -77.767582, - "right": 30.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 219, - "left": 30.9375, - "top": -77.767582, - "right": 32.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 219, - "left": 32.34375, - "top": -77.767582, - "right": 33.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 219, - "left": 33.75, - "top": -77.767582, - "right": 35.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 219, - "left": 35.15625, - "top": -77.767582, - "right": 36.5625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 219, - "left": 36.5625, - "top": -77.767582, - "right": 37.96875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 219, - "left": 37.96875, - "top": -77.767582, - "right": 39.375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 219, - "left": 39.375, - "top": -77.767582, - "right": 40.78125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 219, - "left": 40.78125, - "top": -77.767582, - "right": 42.1875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 219, - "left": 42.1875, - "top": -77.767582, - "right": 43.59375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 219, - "left": 43.59375, - "top": -77.767582, - "right": 45.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 219, - "left": 45.0, - "top": -77.767582, - "right": 46.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 219, - "left": 46.40625, - "top": -77.767582, - "right": 47.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 219, - "left": 47.8125, - "top": -77.767582, - "right": 49.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 219, - "left": 49.21875, - "top": -77.767582, - "right": 50.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 219, - "left": 50.625, - "top": -77.767582, - "right": 52.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 219, - "left": 52.03125, - "top": -77.767582, - "right": 53.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 219, - "left": 53.4375, - "top": -77.767582, - "right": 54.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 219, - "left": 54.84375, - "top": -77.767582, - "right": 56.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 219, - "left": 56.25, - "top": -77.767582, - "right": 57.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 219, - "left": 57.65625, - "top": -77.767582, - "right": 59.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 219, - "left": 59.0625, - "top": -77.767582, - "right": 60.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 219, - "left": 60.46875, - "top": -77.767582, - "right": 61.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 219, - "left": 61.875, - "top": -77.767582, - "right": 63.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 219, - "left": 63.28125, - "top": -77.767582, - "right": 64.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 219, - "left": 64.6875, - "top": -77.767582, - "right": 66.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 219, - "left": 66.09375, - "top": -77.767582, - "right": 67.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 219, - "left": 67.5, - "top": -77.767582, - "right": 68.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 219, - "left": 68.90625, - "top": -77.767582, - "right": 70.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 219, - "left": 70.3125, - "top": -77.767582, - "right": 71.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 219, - "left": 71.71875, - "top": -77.767582, - "right": 73.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 219, - "left": 73.125, - "top": -77.767582, - "right": 74.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 219, - "left": 74.53125, - "top": -77.767582, - "right": 75.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 219, - "left": 75.9375, - "top": -77.767582, - "right": 77.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 219, - "left": 77.34375, - "top": -77.767582, - "right": 78.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 219, - "left": 78.75, - "top": -77.767582, - "right": 80.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 219, - "left": 80.15625, - "top": -77.767582, - "right": 81.5625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 219, - "left": 81.5625, - "top": -77.767582, - "right": 82.96875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 219, - "left": 82.96875, - "top": -77.767582, - "right": 84.375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 219, - "left": 84.375, - "top": -77.767582, - "right": 85.78125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 219, - "left": 85.78125, - "top": -77.767582, - "right": 87.1875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 219, - "left": 87.1875, - "top": -77.767582, - "right": 88.59375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 219, - "left": 88.59375, - "top": -77.767582, - "right": 90.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 219, - "left": 90.0, - "top": -77.767582, - "right": 91.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 219, - "left": 91.40625, - "top": -77.767582, - "right": 92.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 219, - "left": 92.8125, - "top": -77.767582, - "right": 94.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 219, - "left": 94.21875, - "top": -77.767582, - "right": 95.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 219, - "left": 95.625, - "top": -77.767582, - "right": 97.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 219, - "left": 97.03125, - "top": -77.767582, - "right": 98.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 219, - "left": 98.4375, - "top": -77.767582, - "right": 99.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 219, - "left": 99.84375, - "top": -77.767582, - "right": 101.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 219, - "left": 101.25, - "top": -77.767582, - "right": 102.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 219, - "left": 102.65625, - "top": -77.767582, - "right": 104.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 219, - "left": 104.0625, - "top": -77.767582, - "right": 105.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 219, - "left": 105.46875, - "top": -77.767582, - "right": 106.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 219, - "left": 106.875, - "top": -77.767582, - "right": 108.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 219, - "left": 108.28125, - "top": -77.767582, - "right": 109.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 219, - "left": 109.6875, - "top": -77.767582, - "right": 111.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 219, - "left": 111.09375, - "top": -77.767582, - "right": 112.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 219, - "left": 112.5, - "top": -77.767582, - "right": 113.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 219, - "left": 113.90625, - "top": -77.767582, - "right": 115.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 219, - "left": 115.3125, - "top": -77.767582, - "right": 116.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 219, - "left": 116.71875, - "top": -77.767582, - "right": 118.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 219, - "left": 118.125, - "top": -77.767582, - "right": 119.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 219, - "left": 119.53125, - "top": -77.767582, - "right": 120.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 219, - "left": 120.9375, - "top": -77.767582, - "right": 122.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 219, - "left": 122.34375, - "top": -77.767582, - "right": 123.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 219, - "left": 123.75, - "top": -77.767582, - "right": 125.15625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 219, - "left": 125.15625, - "top": -77.767582, - "right": 126.5625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 219, - "left": 126.5625, - "top": -77.767582, - "right": 127.96875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 219, - "left": 127.96875, - "top": -77.767582, - "right": 129.375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 219, - "left": 129.375, - "top": -77.767582, - "right": 130.78125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 219, - "left": 130.78125, - "top": -77.767582, - "right": 132.1875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 219, - "left": 132.1875, - "top": -77.767582, - "right": 133.59375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 219, - "left": 133.59375, - "top": -77.767582, - "right": 135.0, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 219, - "left": 135.0, - "top": -77.767582, - "right": 136.40625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 219, - "left": 136.40625, - "top": -77.767582, - "right": 137.8125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 219, - "left": 137.8125, - "top": -77.767582, - "right": 139.21875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 219, - "left": 139.21875, - "top": -77.767582, - "right": 140.625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 219, - "left": 140.625, - "top": -77.767582, - "right": 142.03125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 219, - "left": 142.03125, - "top": -77.767582, - "right": 143.4375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 219, - "left": 143.4375, - "top": -77.767582, - "right": 144.84375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 219, - "left": 144.84375, - "top": -77.767582, - "right": 146.25, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 219, - "left": 146.25, - "top": -77.767582, - "right": 147.65625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 219, - "left": 147.65625, - "top": -77.767582, - "right": 149.0625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 219, - "left": 149.0625, - "top": -77.767582, - "right": 150.46875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 219, - "left": 150.46875, - "top": -77.767582, - "right": 151.875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 219, - "left": 151.875, - "top": -77.767582, - "right": 153.28125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 219, - "left": 153.28125, - "top": -77.767582, - "right": 154.6875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 219, - "left": 154.6875, - "top": -77.767582, - "right": 156.09375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 219, - "left": 156.09375, - "top": -77.767582, - "right": 157.5, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 219, - "left": 157.5, - "top": -77.767582, - "right": 158.90625, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 219, - "left": 158.90625, - "top": -77.767582, - "right": 160.3125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 219, - "left": 160.3125, - "top": -77.767582, - "right": 161.71875, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 219, - "left": 161.71875, - "top": -77.767582, - "right": 163.125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 219, - "left": 163.125, - "top": -77.767582, - "right": 164.53125, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 219, - "left": 164.53125, - "top": -77.767582, - "right": 165.9375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 219, - "left": 165.9375, - "top": -77.767582, - "right": 167.34375, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 219, - "left": 167.34375, - "top": -77.767582, - "right": 168.75, - "bottom": -78.061989, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 220, - "left": -158.90625, - "top": -78.061989, - "right": -157.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 220, - "left": -157.5, - "top": -78.061989, - "right": -156.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 220, - "left": -156.09375, - "top": -78.061989, - "right": -154.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 220, - "left": -154.6875, - "top": -78.061989, - "right": -153.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 220, - "left": -153.28125, - "top": -78.061989, - "right": -151.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 220, - "left": -151.875, - "top": -78.061989, - "right": -150.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 220, - "left": -150.46875, - "top": -78.061989, - "right": -149.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 220, - "left": -149.0625, - "top": -78.061989, - "right": -147.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 220, - "left": -147.65625, - "top": -78.061989, - "right": -146.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 220, - "left": -146.25, - "top": -78.061989, - "right": -144.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 220, - "left": -144.84375, - "top": -78.061989, - "right": -143.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 220, - "left": -143.4375, - "top": -78.061989, - "right": -142.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 220, - "left": -142.03125, - "top": -78.061989, - "right": -140.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 220, - "left": -140.625, - "top": -78.061989, - "right": -139.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 220, - "left": -139.21875, - "top": -78.061989, - "right": -137.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 220, - "left": -137.8125, - "top": -78.061989, - "right": -136.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 220, - "left": -136.40625, - "top": -78.061989, - "right": -135.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 220, - "left": -135.0, - "top": -78.061989, - "right": -133.59375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 220, - "left": -133.59375, - "top": -78.061989, - "right": -132.1875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 220, - "left": -132.1875, - "top": -78.061989, - "right": -130.78125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 220, - "left": -130.78125, - "top": -78.061989, - "right": -129.375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 220, - "left": -129.375, - "top": -78.061989, - "right": -127.96875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 220, - "left": -127.96875, - "top": -78.061989, - "right": -126.5625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 220, - "left": -126.5625, - "top": -78.061989, - "right": -125.15625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 220, - "left": -125.15625, - "top": -78.061989, - "right": -123.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 220, - "left": -123.75, - "top": -78.061989, - "right": -122.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 220, - "left": -122.34375, - "top": -78.061989, - "right": -120.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 220, - "left": -120.9375, - "top": -78.061989, - "right": -119.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 220, - "left": -119.53125, - "top": -78.061989, - "right": -118.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 220, - "left": -118.125, - "top": -78.061989, - "right": -116.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 220, - "left": -116.71875, - "top": -78.061989, - "right": -115.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 220, - "left": -115.3125, - "top": -78.061989, - "right": -113.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 220, - "left": -113.90625, - "top": -78.061989, - "right": -112.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 220, - "left": -112.5, - "top": -78.061989, - "right": -111.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 220, - "left": -111.09375, - "top": -78.061989, - "right": -109.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 220, - "left": -109.6875, - "top": -78.061989, - "right": -108.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 220, - "left": -108.28125, - "top": -78.061989, - "right": -106.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 220, - "left": -106.875, - "top": -78.061989, - "right": -105.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 220, - "left": -105.46875, - "top": -78.061989, - "right": -104.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 220, - "left": -104.0625, - "top": -78.061989, - "right": -102.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 220, - "left": -102.65625, - "top": -78.061989, - "right": -101.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 220, - "left": -101.25, - "top": -78.061989, - "right": -99.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 220, - "left": -99.84375, - "top": -78.061989, - "right": -98.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 220, - "left": -98.4375, - "top": -78.061989, - "right": -97.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 220, - "left": -97.03125, - "top": -78.061989, - "right": -95.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 220, - "left": -95.625, - "top": -78.061989, - "right": -94.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 220, - "left": -94.21875, - "top": -78.061989, - "right": -92.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 220, - "left": -92.8125, - "top": -78.061989, - "right": -91.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 220, - "left": -91.40625, - "top": -78.061989, - "right": -90.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 220, - "left": -90.0, - "top": -78.061989, - "right": -88.59375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 220, - "left": -88.59375, - "top": -78.061989, - "right": -87.1875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 220, - "left": -87.1875, - "top": -78.061989, - "right": -85.78125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 220, - "left": -85.78125, - "top": -78.061989, - "right": -84.375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 220, - "left": -84.375, - "top": -78.061989, - "right": -82.96875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 220, - "left": -82.96875, - "top": -78.061989, - "right": -81.5625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 220, - "left": -80.15625, - "top": -78.061989, - "right": -78.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 220, - "left": -78.75, - "top": -78.061989, - "right": -77.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 220, - "left": -77.34375, - "top": -78.061989, - "right": -75.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 220, - "left": -75.9375, - "top": -78.061989, - "right": -74.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 220, - "left": -71.71875, - "top": -78.061989, - "right": -70.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 220, - "left": -70.3125, - "top": -78.061989, - "right": -68.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 220, - "left": -52.03125, - "top": -78.061989, - "right": -50.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 220, - "left": -50.625, - "top": -78.061989, - "right": -49.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 220, - "left": -49.21875, - "top": -78.061989, - "right": -47.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 220, - "left": -47.8125, - "top": -78.061989, - "right": -46.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 220, - "left": -46.40625, - "top": -78.061989, - "right": -45.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 220, - "left": -36.5625, - "top": -78.061989, - "right": -35.15625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 220, - "left": -35.15625, - "top": -78.061989, - "right": -33.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 220, - "left": -33.75, - "top": -78.061989, - "right": -32.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 220, - "left": -32.34375, - "top": -78.061989, - "right": -30.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 220, - "left": -30.9375, - "top": -78.061989, - "right": -29.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 220, - "left": -29.53125, - "top": -78.061989, - "right": -28.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 220, - "left": -28.125, - "top": -78.061989, - "right": -26.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 220, - "left": -26.71875, - "top": -78.061989, - "right": -25.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 220, - "left": -25.3125, - "top": -78.061989, - "right": -23.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 220, - "left": -23.90625, - "top": -78.061989, - "right": -22.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 220, - "left": -22.5, - "top": -78.061989, - "right": -21.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 220, - "left": -21.09375, - "top": -78.061989, - "right": -19.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 220, - "left": -19.6875, - "top": -78.061989, - "right": -18.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 220, - "left": -18.28125, - "top": -78.061989, - "right": -16.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 220, - "left": -16.875, - "top": -78.061989, - "right": -15.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 220, - "left": -15.46875, - "top": -78.061989, - "right": -14.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 220, - "left": -14.0625, - "top": -78.061989, - "right": -12.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 220, - "left": -12.65625, - "top": -78.061989, - "right": -11.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 220, - "left": -11.25, - "top": -78.061989, - "right": -9.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 220, - "left": -9.84375, - "top": -78.061989, - "right": -8.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 220, - "left": -8.4375, - "top": -78.061989, - "right": -7.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 220, - "left": -7.03125, - "top": -78.061989, - "right": -5.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 220, - "left": -5.625, - "top": -78.061989, - "right": -4.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 220, - "left": -4.21875, - "top": -78.061989, - "right": -2.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 220, - "left": -2.8125, - "top": -78.061989, - "right": -1.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 220, - "left": -1.40625, - "top": -78.061989, - "right": 0.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 220, - "left": 0.0, - "top": -78.061989, - "right": 1.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 220, - "left": 1.40625, - "top": -78.061989, - "right": 2.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 220, - "left": 2.8125, - "top": -78.061989, - "right": 4.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 220, - "left": 4.21875, - "top": -78.061989, - "right": 5.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 220, - "left": 5.625, - "top": -78.061989, - "right": 7.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 220, - "left": 7.03125, - "top": -78.061989, - "right": 8.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 220, - "left": 8.4375, - "top": -78.061989, - "right": 9.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 220, - "left": 9.84375, - "top": -78.061989, - "right": 11.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 220, - "left": 11.25, - "top": -78.061989, - "right": 12.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 220, - "left": 12.65625, - "top": -78.061989, - "right": 14.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 220, - "left": 14.0625, - "top": -78.061989, - "right": 15.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 220, - "left": 15.46875, - "top": -78.061989, - "right": 16.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 220, - "left": 16.875, - "top": -78.061989, - "right": 18.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 220, - "left": 18.28125, - "top": -78.061989, - "right": 19.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 220, - "left": 19.6875, - "top": -78.061989, - "right": 21.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 220, - "left": 21.09375, - "top": -78.061989, - "right": 22.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 220, - "left": 22.5, - "top": -78.061989, - "right": 23.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 220, - "left": 23.90625, - "top": -78.061989, - "right": 25.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 220, - "left": 25.3125, - "top": -78.061989, - "right": 26.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 220, - "left": 26.71875, - "top": -78.061989, - "right": 28.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 220, - "left": 28.125, - "top": -78.061989, - "right": 29.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 220, - "left": 29.53125, - "top": -78.061989, - "right": 30.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 220, - "left": 30.9375, - "top": -78.061989, - "right": 32.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 220, - "left": 32.34375, - "top": -78.061989, - "right": 33.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 220, - "left": 33.75, - "top": -78.061989, - "right": 35.15625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 220, - "left": 35.15625, - "top": -78.061989, - "right": 36.5625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 220, - "left": 36.5625, - "top": -78.061989, - "right": 37.96875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 220, - "left": 37.96875, - "top": -78.061989, - "right": 39.375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 220, - "left": 39.375, - "top": -78.061989, - "right": 40.78125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 220, - "left": 40.78125, - "top": -78.061989, - "right": 42.1875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 220, - "left": 42.1875, - "top": -78.061989, - "right": 43.59375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 220, - "left": 43.59375, - "top": -78.061989, - "right": 45.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 220, - "left": 45.0, - "top": -78.061989, - "right": 46.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 220, - "left": 46.40625, - "top": -78.061989, - "right": 47.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 220, - "left": 47.8125, - "top": -78.061989, - "right": 49.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 220, - "left": 49.21875, - "top": -78.061989, - "right": 50.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 220, - "left": 50.625, - "top": -78.061989, - "right": 52.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 220, - "left": 52.03125, - "top": -78.061989, - "right": 53.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 220, - "left": 53.4375, - "top": -78.061989, - "right": 54.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 220, - "left": 54.84375, - "top": -78.061989, - "right": 56.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 220, - "left": 56.25, - "top": -78.061989, - "right": 57.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 220, - "left": 57.65625, - "top": -78.061989, - "right": 59.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 220, - "left": 59.0625, - "top": -78.061989, - "right": 60.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 220, - "left": 60.46875, - "top": -78.061989, - "right": 61.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 220, - "left": 61.875, - "top": -78.061989, - "right": 63.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 220, - "left": 63.28125, - "top": -78.061989, - "right": 64.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 220, - "left": 64.6875, - "top": -78.061989, - "right": 66.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 220, - "left": 66.09375, - "top": -78.061989, - "right": 67.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 220, - "left": 67.5, - "top": -78.061989, - "right": 68.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 220, - "left": 68.90625, - "top": -78.061989, - "right": 70.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 220, - "left": 70.3125, - "top": -78.061989, - "right": 71.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 220, - "left": 71.71875, - "top": -78.061989, - "right": 73.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 220, - "left": 73.125, - "top": -78.061989, - "right": 74.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 220, - "left": 74.53125, - "top": -78.061989, - "right": 75.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 220, - "left": 75.9375, - "top": -78.061989, - "right": 77.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 220, - "left": 77.34375, - "top": -78.061989, - "right": 78.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 220, - "left": 78.75, - "top": -78.061989, - "right": 80.15625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 220, - "left": 80.15625, - "top": -78.061989, - "right": 81.5625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 220, - "left": 81.5625, - "top": -78.061989, - "right": 82.96875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 220, - "left": 82.96875, - "top": -78.061989, - "right": 84.375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 220, - "left": 84.375, - "top": -78.061989, - "right": 85.78125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 220, - "left": 85.78125, - "top": -78.061989, - "right": 87.1875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 220, - "left": 87.1875, - "top": -78.061989, - "right": 88.59375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 220, - "left": 88.59375, - "top": -78.061989, - "right": 90.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 220, - "left": 90.0, - "top": -78.061989, - "right": 91.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 220, - "left": 91.40625, - "top": -78.061989, - "right": 92.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 220, - "left": 92.8125, - "top": -78.061989, - "right": 94.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 220, - "left": 94.21875, - "top": -78.061989, - "right": 95.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 220, - "left": 95.625, - "top": -78.061989, - "right": 97.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 220, - "left": 97.03125, - "top": -78.061989, - "right": 98.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 220, - "left": 98.4375, - "top": -78.061989, - "right": 99.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 220, - "left": 99.84375, - "top": -78.061989, - "right": 101.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 220, - "left": 101.25, - "top": -78.061989, - "right": 102.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 220, - "left": 102.65625, - "top": -78.061989, - "right": 104.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 220, - "left": 104.0625, - "top": -78.061989, - "right": 105.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 220, - "left": 105.46875, - "top": -78.061989, - "right": 106.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 220, - "left": 106.875, - "top": -78.061989, - "right": 108.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 220, - "left": 108.28125, - "top": -78.061989, - "right": 109.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 220, - "left": 109.6875, - "top": -78.061989, - "right": 111.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 220, - "left": 111.09375, - "top": -78.061989, - "right": 112.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 220, - "left": 112.5, - "top": -78.061989, - "right": 113.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 220, - "left": 113.90625, - "top": -78.061989, - "right": 115.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 220, - "left": 115.3125, - "top": -78.061989, - "right": 116.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 220, - "left": 116.71875, - "top": -78.061989, - "right": 118.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 220, - "left": 118.125, - "top": -78.061989, - "right": 119.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 220, - "left": 119.53125, - "top": -78.061989, - "right": 120.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 220, - "left": 120.9375, - "top": -78.061989, - "right": 122.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 220, - "left": 122.34375, - "top": -78.061989, - "right": 123.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 220, - "left": 123.75, - "top": -78.061989, - "right": 125.15625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 220, - "left": 125.15625, - "top": -78.061989, - "right": 126.5625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 220, - "left": 126.5625, - "top": -78.061989, - "right": 127.96875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 220, - "left": 127.96875, - "top": -78.061989, - "right": 129.375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 220, - "left": 129.375, - "top": -78.061989, - "right": 130.78125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 220, - "left": 130.78125, - "top": -78.061989, - "right": 132.1875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 220, - "left": 132.1875, - "top": -78.061989, - "right": 133.59375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 220, - "left": 133.59375, - "top": -78.061989, - "right": 135.0, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 220, - "left": 135.0, - "top": -78.061989, - "right": 136.40625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 220, - "left": 136.40625, - "top": -78.061989, - "right": 137.8125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 220, - "left": 137.8125, - "top": -78.061989, - "right": 139.21875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 220, - "left": 139.21875, - "top": -78.061989, - "right": 140.625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 220, - "left": 140.625, - "top": -78.061989, - "right": 142.03125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 220, - "left": 142.03125, - "top": -78.061989, - "right": 143.4375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 220, - "left": 143.4375, - "top": -78.061989, - "right": 144.84375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 220, - "left": 144.84375, - "top": -78.061989, - "right": 146.25, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 220, - "left": 146.25, - "top": -78.061989, - "right": 147.65625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 220, - "left": 147.65625, - "top": -78.061989, - "right": 149.0625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 220, - "left": 149.0625, - "top": -78.061989, - "right": 150.46875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 220, - "left": 150.46875, - "top": -78.061989, - "right": 151.875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 220, - "left": 151.875, - "top": -78.061989, - "right": 153.28125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 220, - "left": 153.28125, - "top": -78.061989, - "right": 154.6875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 220, - "left": 154.6875, - "top": -78.061989, - "right": 156.09375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 220, - "left": 156.09375, - "top": -78.061989, - "right": 157.5, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 220, - "left": 157.5, - "top": -78.061989, - "right": 158.90625, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 220, - "left": 158.90625, - "top": -78.061989, - "right": 160.3125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 220, - "left": 160.3125, - "top": -78.061989, - "right": 161.71875, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 220, - "left": 161.71875, - "top": -78.061989, - "right": 163.125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 220, - "left": 163.125, - "top": -78.061989, - "right": 164.53125, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 220, - "left": 164.53125, - "top": -78.061989, - "right": 165.9375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 220, - "left": 165.9375, - "top": -78.061989, - "right": 167.34375, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 220, - "left": 167.34375, - "top": -78.061989, - "right": 168.75, - "bottom": -78.349411, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 221, - "left": -158.90625, - "top": -78.349411, - "right": -157.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 221, - "left": -157.5, - "top": -78.349411, - "right": -156.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 221, - "left": -156.09375, - "top": -78.349411, - "right": -154.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 221, - "left": -154.6875, - "top": -78.349411, - "right": -153.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 221, - "left": -153.28125, - "top": -78.349411, - "right": -151.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 221, - "left": -151.875, - "top": -78.349411, - "right": -150.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 221, - "left": -150.46875, - "top": -78.349411, - "right": -149.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 221, - "left": -149.0625, - "top": -78.349411, - "right": -147.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 221, - "left": -147.65625, - "top": -78.349411, - "right": -146.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 221, - "left": -146.25, - "top": -78.349411, - "right": -144.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 221, - "left": -144.84375, - "top": -78.349411, - "right": -143.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 221, - "left": -143.4375, - "top": -78.349411, - "right": -142.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 221, - "left": -142.03125, - "top": -78.349411, - "right": -140.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 221, - "left": -140.625, - "top": -78.349411, - "right": -139.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 221, - "left": -139.21875, - "top": -78.349411, - "right": -137.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 221, - "left": -137.8125, - "top": -78.349411, - "right": -136.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 221, - "left": -136.40625, - "top": -78.349411, - "right": -135.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 221, - "left": -135.0, - "top": -78.349411, - "right": -133.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 221, - "left": -133.59375, - "top": -78.349411, - "right": -132.1875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 221, - "left": -132.1875, - "top": -78.349411, - "right": -130.78125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 221, - "left": -130.78125, - "top": -78.349411, - "right": -129.375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 221, - "left": -129.375, - "top": -78.349411, - "right": -127.96875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 221, - "left": -127.96875, - "top": -78.349411, - "right": -126.5625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 221, - "left": -126.5625, - "top": -78.349411, - "right": -125.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 221, - "left": -125.15625, - "top": -78.349411, - "right": -123.75, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 221, - "left": -123.75, - "top": -78.349411, - "right": -122.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 221, - "left": -122.34375, - "top": -78.349411, - "right": -120.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 221, - "left": -120.9375, - "top": -78.349411, - "right": -119.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 221, - "left": -119.53125, - "top": -78.349411, - "right": -118.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 221, - "left": -118.125, - "top": -78.349411, - "right": -116.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 221, - "left": -116.71875, - "top": -78.349411, - "right": -115.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 221, - "left": -115.3125, - "top": -78.349411, - "right": -113.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 221, - "left": -113.90625, - "top": -78.349411, - "right": -112.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 221, - "left": -112.5, - "top": -78.349411, - "right": -111.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 221, - "left": -111.09375, - "top": -78.349411, - "right": -109.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 221, - "left": -109.6875, - "top": -78.349411, - "right": -108.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 221, - "left": -108.28125, - "top": -78.349411, - "right": -106.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 221, - "left": -106.875, - "top": -78.349411, - "right": -105.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 221, - "left": -105.46875, - "top": -78.349411, - "right": -104.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 221, - "left": -104.0625, - "top": -78.349411, - "right": -102.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 221, - "left": -102.65625, - "top": -78.349411, - "right": -101.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 221, - "left": -101.25, - "top": -78.349411, - "right": -99.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 221, - "left": -99.84375, - "top": -78.349411, - "right": -98.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 221, - "left": -98.4375, - "top": -78.349411, - "right": -97.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 221, - "left": -97.03125, - "top": -78.349411, - "right": -95.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 221, - "left": -95.625, - "top": -78.349411, - "right": -94.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 221, - "left": -94.21875, - "top": -78.349411, - "right": -92.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 221, - "left": -92.8125, - "top": -78.349411, - "right": -91.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 221, - "left": -91.40625, - "top": -78.349411, - "right": -90.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 221, - "left": -90.0, - "top": -78.349411, - "right": -88.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 221, - "left": -88.59375, - "top": -78.349411, - "right": -87.1875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 221, - "left": -87.1875, - "top": -78.349411, - "right": -85.78125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 221, - "left": -85.78125, - "top": -78.349411, - "right": -84.375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 221, - "left": -84.375, - "top": -78.349411, - "right": -82.96875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 221, - "left": -82.96875, - "top": -78.349411, - "right": -81.5625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 221, - "left": -81.5625, - "top": -78.349411, - "right": -80.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 221, - "left": -68.90625, - "top": -78.349411, - "right": -67.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 221, - "left": -67.5, - "top": -78.349411, - "right": -66.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 221, - "left": -66.09375, - "top": -78.349411, - "right": -64.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 221, - "left": -53.4375, - "top": -78.349411, - "right": -52.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 221, - "left": -52.03125, - "top": -78.349411, - "right": -50.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 221, - "left": -50.625, - "top": -78.349411, - "right": -49.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 221, - "left": -49.21875, - "top": -78.349411, - "right": -47.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 221, - "left": -47.8125, - "top": -78.349411, - "right": -46.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 221, - "left": -46.40625, - "top": -78.349411, - "right": -45.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 221, - "left": -45.0, - "top": -78.349411, - "right": -43.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 221, - "left": -36.5625, - "top": -78.349411, - "right": -35.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 221, - "left": -35.15625, - "top": -78.349411, - "right": -33.75, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 221, - "left": -33.75, - "top": -78.349411, - "right": -32.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 221, - "left": -32.34375, - "top": -78.349411, - "right": -30.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 221, - "left": -30.9375, - "top": -78.349411, - "right": -29.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 221, - "left": -29.53125, - "top": -78.349411, - "right": -28.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 221, - "left": -28.125, - "top": -78.349411, - "right": -26.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 221, - "left": -26.71875, - "top": -78.349411, - "right": -25.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 221, - "left": -25.3125, - "top": -78.349411, - "right": -23.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 221, - "left": -23.90625, - "top": -78.349411, - "right": -22.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 221, - "left": -22.5, - "top": -78.349411, - "right": -21.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 221, - "left": -21.09375, - "top": -78.349411, - "right": -19.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 221, - "left": -19.6875, - "top": -78.349411, - "right": -18.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 221, - "left": -18.28125, - "top": -78.349411, - "right": -16.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 221, - "left": -16.875, - "top": -78.349411, - "right": -15.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 221, - "left": -15.46875, - "top": -78.349411, - "right": -14.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 221, - "left": -14.0625, - "top": -78.349411, - "right": -12.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 221, - "left": -12.65625, - "top": -78.349411, - "right": -11.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 221, - "left": -11.25, - "top": -78.349411, - "right": -9.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 221, - "left": -9.84375, - "top": -78.349411, - "right": -8.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 221, - "left": -8.4375, - "top": -78.349411, - "right": -7.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 221, - "left": -7.03125, - "top": -78.349411, - "right": -5.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 221, - "left": -5.625, - "top": -78.349411, - "right": -4.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 221, - "left": -4.21875, - "top": -78.349411, - "right": -2.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 221, - "left": -2.8125, - "top": -78.349411, - "right": -1.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 221, - "left": -1.40625, - "top": -78.349411, - "right": 0.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 221, - "left": 0.0, - "top": -78.349411, - "right": 1.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 221, - "left": 1.40625, - "top": -78.349411, - "right": 2.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 221, - "left": 2.8125, - "top": -78.349411, - "right": 4.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 221, - "left": 4.21875, - "top": -78.349411, - "right": 5.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 221, - "left": 5.625, - "top": -78.349411, - "right": 7.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 221, - "left": 7.03125, - "top": -78.349411, - "right": 8.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 221, - "left": 8.4375, - "top": -78.349411, - "right": 9.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 221, - "left": 9.84375, - "top": -78.349411, - "right": 11.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 221, - "left": 11.25, - "top": -78.349411, - "right": 12.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 221, - "left": 12.65625, - "top": -78.349411, - "right": 14.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 221, - "left": 14.0625, - "top": -78.349411, - "right": 15.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 221, - "left": 15.46875, - "top": -78.349411, - "right": 16.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 221, - "left": 16.875, - "top": -78.349411, - "right": 18.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 221, - "left": 18.28125, - "top": -78.349411, - "right": 19.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 221, - "left": 19.6875, - "top": -78.349411, - "right": 21.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 221, - "left": 21.09375, - "top": -78.349411, - "right": 22.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 221, - "left": 22.5, - "top": -78.349411, - "right": 23.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 221, - "left": 23.90625, - "top": -78.349411, - "right": 25.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 221, - "left": 25.3125, - "top": -78.349411, - "right": 26.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 221, - "left": 26.71875, - "top": -78.349411, - "right": 28.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 221, - "left": 28.125, - "top": -78.349411, - "right": 29.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 221, - "left": 29.53125, - "top": -78.349411, - "right": 30.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 221, - "left": 30.9375, - "top": -78.349411, - "right": 32.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 221, - "left": 32.34375, - "top": -78.349411, - "right": 33.75, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 221, - "left": 33.75, - "top": -78.349411, - "right": 35.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 221, - "left": 35.15625, - "top": -78.349411, - "right": 36.5625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 221, - "left": 36.5625, - "top": -78.349411, - "right": 37.96875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 221, - "left": 37.96875, - "top": -78.349411, - "right": 39.375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 221, - "left": 39.375, - "top": -78.349411, - "right": 40.78125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 221, - "left": 40.78125, - "top": -78.349411, - "right": 42.1875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 221, - "left": 42.1875, - "top": -78.349411, - "right": 43.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 221, - "left": 43.59375, - "top": -78.349411, - "right": 45.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 221, - "left": 45.0, - "top": -78.349411, - "right": 46.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 221, - "left": 46.40625, - "top": -78.349411, - "right": 47.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 221, - "left": 47.8125, - "top": -78.349411, - "right": 49.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 221, - "left": 49.21875, - "top": -78.349411, - "right": 50.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 221, - "left": 50.625, - "top": -78.349411, - "right": 52.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 221, - "left": 52.03125, - "top": -78.349411, - "right": 53.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 221, - "left": 53.4375, - "top": -78.349411, - "right": 54.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 221, - "left": 54.84375, - "top": -78.349411, - "right": 56.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 221, - "left": 56.25, - "top": -78.349411, - "right": 57.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 221, - "left": 57.65625, - "top": -78.349411, - "right": 59.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 221, - "left": 59.0625, - "top": -78.349411, - "right": 60.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 221, - "left": 60.46875, - "top": -78.349411, - "right": 61.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 221, - "left": 61.875, - "top": -78.349411, - "right": 63.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 221, - "left": 63.28125, - "top": -78.349411, - "right": 64.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 221, - "left": 64.6875, - "top": -78.349411, - "right": 66.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 221, - "left": 66.09375, - "top": -78.349411, - "right": 67.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 221, - "left": 67.5, - "top": -78.349411, - "right": 68.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 221, - "left": 68.90625, - "top": -78.349411, - "right": 70.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 221, - "left": 70.3125, - "top": -78.349411, - "right": 71.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 221, - "left": 71.71875, - "top": -78.349411, - "right": 73.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 221, - "left": 73.125, - "top": -78.349411, - "right": 74.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 221, - "left": 74.53125, - "top": -78.349411, - "right": 75.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 221, - "left": 75.9375, - "top": -78.349411, - "right": 77.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 221, - "left": 77.34375, - "top": -78.349411, - "right": 78.75, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 221, - "left": 78.75, - "top": -78.349411, - "right": 80.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 221, - "left": 80.15625, - "top": -78.349411, - "right": 81.5625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 221, - "left": 81.5625, - "top": -78.349411, - "right": 82.96875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 221, - "left": 82.96875, - "top": -78.349411, - "right": 84.375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 221, - "left": 84.375, - "top": -78.349411, - "right": 85.78125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 221, - "left": 85.78125, - "top": -78.349411, - "right": 87.1875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 221, - "left": 87.1875, - "top": -78.349411, - "right": 88.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 221, - "left": 88.59375, - "top": -78.349411, - "right": 90.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 221, - "left": 90.0, - "top": -78.349411, - "right": 91.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 221, - "left": 91.40625, - "top": -78.349411, - "right": 92.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 221, - "left": 92.8125, - "top": -78.349411, - "right": 94.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 221, - "left": 94.21875, - "top": -78.349411, - "right": 95.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 221, - "left": 95.625, - "top": -78.349411, - "right": 97.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 221, - "left": 97.03125, - "top": -78.349411, - "right": 98.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 221, - "left": 98.4375, - "top": -78.349411, - "right": 99.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 221, - "left": 99.84375, - "top": -78.349411, - "right": 101.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 221, - "left": 101.25, - "top": -78.349411, - "right": 102.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 221, - "left": 102.65625, - "top": -78.349411, - "right": 104.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 221, - "left": 104.0625, - "top": -78.349411, - "right": 105.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 221, - "left": 105.46875, - "top": -78.349411, - "right": 106.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 221, - "left": 106.875, - "top": -78.349411, - "right": 108.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 221, - "left": 108.28125, - "top": -78.349411, - "right": 109.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 221, - "left": 109.6875, - "top": -78.349411, - "right": 111.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 221, - "left": 111.09375, - "top": -78.349411, - "right": 112.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 221, - "left": 112.5, - "top": -78.349411, - "right": 113.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 221, - "left": 113.90625, - "top": -78.349411, - "right": 115.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 221, - "left": 115.3125, - "top": -78.349411, - "right": 116.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 221, - "left": 116.71875, - "top": -78.349411, - "right": 118.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 221, - "left": 118.125, - "top": -78.349411, - "right": 119.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 221, - "left": 119.53125, - "top": -78.349411, - "right": 120.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 221, - "left": 120.9375, - "top": -78.349411, - "right": 122.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 221, - "left": 122.34375, - "top": -78.349411, - "right": 123.75, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 221, - "left": 123.75, - "top": -78.349411, - "right": 125.15625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 221, - "left": 125.15625, - "top": -78.349411, - "right": 126.5625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 221, - "left": 126.5625, - "top": -78.349411, - "right": 127.96875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 221, - "left": 127.96875, - "top": -78.349411, - "right": 129.375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 221, - "left": 129.375, - "top": -78.349411, - "right": 130.78125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 221, - "left": 130.78125, - "top": -78.349411, - "right": 132.1875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 221, - "left": 132.1875, - "top": -78.349411, - "right": 133.59375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 221, - "left": 133.59375, - "top": -78.349411, - "right": 135.0, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 221, - "left": 135.0, - "top": -78.349411, - "right": 136.40625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 221, - "left": 136.40625, - "top": -78.349411, - "right": 137.8125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 221, - "left": 137.8125, - "top": -78.349411, - "right": 139.21875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 221, - "left": 139.21875, - "top": -78.349411, - "right": 140.625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 221, - "left": 140.625, - "top": -78.349411, - "right": 142.03125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 221, - "left": 142.03125, - "top": -78.349411, - "right": 143.4375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 221, - "left": 143.4375, - "top": -78.349411, - "right": 144.84375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 221, - "left": 144.84375, - "top": -78.349411, - "right": 146.25, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 221, - "left": 146.25, - "top": -78.349411, - "right": 147.65625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 221, - "left": 147.65625, - "top": -78.349411, - "right": 149.0625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 221, - "left": 149.0625, - "top": -78.349411, - "right": 150.46875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 221, - "left": 150.46875, - "top": -78.349411, - "right": 151.875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 221, - "left": 151.875, - "top": -78.349411, - "right": 153.28125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 221, - "left": 153.28125, - "top": -78.349411, - "right": 154.6875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 221, - "left": 154.6875, - "top": -78.349411, - "right": 156.09375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 221, - "left": 156.09375, - "top": -78.349411, - "right": 157.5, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 221, - "left": 157.5, - "top": -78.349411, - "right": 158.90625, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 221, - "left": 158.90625, - "top": -78.349411, - "right": 160.3125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 221, - "left": 160.3125, - "top": -78.349411, - "right": 161.71875, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 221, - "left": 161.71875, - "top": -78.349411, - "right": 163.125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 221, - "left": 163.125, - "top": -78.349411, - "right": 164.53125, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 221, - "left": 164.53125, - "top": -78.349411, - "right": 165.9375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 221, - "left": 165.9375, - "top": -78.349411, - "right": 167.34375, - "bottom": -78.630006, - "countries": [ - "antarctica" - ] - }, - { - "x": 11, - "y": 222, - "left": -164.53125, - "top": -78.630006, - "right": -163.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 12, - "y": 222, - "left": -163.125, - "top": -78.630006, - "right": -161.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 13, - "y": 222, - "left": -161.71875, - "top": -78.630006, - "right": -160.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 15, - "y": 222, - "left": -158.90625, - "top": -78.630006, - "right": -157.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 222, - "left": -157.5, - "top": -78.630006, - "right": -156.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 222, - "left": -156.09375, - "top": -78.630006, - "right": -154.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 222, - "left": -154.6875, - "top": -78.630006, - "right": -153.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 222, - "left": -153.28125, - "top": -78.630006, - "right": -151.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 222, - "left": -151.875, - "top": -78.630006, - "right": -150.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 222, - "left": -150.46875, - "top": -78.630006, - "right": -149.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 222, - "left": -149.0625, - "top": -78.630006, - "right": -147.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 222, - "left": -147.65625, - "top": -78.630006, - "right": -146.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 222, - "left": -146.25, - "top": -78.630006, - "right": -144.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 222, - "left": -144.84375, - "top": -78.630006, - "right": -143.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 222, - "left": -143.4375, - "top": -78.630006, - "right": -142.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 222, - "left": -142.03125, - "top": -78.630006, - "right": -140.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 222, - "left": -140.625, - "top": -78.630006, - "right": -139.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 222, - "left": -139.21875, - "top": -78.630006, - "right": -137.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 222, - "left": -137.8125, - "top": -78.630006, - "right": -136.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 222, - "left": -136.40625, - "top": -78.630006, - "right": -135.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 222, - "left": -135.0, - "top": -78.630006, - "right": -133.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 222, - "left": -133.59375, - "top": -78.630006, - "right": -132.1875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 222, - "left": -132.1875, - "top": -78.630006, - "right": -130.78125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 222, - "left": -130.78125, - "top": -78.630006, - "right": -129.375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 222, - "left": -129.375, - "top": -78.630006, - "right": -127.96875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 222, - "left": -127.96875, - "top": -78.630006, - "right": -126.5625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 222, - "left": -126.5625, - "top": -78.630006, - "right": -125.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 222, - "left": -125.15625, - "top": -78.630006, - "right": -123.75, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 222, - "left": -123.75, - "top": -78.630006, - "right": -122.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 222, - "left": -122.34375, - "top": -78.630006, - "right": -120.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 222, - "left": -120.9375, - "top": -78.630006, - "right": -119.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 222, - "left": -119.53125, - "top": -78.630006, - "right": -118.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 222, - "left": -118.125, - "top": -78.630006, - "right": -116.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 222, - "left": -116.71875, - "top": -78.630006, - "right": -115.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 222, - "left": -115.3125, - "top": -78.630006, - "right": -113.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 222, - "left": -113.90625, - "top": -78.630006, - "right": -112.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 222, - "left": -112.5, - "top": -78.630006, - "right": -111.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 222, - "left": -111.09375, - "top": -78.630006, - "right": -109.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 222, - "left": -109.6875, - "top": -78.630006, - "right": -108.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 222, - "left": -108.28125, - "top": -78.630006, - "right": -106.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 222, - "left": -106.875, - "top": -78.630006, - "right": -105.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 222, - "left": -105.46875, - "top": -78.630006, - "right": -104.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 222, - "left": -104.0625, - "top": -78.630006, - "right": -102.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 222, - "left": -102.65625, - "top": -78.630006, - "right": -101.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 222, - "left": -101.25, - "top": -78.630006, - "right": -99.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 222, - "left": -99.84375, - "top": -78.630006, - "right": -98.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 222, - "left": -98.4375, - "top": -78.630006, - "right": -97.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 222, - "left": -97.03125, - "top": -78.630006, - "right": -95.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 222, - "left": -95.625, - "top": -78.630006, - "right": -94.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 222, - "left": -94.21875, - "top": -78.630006, - "right": -92.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 222, - "left": -92.8125, - "top": -78.630006, - "right": -91.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 222, - "left": -91.40625, - "top": -78.630006, - "right": -90.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 222, - "left": -90.0, - "top": -78.630006, - "right": -88.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 222, - "left": -88.59375, - "top": -78.630006, - "right": -87.1875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 222, - "left": -87.1875, - "top": -78.630006, - "right": -85.78125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 222, - "left": -85.78125, - "top": -78.630006, - "right": -84.375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 222, - "left": -84.375, - "top": -78.630006, - "right": -82.96875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 222, - "left": -82.96875, - "top": -78.630006, - "right": -81.5625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 222, - "left": -81.5625, - "top": -78.630006, - "right": -80.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 222, - "left": -70.3125, - "top": -78.630006, - "right": -68.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 222, - "left": -68.90625, - "top": -78.630006, - "right": -67.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 222, - "left": -67.5, - "top": -78.630006, - "right": -66.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 222, - "left": -54.84375, - "top": -78.630006, - "right": -53.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 222, - "left": -53.4375, - "top": -78.630006, - "right": -52.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 222, - "left": -52.03125, - "top": -78.630006, - "right": -50.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 222, - "left": -50.625, - "top": -78.630006, - "right": -49.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 222, - "left": -49.21875, - "top": -78.630006, - "right": -47.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 222, - "left": -47.8125, - "top": -78.630006, - "right": -46.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 222, - "left": -46.40625, - "top": -78.630006, - "right": -45.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 222, - "left": -45.0, - "top": -78.630006, - "right": -43.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 222, - "left": -36.5625, - "top": -78.630006, - "right": -35.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 222, - "left": -35.15625, - "top": -78.630006, - "right": -33.75, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 222, - "left": -33.75, - "top": -78.630006, - "right": -32.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 222, - "left": -32.34375, - "top": -78.630006, - "right": -30.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 222, - "left": -30.9375, - "top": -78.630006, - "right": -29.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 222, - "left": -29.53125, - "top": -78.630006, - "right": -28.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 222, - "left": -28.125, - "top": -78.630006, - "right": -26.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 222, - "left": -26.71875, - "top": -78.630006, - "right": -25.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 222, - "left": -25.3125, - "top": -78.630006, - "right": -23.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 222, - "left": -23.90625, - "top": -78.630006, - "right": -22.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 222, - "left": -22.5, - "top": -78.630006, - "right": -21.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 222, - "left": -21.09375, - "top": -78.630006, - "right": -19.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 222, - "left": -19.6875, - "top": -78.630006, - "right": -18.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 222, - "left": -18.28125, - "top": -78.630006, - "right": -16.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 222, - "left": -16.875, - "top": -78.630006, - "right": -15.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 222, - "left": -15.46875, - "top": -78.630006, - "right": -14.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 222, - "left": -14.0625, - "top": -78.630006, - "right": -12.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 222, - "left": -12.65625, - "top": -78.630006, - "right": -11.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 222, - "left": -11.25, - "top": -78.630006, - "right": -9.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 222, - "left": -9.84375, - "top": -78.630006, - "right": -8.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 222, - "left": -8.4375, - "top": -78.630006, - "right": -7.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 222, - "left": -7.03125, - "top": -78.630006, - "right": -5.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 222, - "left": -5.625, - "top": -78.630006, - "right": -4.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 222, - "left": -4.21875, - "top": -78.630006, - "right": -2.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 222, - "left": -2.8125, - "top": -78.630006, - "right": -1.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 222, - "left": -1.40625, - "top": -78.630006, - "right": 0.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 222, - "left": 0.0, - "top": -78.630006, - "right": 1.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 222, - "left": 1.40625, - "top": -78.630006, - "right": 2.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 222, - "left": 2.8125, - "top": -78.630006, - "right": 4.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 222, - "left": 4.21875, - "top": -78.630006, - "right": 5.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 222, - "left": 5.625, - "top": -78.630006, - "right": 7.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 222, - "left": 7.03125, - "top": -78.630006, - "right": 8.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 222, - "left": 8.4375, - "top": -78.630006, - "right": 9.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 222, - "left": 9.84375, - "top": -78.630006, - "right": 11.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 222, - "left": 11.25, - "top": -78.630006, - "right": 12.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 222, - "left": 12.65625, - "top": -78.630006, - "right": 14.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 222, - "left": 14.0625, - "top": -78.630006, - "right": 15.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 222, - "left": 15.46875, - "top": -78.630006, - "right": 16.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 222, - "left": 16.875, - "top": -78.630006, - "right": 18.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 222, - "left": 18.28125, - "top": -78.630006, - "right": 19.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 222, - "left": 19.6875, - "top": -78.630006, - "right": 21.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 222, - "left": 21.09375, - "top": -78.630006, - "right": 22.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 222, - "left": 22.5, - "top": -78.630006, - "right": 23.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 222, - "left": 23.90625, - "top": -78.630006, - "right": 25.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 222, - "left": 25.3125, - "top": -78.630006, - "right": 26.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 222, - "left": 26.71875, - "top": -78.630006, - "right": 28.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 222, - "left": 28.125, - "top": -78.630006, - "right": 29.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 222, - "left": 29.53125, - "top": -78.630006, - "right": 30.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 222, - "left": 30.9375, - "top": -78.630006, - "right": 32.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 222, - "left": 32.34375, - "top": -78.630006, - "right": 33.75, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 222, - "left": 33.75, - "top": -78.630006, - "right": 35.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 222, - "left": 35.15625, - "top": -78.630006, - "right": 36.5625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 222, - "left": 36.5625, - "top": -78.630006, - "right": 37.96875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 222, - "left": 37.96875, - "top": -78.630006, - "right": 39.375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 222, - "left": 39.375, - "top": -78.630006, - "right": 40.78125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 222, - "left": 40.78125, - "top": -78.630006, - "right": 42.1875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 222, - "left": 42.1875, - "top": -78.630006, - "right": 43.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 222, - "left": 43.59375, - "top": -78.630006, - "right": 45.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 222, - "left": 45.0, - "top": -78.630006, - "right": 46.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 222, - "left": 46.40625, - "top": -78.630006, - "right": 47.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 222, - "left": 47.8125, - "top": -78.630006, - "right": 49.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 222, - "left": 49.21875, - "top": -78.630006, - "right": 50.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 222, - "left": 50.625, - "top": -78.630006, - "right": 52.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 222, - "left": 52.03125, - "top": -78.630006, - "right": 53.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 222, - "left": 53.4375, - "top": -78.630006, - "right": 54.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 222, - "left": 54.84375, - "top": -78.630006, - "right": 56.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 222, - "left": 56.25, - "top": -78.630006, - "right": 57.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 222, - "left": 57.65625, - "top": -78.630006, - "right": 59.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 222, - "left": 59.0625, - "top": -78.630006, - "right": 60.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 222, - "left": 60.46875, - "top": -78.630006, - "right": 61.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 222, - "left": 61.875, - "top": -78.630006, - "right": 63.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 222, - "left": 63.28125, - "top": -78.630006, - "right": 64.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 222, - "left": 64.6875, - "top": -78.630006, - "right": 66.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 222, - "left": 66.09375, - "top": -78.630006, - "right": 67.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 222, - "left": 67.5, - "top": -78.630006, - "right": 68.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 222, - "left": 68.90625, - "top": -78.630006, - "right": 70.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 222, - "left": 70.3125, - "top": -78.630006, - "right": 71.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 222, - "left": 71.71875, - "top": -78.630006, - "right": 73.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 222, - "left": 73.125, - "top": -78.630006, - "right": 74.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 222, - "left": 74.53125, - "top": -78.630006, - "right": 75.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 222, - "left": 75.9375, - "top": -78.630006, - "right": 77.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 222, - "left": 77.34375, - "top": -78.630006, - "right": 78.75, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 222, - "left": 78.75, - "top": -78.630006, - "right": 80.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 222, - "left": 80.15625, - "top": -78.630006, - "right": 81.5625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 222, - "left": 81.5625, - "top": -78.630006, - "right": 82.96875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 222, - "left": 82.96875, - "top": -78.630006, - "right": 84.375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 222, - "left": 84.375, - "top": -78.630006, - "right": 85.78125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 222, - "left": 85.78125, - "top": -78.630006, - "right": 87.1875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 222, - "left": 87.1875, - "top": -78.630006, - "right": 88.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 222, - "left": 88.59375, - "top": -78.630006, - "right": 90.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 222, - "left": 90.0, - "top": -78.630006, - "right": 91.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 222, - "left": 91.40625, - "top": -78.630006, - "right": 92.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 222, - "left": 92.8125, - "top": -78.630006, - "right": 94.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 222, - "left": 94.21875, - "top": -78.630006, - "right": 95.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 222, - "left": 95.625, - "top": -78.630006, - "right": 97.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 222, - "left": 97.03125, - "top": -78.630006, - "right": 98.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 222, - "left": 98.4375, - "top": -78.630006, - "right": 99.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 222, - "left": 99.84375, - "top": -78.630006, - "right": 101.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 222, - "left": 101.25, - "top": -78.630006, - "right": 102.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 222, - "left": 102.65625, - "top": -78.630006, - "right": 104.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 222, - "left": 104.0625, - "top": -78.630006, - "right": 105.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 222, - "left": 105.46875, - "top": -78.630006, - "right": 106.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 222, - "left": 106.875, - "top": -78.630006, - "right": 108.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 222, - "left": 108.28125, - "top": -78.630006, - "right": 109.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 222, - "left": 109.6875, - "top": -78.630006, - "right": 111.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 222, - "left": 111.09375, - "top": -78.630006, - "right": 112.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 222, - "left": 112.5, - "top": -78.630006, - "right": 113.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 222, - "left": 113.90625, - "top": -78.630006, - "right": 115.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 222, - "left": 115.3125, - "top": -78.630006, - "right": 116.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 222, - "left": 116.71875, - "top": -78.630006, - "right": 118.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 222, - "left": 118.125, - "top": -78.630006, - "right": 119.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 222, - "left": 119.53125, - "top": -78.630006, - "right": 120.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 222, - "left": 120.9375, - "top": -78.630006, - "right": 122.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 222, - "left": 122.34375, - "top": -78.630006, - "right": 123.75, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 222, - "left": 123.75, - "top": -78.630006, - "right": 125.15625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 222, - "left": 125.15625, - "top": -78.630006, - "right": 126.5625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 222, - "left": 126.5625, - "top": -78.630006, - "right": 127.96875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 222, - "left": 127.96875, - "top": -78.630006, - "right": 129.375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 222, - "left": 129.375, - "top": -78.630006, - "right": 130.78125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 222, - "left": 130.78125, - "top": -78.630006, - "right": 132.1875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 222, - "left": 132.1875, - "top": -78.630006, - "right": 133.59375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 222, - "left": 133.59375, - "top": -78.630006, - "right": 135.0, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 222, - "left": 135.0, - "top": -78.630006, - "right": 136.40625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 222, - "left": 136.40625, - "top": -78.630006, - "right": 137.8125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 222, - "left": 137.8125, - "top": -78.630006, - "right": 139.21875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 222, - "left": 139.21875, - "top": -78.630006, - "right": 140.625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 222, - "left": 140.625, - "top": -78.630006, - "right": 142.03125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 222, - "left": 142.03125, - "top": -78.630006, - "right": 143.4375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 222, - "left": 143.4375, - "top": -78.630006, - "right": 144.84375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 222, - "left": 144.84375, - "top": -78.630006, - "right": 146.25, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 222, - "left": 146.25, - "top": -78.630006, - "right": 147.65625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 222, - "left": 147.65625, - "top": -78.630006, - "right": 149.0625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 222, - "left": 149.0625, - "top": -78.630006, - "right": 150.46875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 222, - "left": 150.46875, - "top": -78.630006, - "right": 151.875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 222, - "left": 151.875, - "top": -78.630006, - "right": 153.28125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 222, - "left": 153.28125, - "top": -78.630006, - "right": 154.6875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 222, - "left": 154.6875, - "top": -78.630006, - "right": 156.09375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 222, - "left": 156.09375, - "top": -78.630006, - "right": 157.5, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 222, - "left": 157.5, - "top": -78.630006, - "right": 158.90625, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 222, - "left": 158.90625, - "top": -78.630006, - "right": 160.3125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 222, - "left": 160.3125, - "top": -78.630006, - "right": 161.71875, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 222, - "left": 161.71875, - "top": -78.630006, - "right": 163.125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 222, - "left": 163.125, - "top": -78.630006, - "right": 164.53125, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 222, - "left": 164.53125, - "top": -78.630006, - "right": 165.9375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 222, - "left": 165.9375, - "top": -78.630006, - "right": 167.34375, - "bottom": -78.903929, - "countries": [ - "antarctica" - ] - }, - { - "x": 11, - "y": 223, - "left": -164.53125, - "top": -78.903929, - "right": -163.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 12, - "y": 223, - "left": -163.125, - "top": -78.903929, - "right": -161.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 13, - "y": 223, - "left": -161.71875, - "top": -78.903929, - "right": -160.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 16, - "y": 223, - "left": -157.5, - "top": -78.903929, - "right": -156.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 223, - "left": -156.09375, - "top": -78.903929, - "right": -154.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 223, - "left": -154.6875, - "top": -78.903929, - "right": -153.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 223, - "left": -153.28125, - "top": -78.903929, - "right": -151.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 223, - "left": -151.875, - "top": -78.903929, - "right": -150.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 223, - "left": -150.46875, - "top": -78.903929, - "right": -149.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 223, - "left": -149.0625, - "top": -78.903929, - "right": -147.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 223, - "left": -147.65625, - "top": -78.903929, - "right": -146.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 223, - "left": -146.25, - "top": -78.903929, - "right": -144.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 223, - "left": -144.84375, - "top": -78.903929, - "right": -143.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 223, - "left": -143.4375, - "top": -78.903929, - "right": -142.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 223, - "left": -142.03125, - "top": -78.903929, - "right": -140.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 223, - "left": -140.625, - "top": -78.903929, - "right": -139.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 223, - "left": -139.21875, - "top": -78.903929, - "right": -137.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 223, - "left": -137.8125, - "top": -78.903929, - "right": -136.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 223, - "left": -136.40625, - "top": -78.903929, - "right": -135.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 223, - "left": -135.0, - "top": -78.903929, - "right": -133.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 223, - "left": -133.59375, - "top": -78.903929, - "right": -132.1875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 223, - "left": -132.1875, - "top": -78.903929, - "right": -130.78125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 223, - "left": -130.78125, - "top": -78.903929, - "right": -129.375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 223, - "left": -129.375, - "top": -78.903929, - "right": -127.96875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 223, - "left": -127.96875, - "top": -78.903929, - "right": -126.5625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 223, - "left": -126.5625, - "top": -78.903929, - "right": -125.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 223, - "left": -125.15625, - "top": -78.903929, - "right": -123.75, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 223, - "left": -123.75, - "top": -78.903929, - "right": -122.34375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 223, - "left": -122.34375, - "top": -78.903929, - "right": -120.9375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 223, - "left": -120.9375, - "top": -78.903929, - "right": -119.53125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 223, - "left": -119.53125, - "top": -78.903929, - "right": -118.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 223, - "left": -118.125, - "top": -78.903929, - "right": -116.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 223, - "left": -116.71875, - "top": -78.903929, - "right": -115.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 223, - "left": -115.3125, - "top": -78.903929, - "right": -113.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 223, - "left": -113.90625, - "top": -78.903929, - "right": -112.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 223, - "left": -112.5, - "top": -78.903929, - "right": -111.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 223, - "left": -111.09375, - "top": -78.903929, - "right": -109.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 223, - "left": -109.6875, - "top": -78.903929, - "right": -108.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 223, - "left": -108.28125, - "top": -78.903929, - "right": -106.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 223, - "left": -106.875, - "top": -78.903929, - "right": -105.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 223, - "left": -105.46875, - "top": -78.903929, - "right": -104.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 223, - "left": -104.0625, - "top": -78.903929, - "right": -102.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 223, - "left": -102.65625, - "top": -78.903929, - "right": -101.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 223, - "left": -101.25, - "top": -78.903929, - "right": -99.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 223, - "left": -99.84375, - "top": -78.903929, - "right": -98.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 223, - "left": -98.4375, - "top": -78.903929, - "right": -97.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 223, - "left": -97.03125, - "top": -78.903929, - "right": -95.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 223, - "left": -95.625, - "top": -78.903929, - "right": -94.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 223, - "left": -94.21875, - "top": -78.903929, - "right": -92.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 223, - "left": -92.8125, - "top": -78.903929, - "right": -91.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 223, - "left": -91.40625, - "top": -78.903929, - "right": -90.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 223, - "left": -90.0, - "top": -78.903929, - "right": -88.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 223, - "left": -88.59375, - "top": -78.903929, - "right": -87.1875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 223, - "left": -87.1875, - "top": -78.903929, - "right": -85.78125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 223, - "left": -85.78125, - "top": -78.903929, - "right": -84.375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 223, - "left": -84.375, - "top": -78.903929, - "right": -82.96875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 223, - "left": -82.96875, - "top": -78.903929, - "right": -81.5625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 223, - "left": -81.5625, - "top": -78.903929, - "right": -80.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 223, - "left": -71.71875, - "top": -78.903929, - "right": -70.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 223, - "left": -70.3125, - "top": -78.903929, - "right": -68.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 223, - "left": -68.90625, - "top": -78.903929, - "right": -67.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 223, - "left": -54.84375, - "top": -78.903929, - "right": -53.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 223, - "left": -53.4375, - "top": -78.903929, - "right": -52.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 223, - "left": -52.03125, - "top": -78.903929, - "right": -50.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 223, - "left": -50.625, - "top": -78.903929, - "right": -49.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 223, - "left": -49.21875, - "top": -78.903929, - "right": -47.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 223, - "left": -47.8125, - "top": -78.903929, - "right": -46.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 223, - "left": -46.40625, - "top": -78.903929, - "right": -45.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 223, - "left": -45.0, - "top": -78.903929, - "right": -43.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 223, - "left": -36.5625, - "top": -78.903929, - "right": -35.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 223, - "left": -35.15625, - "top": -78.903929, - "right": -33.75, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 223, - "left": -33.75, - "top": -78.903929, - "right": -32.34375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 223, - "left": -32.34375, - "top": -78.903929, - "right": -30.9375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 223, - "left": -30.9375, - "top": -78.903929, - "right": -29.53125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 223, - "left": -29.53125, - "top": -78.903929, - "right": -28.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 223, - "left": -28.125, - "top": -78.903929, - "right": -26.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 223, - "left": -26.71875, - "top": -78.903929, - "right": -25.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 223, - "left": -25.3125, - "top": -78.903929, - "right": -23.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 223, - "left": -23.90625, - "top": -78.903929, - "right": -22.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 223, - "left": -22.5, - "top": -78.903929, - "right": -21.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 223, - "left": -21.09375, - "top": -78.903929, - "right": -19.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 223, - "left": -19.6875, - "top": -78.903929, - "right": -18.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 223, - "left": -18.28125, - "top": -78.903929, - "right": -16.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 223, - "left": -16.875, - "top": -78.903929, - "right": -15.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 223, - "left": -15.46875, - "top": -78.903929, - "right": -14.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 223, - "left": -14.0625, - "top": -78.903929, - "right": -12.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 223, - "left": -12.65625, - "top": -78.903929, - "right": -11.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 223, - "left": -11.25, - "top": -78.903929, - "right": -9.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 223, - "left": -9.84375, - "top": -78.903929, - "right": -8.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 223, - "left": -8.4375, - "top": -78.903929, - "right": -7.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 223, - "left": -7.03125, - "top": -78.903929, - "right": -5.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 223, - "left": -5.625, - "top": -78.903929, - "right": -4.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 223, - "left": -4.21875, - "top": -78.903929, - "right": -2.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 223, - "left": -2.8125, - "top": -78.903929, - "right": -1.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 223, - "left": -1.40625, - "top": -78.903929, - "right": 0.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 223, - "left": 0.0, - "top": -78.903929, - "right": 1.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 223, - "left": 1.40625, - "top": -78.903929, - "right": 2.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 223, - "left": 2.8125, - "top": -78.903929, - "right": 4.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 223, - "left": 4.21875, - "top": -78.903929, - "right": 5.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 223, - "left": 5.625, - "top": -78.903929, - "right": 7.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 223, - "left": 7.03125, - "top": -78.903929, - "right": 8.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 223, - "left": 8.4375, - "top": -78.903929, - "right": 9.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 223, - "left": 9.84375, - "top": -78.903929, - "right": 11.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 223, - "left": 11.25, - "top": -78.903929, - "right": 12.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 223, - "left": 12.65625, - "top": -78.903929, - "right": 14.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 223, - "left": 14.0625, - "top": -78.903929, - "right": 15.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 223, - "left": 15.46875, - "top": -78.903929, - "right": 16.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 223, - "left": 16.875, - "top": -78.903929, - "right": 18.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 223, - "left": 18.28125, - "top": -78.903929, - "right": 19.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 223, - "left": 19.6875, - "top": -78.903929, - "right": 21.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 223, - "left": 21.09375, - "top": -78.903929, - "right": 22.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 223, - "left": 22.5, - "top": -78.903929, - "right": 23.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 223, - "left": 23.90625, - "top": -78.903929, - "right": 25.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 223, - "left": 25.3125, - "top": -78.903929, - "right": 26.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 223, - "left": 26.71875, - "top": -78.903929, - "right": 28.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 223, - "left": 28.125, - "top": -78.903929, - "right": 29.53125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 223, - "left": 29.53125, - "top": -78.903929, - "right": 30.9375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 223, - "left": 30.9375, - "top": -78.903929, - "right": 32.34375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 223, - "left": 32.34375, - "top": -78.903929, - "right": 33.75, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 223, - "left": 33.75, - "top": -78.903929, - "right": 35.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 223, - "left": 35.15625, - "top": -78.903929, - "right": 36.5625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 223, - "left": 36.5625, - "top": -78.903929, - "right": 37.96875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 223, - "left": 37.96875, - "top": -78.903929, - "right": 39.375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 223, - "left": 39.375, - "top": -78.903929, - "right": 40.78125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 223, - "left": 40.78125, - "top": -78.903929, - "right": 42.1875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 223, - "left": 42.1875, - "top": -78.903929, - "right": 43.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 223, - "left": 43.59375, - "top": -78.903929, - "right": 45.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 223, - "left": 45.0, - "top": -78.903929, - "right": 46.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 223, - "left": 46.40625, - "top": -78.903929, - "right": 47.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 223, - "left": 47.8125, - "top": -78.903929, - "right": 49.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 223, - "left": 49.21875, - "top": -78.903929, - "right": 50.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 223, - "left": 50.625, - "top": -78.903929, - "right": 52.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 223, - "left": 52.03125, - "top": -78.903929, - "right": 53.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 223, - "left": 53.4375, - "top": -78.903929, - "right": 54.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 223, - "left": 54.84375, - "top": -78.903929, - "right": 56.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 223, - "left": 56.25, - "top": -78.903929, - "right": 57.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 223, - "left": 57.65625, - "top": -78.903929, - "right": 59.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 223, - "left": 59.0625, - "top": -78.903929, - "right": 60.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 223, - "left": 60.46875, - "top": -78.903929, - "right": 61.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 223, - "left": 61.875, - "top": -78.903929, - "right": 63.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 223, - "left": 63.28125, - "top": -78.903929, - "right": 64.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 223, - "left": 64.6875, - "top": -78.903929, - "right": 66.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 223, - "left": 66.09375, - "top": -78.903929, - "right": 67.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 223, - "left": 67.5, - "top": -78.903929, - "right": 68.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 223, - "left": 68.90625, - "top": -78.903929, - "right": 70.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 223, - "left": 70.3125, - "top": -78.903929, - "right": 71.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 223, - "left": 71.71875, - "top": -78.903929, - "right": 73.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 223, - "left": 73.125, - "top": -78.903929, - "right": 74.53125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 223, - "left": 74.53125, - "top": -78.903929, - "right": 75.9375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 223, - "left": 75.9375, - "top": -78.903929, - "right": 77.34375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 223, - "left": 77.34375, - "top": -78.903929, - "right": 78.75, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 223, - "left": 78.75, - "top": -78.903929, - "right": 80.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 223, - "left": 80.15625, - "top": -78.903929, - "right": 81.5625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 223, - "left": 81.5625, - "top": -78.903929, - "right": 82.96875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 223, - "left": 82.96875, - "top": -78.903929, - "right": 84.375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 223, - "left": 84.375, - "top": -78.903929, - "right": 85.78125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 223, - "left": 85.78125, - "top": -78.903929, - "right": 87.1875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 223, - "left": 87.1875, - "top": -78.903929, - "right": 88.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 223, - "left": 88.59375, - "top": -78.903929, - "right": 90.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 223, - "left": 90.0, - "top": -78.903929, - "right": 91.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 223, - "left": 91.40625, - "top": -78.903929, - "right": 92.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 223, - "left": 92.8125, - "top": -78.903929, - "right": 94.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 223, - "left": 94.21875, - "top": -78.903929, - "right": 95.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 223, - "left": 95.625, - "top": -78.903929, - "right": 97.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 223, - "left": 97.03125, - "top": -78.903929, - "right": 98.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 223, - "left": 98.4375, - "top": -78.903929, - "right": 99.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 223, - "left": 99.84375, - "top": -78.903929, - "right": 101.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 223, - "left": 101.25, - "top": -78.903929, - "right": 102.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 223, - "left": 102.65625, - "top": -78.903929, - "right": 104.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 223, - "left": 104.0625, - "top": -78.903929, - "right": 105.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 223, - "left": 105.46875, - "top": -78.903929, - "right": 106.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 223, - "left": 106.875, - "top": -78.903929, - "right": 108.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 223, - "left": 108.28125, - "top": -78.903929, - "right": 109.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 223, - "left": 109.6875, - "top": -78.903929, - "right": 111.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 223, - "left": 111.09375, - "top": -78.903929, - "right": 112.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 223, - "left": 112.5, - "top": -78.903929, - "right": 113.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 223, - "left": 113.90625, - "top": -78.903929, - "right": 115.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 223, - "left": 115.3125, - "top": -78.903929, - "right": 116.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 223, - "left": 116.71875, - "top": -78.903929, - "right": 118.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 223, - "left": 118.125, - "top": -78.903929, - "right": 119.53125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 223, - "left": 119.53125, - "top": -78.903929, - "right": 120.9375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 223, - "left": 120.9375, - "top": -78.903929, - "right": 122.34375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 223, - "left": 122.34375, - "top": -78.903929, - "right": 123.75, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 223, - "left": 123.75, - "top": -78.903929, - "right": 125.15625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 223, - "left": 125.15625, - "top": -78.903929, - "right": 126.5625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 223, - "left": 126.5625, - "top": -78.903929, - "right": 127.96875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 223, - "left": 127.96875, - "top": -78.903929, - "right": 129.375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 223, - "left": 129.375, - "top": -78.903929, - "right": 130.78125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 223, - "left": 130.78125, - "top": -78.903929, - "right": 132.1875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 223, - "left": 132.1875, - "top": -78.903929, - "right": 133.59375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 223, - "left": 133.59375, - "top": -78.903929, - "right": 135.0, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 223, - "left": 135.0, - "top": -78.903929, - "right": 136.40625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 223, - "left": 136.40625, - "top": -78.903929, - "right": 137.8125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 223, - "left": 137.8125, - "top": -78.903929, - "right": 139.21875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 223, - "left": 139.21875, - "top": -78.903929, - "right": 140.625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 223, - "left": 140.625, - "top": -78.903929, - "right": 142.03125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 223, - "left": 142.03125, - "top": -78.903929, - "right": 143.4375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 223, - "left": 143.4375, - "top": -78.903929, - "right": 144.84375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 223, - "left": 144.84375, - "top": -78.903929, - "right": 146.25, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 223, - "left": 146.25, - "top": -78.903929, - "right": 147.65625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 223, - "left": 147.65625, - "top": -78.903929, - "right": 149.0625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 223, - "left": 149.0625, - "top": -78.903929, - "right": 150.46875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 223, - "left": 150.46875, - "top": -78.903929, - "right": 151.875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 223, - "left": 151.875, - "top": -78.903929, - "right": 153.28125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 223, - "left": 153.28125, - "top": -78.903929, - "right": 154.6875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 223, - "left": 154.6875, - "top": -78.903929, - "right": 156.09375, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 223, - "left": 156.09375, - "top": -78.903929, - "right": 157.5, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 223, - "left": 157.5, - "top": -78.903929, - "right": 158.90625, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 223, - "left": 158.90625, - "top": -78.903929, - "right": 160.3125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 223, - "left": 160.3125, - "top": -78.903929, - "right": 161.71875, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 223, - "left": 161.71875, - "top": -78.903929, - "right": 163.125, - "bottom": -79.171335, - "countries": [ - "antarctica" - ] - }, - { - "x": 11, - "y": 224, - "left": -164.53125, - "top": -79.171335, - "right": -163.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 12, - "y": 224, - "left": -163.125, - "top": -79.171335, - "right": -161.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 13, - "y": 224, - "left": -161.71875, - "top": -79.171335, - "right": -160.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 14, - "y": 224, - "left": -160.3125, - "top": -79.171335, - "right": -158.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 224, - "left": -156.09375, - "top": -79.171335, - "right": -154.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 224, - "left": -154.6875, - "top": -79.171335, - "right": -153.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 224, - "left": -153.28125, - "top": -79.171335, - "right": -151.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 224, - "left": -151.875, - "top": -79.171335, - "right": -150.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 224, - "left": -150.46875, - "top": -79.171335, - "right": -149.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 224, - "left": -149.0625, - "top": -79.171335, - "right": -147.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 224, - "left": -147.65625, - "top": -79.171335, - "right": -146.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 224, - "left": -146.25, - "top": -79.171335, - "right": -144.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 224, - "left": -144.84375, - "top": -79.171335, - "right": -143.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 224, - "left": -143.4375, - "top": -79.171335, - "right": -142.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 224, - "left": -142.03125, - "top": -79.171335, - "right": -140.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 224, - "left": -140.625, - "top": -79.171335, - "right": -139.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 224, - "left": -139.21875, - "top": -79.171335, - "right": -137.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 224, - "left": -137.8125, - "top": -79.171335, - "right": -136.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 224, - "left": -136.40625, - "top": -79.171335, - "right": -135.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 224, - "left": -135.0, - "top": -79.171335, - "right": -133.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 224, - "left": -133.59375, - "top": -79.171335, - "right": -132.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 224, - "left": -132.1875, - "top": -79.171335, - "right": -130.78125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 224, - "left": -130.78125, - "top": -79.171335, - "right": -129.375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 224, - "left": -129.375, - "top": -79.171335, - "right": -127.96875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 224, - "left": -127.96875, - "top": -79.171335, - "right": -126.5625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 224, - "left": -126.5625, - "top": -79.171335, - "right": -125.15625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 224, - "left": -125.15625, - "top": -79.171335, - "right": -123.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 224, - "left": -123.75, - "top": -79.171335, - "right": -122.34375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 224, - "left": -122.34375, - "top": -79.171335, - "right": -120.9375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 224, - "left": -120.9375, - "top": -79.171335, - "right": -119.53125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 224, - "left": -119.53125, - "top": -79.171335, - "right": -118.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 224, - "left": -118.125, - "top": -79.171335, - "right": -116.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 224, - "left": -116.71875, - "top": -79.171335, - "right": -115.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 224, - "left": -115.3125, - "top": -79.171335, - "right": -113.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 224, - "left": -113.90625, - "top": -79.171335, - "right": -112.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 224, - "left": -112.5, - "top": -79.171335, - "right": -111.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 224, - "left": -111.09375, - "top": -79.171335, - "right": -109.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 224, - "left": -109.6875, - "top": -79.171335, - "right": -108.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 224, - "left": -108.28125, - "top": -79.171335, - "right": -106.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 224, - "left": -106.875, - "top": -79.171335, - "right": -105.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 224, - "left": -105.46875, - "top": -79.171335, - "right": -104.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 224, - "left": -104.0625, - "top": -79.171335, - "right": -102.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 224, - "left": -102.65625, - "top": -79.171335, - "right": -101.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 224, - "left": -101.25, - "top": -79.171335, - "right": -99.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 224, - "left": -99.84375, - "top": -79.171335, - "right": -98.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 224, - "left": -98.4375, - "top": -79.171335, - "right": -97.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 224, - "left": -97.03125, - "top": -79.171335, - "right": -95.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 224, - "left": -95.625, - "top": -79.171335, - "right": -94.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 224, - "left": -94.21875, - "top": -79.171335, - "right": -92.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 224, - "left": -92.8125, - "top": -79.171335, - "right": -91.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 224, - "left": -91.40625, - "top": -79.171335, - "right": -90.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 224, - "left": -90.0, - "top": -79.171335, - "right": -88.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 224, - "left": -88.59375, - "top": -79.171335, - "right": -87.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 224, - "left": -87.1875, - "top": -79.171335, - "right": -85.78125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 224, - "left": -85.78125, - "top": -79.171335, - "right": -84.375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 224, - "left": -84.375, - "top": -79.171335, - "right": -82.96875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 224, - "left": -82.96875, - "top": -79.171335, - "right": -81.5625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 224, - "left": -81.5625, - "top": -79.171335, - "right": -80.15625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 224, - "left": -80.15625, - "top": -79.171335, - "right": -78.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 224, - "left": -70.3125, - "top": -79.171335, - "right": -68.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 224, - "left": -56.25, - "top": -79.171335, - "right": -54.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 224, - "left": -54.84375, - "top": -79.171335, - "right": -53.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 224, - "left": -53.4375, - "top": -79.171335, - "right": -52.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 224, - "left": -52.03125, - "top": -79.171335, - "right": -50.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 224, - "left": -50.625, - "top": -79.171335, - "right": -49.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 224, - "left": -49.21875, - "top": -79.171335, - "right": -47.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 224, - "left": -47.8125, - "top": -79.171335, - "right": -46.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 224, - "left": -46.40625, - "top": -79.171335, - "right": -45.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 224, - "left": -45.0, - "top": -79.171335, - "right": -43.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 224, - "left": -43.59375, - "top": -79.171335, - "right": -42.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 224, - "left": -35.15625, - "top": -79.171335, - "right": -33.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 224, - "left": -33.75, - "top": -79.171335, - "right": -32.34375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 224, - "left": -32.34375, - "top": -79.171335, - "right": -30.9375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 224, - "left": -30.9375, - "top": -79.171335, - "right": -29.53125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 224, - "left": -29.53125, - "top": -79.171335, - "right": -28.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 224, - "left": -28.125, - "top": -79.171335, - "right": -26.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 224, - "left": -26.71875, - "top": -79.171335, - "right": -25.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 224, - "left": -25.3125, - "top": -79.171335, - "right": -23.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 224, - "left": -23.90625, - "top": -79.171335, - "right": -22.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 224, - "left": -22.5, - "top": -79.171335, - "right": -21.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 224, - "left": -21.09375, - "top": -79.171335, - "right": -19.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 224, - "left": -19.6875, - "top": -79.171335, - "right": -18.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 224, - "left": -18.28125, - "top": -79.171335, - "right": -16.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 224, - "left": -16.875, - "top": -79.171335, - "right": -15.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 224, - "left": -15.46875, - "top": -79.171335, - "right": -14.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 224, - "left": -14.0625, - "top": -79.171335, - "right": -12.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 224, - "left": -12.65625, - "top": -79.171335, - "right": -11.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 224, - "left": -11.25, - "top": -79.171335, - "right": -9.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 224, - "left": -9.84375, - "top": -79.171335, - "right": -8.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 224, - "left": -8.4375, - "top": -79.171335, - "right": -7.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 224, - "left": -7.03125, - "top": -79.171335, - "right": -5.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 224, - "left": -5.625, - "top": -79.171335, - "right": -4.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 224, - "left": -4.21875, - "top": -79.171335, - "right": -2.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 224, - "left": -2.8125, - "top": -79.171335, - "right": -1.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 224, - "left": -1.40625, - "top": -79.171335, - "right": 0.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 224, - "left": 0.0, - "top": -79.171335, - "right": 1.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 224, - "left": 1.40625, - "top": -79.171335, - "right": 2.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 224, - "left": 2.8125, - "top": -79.171335, - "right": 4.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 224, - "left": 4.21875, - "top": -79.171335, - "right": 5.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 224, - "left": 5.625, - "top": -79.171335, - "right": 7.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 224, - "left": 7.03125, - "top": -79.171335, - "right": 8.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 224, - "left": 8.4375, - "top": -79.171335, - "right": 9.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 224, - "left": 9.84375, - "top": -79.171335, - "right": 11.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 224, - "left": 11.25, - "top": -79.171335, - "right": 12.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 224, - "left": 12.65625, - "top": -79.171335, - "right": 14.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 224, - "left": 14.0625, - "top": -79.171335, - "right": 15.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 224, - "left": 15.46875, - "top": -79.171335, - "right": 16.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 224, - "left": 16.875, - "top": -79.171335, - "right": 18.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 224, - "left": 18.28125, - "top": -79.171335, - "right": 19.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 224, - "left": 19.6875, - "top": -79.171335, - "right": 21.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 224, - "left": 21.09375, - "top": -79.171335, - "right": 22.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 224, - "left": 22.5, - "top": -79.171335, - "right": 23.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 224, - "left": 23.90625, - "top": -79.171335, - "right": 25.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 224, - "left": 25.3125, - "top": -79.171335, - "right": 26.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 224, - "left": 26.71875, - "top": -79.171335, - "right": 28.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 224, - "left": 28.125, - "top": -79.171335, - "right": 29.53125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 224, - "left": 29.53125, - "top": -79.171335, - "right": 30.9375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 224, - "left": 30.9375, - "top": -79.171335, - "right": 32.34375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 224, - "left": 32.34375, - "top": -79.171335, - "right": 33.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 224, - "left": 33.75, - "top": -79.171335, - "right": 35.15625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 224, - "left": 35.15625, - "top": -79.171335, - "right": 36.5625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 224, - "left": 36.5625, - "top": -79.171335, - "right": 37.96875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 224, - "left": 37.96875, - "top": -79.171335, - "right": 39.375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 224, - "left": 39.375, - "top": -79.171335, - "right": 40.78125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 224, - "left": 40.78125, - "top": -79.171335, - "right": 42.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 224, - "left": 42.1875, - "top": -79.171335, - "right": 43.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 224, - "left": 43.59375, - "top": -79.171335, - "right": 45.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 224, - "left": 45.0, - "top": -79.171335, - "right": 46.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 224, - "left": 46.40625, - "top": -79.171335, - "right": 47.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 224, - "left": 47.8125, - "top": -79.171335, - "right": 49.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 224, - "left": 49.21875, - "top": -79.171335, - "right": 50.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 224, - "left": 50.625, - "top": -79.171335, - "right": 52.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 224, - "left": 52.03125, - "top": -79.171335, - "right": 53.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 224, - "left": 53.4375, - "top": -79.171335, - "right": 54.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 224, - "left": 54.84375, - "top": -79.171335, - "right": 56.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 224, - "left": 56.25, - "top": -79.171335, - "right": 57.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 224, - "left": 57.65625, - "top": -79.171335, - "right": 59.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 224, - "left": 59.0625, - "top": -79.171335, - "right": 60.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 224, - "left": 60.46875, - "top": -79.171335, - "right": 61.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 224, - "left": 61.875, - "top": -79.171335, - "right": 63.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 224, - "left": 63.28125, - "top": -79.171335, - "right": 64.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 224, - "left": 64.6875, - "top": -79.171335, - "right": 66.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 224, - "left": 66.09375, - "top": -79.171335, - "right": 67.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 224, - "left": 67.5, - "top": -79.171335, - "right": 68.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 224, - "left": 68.90625, - "top": -79.171335, - "right": 70.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 224, - "left": 70.3125, - "top": -79.171335, - "right": 71.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 224, - "left": 71.71875, - "top": -79.171335, - "right": 73.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 224, - "left": 73.125, - "top": -79.171335, - "right": 74.53125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 224, - "left": 74.53125, - "top": -79.171335, - "right": 75.9375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 224, - "left": 75.9375, - "top": -79.171335, - "right": 77.34375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 224, - "left": 77.34375, - "top": -79.171335, - "right": 78.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 224, - "left": 78.75, - "top": -79.171335, - "right": 80.15625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 224, - "left": 80.15625, - "top": -79.171335, - "right": 81.5625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 224, - "left": 81.5625, - "top": -79.171335, - "right": 82.96875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 224, - "left": 82.96875, - "top": -79.171335, - "right": 84.375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 224, - "left": 84.375, - "top": -79.171335, - "right": 85.78125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 224, - "left": 85.78125, - "top": -79.171335, - "right": 87.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 224, - "left": 87.1875, - "top": -79.171335, - "right": 88.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 224, - "left": 88.59375, - "top": -79.171335, - "right": 90.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 224, - "left": 90.0, - "top": -79.171335, - "right": 91.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 224, - "left": 91.40625, - "top": -79.171335, - "right": 92.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 224, - "left": 92.8125, - "top": -79.171335, - "right": 94.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 224, - "left": 94.21875, - "top": -79.171335, - "right": 95.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 224, - "left": 95.625, - "top": -79.171335, - "right": 97.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 224, - "left": 97.03125, - "top": -79.171335, - "right": 98.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 224, - "left": 98.4375, - "top": -79.171335, - "right": 99.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 224, - "left": 99.84375, - "top": -79.171335, - "right": 101.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 224, - "left": 101.25, - "top": -79.171335, - "right": 102.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 224, - "left": 102.65625, - "top": -79.171335, - "right": 104.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 224, - "left": 104.0625, - "top": -79.171335, - "right": 105.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 224, - "left": 105.46875, - "top": -79.171335, - "right": 106.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 224, - "left": 106.875, - "top": -79.171335, - "right": 108.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 224, - "left": 108.28125, - "top": -79.171335, - "right": 109.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 224, - "left": 109.6875, - "top": -79.171335, - "right": 111.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 224, - "left": 111.09375, - "top": -79.171335, - "right": 112.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 224, - "left": 112.5, - "top": -79.171335, - "right": 113.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 224, - "left": 113.90625, - "top": -79.171335, - "right": 115.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 224, - "left": 115.3125, - "top": -79.171335, - "right": 116.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 224, - "left": 116.71875, - "top": -79.171335, - "right": 118.125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 224, - "left": 118.125, - "top": -79.171335, - "right": 119.53125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 224, - "left": 119.53125, - "top": -79.171335, - "right": 120.9375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 224, - "left": 120.9375, - "top": -79.171335, - "right": 122.34375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 224, - "left": 122.34375, - "top": -79.171335, - "right": 123.75, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 224, - "left": 123.75, - "top": -79.171335, - "right": 125.15625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 224, - "left": 125.15625, - "top": -79.171335, - "right": 126.5625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 224, - "left": 126.5625, - "top": -79.171335, - "right": 127.96875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 224, - "left": 127.96875, - "top": -79.171335, - "right": 129.375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 224, - "left": 129.375, - "top": -79.171335, - "right": 130.78125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 224, - "left": 130.78125, - "top": -79.171335, - "right": 132.1875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 224, - "left": 132.1875, - "top": -79.171335, - "right": 133.59375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 224, - "left": 133.59375, - "top": -79.171335, - "right": 135.0, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 224, - "left": 135.0, - "top": -79.171335, - "right": 136.40625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 224, - "left": 136.40625, - "top": -79.171335, - "right": 137.8125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 224, - "left": 137.8125, - "top": -79.171335, - "right": 139.21875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 224, - "left": 139.21875, - "top": -79.171335, - "right": 140.625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 224, - "left": 140.625, - "top": -79.171335, - "right": 142.03125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 224, - "left": 142.03125, - "top": -79.171335, - "right": 143.4375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 224, - "left": 143.4375, - "top": -79.171335, - "right": 144.84375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 224, - "left": 144.84375, - "top": -79.171335, - "right": 146.25, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 224, - "left": 146.25, - "top": -79.171335, - "right": 147.65625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 224, - "left": 147.65625, - "top": -79.171335, - "right": 149.0625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 224, - "left": 149.0625, - "top": -79.171335, - "right": 150.46875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 224, - "left": 150.46875, - "top": -79.171335, - "right": 151.875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 224, - "left": 151.875, - "top": -79.171335, - "right": 153.28125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 224, - "left": 153.28125, - "top": -79.171335, - "right": 154.6875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 224, - "left": 154.6875, - "top": -79.171335, - "right": 156.09375, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 224, - "left": 156.09375, - "top": -79.171335, - "right": 157.5, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 224, - "left": 157.5, - "top": -79.171335, - "right": 158.90625, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 224, - "left": 158.90625, - "top": -79.171335, - "right": 160.3125, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 224, - "left": 160.3125, - "top": -79.171335, - "right": 161.71875, - "bottom": -79.432371, - "countries": [ - "antarctica" - ] - }, - { - "x": 11, - "y": 225, - "left": -164.53125, - "top": -79.432371, - "right": -163.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 12, - "y": 225, - "left": -163.125, - "top": -79.432371, - "right": -161.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 13, - "y": 225, - "left": -161.71875, - "top": -79.432371, - "right": -160.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 14, - "y": 225, - "left": -160.3125, - "top": -79.432371, - "right": -158.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 225, - "left": -154.6875, - "top": -79.432371, - "right": -153.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 225, - "left": -153.28125, - "top": -79.432371, - "right": -151.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 225, - "left": -151.875, - "top": -79.432371, - "right": -150.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 225, - "left": -150.46875, - "top": -79.432371, - "right": -149.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 225, - "left": -149.0625, - "top": -79.432371, - "right": -147.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 225, - "left": -147.65625, - "top": -79.432371, - "right": -146.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 225, - "left": -146.25, - "top": -79.432371, - "right": -144.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 225, - "left": -144.84375, - "top": -79.432371, - "right": -143.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 225, - "left": -143.4375, - "top": -79.432371, - "right": -142.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 225, - "left": -142.03125, - "top": -79.432371, - "right": -140.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 225, - "left": -140.625, - "top": -79.432371, - "right": -139.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 225, - "left": -139.21875, - "top": -79.432371, - "right": -137.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 225, - "left": -137.8125, - "top": -79.432371, - "right": -136.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 225, - "left": -136.40625, - "top": -79.432371, - "right": -135.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 225, - "left": -135.0, - "top": -79.432371, - "right": -133.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 225, - "left": -133.59375, - "top": -79.432371, - "right": -132.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 225, - "left": -132.1875, - "top": -79.432371, - "right": -130.78125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 225, - "left": -130.78125, - "top": -79.432371, - "right": -129.375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 225, - "left": -129.375, - "top": -79.432371, - "right": -127.96875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 225, - "left": -127.96875, - "top": -79.432371, - "right": -126.5625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 225, - "left": -126.5625, - "top": -79.432371, - "right": -125.15625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 225, - "left": -125.15625, - "top": -79.432371, - "right": -123.75, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 225, - "left": -123.75, - "top": -79.432371, - "right": -122.34375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 225, - "left": -122.34375, - "top": -79.432371, - "right": -120.9375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 225, - "left": -120.9375, - "top": -79.432371, - "right": -119.53125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 225, - "left": -119.53125, - "top": -79.432371, - "right": -118.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 225, - "left": -118.125, - "top": -79.432371, - "right": -116.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 225, - "left": -116.71875, - "top": -79.432371, - "right": -115.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 225, - "left": -115.3125, - "top": -79.432371, - "right": -113.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 225, - "left": -113.90625, - "top": -79.432371, - "right": -112.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 225, - "left": -112.5, - "top": -79.432371, - "right": -111.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 225, - "left": -111.09375, - "top": -79.432371, - "right": -109.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 225, - "left": -109.6875, - "top": -79.432371, - "right": -108.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 225, - "left": -108.28125, - "top": -79.432371, - "right": -106.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 225, - "left": -106.875, - "top": -79.432371, - "right": -105.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 225, - "left": -105.46875, - "top": -79.432371, - "right": -104.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 225, - "left": -104.0625, - "top": -79.432371, - "right": -102.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 225, - "left": -102.65625, - "top": -79.432371, - "right": -101.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 225, - "left": -101.25, - "top": -79.432371, - "right": -99.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 225, - "left": -99.84375, - "top": -79.432371, - "right": -98.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 225, - "left": -98.4375, - "top": -79.432371, - "right": -97.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 225, - "left": -97.03125, - "top": -79.432371, - "right": -95.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 225, - "left": -95.625, - "top": -79.432371, - "right": -94.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 225, - "left": -94.21875, - "top": -79.432371, - "right": -92.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 225, - "left": -92.8125, - "top": -79.432371, - "right": -91.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 225, - "left": -91.40625, - "top": -79.432371, - "right": -90.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 225, - "left": -90.0, - "top": -79.432371, - "right": -88.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 225, - "left": -88.59375, - "top": -79.432371, - "right": -87.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 225, - "left": -87.1875, - "top": -79.432371, - "right": -85.78125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 225, - "left": -85.78125, - "top": -79.432371, - "right": -84.375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 225, - "left": -84.375, - "top": -79.432371, - "right": -82.96875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 225, - "left": -82.96875, - "top": -79.432371, - "right": -81.5625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 225, - "left": -81.5625, - "top": -79.432371, - "right": -80.15625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 225, - "left": -80.15625, - "top": -79.432371, - "right": -78.75, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 225, - "left": -78.75, - "top": -79.432371, - "right": -77.34375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 225, - "left": -60.46875, - "top": -79.432371, - "right": -59.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 225, - "left": -59.0625, - "top": -79.432371, - "right": -57.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 225, - "left": -57.65625, - "top": -79.432371, - "right": -56.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 225, - "left": -56.25, - "top": -79.432371, - "right": -54.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 225, - "left": -54.84375, - "top": -79.432371, - "right": -53.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 225, - "left": -53.4375, - "top": -79.432371, - "right": -52.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 225, - "left": -52.03125, - "top": -79.432371, - "right": -50.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 225, - "left": -50.625, - "top": -79.432371, - "right": -49.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 225, - "left": -49.21875, - "top": -79.432371, - "right": -47.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 225, - "left": -47.8125, - "top": -79.432371, - "right": -46.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 225, - "left": -46.40625, - "top": -79.432371, - "right": -45.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 225, - "left": -45.0, - "top": -79.432371, - "right": -43.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 225, - "left": -43.59375, - "top": -79.432371, - "right": -42.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 225, - "left": -30.9375, - "top": -79.432371, - "right": -29.53125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 225, - "left": -29.53125, - "top": -79.432371, - "right": -28.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 225, - "left": -28.125, - "top": -79.432371, - "right": -26.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 225, - "left": -26.71875, - "top": -79.432371, - "right": -25.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 225, - "left": -25.3125, - "top": -79.432371, - "right": -23.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 225, - "left": -23.90625, - "top": -79.432371, - "right": -22.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 225, - "left": -22.5, - "top": -79.432371, - "right": -21.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 225, - "left": -21.09375, - "top": -79.432371, - "right": -19.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 225, - "left": -19.6875, - "top": -79.432371, - "right": -18.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 225, - "left": -18.28125, - "top": -79.432371, - "right": -16.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 225, - "left": -16.875, - "top": -79.432371, - "right": -15.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 225, - "left": -15.46875, - "top": -79.432371, - "right": -14.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 225, - "left": -14.0625, - "top": -79.432371, - "right": -12.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 225, - "left": -12.65625, - "top": -79.432371, - "right": -11.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 225, - "left": -11.25, - "top": -79.432371, - "right": -9.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 225, - "left": -9.84375, - "top": -79.432371, - "right": -8.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 225, - "left": -8.4375, - "top": -79.432371, - "right": -7.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 225, - "left": -7.03125, - "top": -79.432371, - "right": -5.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 225, - "left": -5.625, - "top": -79.432371, - "right": -4.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 225, - "left": -4.21875, - "top": -79.432371, - "right": -2.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 225, - "left": -2.8125, - "top": -79.432371, - "right": -1.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 225, - "left": -1.40625, - "top": -79.432371, - "right": 0.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 225, - "left": 0.0, - "top": -79.432371, - "right": 1.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 225, - "left": 1.40625, - "top": -79.432371, - "right": 2.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 225, - "left": 2.8125, - "top": -79.432371, - "right": 4.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 225, - "left": 4.21875, - "top": -79.432371, - "right": 5.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 225, - "left": 5.625, - "top": -79.432371, - "right": 7.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 225, - "left": 7.03125, - "top": -79.432371, - "right": 8.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 225, - "left": 8.4375, - "top": -79.432371, - "right": 9.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 225, - "left": 9.84375, - "top": -79.432371, - "right": 11.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 225, - "left": 11.25, - "top": -79.432371, - "right": 12.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 225, - "left": 12.65625, - "top": -79.432371, - "right": 14.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 225, - "left": 14.0625, - "top": -79.432371, - "right": 15.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 225, - "left": 15.46875, - "top": -79.432371, - "right": 16.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 225, - "left": 16.875, - "top": -79.432371, - "right": 18.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 225, - "left": 18.28125, - "top": -79.432371, - "right": 19.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 225, - "left": 19.6875, - "top": -79.432371, - "right": 21.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 225, - "left": 21.09375, - "top": -79.432371, - "right": 22.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 225, - "left": 22.5, - "top": -79.432371, - "right": 23.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 225, - "left": 23.90625, - "top": -79.432371, - "right": 25.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 225, - "left": 25.3125, - "top": -79.432371, - "right": 26.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 225, - "left": 26.71875, - "top": -79.432371, - "right": 28.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 225, - "left": 28.125, - "top": -79.432371, - "right": 29.53125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 225, - "left": 29.53125, - "top": -79.432371, - "right": 30.9375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 225, - "left": 30.9375, - "top": -79.432371, - "right": 32.34375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 225, - "left": 32.34375, - "top": -79.432371, - "right": 33.75, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 225, - "left": 33.75, - "top": -79.432371, - "right": 35.15625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 225, - "left": 35.15625, - "top": -79.432371, - "right": 36.5625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 225, - "left": 36.5625, - "top": -79.432371, - "right": 37.96875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 225, - "left": 37.96875, - "top": -79.432371, - "right": 39.375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 225, - "left": 39.375, - "top": -79.432371, - "right": 40.78125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 225, - "left": 40.78125, - "top": -79.432371, - "right": 42.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 225, - "left": 42.1875, - "top": -79.432371, - "right": 43.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 225, - "left": 43.59375, - "top": -79.432371, - "right": 45.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 225, - "left": 45.0, - "top": -79.432371, - "right": 46.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 225, - "left": 46.40625, - "top": -79.432371, - "right": 47.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 225, - "left": 47.8125, - "top": -79.432371, - "right": 49.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 225, - "left": 49.21875, - "top": -79.432371, - "right": 50.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 225, - "left": 50.625, - "top": -79.432371, - "right": 52.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 225, - "left": 52.03125, - "top": -79.432371, - "right": 53.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 225, - "left": 53.4375, - "top": -79.432371, - "right": 54.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 225, - "left": 54.84375, - "top": -79.432371, - "right": 56.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 225, - "left": 56.25, - "top": -79.432371, - "right": 57.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 225, - "left": 57.65625, - "top": -79.432371, - "right": 59.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 225, - "left": 59.0625, - "top": -79.432371, - "right": 60.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 225, - "left": 60.46875, - "top": -79.432371, - "right": 61.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 225, - "left": 61.875, - "top": -79.432371, - "right": 63.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 225, - "left": 63.28125, - "top": -79.432371, - "right": 64.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 225, - "left": 64.6875, - "top": -79.432371, - "right": 66.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 225, - "left": 66.09375, - "top": -79.432371, - "right": 67.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 225, - "left": 67.5, - "top": -79.432371, - "right": 68.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 225, - "left": 68.90625, - "top": -79.432371, - "right": 70.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 225, - "left": 70.3125, - "top": -79.432371, - "right": 71.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 225, - "left": 71.71875, - "top": -79.432371, - "right": 73.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 225, - "left": 73.125, - "top": -79.432371, - "right": 74.53125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 225, - "left": 74.53125, - "top": -79.432371, - "right": 75.9375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 225, - "left": 75.9375, - "top": -79.432371, - "right": 77.34375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 225, - "left": 77.34375, - "top": -79.432371, - "right": 78.75, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 225, - "left": 78.75, - "top": -79.432371, - "right": 80.15625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 225, - "left": 80.15625, - "top": -79.432371, - "right": 81.5625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 225, - "left": 81.5625, - "top": -79.432371, - "right": 82.96875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 225, - "left": 82.96875, - "top": -79.432371, - "right": 84.375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 225, - "left": 84.375, - "top": -79.432371, - "right": 85.78125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 225, - "left": 85.78125, - "top": -79.432371, - "right": 87.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 225, - "left": 87.1875, - "top": -79.432371, - "right": 88.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 225, - "left": 88.59375, - "top": -79.432371, - "right": 90.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 225, - "left": 90.0, - "top": -79.432371, - "right": 91.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 225, - "left": 91.40625, - "top": -79.432371, - "right": 92.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 225, - "left": 92.8125, - "top": -79.432371, - "right": 94.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 225, - "left": 94.21875, - "top": -79.432371, - "right": 95.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 225, - "left": 95.625, - "top": -79.432371, - "right": 97.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 225, - "left": 97.03125, - "top": -79.432371, - "right": 98.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 225, - "left": 98.4375, - "top": -79.432371, - "right": 99.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 225, - "left": 99.84375, - "top": -79.432371, - "right": 101.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 225, - "left": 101.25, - "top": -79.432371, - "right": 102.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 225, - "left": 102.65625, - "top": -79.432371, - "right": 104.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 225, - "left": 104.0625, - "top": -79.432371, - "right": 105.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 225, - "left": 105.46875, - "top": -79.432371, - "right": 106.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 225, - "left": 106.875, - "top": -79.432371, - "right": 108.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 225, - "left": 108.28125, - "top": -79.432371, - "right": 109.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 225, - "left": 109.6875, - "top": -79.432371, - "right": 111.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 225, - "left": 111.09375, - "top": -79.432371, - "right": 112.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 225, - "left": 112.5, - "top": -79.432371, - "right": 113.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 225, - "left": 113.90625, - "top": -79.432371, - "right": 115.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 225, - "left": 115.3125, - "top": -79.432371, - "right": 116.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 225, - "left": 116.71875, - "top": -79.432371, - "right": 118.125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 225, - "left": 118.125, - "top": -79.432371, - "right": 119.53125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 225, - "left": 119.53125, - "top": -79.432371, - "right": 120.9375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 225, - "left": 120.9375, - "top": -79.432371, - "right": 122.34375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 225, - "left": 122.34375, - "top": -79.432371, - "right": 123.75, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 225, - "left": 123.75, - "top": -79.432371, - "right": 125.15625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 225, - "left": 125.15625, - "top": -79.432371, - "right": 126.5625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 225, - "left": 126.5625, - "top": -79.432371, - "right": 127.96875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 225, - "left": 127.96875, - "top": -79.432371, - "right": 129.375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 225, - "left": 129.375, - "top": -79.432371, - "right": 130.78125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 225, - "left": 130.78125, - "top": -79.432371, - "right": 132.1875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 225, - "left": 132.1875, - "top": -79.432371, - "right": 133.59375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 225, - "left": 133.59375, - "top": -79.432371, - "right": 135.0, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 225, - "left": 135.0, - "top": -79.432371, - "right": 136.40625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 225, - "left": 136.40625, - "top": -79.432371, - "right": 137.8125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 225, - "left": 137.8125, - "top": -79.432371, - "right": 139.21875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 225, - "left": 139.21875, - "top": -79.432371, - "right": 140.625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 225, - "left": 140.625, - "top": -79.432371, - "right": 142.03125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 225, - "left": 142.03125, - "top": -79.432371, - "right": 143.4375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 225, - "left": 143.4375, - "top": -79.432371, - "right": 144.84375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 225, - "left": 144.84375, - "top": -79.432371, - "right": 146.25, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 225, - "left": 146.25, - "top": -79.432371, - "right": 147.65625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 225, - "left": 147.65625, - "top": -79.432371, - "right": 149.0625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 225, - "left": 149.0625, - "top": -79.432371, - "right": 150.46875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 225, - "left": 150.46875, - "top": -79.432371, - "right": 151.875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 225, - "left": 151.875, - "top": -79.432371, - "right": 153.28125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 225, - "left": 153.28125, - "top": -79.432371, - "right": 154.6875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 225, - "left": 154.6875, - "top": -79.432371, - "right": 156.09375, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 225, - "left": 156.09375, - "top": -79.432371, - "right": 157.5, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 225, - "left": 157.5, - "top": -79.432371, - "right": 158.90625, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 225, - "left": 158.90625, - "top": -79.432371, - "right": 160.3125, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 225, - "left": 160.3125, - "top": -79.432371, - "right": 161.71875, - "bottom": -79.687184, - "countries": [ - "antarctica" - ] - }, - { - "x": 12, - "y": 226, - "left": -163.125, - "top": -79.687184, - "right": -161.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 13, - "y": 226, - "left": -161.71875, - "top": -79.687184, - "right": -160.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 14, - "y": 226, - "left": -160.3125, - "top": -79.687184, - "right": -158.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 226, - "left": -154.6875, - "top": -79.687184, - "right": -153.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 226, - "left": -153.28125, - "top": -79.687184, - "right": -151.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 226, - "left": -151.875, - "top": -79.687184, - "right": -150.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 226, - "left": -150.46875, - "top": -79.687184, - "right": -149.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 226, - "left": -149.0625, - "top": -79.687184, - "right": -147.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 226, - "left": -147.65625, - "top": -79.687184, - "right": -146.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 226, - "left": -146.25, - "top": -79.687184, - "right": -144.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 226, - "left": -144.84375, - "top": -79.687184, - "right": -143.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 226, - "left": -143.4375, - "top": -79.687184, - "right": -142.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 226, - "left": -142.03125, - "top": -79.687184, - "right": -140.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 226, - "left": -140.625, - "top": -79.687184, - "right": -139.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 226, - "left": -139.21875, - "top": -79.687184, - "right": -137.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 226, - "left": -137.8125, - "top": -79.687184, - "right": -136.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 226, - "left": -136.40625, - "top": -79.687184, - "right": -135.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 226, - "left": -135.0, - "top": -79.687184, - "right": -133.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 226, - "left": -133.59375, - "top": -79.687184, - "right": -132.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 226, - "left": -132.1875, - "top": -79.687184, - "right": -130.78125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 226, - "left": -130.78125, - "top": -79.687184, - "right": -129.375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 226, - "left": -129.375, - "top": -79.687184, - "right": -127.96875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 226, - "left": -127.96875, - "top": -79.687184, - "right": -126.5625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 226, - "left": -126.5625, - "top": -79.687184, - "right": -125.15625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 226, - "left": -125.15625, - "top": -79.687184, - "right": -123.75, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 226, - "left": -123.75, - "top": -79.687184, - "right": -122.34375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 226, - "left": -122.34375, - "top": -79.687184, - "right": -120.9375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 226, - "left": -120.9375, - "top": -79.687184, - "right": -119.53125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 226, - "left": -119.53125, - "top": -79.687184, - "right": -118.125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 226, - "left": -118.125, - "top": -79.687184, - "right": -116.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 226, - "left": -116.71875, - "top": -79.687184, - "right": -115.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 226, - "left": -115.3125, - "top": -79.687184, - "right": -113.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 226, - "left": -113.90625, - "top": -79.687184, - "right": -112.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 226, - "left": -112.5, - "top": -79.687184, - "right": -111.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 226, - "left": -111.09375, - "top": -79.687184, - "right": -109.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 226, - "left": -109.6875, - "top": -79.687184, - "right": -108.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 226, - "left": -108.28125, - "top": -79.687184, - "right": -106.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 226, - "left": -106.875, - "top": -79.687184, - "right": -105.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 226, - "left": -105.46875, - "top": -79.687184, - "right": -104.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 226, - "left": -104.0625, - "top": -79.687184, - "right": -102.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 226, - "left": -102.65625, - "top": -79.687184, - "right": -101.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 226, - "left": -101.25, - "top": -79.687184, - "right": -99.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 226, - "left": -99.84375, - "top": -79.687184, - "right": -98.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 226, - "left": -98.4375, - "top": -79.687184, - "right": -97.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 226, - "left": -97.03125, - "top": -79.687184, - "right": -95.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 226, - "left": -95.625, - "top": -79.687184, - "right": -94.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 226, - "left": -94.21875, - "top": -79.687184, - "right": -92.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 226, - "left": -92.8125, - "top": -79.687184, - "right": -91.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 226, - "left": -91.40625, - "top": -79.687184, - "right": -90.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 226, - "left": -90.0, - "top": -79.687184, - "right": -88.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 226, - "left": -88.59375, - "top": -79.687184, - "right": -87.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 226, - "left": -87.1875, - "top": -79.687184, - "right": -85.78125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 226, - "left": -85.78125, - "top": -79.687184, - "right": -84.375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 226, - "left": -84.375, - "top": -79.687184, - "right": -82.96875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 226, - "left": -82.96875, - "top": -79.687184, - "right": -81.5625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 226, - "left": -81.5625, - "top": -79.687184, - "right": -80.15625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 226, - "left": -80.15625, - "top": -79.687184, - "right": -78.75, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 226, - "left": -78.75, - "top": -79.687184, - "right": -77.34375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 226, - "left": -60.46875, - "top": -79.687184, - "right": -59.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 226, - "left": -59.0625, - "top": -79.687184, - "right": -57.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 226, - "left": -57.65625, - "top": -79.687184, - "right": -56.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 226, - "left": -56.25, - "top": -79.687184, - "right": -54.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 226, - "left": -54.84375, - "top": -79.687184, - "right": -53.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 226, - "left": -53.4375, - "top": -79.687184, - "right": -52.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 226, - "left": -52.03125, - "top": -79.687184, - "right": -50.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 226, - "left": -50.625, - "top": -79.687184, - "right": -49.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 226, - "left": -49.21875, - "top": -79.687184, - "right": -47.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 226, - "left": -47.8125, - "top": -79.687184, - "right": -46.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 226, - "left": -46.40625, - "top": -79.687184, - "right": -45.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 226, - "left": -45.0, - "top": -79.687184, - "right": -43.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 226, - "left": -43.59375, - "top": -79.687184, - "right": -42.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 226, - "left": -30.9375, - "top": -79.687184, - "right": -29.53125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 226, - "left": -29.53125, - "top": -79.687184, - "right": -28.125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 226, - "left": -28.125, - "top": -79.687184, - "right": -26.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 226, - "left": -26.71875, - "top": -79.687184, - "right": -25.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 226, - "left": -25.3125, - "top": -79.687184, - "right": -23.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 226, - "left": -23.90625, - "top": -79.687184, - "right": -22.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 226, - "left": -22.5, - "top": -79.687184, - "right": -21.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 226, - "left": -21.09375, - "top": -79.687184, - "right": -19.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 226, - "left": -19.6875, - "top": -79.687184, - "right": -18.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 226, - "left": -18.28125, - "top": -79.687184, - "right": -16.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 226, - "left": -16.875, - "top": -79.687184, - "right": -15.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 226, - "left": -15.46875, - "top": -79.687184, - "right": -14.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 226, - "left": -14.0625, - "top": -79.687184, - "right": -12.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 226, - "left": -12.65625, - "top": -79.687184, - "right": -11.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 226, - "left": -11.25, - "top": -79.687184, - "right": -9.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 226, - "left": -9.84375, - "top": -79.687184, - "right": -8.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 226, - "left": -8.4375, - "top": -79.687184, - "right": -7.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 226, - "left": -7.03125, - "top": -79.687184, - "right": -5.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 226, - "left": -5.625, - "top": -79.687184, - "right": -4.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 226, - "left": -4.21875, - "top": -79.687184, - "right": -2.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 226, - "left": -2.8125, - "top": -79.687184, - "right": -1.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 226, - "left": -1.40625, - "top": -79.687184, - "right": 0.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 226, - "left": 0.0, - "top": -79.687184, - "right": 1.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 226, - "left": 1.40625, - "top": -79.687184, - "right": 2.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 226, - "left": 2.8125, - "top": -79.687184, - "right": 4.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 226, - "left": 4.21875, - "top": -79.687184, - "right": 5.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 226, - "left": 5.625, - "top": -79.687184, - "right": 7.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 226, - "left": 7.03125, - "top": -79.687184, - "right": 8.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 226, - "left": 8.4375, - "top": -79.687184, - "right": 9.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 226, - "left": 9.84375, - "top": -79.687184, - "right": 11.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 226, - "left": 11.25, - "top": -79.687184, - "right": 12.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 226, - "left": 12.65625, - "top": -79.687184, - "right": 14.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 226, - "left": 14.0625, - "top": -79.687184, - "right": 15.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 226, - "left": 15.46875, - "top": -79.687184, - "right": 16.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 226, - "left": 16.875, - "top": -79.687184, - "right": 18.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 226, - "left": 18.28125, - "top": -79.687184, - "right": 19.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 226, - "left": 19.6875, - "top": -79.687184, - "right": 21.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 226, - "left": 21.09375, - "top": -79.687184, - "right": 22.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 226, - "left": 22.5, - "top": -79.687184, - "right": 23.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 226, - "left": 23.90625, - "top": -79.687184, - "right": 25.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 226, - "left": 25.3125, - "top": -79.687184, - "right": 26.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 226, - "left": 26.71875, - "top": -79.687184, - "right": 28.125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 226, - "left": 28.125, - "top": -79.687184, - "right": 29.53125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 226, - "left": 29.53125, - "top": -79.687184, - "right": 30.9375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 226, - "left": 30.9375, - "top": -79.687184, - "right": 32.34375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 226, - "left": 32.34375, - "top": -79.687184, - "right": 33.75, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 226, - "left": 33.75, - "top": -79.687184, - "right": 35.15625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 226, - "left": 35.15625, - "top": -79.687184, - "right": 36.5625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 226, - "left": 36.5625, - "top": -79.687184, - "right": 37.96875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 226, - "left": 37.96875, - "top": -79.687184, - "right": 39.375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 226, - "left": 39.375, - "top": -79.687184, - "right": 40.78125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 226, - "left": 40.78125, - "top": -79.687184, - "right": 42.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 226, - "left": 42.1875, - "top": -79.687184, - "right": 43.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 226, - "left": 43.59375, - "top": -79.687184, - "right": 45.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 226, - "left": 45.0, - "top": -79.687184, - "right": 46.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 226, - "left": 46.40625, - "top": -79.687184, - "right": 47.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 226, - "left": 47.8125, - "top": -79.687184, - "right": 49.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 226, - "left": 49.21875, - "top": -79.687184, - "right": 50.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 226, - "left": 50.625, - "top": -79.687184, - "right": 52.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 226, - "left": 52.03125, - "top": -79.687184, - "right": 53.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 226, - "left": 53.4375, - "top": -79.687184, - "right": 54.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 226, - "left": 54.84375, - "top": -79.687184, - "right": 56.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 226, - "left": 56.25, - "top": -79.687184, - "right": 57.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 226, - "left": 57.65625, - "top": -79.687184, - "right": 59.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 226, - "left": 59.0625, - "top": -79.687184, - "right": 60.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 226, - "left": 60.46875, - "top": -79.687184, - "right": 61.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 226, - "left": 61.875, - "top": -79.687184, - "right": 63.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 226, - "left": 63.28125, - "top": -79.687184, - "right": 64.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 226, - "left": 64.6875, - "top": -79.687184, - "right": 66.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 226, - "left": 66.09375, - "top": -79.687184, - "right": 67.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 226, - "left": 67.5, - "top": -79.687184, - "right": 68.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 226, - "left": 68.90625, - "top": -79.687184, - "right": 70.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 226, - "left": 70.3125, - "top": -79.687184, - "right": 71.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 226, - "left": 71.71875, - "top": -79.687184, - "right": 73.125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 226, - "left": 73.125, - "top": -79.687184, - "right": 74.53125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 226, - "left": 74.53125, - "top": -79.687184, - "right": 75.9375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 226, - "left": 75.9375, - "top": -79.687184, - "right": 77.34375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 226, - "left": 77.34375, - "top": -79.687184, - "right": 78.75, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 226, - "left": 78.75, - "top": -79.687184, - "right": 80.15625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 226, - "left": 80.15625, - "top": -79.687184, - "right": 81.5625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 226, - "left": 81.5625, - "top": -79.687184, - "right": 82.96875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 226, - "left": 82.96875, - "top": -79.687184, - "right": 84.375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 226, - "left": 84.375, - "top": -79.687184, - "right": 85.78125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 226, - "left": 85.78125, - "top": -79.687184, - "right": 87.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 226, - "left": 87.1875, - "top": -79.687184, - "right": 88.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 226, - "left": 88.59375, - "top": -79.687184, - "right": 90.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 226, - "left": 90.0, - "top": -79.687184, - "right": 91.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 226, - "left": 91.40625, - "top": -79.687184, - "right": 92.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 226, - "left": 92.8125, - "top": -79.687184, - "right": 94.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 226, - "left": 94.21875, - "top": -79.687184, - "right": 95.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 226, - "left": 95.625, - "top": -79.687184, - "right": 97.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 226, - "left": 97.03125, - "top": -79.687184, - "right": 98.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 226, - "left": 98.4375, - "top": -79.687184, - "right": 99.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 226, - "left": 99.84375, - "top": -79.687184, - "right": 101.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 226, - "left": 101.25, - "top": -79.687184, - "right": 102.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 226, - "left": 102.65625, - "top": -79.687184, - "right": 104.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 226, - "left": 104.0625, - "top": -79.687184, - "right": 105.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 226, - "left": 105.46875, - "top": -79.687184, - "right": 106.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 226, - "left": 106.875, - "top": -79.687184, - "right": 108.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 226, - "left": 108.28125, - "top": -79.687184, - "right": 109.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 226, - "left": 109.6875, - "top": -79.687184, - "right": 111.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 226, - "left": 111.09375, - "top": -79.687184, - "right": 112.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 226, - "left": 112.5, - "top": -79.687184, - "right": 113.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 226, - "left": 113.90625, - "top": -79.687184, - "right": 115.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 226, - "left": 115.3125, - "top": -79.687184, - "right": 116.71875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 226, - "left": 116.71875, - "top": -79.687184, - "right": 118.125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 226, - "left": 118.125, - "top": -79.687184, - "right": 119.53125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 226, - "left": 119.53125, - "top": -79.687184, - "right": 120.9375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 226, - "left": 120.9375, - "top": -79.687184, - "right": 122.34375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 226, - "left": 122.34375, - "top": -79.687184, - "right": 123.75, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 226, - "left": 123.75, - "top": -79.687184, - "right": 125.15625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 226, - "left": 125.15625, - "top": -79.687184, - "right": 126.5625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 226, - "left": 126.5625, - "top": -79.687184, - "right": 127.96875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 226, - "left": 127.96875, - "top": -79.687184, - "right": 129.375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 226, - "left": 129.375, - "top": -79.687184, - "right": 130.78125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 226, - "left": 130.78125, - "top": -79.687184, - "right": 132.1875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 226, - "left": 132.1875, - "top": -79.687184, - "right": 133.59375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 226, - "left": 133.59375, - "top": -79.687184, - "right": 135.0, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 226, - "left": 135.0, - "top": -79.687184, - "right": 136.40625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 226, - "left": 136.40625, - "top": -79.687184, - "right": 137.8125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 226, - "left": 137.8125, - "top": -79.687184, - "right": 139.21875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 226, - "left": 139.21875, - "top": -79.687184, - "right": 140.625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 226, - "left": 140.625, - "top": -79.687184, - "right": 142.03125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 226, - "left": 142.03125, - "top": -79.687184, - "right": 143.4375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 226, - "left": 143.4375, - "top": -79.687184, - "right": 144.84375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 226, - "left": 144.84375, - "top": -79.687184, - "right": 146.25, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 226, - "left": 146.25, - "top": -79.687184, - "right": 147.65625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 226, - "left": 147.65625, - "top": -79.687184, - "right": 149.0625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 226, - "left": 149.0625, - "top": -79.687184, - "right": 150.46875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 226, - "left": 150.46875, - "top": -79.687184, - "right": 151.875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 226, - "left": 151.875, - "top": -79.687184, - "right": 153.28125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 226, - "left": 153.28125, - "top": -79.687184, - "right": 154.6875, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 226, - "left": 154.6875, - "top": -79.687184, - "right": 156.09375, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 226, - "left": 156.09375, - "top": -79.687184, - "right": 157.5, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 226, - "left": 157.5, - "top": -79.687184, - "right": 158.90625, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 226, - "left": 158.90625, - "top": -79.687184, - "right": 160.3125, - "bottom": -79.935918, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 227, - "left": -153.28125, - "top": -79.935918, - "right": -151.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 227, - "left": -151.875, - "top": -79.935918, - "right": -150.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 227, - "left": -150.46875, - "top": -79.935918, - "right": -149.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 227, - "left": -149.0625, - "top": -79.935918, - "right": -147.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 227, - "left": -147.65625, - "top": -79.935918, - "right": -146.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 227, - "left": -146.25, - "top": -79.935918, - "right": -144.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 227, - "left": -144.84375, - "top": -79.935918, - "right": -143.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 227, - "left": -143.4375, - "top": -79.935918, - "right": -142.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 227, - "left": -142.03125, - "top": -79.935918, - "right": -140.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 227, - "left": -140.625, - "top": -79.935918, - "right": -139.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 227, - "left": -139.21875, - "top": -79.935918, - "right": -137.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 227, - "left": -137.8125, - "top": -79.935918, - "right": -136.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 227, - "left": -136.40625, - "top": -79.935918, - "right": -135.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 227, - "left": -135.0, - "top": -79.935918, - "right": -133.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 227, - "left": -133.59375, - "top": -79.935918, - "right": -132.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 227, - "left": -132.1875, - "top": -79.935918, - "right": -130.78125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 227, - "left": -130.78125, - "top": -79.935918, - "right": -129.375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 227, - "left": -129.375, - "top": -79.935918, - "right": -127.96875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 227, - "left": -127.96875, - "top": -79.935918, - "right": -126.5625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 227, - "left": -126.5625, - "top": -79.935918, - "right": -125.15625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 227, - "left": -125.15625, - "top": -79.935918, - "right": -123.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 227, - "left": -123.75, - "top": -79.935918, - "right": -122.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 227, - "left": -122.34375, - "top": -79.935918, - "right": -120.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 227, - "left": -120.9375, - "top": -79.935918, - "right": -119.53125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 227, - "left": -119.53125, - "top": -79.935918, - "right": -118.125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 227, - "left": -118.125, - "top": -79.935918, - "right": -116.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 227, - "left": -116.71875, - "top": -79.935918, - "right": -115.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 227, - "left": -115.3125, - "top": -79.935918, - "right": -113.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 227, - "left": -113.90625, - "top": -79.935918, - "right": -112.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 227, - "left": -112.5, - "top": -79.935918, - "right": -111.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 227, - "left": -111.09375, - "top": -79.935918, - "right": -109.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 227, - "left": -109.6875, - "top": -79.935918, - "right": -108.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 227, - "left": -108.28125, - "top": -79.935918, - "right": -106.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 227, - "left": -106.875, - "top": -79.935918, - "right": -105.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 227, - "left": -105.46875, - "top": -79.935918, - "right": -104.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 227, - "left": -104.0625, - "top": -79.935918, - "right": -102.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 227, - "left": -102.65625, - "top": -79.935918, - "right": -101.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 227, - "left": -101.25, - "top": -79.935918, - "right": -99.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 227, - "left": -99.84375, - "top": -79.935918, - "right": -98.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 227, - "left": -98.4375, - "top": -79.935918, - "right": -97.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 227, - "left": -97.03125, - "top": -79.935918, - "right": -95.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 227, - "left": -95.625, - "top": -79.935918, - "right": -94.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 227, - "left": -94.21875, - "top": -79.935918, - "right": -92.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 227, - "left": -92.8125, - "top": -79.935918, - "right": -91.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 227, - "left": -91.40625, - "top": -79.935918, - "right": -90.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 227, - "left": -90.0, - "top": -79.935918, - "right": -88.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 227, - "left": -88.59375, - "top": -79.935918, - "right": -87.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 227, - "left": -87.1875, - "top": -79.935918, - "right": -85.78125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 227, - "left": -85.78125, - "top": -79.935918, - "right": -84.375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 227, - "left": -84.375, - "top": -79.935918, - "right": -82.96875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 227, - "left": -82.96875, - "top": -79.935918, - "right": -81.5625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 227, - "left": -81.5625, - "top": -79.935918, - "right": -80.15625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 227, - "left": -80.15625, - "top": -79.935918, - "right": -78.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 227, - "left": -78.75, - "top": -79.935918, - "right": -77.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 227, - "left": -77.34375, - "top": -79.935918, - "right": -75.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 227, - "left": -60.46875, - "top": -79.935918, - "right": -59.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 227, - "left": -59.0625, - "top": -79.935918, - "right": -57.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 227, - "left": -57.65625, - "top": -79.935918, - "right": -56.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 227, - "left": -56.25, - "top": -79.935918, - "right": -54.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 227, - "left": -54.84375, - "top": -79.935918, - "right": -53.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 227, - "left": -53.4375, - "top": -79.935918, - "right": -52.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 227, - "left": -52.03125, - "top": -79.935918, - "right": -50.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 227, - "left": -50.625, - "top": -79.935918, - "right": -49.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 227, - "left": -49.21875, - "top": -79.935918, - "right": -47.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 227, - "left": -47.8125, - "top": -79.935918, - "right": -46.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 227, - "left": -46.40625, - "top": -79.935918, - "right": -45.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 227, - "left": -45.0, - "top": -79.935918, - "right": -43.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 227, - "left": -43.59375, - "top": -79.935918, - "right": -42.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 227, - "left": -35.15625, - "top": -79.935918, - "right": -33.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 227, - "left": -33.75, - "top": -79.935918, - "right": -32.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 227, - "left": -32.34375, - "top": -79.935918, - "right": -30.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 227, - "left": -30.9375, - "top": -79.935918, - "right": -29.53125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 227, - "left": -29.53125, - "top": -79.935918, - "right": -28.125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 227, - "left": -28.125, - "top": -79.935918, - "right": -26.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 227, - "left": -26.71875, - "top": -79.935918, - "right": -25.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 227, - "left": -25.3125, - "top": -79.935918, - "right": -23.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 227, - "left": -23.90625, - "top": -79.935918, - "right": -22.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 227, - "left": -22.5, - "top": -79.935918, - "right": -21.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 227, - "left": -21.09375, - "top": -79.935918, - "right": -19.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 227, - "left": -19.6875, - "top": -79.935918, - "right": -18.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 227, - "left": -18.28125, - "top": -79.935918, - "right": -16.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 227, - "left": -16.875, - "top": -79.935918, - "right": -15.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 227, - "left": -15.46875, - "top": -79.935918, - "right": -14.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 227, - "left": -14.0625, - "top": -79.935918, - "right": -12.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 227, - "left": -12.65625, - "top": -79.935918, - "right": -11.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 227, - "left": -11.25, - "top": -79.935918, - "right": -9.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 227, - "left": -9.84375, - "top": -79.935918, - "right": -8.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 227, - "left": -8.4375, - "top": -79.935918, - "right": -7.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 227, - "left": -7.03125, - "top": -79.935918, - "right": -5.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 227, - "left": -5.625, - "top": -79.935918, - "right": -4.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 227, - "left": -4.21875, - "top": -79.935918, - "right": -2.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 227, - "left": -2.8125, - "top": -79.935918, - "right": -1.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 227, - "left": -1.40625, - "top": -79.935918, - "right": 0.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 227, - "left": 0.0, - "top": -79.935918, - "right": 1.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 227, - "left": 1.40625, - "top": -79.935918, - "right": 2.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 227, - "left": 2.8125, - "top": -79.935918, - "right": 4.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 227, - "left": 4.21875, - "top": -79.935918, - "right": 5.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 227, - "left": 5.625, - "top": -79.935918, - "right": 7.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 227, - "left": 7.03125, - "top": -79.935918, - "right": 8.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 227, - "left": 8.4375, - "top": -79.935918, - "right": 9.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 227, - "left": 9.84375, - "top": -79.935918, - "right": 11.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 227, - "left": 11.25, - "top": -79.935918, - "right": 12.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 227, - "left": 12.65625, - "top": -79.935918, - "right": 14.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 227, - "left": 14.0625, - "top": -79.935918, - "right": 15.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 227, - "left": 15.46875, - "top": -79.935918, - "right": 16.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 227, - "left": 16.875, - "top": -79.935918, - "right": 18.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 227, - "left": 18.28125, - "top": -79.935918, - "right": 19.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 227, - "left": 19.6875, - "top": -79.935918, - "right": 21.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 227, - "left": 21.09375, - "top": -79.935918, - "right": 22.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 227, - "left": 22.5, - "top": -79.935918, - "right": 23.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 227, - "left": 23.90625, - "top": -79.935918, - "right": 25.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 227, - "left": 25.3125, - "top": -79.935918, - "right": 26.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 227, - "left": 26.71875, - "top": -79.935918, - "right": 28.125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 227, - "left": 28.125, - "top": -79.935918, - "right": 29.53125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 227, - "left": 29.53125, - "top": -79.935918, - "right": 30.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 227, - "left": 30.9375, - "top": -79.935918, - "right": 32.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 227, - "left": 32.34375, - "top": -79.935918, - "right": 33.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 227, - "left": 33.75, - "top": -79.935918, - "right": 35.15625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 227, - "left": 35.15625, - "top": -79.935918, - "right": 36.5625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 227, - "left": 36.5625, - "top": -79.935918, - "right": 37.96875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 227, - "left": 37.96875, - "top": -79.935918, - "right": 39.375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 227, - "left": 39.375, - "top": -79.935918, - "right": 40.78125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 227, - "left": 40.78125, - "top": -79.935918, - "right": 42.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 227, - "left": 42.1875, - "top": -79.935918, - "right": 43.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 227, - "left": 43.59375, - "top": -79.935918, - "right": 45.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 227, - "left": 45.0, - "top": -79.935918, - "right": 46.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 227, - "left": 46.40625, - "top": -79.935918, - "right": 47.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 227, - "left": 47.8125, - "top": -79.935918, - "right": 49.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 227, - "left": 49.21875, - "top": -79.935918, - "right": 50.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 227, - "left": 50.625, - "top": -79.935918, - "right": 52.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 227, - "left": 52.03125, - "top": -79.935918, - "right": 53.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 227, - "left": 53.4375, - "top": -79.935918, - "right": 54.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 227, - "left": 54.84375, - "top": -79.935918, - "right": 56.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 227, - "left": 56.25, - "top": -79.935918, - "right": 57.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 227, - "left": 57.65625, - "top": -79.935918, - "right": 59.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 227, - "left": 59.0625, - "top": -79.935918, - "right": 60.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 227, - "left": 60.46875, - "top": -79.935918, - "right": 61.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 227, - "left": 61.875, - "top": -79.935918, - "right": 63.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 227, - "left": 63.28125, - "top": -79.935918, - "right": 64.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 227, - "left": 64.6875, - "top": -79.935918, - "right": 66.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 227, - "left": 66.09375, - "top": -79.935918, - "right": 67.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 227, - "left": 67.5, - "top": -79.935918, - "right": 68.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 227, - "left": 68.90625, - "top": -79.935918, - "right": 70.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 227, - "left": 70.3125, - "top": -79.935918, - "right": 71.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 227, - "left": 71.71875, - "top": -79.935918, - "right": 73.125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 227, - "left": 73.125, - "top": -79.935918, - "right": 74.53125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 227, - "left": 74.53125, - "top": -79.935918, - "right": 75.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 227, - "left": 75.9375, - "top": -79.935918, - "right": 77.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 227, - "left": 77.34375, - "top": -79.935918, - "right": 78.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 227, - "left": 78.75, - "top": -79.935918, - "right": 80.15625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 227, - "left": 80.15625, - "top": -79.935918, - "right": 81.5625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 227, - "left": 81.5625, - "top": -79.935918, - "right": 82.96875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 227, - "left": 82.96875, - "top": -79.935918, - "right": 84.375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 227, - "left": 84.375, - "top": -79.935918, - "right": 85.78125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 227, - "left": 85.78125, - "top": -79.935918, - "right": 87.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 227, - "left": 87.1875, - "top": -79.935918, - "right": 88.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 227, - "left": 88.59375, - "top": -79.935918, - "right": 90.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 227, - "left": 90.0, - "top": -79.935918, - "right": 91.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 227, - "left": 91.40625, - "top": -79.935918, - "right": 92.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 227, - "left": 92.8125, - "top": -79.935918, - "right": 94.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 227, - "left": 94.21875, - "top": -79.935918, - "right": 95.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 227, - "left": 95.625, - "top": -79.935918, - "right": 97.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 227, - "left": 97.03125, - "top": -79.935918, - "right": 98.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 227, - "left": 98.4375, - "top": -79.935918, - "right": 99.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 227, - "left": 99.84375, - "top": -79.935918, - "right": 101.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 227, - "left": 101.25, - "top": -79.935918, - "right": 102.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 227, - "left": 102.65625, - "top": -79.935918, - "right": 104.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 227, - "left": 104.0625, - "top": -79.935918, - "right": 105.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 227, - "left": 105.46875, - "top": -79.935918, - "right": 106.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 227, - "left": 106.875, - "top": -79.935918, - "right": 108.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 227, - "left": 108.28125, - "top": -79.935918, - "right": 109.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 227, - "left": 109.6875, - "top": -79.935918, - "right": 111.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 227, - "left": 111.09375, - "top": -79.935918, - "right": 112.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 227, - "left": 112.5, - "top": -79.935918, - "right": 113.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 227, - "left": 113.90625, - "top": -79.935918, - "right": 115.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 227, - "left": 115.3125, - "top": -79.935918, - "right": 116.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 227, - "left": 116.71875, - "top": -79.935918, - "right": 118.125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 227, - "left": 118.125, - "top": -79.935918, - "right": 119.53125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 227, - "left": 119.53125, - "top": -79.935918, - "right": 120.9375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 227, - "left": 120.9375, - "top": -79.935918, - "right": 122.34375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 227, - "left": 122.34375, - "top": -79.935918, - "right": 123.75, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 227, - "left": 123.75, - "top": -79.935918, - "right": 125.15625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 227, - "left": 125.15625, - "top": -79.935918, - "right": 126.5625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 227, - "left": 126.5625, - "top": -79.935918, - "right": 127.96875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 227, - "left": 127.96875, - "top": -79.935918, - "right": 129.375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 227, - "left": 129.375, - "top": -79.935918, - "right": 130.78125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 227, - "left": 130.78125, - "top": -79.935918, - "right": 132.1875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 227, - "left": 132.1875, - "top": -79.935918, - "right": 133.59375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 227, - "left": 133.59375, - "top": -79.935918, - "right": 135.0, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 227, - "left": 135.0, - "top": -79.935918, - "right": 136.40625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 227, - "left": 136.40625, - "top": -79.935918, - "right": 137.8125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 227, - "left": 137.8125, - "top": -79.935918, - "right": 139.21875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 227, - "left": 139.21875, - "top": -79.935918, - "right": 140.625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 227, - "left": 140.625, - "top": -79.935918, - "right": 142.03125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 227, - "left": 142.03125, - "top": -79.935918, - "right": 143.4375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 227, - "left": 143.4375, - "top": -79.935918, - "right": 144.84375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 227, - "left": 144.84375, - "top": -79.935918, - "right": 146.25, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 227, - "left": 146.25, - "top": -79.935918, - "right": 147.65625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 227, - "left": 147.65625, - "top": -79.935918, - "right": 149.0625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 227, - "left": 149.0625, - "top": -79.935918, - "right": 150.46875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 227, - "left": 150.46875, - "top": -79.935918, - "right": 151.875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 227, - "left": 151.875, - "top": -79.935918, - "right": 153.28125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 227, - "left": 153.28125, - "top": -79.935918, - "right": 154.6875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 227, - "left": 154.6875, - "top": -79.935918, - "right": 156.09375, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 227, - "left": 156.09375, - "top": -79.935918, - "right": 157.5, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 227, - "left": 157.5, - "top": -79.935918, - "right": 158.90625, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 227, - "left": 158.90625, - "top": -79.935918, - "right": 160.3125, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 227, - "left": 160.3125, - "top": -79.935918, - "right": 161.71875, - "bottom": -80.178713, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 228, - "left": -151.875, - "top": -80.178713, - "right": -150.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 228, - "left": -150.46875, - "top": -80.178713, - "right": -149.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 228, - "left": -149.0625, - "top": -80.178713, - "right": -147.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 228, - "left": -147.65625, - "top": -80.178713, - "right": -146.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 228, - "left": -146.25, - "top": -80.178713, - "right": -144.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 228, - "left": -144.84375, - "top": -80.178713, - "right": -143.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 228, - "left": -143.4375, - "top": -80.178713, - "right": -142.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 228, - "left": -142.03125, - "top": -80.178713, - "right": -140.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 228, - "left": -140.625, - "top": -80.178713, - "right": -139.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 228, - "left": -139.21875, - "top": -80.178713, - "right": -137.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 228, - "left": -137.8125, - "top": -80.178713, - "right": -136.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 228, - "left": -136.40625, - "top": -80.178713, - "right": -135.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 228, - "left": -135.0, - "top": -80.178713, - "right": -133.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 228, - "left": -133.59375, - "top": -80.178713, - "right": -132.1875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 228, - "left": -132.1875, - "top": -80.178713, - "right": -130.78125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 228, - "left": -130.78125, - "top": -80.178713, - "right": -129.375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 228, - "left": -129.375, - "top": -80.178713, - "right": -127.96875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 228, - "left": -127.96875, - "top": -80.178713, - "right": -126.5625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 228, - "left": -126.5625, - "top": -80.178713, - "right": -125.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 228, - "left": -125.15625, - "top": -80.178713, - "right": -123.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 228, - "left": -123.75, - "top": -80.178713, - "right": -122.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 228, - "left": -122.34375, - "top": -80.178713, - "right": -120.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 228, - "left": -120.9375, - "top": -80.178713, - "right": -119.53125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 228, - "left": -119.53125, - "top": -80.178713, - "right": -118.125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 228, - "left": -118.125, - "top": -80.178713, - "right": -116.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 228, - "left": -116.71875, - "top": -80.178713, - "right": -115.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 228, - "left": -115.3125, - "top": -80.178713, - "right": -113.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 228, - "left": -113.90625, - "top": -80.178713, - "right": -112.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 228, - "left": -112.5, - "top": -80.178713, - "right": -111.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 228, - "left": -111.09375, - "top": -80.178713, - "right": -109.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 228, - "left": -109.6875, - "top": -80.178713, - "right": -108.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 228, - "left": -108.28125, - "top": -80.178713, - "right": -106.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 228, - "left": -106.875, - "top": -80.178713, - "right": -105.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 228, - "left": -105.46875, - "top": -80.178713, - "right": -104.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 228, - "left": -104.0625, - "top": -80.178713, - "right": -102.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 228, - "left": -102.65625, - "top": -80.178713, - "right": -101.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 228, - "left": -101.25, - "top": -80.178713, - "right": -99.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 228, - "left": -99.84375, - "top": -80.178713, - "right": -98.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 228, - "left": -98.4375, - "top": -80.178713, - "right": -97.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 228, - "left": -97.03125, - "top": -80.178713, - "right": -95.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 228, - "left": -95.625, - "top": -80.178713, - "right": -94.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 228, - "left": -94.21875, - "top": -80.178713, - "right": -92.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 228, - "left": -92.8125, - "top": -80.178713, - "right": -91.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 228, - "left": -91.40625, - "top": -80.178713, - "right": -90.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 228, - "left": -90.0, - "top": -80.178713, - "right": -88.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 228, - "left": -88.59375, - "top": -80.178713, - "right": -87.1875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 228, - "left": -87.1875, - "top": -80.178713, - "right": -85.78125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 228, - "left": -85.78125, - "top": -80.178713, - "right": -84.375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 228, - "left": -84.375, - "top": -80.178713, - "right": -82.96875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 228, - "left": -82.96875, - "top": -80.178713, - "right": -81.5625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 228, - "left": -81.5625, - "top": -80.178713, - "right": -80.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 228, - "left": -80.15625, - "top": -80.178713, - "right": -78.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 228, - "left": -78.75, - "top": -80.178713, - "right": -77.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 228, - "left": -77.34375, - "top": -80.178713, - "right": -75.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 228, - "left": -64.6875, - "top": -80.178713, - "right": -63.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 228, - "left": -63.28125, - "top": -80.178713, - "right": -61.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 228, - "left": -61.875, - "top": -80.178713, - "right": -60.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 228, - "left": -60.46875, - "top": -80.178713, - "right": -59.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 228, - "left": -59.0625, - "top": -80.178713, - "right": -57.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 228, - "left": -57.65625, - "top": -80.178713, - "right": -56.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 228, - "left": -54.84375, - "top": -80.178713, - "right": -53.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 228, - "left": -53.4375, - "top": -80.178713, - "right": -52.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 228, - "left": -52.03125, - "top": -80.178713, - "right": -50.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 228, - "left": -50.625, - "top": -80.178713, - "right": -49.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 228, - "left": -49.21875, - "top": -80.178713, - "right": -47.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 228, - "left": -47.8125, - "top": -80.178713, - "right": -46.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 228, - "left": -46.40625, - "top": -80.178713, - "right": -45.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 228, - "left": -45.0, - "top": -80.178713, - "right": -43.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 228, - "left": -36.5625, - "top": -80.178713, - "right": -35.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 228, - "left": -35.15625, - "top": -80.178713, - "right": -33.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 228, - "left": -33.75, - "top": -80.178713, - "right": -32.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 228, - "left": -32.34375, - "top": -80.178713, - "right": -30.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 228, - "left": -30.9375, - "top": -80.178713, - "right": -29.53125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 228, - "left": -29.53125, - "top": -80.178713, - "right": -28.125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 228, - "left": -28.125, - "top": -80.178713, - "right": -26.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 228, - "left": -26.71875, - "top": -80.178713, - "right": -25.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 228, - "left": -25.3125, - "top": -80.178713, - "right": -23.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 228, - "left": -23.90625, - "top": -80.178713, - "right": -22.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 228, - "left": -22.5, - "top": -80.178713, - "right": -21.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 228, - "left": -21.09375, - "top": -80.178713, - "right": -19.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 228, - "left": -19.6875, - "top": -80.178713, - "right": -18.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 228, - "left": -18.28125, - "top": -80.178713, - "right": -16.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 228, - "left": -16.875, - "top": -80.178713, - "right": -15.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 228, - "left": -15.46875, - "top": -80.178713, - "right": -14.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 228, - "left": -14.0625, - "top": -80.178713, - "right": -12.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 228, - "left": -12.65625, - "top": -80.178713, - "right": -11.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 228, - "left": -11.25, - "top": -80.178713, - "right": -9.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 228, - "left": -9.84375, - "top": -80.178713, - "right": -8.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 228, - "left": -8.4375, - "top": -80.178713, - "right": -7.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 228, - "left": -7.03125, - "top": -80.178713, - "right": -5.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 228, - "left": -5.625, - "top": -80.178713, - "right": -4.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 228, - "left": -4.21875, - "top": -80.178713, - "right": -2.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 228, - "left": -2.8125, - "top": -80.178713, - "right": -1.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 228, - "left": -1.40625, - "top": -80.178713, - "right": 0.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 228, - "left": 0.0, - "top": -80.178713, - "right": 1.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 228, - "left": 1.40625, - "top": -80.178713, - "right": 2.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 228, - "left": 2.8125, - "top": -80.178713, - "right": 4.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 228, - "left": 4.21875, - "top": -80.178713, - "right": 5.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 228, - "left": 5.625, - "top": -80.178713, - "right": 7.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 228, - "left": 7.03125, - "top": -80.178713, - "right": 8.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 228, - "left": 8.4375, - "top": -80.178713, - "right": 9.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 228, - "left": 9.84375, - "top": -80.178713, - "right": 11.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 228, - "left": 11.25, - "top": -80.178713, - "right": 12.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 228, - "left": 12.65625, - "top": -80.178713, - "right": 14.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 228, - "left": 14.0625, - "top": -80.178713, - "right": 15.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 228, - "left": 15.46875, - "top": -80.178713, - "right": 16.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 228, - "left": 16.875, - "top": -80.178713, - "right": 18.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 228, - "left": 18.28125, - "top": -80.178713, - "right": 19.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 228, - "left": 19.6875, - "top": -80.178713, - "right": 21.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 228, - "left": 21.09375, - "top": -80.178713, - "right": 22.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 228, - "left": 22.5, - "top": -80.178713, - "right": 23.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 228, - "left": 23.90625, - "top": -80.178713, - "right": 25.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 228, - "left": 25.3125, - "top": -80.178713, - "right": 26.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 228, - "left": 26.71875, - "top": -80.178713, - "right": 28.125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 228, - "left": 28.125, - "top": -80.178713, - "right": 29.53125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 228, - "left": 29.53125, - "top": -80.178713, - "right": 30.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 228, - "left": 30.9375, - "top": -80.178713, - "right": 32.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 228, - "left": 32.34375, - "top": -80.178713, - "right": 33.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 228, - "left": 33.75, - "top": -80.178713, - "right": 35.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 228, - "left": 35.15625, - "top": -80.178713, - "right": 36.5625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 228, - "left": 36.5625, - "top": -80.178713, - "right": 37.96875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 228, - "left": 37.96875, - "top": -80.178713, - "right": 39.375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 228, - "left": 39.375, - "top": -80.178713, - "right": 40.78125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 228, - "left": 40.78125, - "top": -80.178713, - "right": 42.1875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 228, - "left": 42.1875, - "top": -80.178713, - "right": 43.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 228, - "left": 43.59375, - "top": -80.178713, - "right": 45.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 228, - "left": 45.0, - "top": -80.178713, - "right": 46.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 228, - "left": 46.40625, - "top": -80.178713, - "right": 47.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 228, - "left": 47.8125, - "top": -80.178713, - "right": 49.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 228, - "left": 49.21875, - "top": -80.178713, - "right": 50.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 228, - "left": 50.625, - "top": -80.178713, - "right": 52.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 228, - "left": 52.03125, - "top": -80.178713, - "right": 53.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 228, - "left": 53.4375, - "top": -80.178713, - "right": 54.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 228, - "left": 54.84375, - "top": -80.178713, - "right": 56.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 228, - "left": 56.25, - "top": -80.178713, - "right": 57.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 228, - "left": 57.65625, - "top": -80.178713, - "right": 59.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 228, - "left": 59.0625, - "top": -80.178713, - "right": 60.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 228, - "left": 60.46875, - "top": -80.178713, - "right": 61.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 228, - "left": 61.875, - "top": -80.178713, - "right": 63.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 228, - "left": 63.28125, - "top": -80.178713, - "right": 64.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 228, - "left": 64.6875, - "top": -80.178713, - "right": 66.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 228, - "left": 66.09375, - "top": -80.178713, - "right": 67.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 228, - "left": 67.5, - "top": -80.178713, - "right": 68.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 228, - "left": 68.90625, - "top": -80.178713, - "right": 70.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 228, - "left": 70.3125, - "top": -80.178713, - "right": 71.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 228, - "left": 71.71875, - "top": -80.178713, - "right": 73.125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 228, - "left": 73.125, - "top": -80.178713, - "right": 74.53125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 228, - "left": 74.53125, - "top": -80.178713, - "right": 75.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 228, - "left": 75.9375, - "top": -80.178713, - "right": 77.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 228, - "left": 77.34375, - "top": -80.178713, - "right": 78.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 228, - "left": 78.75, - "top": -80.178713, - "right": 80.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 228, - "left": 80.15625, - "top": -80.178713, - "right": 81.5625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 228, - "left": 81.5625, - "top": -80.178713, - "right": 82.96875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 228, - "left": 82.96875, - "top": -80.178713, - "right": 84.375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 228, - "left": 84.375, - "top": -80.178713, - "right": 85.78125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 228, - "left": 85.78125, - "top": -80.178713, - "right": 87.1875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 228, - "left": 87.1875, - "top": -80.178713, - "right": 88.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 228, - "left": 88.59375, - "top": -80.178713, - "right": 90.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 228, - "left": 90.0, - "top": -80.178713, - "right": 91.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 228, - "left": 91.40625, - "top": -80.178713, - "right": 92.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 228, - "left": 92.8125, - "top": -80.178713, - "right": 94.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 228, - "left": 94.21875, - "top": -80.178713, - "right": 95.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 228, - "left": 95.625, - "top": -80.178713, - "right": 97.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 228, - "left": 97.03125, - "top": -80.178713, - "right": 98.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 228, - "left": 98.4375, - "top": -80.178713, - "right": 99.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 228, - "left": 99.84375, - "top": -80.178713, - "right": 101.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 228, - "left": 101.25, - "top": -80.178713, - "right": 102.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 228, - "left": 102.65625, - "top": -80.178713, - "right": 104.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 228, - "left": 104.0625, - "top": -80.178713, - "right": 105.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 228, - "left": 105.46875, - "top": -80.178713, - "right": 106.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 228, - "left": 106.875, - "top": -80.178713, - "right": 108.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 228, - "left": 108.28125, - "top": -80.178713, - "right": 109.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 228, - "left": 109.6875, - "top": -80.178713, - "right": 111.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 228, - "left": 111.09375, - "top": -80.178713, - "right": 112.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 228, - "left": 112.5, - "top": -80.178713, - "right": 113.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 228, - "left": 113.90625, - "top": -80.178713, - "right": 115.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 228, - "left": 115.3125, - "top": -80.178713, - "right": 116.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 228, - "left": 116.71875, - "top": -80.178713, - "right": 118.125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 228, - "left": 118.125, - "top": -80.178713, - "right": 119.53125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 228, - "left": 119.53125, - "top": -80.178713, - "right": 120.9375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 228, - "left": 120.9375, - "top": -80.178713, - "right": 122.34375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 228, - "left": 122.34375, - "top": -80.178713, - "right": 123.75, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 228, - "left": 123.75, - "top": -80.178713, - "right": 125.15625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 228, - "left": 125.15625, - "top": -80.178713, - "right": 126.5625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 228, - "left": 126.5625, - "top": -80.178713, - "right": 127.96875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 228, - "left": 127.96875, - "top": -80.178713, - "right": 129.375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 228, - "left": 129.375, - "top": -80.178713, - "right": 130.78125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 228, - "left": 130.78125, - "top": -80.178713, - "right": 132.1875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 228, - "left": 132.1875, - "top": -80.178713, - "right": 133.59375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 228, - "left": 133.59375, - "top": -80.178713, - "right": 135.0, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 228, - "left": 135.0, - "top": -80.178713, - "right": 136.40625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 228, - "left": 136.40625, - "top": -80.178713, - "right": 137.8125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 228, - "left": 137.8125, - "top": -80.178713, - "right": 139.21875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 228, - "left": 139.21875, - "top": -80.178713, - "right": 140.625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 228, - "left": 140.625, - "top": -80.178713, - "right": 142.03125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 228, - "left": 142.03125, - "top": -80.178713, - "right": 143.4375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 228, - "left": 143.4375, - "top": -80.178713, - "right": 144.84375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 228, - "left": 144.84375, - "top": -80.178713, - "right": 146.25, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 228, - "left": 146.25, - "top": -80.178713, - "right": 147.65625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 228, - "left": 147.65625, - "top": -80.178713, - "right": 149.0625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 228, - "left": 149.0625, - "top": -80.178713, - "right": 150.46875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 228, - "left": 150.46875, - "top": -80.178713, - "right": 151.875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 228, - "left": 151.875, - "top": -80.178713, - "right": 153.28125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 228, - "left": 153.28125, - "top": -80.178713, - "right": 154.6875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 228, - "left": 154.6875, - "top": -80.178713, - "right": 156.09375, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 228, - "left": 156.09375, - "top": -80.178713, - "right": 157.5, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 228, - "left": 157.5, - "top": -80.178713, - "right": 158.90625, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 228, - "left": 158.90625, - "top": -80.178713, - "right": 160.3125, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 228, - "left": 160.3125, - "top": -80.178713, - "right": 161.71875, - "bottom": -80.415707, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 229, - "left": -147.65625, - "top": -80.415707, - "right": -146.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 229, - "left": -146.25, - "top": -80.415707, - "right": -144.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 229, - "left": -144.84375, - "top": -80.415707, - "right": -143.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 229, - "left": -143.4375, - "top": -80.415707, - "right": -142.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 229, - "left": -142.03125, - "top": -80.415707, - "right": -140.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 229, - "left": -140.625, - "top": -80.415707, - "right": -139.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 229, - "left": -139.21875, - "top": -80.415707, - "right": -137.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 229, - "left": -137.8125, - "top": -80.415707, - "right": -136.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 229, - "left": -136.40625, - "top": -80.415707, - "right": -135.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 229, - "left": -135.0, - "top": -80.415707, - "right": -133.59375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 229, - "left": -133.59375, - "top": -80.415707, - "right": -132.1875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 229, - "left": -132.1875, - "top": -80.415707, - "right": -130.78125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 229, - "left": -130.78125, - "top": -80.415707, - "right": -129.375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 229, - "left": -129.375, - "top": -80.415707, - "right": -127.96875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 229, - "left": -127.96875, - "top": -80.415707, - "right": -126.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 229, - "left": -126.5625, - "top": -80.415707, - "right": -125.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 229, - "left": -125.15625, - "top": -80.415707, - "right": -123.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 229, - "left": -123.75, - "top": -80.415707, - "right": -122.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 229, - "left": -122.34375, - "top": -80.415707, - "right": -120.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 229, - "left": -120.9375, - "top": -80.415707, - "right": -119.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 229, - "left": -119.53125, - "top": -80.415707, - "right": -118.125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 229, - "left": -118.125, - "top": -80.415707, - "right": -116.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 229, - "left": -116.71875, - "top": -80.415707, - "right": -115.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 229, - "left": -115.3125, - "top": -80.415707, - "right": -113.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 229, - "left": -113.90625, - "top": -80.415707, - "right": -112.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 229, - "left": -112.5, - "top": -80.415707, - "right": -111.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 229, - "left": -111.09375, - "top": -80.415707, - "right": -109.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 229, - "left": -109.6875, - "top": -80.415707, - "right": -108.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 229, - "left": -108.28125, - "top": -80.415707, - "right": -106.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 229, - "left": -106.875, - "top": -80.415707, - "right": -105.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 229, - "left": -105.46875, - "top": -80.415707, - "right": -104.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 229, - "left": -104.0625, - "top": -80.415707, - "right": -102.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 229, - "left": -102.65625, - "top": -80.415707, - "right": -101.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 229, - "left": -101.25, - "top": -80.415707, - "right": -99.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 229, - "left": -99.84375, - "top": -80.415707, - "right": -98.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 229, - "left": -98.4375, - "top": -80.415707, - "right": -97.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 229, - "left": -97.03125, - "top": -80.415707, - "right": -95.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 229, - "left": -95.625, - "top": -80.415707, - "right": -94.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 229, - "left": -94.21875, - "top": -80.415707, - "right": -92.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 229, - "left": -92.8125, - "top": -80.415707, - "right": -91.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 229, - "left": -91.40625, - "top": -80.415707, - "right": -90.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 229, - "left": -90.0, - "top": -80.415707, - "right": -88.59375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 229, - "left": -88.59375, - "top": -80.415707, - "right": -87.1875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 229, - "left": -87.1875, - "top": -80.415707, - "right": -85.78125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 229, - "left": -85.78125, - "top": -80.415707, - "right": -84.375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 229, - "left": -84.375, - "top": -80.415707, - "right": -82.96875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 229, - "left": -82.96875, - "top": -80.415707, - "right": -81.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 229, - "left": -81.5625, - "top": -80.415707, - "right": -80.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 229, - "left": -80.15625, - "top": -80.415707, - "right": -78.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 229, - "left": -78.75, - "top": -80.415707, - "right": -77.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 229, - "left": -77.34375, - "top": -80.415707, - "right": -75.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 229, - "left": -75.9375, - "top": -80.415707, - "right": -74.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 229, - "left": -68.90625, - "top": -80.415707, - "right": -67.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 229, - "left": -67.5, - "top": -80.415707, - "right": -66.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 229, - "left": -66.09375, - "top": -80.415707, - "right": -64.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 229, - "left": -64.6875, - "top": -80.415707, - "right": -63.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 229, - "left": -63.28125, - "top": -80.415707, - "right": -61.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 229, - "left": -61.875, - "top": -80.415707, - "right": -60.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 229, - "left": -60.46875, - "top": -80.415707, - "right": -59.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 229, - "left": -59.0625, - "top": -80.415707, - "right": -57.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 229, - "left": -53.4375, - "top": -80.415707, - "right": -52.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 229, - "left": -52.03125, - "top": -80.415707, - "right": -50.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 229, - "left": -50.625, - "top": -80.415707, - "right": -49.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 229, - "left": -49.21875, - "top": -80.415707, - "right": -47.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 229, - "left": -47.8125, - "top": -80.415707, - "right": -46.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 229, - "left": -46.40625, - "top": -80.415707, - "right": -45.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 229, - "left": -37.96875, - "top": -80.415707, - "right": -36.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 229, - "left": -36.5625, - "top": -80.415707, - "right": -35.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 229, - "left": -35.15625, - "top": -80.415707, - "right": -33.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 229, - "left": -33.75, - "top": -80.415707, - "right": -32.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 229, - "left": -32.34375, - "top": -80.415707, - "right": -30.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 229, - "left": -30.9375, - "top": -80.415707, - "right": -29.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 229, - "left": -29.53125, - "top": -80.415707, - "right": -28.125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 229, - "left": -28.125, - "top": -80.415707, - "right": -26.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 229, - "left": -26.71875, - "top": -80.415707, - "right": -25.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 229, - "left": -25.3125, - "top": -80.415707, - "right": -23.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 229, - "left": -23.90625, - "top": -80.415707, - "right": -22.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 229, - "left": -22.5, - "top": -80.415707, - "right": -21.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 229, - "left": -21.09375, - "top": -80.415707, - "right": -19.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 229, - "left": -19.6875, - "top": -80.415707, - "right": -18.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 229, - "left": -18.28125, - "top": -80.415707, - "right": -16.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 229, - "left": -16.875, - "top": -80.415707, - "right": -15.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 229, - "left": -15.46875, - "top": -80.415707, - "right": -14.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 229, - "left": -14.0625, - "top": -80.415707, - "right": -12.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 229, - "left": -12.65625, - "top": -80.415707, - "right": -11.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 229, - "left": -11.25, - "top": -80.415707, - "right": -9.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 229, - "left": -9.84375, - "top": -80.415707, - "right": -8.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 229, - "left": -8.4375, - "top": -80.415707, - "right": -7.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 229, - "left": -7.03125, - "top": -80.415707, - "right": -5.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 229, - "left": -5.625, - "top": -80.415707, - "right": -4.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 229, - "left": -4.21875, - "top": -80.415707, - "right": -2.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 229, - "left": -2.8125, - "top": -80.415707, - "right": -1.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 229, - "left": -1.40625, - "top": -80.415707, - "right": 0.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 229, - "left": 0.0, - "top": -80.415707, - "right": 1.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 229, - "left": 1.40625, - "top": -80.415707, - "right": 2.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 229, - "left": 2.8125, - "top": -80.415707, - "right": 4.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 229, - "left": 4.21875, - "top": -80.415707, - "right": 5.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 229, - "left": 5.625, - "top": -80.415707, - "right": 7.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 229, - "left": 7.03125, - "top": -80.415707, - "right": 8.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 229, - "left": 8.4375, - "top": -80.415707, - "right": 9.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 229, - "left": 9.84375, - "top": -80.415707, - "right": 11.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 229, - "left": 11.25, - "top": -80.415707, - "right": 12.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 229, - "left": 12.65625, - "top": -80.415707, - "right": 14.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 229, - "left": 14.0625, - "top": -80.415707, - "right": 15.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 229, - "left": 15.46875, - "top": -80.415707, - "right": 16.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 229, - "left": 16.875, - "top": -80.415707, - "right": 18.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 229, - "left": 18.28125, - "top": -80.415707, - "right": 19.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 229, - "left": 19.6875, - "top": -80.415707, - "right": 21.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 229, - "left": 21.09375, - "top": -80.415707, - "right": 22.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 229, - "left": 22.5, - "top": -80.415707, - "right": 23.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 229, - "left": 23.90625, - "top": -80.415707, - "right": 25.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 229, - "left": 25.3125, - "top": -80.415707, - "right": 26.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 229, - "left": 26.71875, - "top": -80.415707, - "right": 28.125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 229, - "left": 28.125, - "top": -80.415707, - "right": 29.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 229, - "left": 29.53125, - "top": -80.415707, - "right": 30.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 229, - "left": 30.9375, - "top": -80.415707, - "right": 32.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 229, - "left": 32.34375, - "top": -80.415707, - "right": 33.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 229, - "left": 33.75, - "top": -80.415707, - "right": 35.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 229, - "left": 35.15625, - "top": -80.415707, - "right": 36.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 229, - "left": 36.5625, - "top": -80.415707, - "right": 37.96875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 229, - "left": 37.96875, - "top": -80.415707, - "right": 39.375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 229, - "left": 39.375, - "top": -80.415707, - "right": 40.78125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 229, - "left": 40.78125, - "top": -80.415707, - "right": 42.1875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 229, - "left": 42.1875, - "top": -80.415707, - "right": 43.59375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 229, - "left": 43.59375, - "top": -80.415707, - "right": 45.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 229, - "left": 45.0, - "top": -80.415707, - "right": 46.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 229, - "left": 46.40625, - "top": -80.415707, - "right": 47.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 229, - "left": 47.8125, - "top": -80.415707, - "right": 49.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 229, - "left": 49.21875, - "top": -80.415707, - "right": 50.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 229, - "left": 50.625, - "top": -80.415707, - "right": 52.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 229, - "left": 52.03125, - "top": -80.415707, - "right": 53.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 229, - "left": 53.4375, - "top": -80.415707, - "right": 54.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 229, - "left": 54.84375, - "top": -80.415707, - "right": 56.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 229, - "left": 56.25, - "top": -80.415707, - "right": 57.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 229, - "left": 57.65625, - "top": -80.415707, - "right": 59.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 229, - "left": 59.0625, - "top": -80.415707, - "right": 60.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 229, - "left": 60.46875, - "top": -80.415707, - "right": 61.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 229, - "left": 61.875, - "top": -80.415707, - "right": 63.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 229, - "left": 63.28125, - "top": -80.415707, - "right": 64.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 229, - "left": 64.6875, - "top": -80.415707, - "right": 66.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 229, - "left": 66.09375, - "top": -80.415707, - "right": 67.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 229, - "left": 67.5, - "top": -80.415707, - "right": 68.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 229, - "left": 68.90625, - "top": -80.415707, - "right": 70.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 229, - "left": 70.3125, - "top": -80.415707, - "right": 71.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 229, - "left": 71.71875, - "top": -80.415707, - "right": 73.125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 229, - "left": 73.125, - "top": -80.415707, - "right": 74.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 229, - "left": 74.53125, - "top": -80.415707, - "right": 75.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 229, - "left": 75.9375, - "top": -80.415707, - "right": 77.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 229, - "left": 77.34375, - "top": -80.415707, - "right": 78.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 229, - "left": 78.75, - "top": -80.415707, - "right": 80.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 229, - "left": 80.15625, - "top": -80.415707, - "right": 81.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 229, - "left": 81.5625, - "top": -80.415707, - "right": 82.96875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 229, - "left": 82.96875, - "top": -80.415707, - "right": 84.375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 229, - "left": 84.375, - "top": -80.415707, - "right": 85.78125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 229, - "left": 85.78125, - "top": -80.415707, - "right": 87.1875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 229, - "left": 87.1875, - "top": -80.415707, - "right": 88.59375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 229, - "left": 88.59375, - "top": -80.415707, - "right": 90.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 229, - "left": 90.0, - "top": -80.415707, - "right": 91.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 229, - "left": 91.40625, - "top": -80.415707, - "right": 92.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 229, - "left": 92.8125, - "top": -80.415707, - "right": 94.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 229, - "left": 94.21875, - "top": -80.415707, - "right": 95.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 229, - "left": 95.625, - "top": -80.415707, - "right": 97.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 229, - "left": 97.03125, - "top": -80.415707, - "right": 98.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 229, - "left": 98.4375, - "top": -80.415707, - "right": 99.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 229, - "left": 99.84375, - "top": -80.415707, - "right": 101.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 229, - "left": 101.25, - "top": -80.415707, - "right": 102.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 229, - "left": 102.65625, - "top": -80.415707, - "right": 104.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 229, - "left": 104.0625, - "top": -80.415707, - "right": 105.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 229, - "left": 105.46875, - "top": -80.415707, - "right": 106.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 229, - "left": 106.875, - "top": -80.415707, - "right": 108.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 229, - "left": 108.28125, - "top": -80.415707, - "right": 109.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 229, - "left": 109.6875, - "top": -80.415707, - "right": 111.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 229, - "left": 111.09375, - "top": -80.415707, - "right": 112.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 229, - "left": 112.5, - "top": -80.415707, - "right": 113.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 229, - "left": 113.90625, - "top": -80.415707, - "right": 115.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 229, - "left": 115.3125, - "top": -80.415707, - "right": 116.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 229, - "left": 116.71875, - "top": -80.415707, - "right": 118.125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 229, - "left": 118.125, - "top": -80.415707, - "right": 119.53125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 229, - "left": 119.53125, - "top": -80.415707, - "right": 120.9375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 229, - "left": 120.9375, - "top": -80.415707, - "right": 122.34375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 229, - "left": 122.34375, - "top": -80.415707, - "right": 123.75, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 229, - "left": 123.75, - "top": -80.415707, - "right": 125.15625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 229, - "left": 125.15625, - "top": -80.415707, - "right": 126.5625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 229, - "left": 126.5625, - "top": -80.415707, - "right": 127.96875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 229, - "left": 127.96875, - "top": -80.415707, - "right": 129.375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 229, - "left": 129.375, - "top": -80.415707, - "right": 130.78125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 229, - "left": 130.78125, - "top": -80.415707, - "right": 132.1875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 229, - "left": 132.1875, - "top": -80.415707, - "right": 133.59375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 229, - "left": 133.59375, - "top": -80.415707, - "right": 135.0, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 229, - "left": 135.0, - "top": -80.415707, - "right": 136.40625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 229, - "left": 136.40625, - "top": -80.415707, - "right": 137.8125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 229, - "left": 137.8125, - "top": -80.415707, - "right": 139.21875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 229, - "left": 139.21875, - "top": -80.415707, - "right": 140.625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 229, - "left": 140.625, - "top": -80.415707, - "right": 142.03125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 229, - "left": 142.03125, - "top": -80.415707, - "right": 143.4375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 229, - "left": 143.4375, - "top": -80.415707, - "right": 144.84375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 229, - "left": 144.84375, - "top": -80.415707, - "right": 146.25, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 229, - "left": 146.25, - "top": -80.415707, - "right": 147.65625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 229, - "left": 147.65625, - "top": -80.415707, - "right": 149.0625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 229, - "left": 149.0625, - "top": -80.415707, - "right": 150.46875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 229, - "left": 150.46875, - "top": -80.415707, - "right": 151.875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 229, - "left": 151.875, - "top": -80.415707, - "right": 153.28125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 229, - "left": 153.28125, - "top": -80.415707, - "right": 154.6875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 229, - "left": 154.6875, - "top": -80.415707, - "right": 156.09375, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 229, - "left": 156.09375, - "top": -80.415707, - "right": 157.5, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 229, - "left": 157.5, - "top": -80.415707, - "right": 158.90625, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 229, - "left": 158.90625, - "top": -80.415707, - "right": 160.3125, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 229, - "left": 160.3125, - "top": -80.415707, - "right": 161.71875, - "bottom": -80.647035, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 230, - "left": -147.65625, - "top": -80.647035, - "right": -146.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 230, - "left": -146.25, - "top": -80.647035, - "right": -144.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 230, - "left": -144.84375, - "top": -80.647035, - "right": -143.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 230, - "left": -143.4375, - "top": -80.647035, - "right": -142.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 230, - "left": -142.03125, - "top": -80.647035, - "right": -140.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 230, - "left": -140.625, - "top": -80.647035, - "right": -139.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 230, - "left": -139.21875, - "top": -80.647035, - "right": -137.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 230, - "left": -137.8125, - "top": -80.647035, - "right": -136.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 230, - "left": -136.40625, - "top": -80.647035, - "right": -135.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 230, - "left": -135.0, - "top": -80.647035, - "right": -133.59375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 230, - "left": -133.59375, - "top": -80.647035, - "right": -132.1875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 230, - "left": -132.1875, - "top": -80.647035, - "right": -130.78125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 230, - "left": -130.78125, - "top": -80.647035, - "right": -129.375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 230, - "left": -129.375, - "top": -80.647035, - "right": -127.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 230, - "left": -127.96875, - "top": -80.647035, - "right": -126.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 230, - "left": -126.5625, - "top": -80.647035, - "right": -125.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 230, - "left": -125.15625, - "top": -80.647035, - "right": -123.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 230, - "left": -123.75, - "top": -80.647035, - "right": -122.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 230, - "left": -122.34375, - "top": -80.647035, - "right": -120.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 230, - "left": -120.9375, - "top": -80.647035, - "right": -119.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 230, - "left": -119.53125, - "top": -80.647035, - "right": -118.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 230, - "left": -118.125, - "top": -80.647035, - "right": -116.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 230, - "left": -116.71875, - "top": -80.647035, - "right": -115.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 230, - "left": -115.3125, - "top": -80.647035, - "right": -113.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 230, - "left": -113.90625, - "top": -80.647035, - "right": -112.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 230, - "left": -112.5, - "top": -80.647035, - "right": -111.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 230, - "left": -111.09375, - "top": -80.647035, - "right": -109.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 230, - "left": -109.6875, - "top": -80.647035, - "right": -108.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 230, - "left": -108.28125, - "top": -80.647035, - "right": -106.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 230, - "left": -106.875, - "top": -80.647035, - "right": -105.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 230, - "left": -105.46875, - "top": -80.647035, - "right": -104.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 230, - "left": -104.0625, - "top": -80.647035, - "right": -102.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 230, - "left": -102.65625, - "top": -80.647035, - "right": -101.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 230, - "left": -101.25, - "top": -80.647035, - "right": -99.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 230, - "left": -99.84375, - "top": -80.647035, - "right": -98.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 230, - "left": -98.4375, - "top": -80.647035, - "right": -97.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 230, - "left": -97.03125, - "top": -80.647035, - "right": -95.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 230, - "left": -95.625, - "top": -80.647035, - "right": -94.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 230, - "left": -94.21875, - "top": -80.647035, - "right": -92.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 230, - "left": -92.8125, - "top": -80.647035, - "right": -91.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 230, - "left": -91.40625, - "top": -80.647035, - "right": -90.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 230, - "left": -90.0, - "top": -80.647035, - "right": -88.59375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 230, - "left": -88.59375, - "top": -80.647035, - "right": -87.1875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 230, - "left": -87.1875, - "top": -80.647035, - "right": -85.78125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 230, - "left": -85.78125, - "top": -80.647035, - "right": -84.375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 230, - "left": -84.375, - "top": -80.647035, - "right": -82.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 230, - "left": -82.96875, - "top": -80.647035, - "right": -81.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 230, - "left": -81.5625, - "top": -80.647035, - "right": -80.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 230, - "left": -80.15625, - "top": -80.647035, - "right": -78.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 230, - "left": -78.75, - "top": -80.647035, - "right": -77.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 230, - "left": -77.34375, - "top": -80.647035, - "right": -75.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 230, - "left": -75.9375, - "top": -80.647035, - "right": -74.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 230, - "left": -74.53125, - "top": -80.647035, - "right": -73.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 230, - "left": -73.125, - "top": -80.647035, - "right": -71.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 230, - "left": -71.71875, - "top": -80.647035, - "right": -70.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 230, - "left": -70.3125, - "top": -80.647035, - "right": -68.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 230, - "left": -68.90625, - "top": -80.647035, - "right": -67.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 230, - "left": -67.5, - "top": -80.647035, - "right": -66.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 230, - "left": -66.09375, - "top": -80.647035, - "right": -64.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 230, - "left": -64.6875, - "top": -80.647035, - "right": -63.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 230, - "left": -63.28125, - "top": -80.647035, - "right": -61.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 230, - "left": -61.875, - "top": -80.647035, - "right": -60.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 230, - "left": -60.46875, - "top": -80.647035, - "right": -59.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 230, - "left": -52.03125, - "top": -80.647035, - "right": -50.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 230, - "left": -50.625, - "top": -80.647035, - "right": -49.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 230, - "left": -49.21875, - "top": -80.647035, - "right": -47.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 230, - "left": -47.8125, - "top": -80.647035, - "right": -46.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 230, - "left": -39.375, - "top": -80.647035, - "right": -37.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 230, - "left": -37.96875, - "top": -80.647035, - "right": -36.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 230, - "left": -36.5625, - "top": -80.647035, - "right": -35.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 230, - "left": -35.15625, - "top": -80.647035, - "right": -33.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 230, - "left": -33.75, - "top": -80.647035, - "right": -32.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 230, - "left": -32.34375, - "top": -80.647035, - "right": -30.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 230, - "left": -30.9375, - "top": -80.647035, - "right": -29.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 230, - "left": -29.53125, - "top": -80.647035, - "right": -28.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 230, - "left": -28.125, - "top": -80.647035, - "right": -26.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 230, - "left": -26.71875, - "top": -80.647035, - "right": -25.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 230, - "left": -25.3125, - "top": -80.647035, - "right": -23.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 230, - "left": -23.90625, - "top": -80.647035, - "right": -22.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 230, - "left": -22.5, - "top": -80.647035, - "right": -21.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 230, - "left": -21.09375, - "top": -80.647035, - "right": -19.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 230, - "left": -19.6875, - "top": -80.647035, - "right": -18.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 230, - "left": -18.28125, - "top": -80.647035, - "right": -16.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 230, - "left": -16.875, - "top": -80.647035, - "right": -15.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 230, - "left": -15.46875, - "top": -80.647035, - "right": -14.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 230, - "left": -14.0625, - "top": -80.647035, - "right": -12.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 230, - "left": -12.65625, - "top": -80.647035, - "right": -11.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 230, - "left": -11.25, - "top": -80.647035, - "right": -9.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 230, - "left": -9.84375, - "top": -80.647035, - "right": -8.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 230, - "left": -8.4375, - "top": -80.647035, - "right": -7.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 230, - "left": -7.03125, - "top": -80.647035, - "right": -5.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 230, - "left": -5.625, - "top": -80.647035, - "right": -4.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 230, - "left": -4.21875, - "top": -80.647035, - "right": -2.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 230, - "left": -2.8125, - "top": -80.647035, - "right": -1.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 230, - "left": -1.40625, - "top": -80.647035, - "right": 0.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 230, - "left": 0.0, - "top": -80.647035, - "right": 1.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 230, - "left": 1.40625, - "top": -80.647035, - "right": 2.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 230, - "left": 2.8125, - "top": -80.647035, - "right": 4.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 230, - "left": 4.21875, - "top": -80.647035, - "right": 5.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 230, - "left": 5.625, - "top": -80.647035, - "right": 7.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 230, - "left": 7.03125, - "top": -80.647035, - "right": 8.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 230, - "left": 8.4375, - "top": -80.647035, - "right": 9.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 230, - "left": 9.84375, - "top": -80.647035, - "right": 11.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 230, - "left": 11.25, - "top": -80.647035, - "right": 12.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 230, - "left": 12.65625, - "top": -80.647035, - "right": 14.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 230, - "left": 14.0625, - "top": -80.647035, - "right": 15.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 230, - "left": 15.46875, - "top": -80.647035, - "right": 16.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 230, - "left": 16.875, - "top": -80.647035, - "right": 18.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 230, - "left": 18.28125, - "top": -80.647035, - "right": 19.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 230, - "left": 19.6875, - "top": -80.647035, - "right": 21.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 230, - "left": 21.09375, - "top": -80.647035, - "right": 22.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 230, - "left": 22.5, - "top": -80.647035, - "right": 23.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 230, - "left": 23.90625, - "top": -80.647035, - "right": 25.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 230, - "left": 25.3125, - "top": -80.647035, - "right": 26.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 230, - "left": 26.71875, - "top": -80.647035, - "right": 28.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 230, - "left": 28.125, - "top": -80.647035, - "right": 29.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 230, - "left": 29.53125, - "top": -80.647035, - "right": 30.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 230, - "left": 30.9375, - "top": -80.647035, - "right": 32.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 230, - "left": 32.34375, - "top": -80.647035, - "right": 33.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 230, - "left": 33.75, - "top": -80.647035, - "right": 35.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 230, - "left": 35.15625, - "top": -80.647035, - "right": 36.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 230, - "left": 36.5625, - "top": -80.647035, - "right": 37.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 230, - "left": 37.96875, - "top": -80.647035, - "right": 39.375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 230, - "left": 39.375, - "top": -80.647035, - "right": 40.78125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 230, - "left": 40.78125, - "top": -80.647035, - "right": 42.1875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 230, - "left": 42.1875, - "top": -80.647035, - "right": 43.59375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 230, - "left": 43.59375, - "top": -80.647035, - "right": 45.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 230, - "left": 45.0, - "top": -80.647035, - "right": 46.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 230, - "left": 46.40625, - "top": -80.647035, - "right": 47.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 230, - "left": 47.8125, - "top": -80.647035, - "right": 49.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 230, - "left": 49.21875, - "top": -80.647035, - "right": 50.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 230, - "left": 50.625, - "top": -80.647035, - "right": 52.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 230, - "left": 52.03125, - "top": -80.647035, - "right": 53.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 230, - "left": 53.4375, - "top": -80.647035, - "right": 54.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 230, - "left": 54.84375, - "top": -80.647035, - "right": 56.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 230, - "left": 56.25, - "top": -80.647035, - "right": 57.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 230, - "left": 57.65625, - "top": -80.647035, - "right": 59.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 230, - "left": 59.0625, - "top": -80.647035, - "right": 60.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 230, - "left": 60.46875, - "top": -80.647035, - "right": 61.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 230, - "left": 61.875, - "top": -80.647035, - "right": 63.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 230, - "left": 63.28125, - "top": -80.647035, - "right": 64.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 230, - "left": 64.6875, - "top": -80.647035, - "right": 66.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 230, - "left": 66.09375, - "top": -80.647035, - "right": 67.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 230, - "left": 67.5, - "top": -80.647035, - "right": 68.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 230, - "left": 68.90625, - "top": -80.647035, - "right": 70.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 230, - "left": 70.3125, - "top": -80.647035, - "right": 71.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 230, - "left": 71.71875, - "top": -80.647035, - "right": 73.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 230, - "left": 73.125, - "top": -80.647035, - "right": 74.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 230, - "left": 74.53125, - "top": -80.647035, - "right": 75.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 230, - "left": 75.9375, - "top": -80.647035, - "right": 77.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 230, - "left": 77.34375, - "top": -80.647035, - "right": 78.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 230, - "left": 78.75, - "top": -80.647035, - "right": 80.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 230, - "left": 80.15625, - "top": -80.647035, - "right": 81.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 230, - "left": 81.5625, - "top": -80.647035, - "right": 82.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 230, - "left": 82.96875, - "top": -80.647035, - "right": 84.375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 230, - "left": 84.375, - "top": -80.647035, - "right": 85.78125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 230, - "left": 85.78125, - "top": -80.647035, - "right": 87.1875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 230, - "left": 87.1875, - "top": -80.647035, - "right": 88.59375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 230, - "left": 88.59375, - "top": -80.647035, - "right": 90.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 230, - "left": 90.0, - "top": -80.647035, - "right": 91.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 230, - "left": 91.40625, - "top": -80.647035, - "right": 92.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 230, - "left": 92.8125, - "top": -80.647035, - "right": 94.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 230, - "left": 94.21875, - "top": -80.647035, - "right": 95.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 230, - "left": 95.625, - "top": -80.647035, - "right": 97.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 230, - "left": 97.03125, - "top": -80.647035, - "right": 98.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 230, - "left": 98.4375, - "top": -80.647035, - "right": 99.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 230, - "left": 99.84375, - "top": -80.647035, - "right": 101.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 230, - "left": 101.25, - "top": -80.647035, - "right": 102.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 230, - "left": 102.65625, - "top": -80.647035, - "right": 104.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 230, - "left": 104.0625, - "top": -80.647035, - "right": 105.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 230, - "left": 105.46875, - "top": -80.647035, - "right": 106.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 230, - "left": 106.875, - "top": -80.647035, - "right": 108.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 230, - "left": 108.28125, - "top": -80.647035, - "right": 109.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 230, - "left": 109.6875, - "top": -80.647035, - "right": 111.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 230, - "left": 111.09375, - "top": -80.647035, - "right": 112.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 230, - "left": 112.5, - "top": -80.647035, - "right": 113.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 230, - "left": 113.90625, - "top": -80.647035, - "right": 115.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 230, - "left": 115.3125, - "top": -80.647035, - "right": 116.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 230, - "left": 116.71875, - "top": -80.647035, - "right": 118.125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 230, - "left": 118.125, - "top": -80.647035, - "right": 119.53125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 230, - "left": 119.53125, - "top": -80.647035, - "right": 120.9375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 230, - "left": 120.9375, - "top": -80.647035, - "right": 122.34375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 230, - "left": 122.34375, - "top": -80.647035, - "right": 123.75, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 230, - "left": 123.75, - "top": -80.647035, - "right": 125.15625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 230, - "left": 125.15625, - "top": -80.647035, - "right": 126.5625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 230, - "left": 126.5625, - "top": -80.647035, - "right": 127.96875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 230, - "left": 127.96875, - "top": -80.647035, - "right": 129.375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 230, - "left": 129.375, - "top": -80.647035, - "right": 130.78125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 230, - "left": 130.78125, - "top": -80.647035, - "right": 132.1875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 230, - "left": 132.1875, - "top": -80.647035, - "right": 133.59375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 230, - "left": 133.59375, - "top": -80.647035, - "right": 135.0, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 230, - "left": 135.0, - "top": -80.647035, - "right": 136.40625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 230, - "left": 136.40625, - "top": -80.647035, - "right": 137.8125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 230, - "left": 137.8125, - "top": -80.647035, - "right": 139.21875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 230, - "left": 139.21875, - "top": -80.647035, - "right": 140.625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 230, - "left": 140.625, - "top": -80.647035, - "right": 142.03125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 230, - "left": 142.03125, - "top": -80.647035, - "right": 143.4375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 230, - "left": 143.4375, - "top": -80.647035, - "right": 144.84375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 230, - "left": 144.84375, - "top": -80.647035, - "right": 146.25, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 230, - "left": 146.25, - "top": -80.647035, - "right": 147.65625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 230, - "left": 147.65625, - "top": -80.647035, - "right": 149.0625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 230, - "left": 149.0625, - "top": -80.647035, - "right": 150.46875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 230, - "left": 150.46875, - "top": -80.647035, - "right": 151.875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 230, - "left": 151.875, - "top": -80.647035, - "right": 153.28125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 230, - "left": 153.28125, - "top": -80.647035, - "right": 154.6875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 230, - "left": 154.6875, - "top": -80.647035, - "right": 156.09375, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 230, - "left": 156.09375, - "top": -80.647035, - "right": 157.5, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 230, - "left": 157.5, - "top": -80.647035, - "right": 158.90625, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 230, - "left": 158.90625, - "top": -80.647035, - "right": 160.3125, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 230, - "left": 160.3125, - "top": -80.647035, - "right": 161.71875, - "bottom": -80.872827, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 231, - "left": -153.28125, - "top": -80.872827, - "right": -151.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 231, - "left": -151.875, - "top": -80.872827, - "right": -150.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 231, - "left": -150.46875, - "top": -80.872827, - "right": -149.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 231, - "left": -149.0625, - "top": -80.872827, - "right": -147.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 231, - "left": -147.65625, - "top": -80.872827, - "right": -146.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 231, - "left": -146.25, - "top": -80.872827, - "right": -144.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 231, - "left": -144.84375, - "top": -80.872827, - "right": -143.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 231, - "left": -143.4375, - "top": -80.872827, - "right": -142.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 231, - "left": -142.03125, - "top": -80.872827, - "right": -140.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 231, - "left": -140.625, - "top": -80.872827, - "right": -139.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 231, - "left": -139.21875, - "top": -80.872827, - "right": -137.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 231, - "left": -137.8125, - "top": -80.872827, - "right": -136.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 231, - "left": -136.40625, - "top": -80.872827, - "right": -135.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 231, - "left": -135.0, - "top": -80.872827, - "right": -133.59375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 231, - "left": -133.59375, - "top": -80.872827, - "right": -132.1875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 231, - "left": -132.1875, - "top": -80.872827, - "right": -130.78125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 231, - "left": -130.78125, - "top": -80.872827, - "right": -129.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 231, - "left": -129.375, - "top": -80.872827, - "right": -127.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 231, - "left": -127.96875, - "top": -80.872827, - "right": -126.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 231, - "left": -126.5625, - "top": -80.872827, - "right": -125.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 231, - "left": -125.15625, - "top": -80.872827, - "right": -123.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 231, - "left": -123.75, - "top": -80.872827, - "right": -122.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 231, - "left": -122.34375, - "top": -80.872827, - "right": -120.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 231, - "left": -120.9375, - "top": -80.872827, - "right": -119.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 231, - "left": -119.53125, - "top": -80.872827, - "right": -118.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 231, - "left": -118.125, - "top": -80.872827, - "right": -116.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 231, - "left": -116.71875, - "top": -80.872827, - "right": -115.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 231, - "left": -115.3125, - "top": -80.872827, - "right": -113.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 231, - "left": -113.90625, - "top": -80.872827, - "right": -112.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 231, - "left": -112.5, - "top": -80.872827, - "right": -111.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 231, - "left": -111.09375, - "top": -80.872827, - "right": -109.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 231, - "left": -109.6875, - "top": -80.872827, - "right": -108.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 231, - "left": -108.28125, - "top": -80.872827, - "right": -106.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 231, - "left": -106.875, - "top": -80.872827, - "right": -105.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 231, - "left": -105.46875, - "top": -80.872827, - "right": -104.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 231, - "left": -104.0625, - "top": -80.872827, - "right": -102.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 231, - "left": -102.65625, - "top": -80.872827, - "right": -101.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 231, - "left": -101.25, - "top": -80.872827, - "right": -99.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 231, - "left": -99.84375, - "top": -80.872827, - "right": -98.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 231, - "left": -98.4375, - "top": -80.872827, - "right": -97.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 231, - "left": -97.03125, - "top": -80.872827, - "right": -95.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 231, - "left": -95.625, - "top": -80.872827, - "right": -94.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 231, - "left": -94.21875, - "top": -80.872827, - "right": -92.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 231, - "left": -92.8125, - "top": -80.872827, - "right": -91.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 231, - "left": -91.40625, - "top": -80.872827, - "right": -90.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 231, - "left": -90.0, - "top": -80.872827, - "right": -88.59375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 231, - "left": -88.59375, - "top": -80.872827, - "right": -87.1875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 231, - "left": -87.1875, - "top": -80.872827, - "right": -85.78125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 231, - "left": -85.78125, - "top": -80.872827, - "right": -84.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 231, - "left": -84.375, - "top": -80.872827, - "right": -82.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 231, - "left": -82.96875, - "top": -80.872827, - "right": -81.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 231, - "left": -81.5625, - "top": -80.872827, - "right": -80.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 231, - "left": -80.15625, - "top": -80.872827, - "right": -78.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 231, - "left": -78.75, - "top": -80.872827, - "right": -77.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 231, - "left": -77.34375, - "top": -80.872827, - "right": -75.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 231, - "left": -75.9375, - "top": -80.872827, - "right": -74.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 231, - "left": -74.53125, - "top": -80.872827, - "right": -73.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 231, - "left": -73.125, - "top": -80.872827, - "right": -71.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 231, - "left": -71.71875, - "top": -80.872827, - "right": -70.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 231, - "left": -70.3125, - "top": -80.872827, - "right": -68.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 231, - "left": -68.90625, - "top": -80.872827, - "right": -67.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 231, - "left": -67.5, - "top": -80.872827, - "right": -66.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 231, - "left": -66.09375, - "top": -80.872827, - "right": -64.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 231, - "left": -64.6875, - "top": -80.872827, - "right": -63.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 231, - "left": -63.28125, - "top": -80.872827, - "right": -61.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 231, - "left": -61.875, - "top": -80.872827, - "right": -60.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 231, - "left": -60.46875, - "top": -80.872827, - "right": -59.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 231, - "left": -40.78125, - "top": -80.872827, - "right": -39.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 231, - "left": -39.375, - "top": -80.872827, - "right": -37.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 231, - "left": -37.96875, - "top": -80.872827, - "right": -36.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 231, - "left": -36.5625, - "top": -80.872827, - "right": -35.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 231, - "left": -35.15625, - "top": -80.872827, - "right": -33.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 231, - "left": -33.75, - "top": -80.872827, - "right": -32.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 231, - "left": -32.34375, - "top": -80.872827, - "right": -30.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 231, - "left": -30.9375, - "top": -80.872827, - "right": -29.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 231, - "left": -29.53125, - "top": -80.872827, - "right": -28.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 231, - "left": -28.125, - "top": -80.872827, - "right": -26.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 231, - "left": -26.71875, - "top": -80.872827, - "right": -25.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 231, - "left": -25.3125, - "top": -80.872827, - "right": -23.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 231, - "left": -23.90625, - "top": -80.872827, - "right": -22.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 231, - "left": -22.5, - "top": -80.872827, - "right": -21.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 231, - "left": -21.09375, - "top": -80.872827, - "right": -19.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 231, - "left": -19.6875, - "top": -80.872827, - "right": -18.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 231, - "left": -18.28125, - "top": -80.872827, - "right": -16.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 231, - "left": -16.875, - "top": -80.872827, - "right": -15.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 231, - "left": -15.46875, - "top": -80.872827, - "right": -14.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 231, - "left": -14.0625, - "top": -80.872827, - "right": -12.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 231, - "left": -12.65625, - "top": -80.872827, - "right": -11.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 231, - "left": -11.25, - "top": -80.872827, - "right": -9.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 231, - "left": -9.84375, - "top": -80.872827, - "right": -8.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 231, - "left": -8.4375, - "top": -80.872827, - "right": -7.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 231, - "left": -7.03125, - "top": -80.872827, - "right": -5.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 231, - "left": -5.625, - "top": -80.872827, - "right": -4.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 231, - "left": -4.21875, - "top": -80.872827, - "right": -2.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 231, - "left": -2.8125, - "top": -80.872827, - "right": -1.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 231, - "left": -1.40625, - "top": -80.872827, - "right": 0.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 231, - "left": 0.0, - "top": -80.872827, - "right": 1.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 231, - "left": 1.40625, - "top": -80.872827, - "right": 2.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 231, - "left": 2.8125, - "top": -80.872827, - "right": 4.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 231, - "left": 4.21875, - "top": -80.872827, - "right": 5.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 231, - "left": 5.625, - "top": -80.872827, - "right": 7.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 231, - "left": 7.03125, - "top": -80.872827, - "right": 8.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 231, - "left": 8.4375, - "top": -80.872827, - "right": 9.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 231, - "left": 9.84375, - "top": -80.872827, - "right": 11.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 231, - "left": 11.25, - "top": -80.872827, - "right": 12.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 231, - "left": 12.65625, - "top": -80.872827, - "right": 14.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 231, - "left": 14.0625, - "top": -80.872827, - "right": 15.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 231, - "left": 15.46875, - "top": -80.872827, - "right": 16.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 231, - "left": 16.875, - "top": -80.872827, - "right": 18.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 231, - "left": 18.28125, - "top": -80.872827, - "right": 19.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 231, - "left": 19.6875, - "top": -80.872827, - "right": 21.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 231, - "left": 21.09375, - "top": -80.872827, - "right": 22.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 231, - "left": 22.5, - "top": -80.872827, - "right": 23.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 231, - "left": 23.90625, - "top": -80.872827, - "right": 25.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 231, - "left": 25.3125, - "top": -80.872827, - "right": 26.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 231, - "left": 26.71875, - "top": -80.872827, - "right": 28.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 231, - "left": 28.125, - "top": -80.872827, - "right": 29.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 231, - "left": 29.53125, - "top": -80.872827, - "right": 30.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 231, - "left": 30.9375, - "top": -80.872827, - "right": 32.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 231, - "left": 32.34375, - "top": -80.872827, - "right": 33.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 231, - "left": 33.75, - "top": -80.872827, - "right": 35.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 231, - "left": 35.15625, - "top": -80.872827, - "right": 36.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 231, - "left": 36.5625, - "top": -80.872827, - "right": 37.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 231, - "left": 37.96875, - "top": -80.872827, - "right": 39.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 231, - "left": 39.375, - "top": -80.872827, - "right": 40.78125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 231, - "left": 40.78125, - "top": -80.872827, - "right": 42.1875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 231, - "left": 42.1875, - "top": -80.872827, - "right": 43.59375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 231, - "left": 43.59375, - "top": -80.872827, - "right": 45.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 231, - "left": 45.0, - "top": -80.872827, - "right": 46.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 231, - "left": 46.40625, - "top": -80.872827, - "right": 47.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 231, - "left": 47.8125, - "top": -80.872827, - "right": 49.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 231, - "left": 49.21875, - "top": -80.872827, - "right": 50.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 231, - "left": 50.625, - "top": -80.872827, - "right": 52.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 231, - "left": 52.03125, - "top": -80.872827, - "right": 53.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 231, - "left": 53.4375, - "top": -80.872827, - "right": 54.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 231, - "left": 54.84375, - "top": -80.872827, - "right": 56.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 231, - "left": 56.25, - "top": -80.872827, - "right": 57.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 231, - "left": 57.65625, - "top": -80.872827, - "right": 59.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 231, - "left": 59.0625, - "top": -80.872827, - "right": 60.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 231, - "left": 60.46875, - "top": -80.872827, - "right": 61.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 231, - "left": 61.875, - "top": -80.872827, - "right": 63.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 231, - "left": 63.28125, - "top": -80.872827, - "right": 64.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 231, - "left": 64.6875, - "top": -80.872827, - "right": 66.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 231, - "left": 66.09375, - "top": -80.872827, - "right": 67.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 231, - "left": 67.5, - "top": -80.872827, - "right": 68.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 231, - "left": 68.90625, - "top": -80.872827, - "right": 70.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 231, - "left": 70.3125, - "top": -80.872827, - "right": 71.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 231, - "left": 71.71875, - "top": -80.872827, - "right": 73.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 231, - "left": 73.125, - "top": -80.872827, - "right": 74.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 231, - "left": 74.53125, - "top": -80.872827, - "right": 75.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 231, - "left": 75.9375, - "top": -80.872827, - "right": 77.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 231, - "left": 77.34375, - "top": -80.872827, - "right": 78.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 231, - "left": 78.75, - "top": -80.872827, - "right": 80.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 231, - "left": 80.15625, - "top": -80.872827, - "right": 81.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 231, - "left": 81.5625, - "top": -80.872827, - "right": 82.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 231, - "left": 82.96875, - "top": -80.872827, - "right": 84.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 231, - "left": 84.375, - "top": -80.872827, - "right": 85.78125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 231, - "left": 85.78125, - "top": -80.872827, - "right": 87.1875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 231, - "left": 87.1875, - "top": -80.872827, - "right": 88.59375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 231, - "left": 88.59375, - "top": -80.872827, - "right": 90.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 231, - "left": 90.0, - "top": -80.872827, - "right": 91.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 231, - "left": 91.40625, - "top": -80.872827, - "right": 92.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 231, - "left": 92.8125, - "top": -80.872827, - "right": 94.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 231, - "left": 94.21875, - "top": -80.872827, - "right": 95.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 231, - "left": 95.625, - "top": -80.872827, - "right": 97.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 231, - "left": 97.03125, - "top": -80.872827, - "right": 98.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 231, - "left": 98.4375, - "top": -80.872827, - "right": 99.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 231, - "left": 99.84375, - "top": -80.872827, - "right": 101.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 231, - "left": 101.25, - "top": -80.872827, - "right": 102.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 231, - "left": 102.65625, - "top": -80.872827, - "right": 104.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 231, - "left": 104.0625, - "top": -80.872827, - "right": 105.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 231, - "left": 105.46875, - "top": -80.872827, - "right": 106.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 231, - "left": 106.875, - "top": -80.872827, - "right": 108.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 231, - "left": 108.28125, - "top": -80.872827, - "right": 109.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 231, - "left": 109.6875, - "top": -80.872827, - "right": 111.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 231, - "left": 111.09375, - "top": -80.872827, - "right": 112.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 231, - "left": 112.5, - "top": -80.872827, - "right": 113.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 231, - "left": 113.90625, - "top": -80.872827, - "right": 115.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 231, - "left": 115.3125, - "top": -80.872827, - "right": 116.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 231, - "left": 116.71875, - "top": -80.872827, - "right": 118.125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 231, - "left": 118.125, - "top": -80.872827, - "right": 119.53125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 231, - "left": 119.53125, - "top": -80.872827, - "right": 120.9375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 231, - "left": 120.9375, - "top": -80.872827, - "right": 122.34375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 231, - "left": 122.34375, - "top": -80.872827, - "right": 123.75, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 231, - "left": 123.75, - "top": -80.872827, - "right": 125.15625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 231, - "left": 125.15625, - "top": -80.872827, - "right": 126.5625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 231, - "left": 126.5625, - "top": -80.872827, - "right": 127.96875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 231, - "left": 127.96875, - "top": -80.872827, - "right": 129.375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 231, - "left": 129.375, - "top": -80.872827, - "right": 130.78125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 231, - "left": 130.78125, - "top": -80.872827, - "right": 132.1875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 231, - "left": 132.1875, - "top": -80.872827, - "right": 133.59375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 231, - "left": 133.59375, - "top": -80.872827, - "right": 135.0, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 231, - "left": 135.0, - "top": -80.872827, - "right": 136.40625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 231, - "left": 136.40625, - "top": -80.872827, - "right": 137.8125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 231, - "left": 137.8125, - "top": -80.872827, - "right": 139.21875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 231, - "left": 139.21875, - "top": -80.872827, - "right": 140.625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 231, - "left": 140.625, - "top": -80.872827, - "right": 142.03125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 231, - "left": 142.03125, - "top": -80.872827, - "right": 143.4375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 231, - "left": 143.4375, - "top": -80.872827, - "right": 144.84375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 231, - "left": 144.84375, - "top": -80.872827, - "right": 146.25, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 231, - "left": 146.25, - "top": -80.872827, - "right": 147.65625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 231, - "left": 147.65625, - "top": -80.872827, - "right": 149.0625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 231, - "left": 149.0625, - "top": -80.872827, - "right": 150.46875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 231, - "left": 150.46875, - "top": -80.872827, - "right": 151.875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 231, - "left": 151.875, - "top": -80.872827, - "right": 153.28125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 231, - "left": 153.28125, - "top": -80.872827, - "right": 154.6875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 231, - "left": 154.6875, - "top": -80.872827, - "right": 156.09375, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 231, - "left": 156.09375, - "top": -80.872827, - "right": 157.5, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 231, - "left": 157.5, - "top": -80.872827, - "right": 158.90625, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 231, - "left": 158.90625, - "top": -80.872827, - "right": 160.3125, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 231, - "left": 160.3125, - "top": -80.872827, - "right": 161.71875, - "bottom": -81.093214, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 232, - "left": -154.6875, - "top": -81.093214, - "right": -153.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 232, - "left": -153.28125, - "top": -81.093214, - "right": -151.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 232, - "left": -151.875, - "top": -81.093214, - "right": -150.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 232, - "left": -150.46875, - "top": -81.093214, - "right": -149.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 232, - "left": -149.0625, - "top": -81.093214, - "right": -147.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 232, - "left": -147.65625, - "top": -81.093214, - "right": -146.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 232, - "left": -146.25, - "top": -81.093214, - "right": -144.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 232, - "left": -144.84375, - "top": -81.093214, - "right": -143.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 232, - "left": -143.4375, - "top": -81.093214, - "right": -142.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 232, - "left": -142.03125, - "top": -81.093214, - "right": -140.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 232, - "left": -140.625, - "top": -81.093214, - "right": -139.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 232, - "left": -139.21875, - "top": -81.093214, - "right": -137.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 232, - "left": -137.8125, - "top": -81.093214, - "right": -136.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 232, - "left": -136.40625, - "top": -81.093214, - "right": -135.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 232, - "left": -135.0, - "top": -81.093214, - "right": -133.59375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 232, - "left": -133.59375, - "top": -81.093214, - "right": -132.1875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 232, - "left": -132.1875, - "top": -81.093214, - "right": -130.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 232, - "left": -130.78125, - "top": -81.093214, - "right": -129.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 232, - "left": -129.375, - "top": -81.093214, - "right": -127.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 232, - "left": -127.96875, - "top": -81.093214, - "right": -126.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 232, - "left": -126.5625, - "top": -81.093214, - "right": -125.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 232, - "left": -125.15625, - "top": -81.093214, - "right": -123.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 232, - "left": -123.75, - "top": -81.093214, - "right": -122.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 232, - "left": -122.34375, - "top": -81.093214, - "right": -120.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 232, - "left": -120.9375, - "top": -81.093214, - "right": -119.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 232, - "left": -119.53125, - "top": -81.093214, - "right": -118.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 232, - "left": -118.125, - "top": -81.093214, - "right": -116.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 232, - "left": -116.71875, - "top": -81.093214, - "right": -115.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 232, - "left": -115.3125, - "top": -81.093214, - "right": -113.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 232, - "left": -113.90625, - "top": -81.093214, - "right": -112.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 232, - "left": -112.5, - "top": -81.093214, - "right": -111.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 232, - "left": -111.09375, - "top": -81.093214, - "right": -109.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 232, - "left": -109.6875, - "top": -81.093214, - "right": -108.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 232, - "left": -108.28125, - "top": -81.093214, - "right": -106.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 232, - "left": -106.875, - "top": -81.093214, - "right": -105.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 232, - "left": -105.46875, - "top": -81.093214, - "right": -104.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 232, - "left": -104.0625, - "top": -81.093214, - "right": -102.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 232, - "left": -102.65625, - "top": -81.093214, - "right": -101.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 232, - "left": -101.25, - "top": -81.093214, - "right": -99.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 232, - "left": -99.84375, - "top": -81.093214, - "right": -98.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 232, - "left": -98.4375, - "top": -81.093214, - "right": -97.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 232, - "left": -97.03125, - "top": -81.093214, - "right": -95.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 232, - "left": -95.625, - "top": -81.093214, - "right": -94.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 232, - "left": -94.21875, - "top": -81.093214, - "right": -92.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 232, - "left": -92.8125, - "top": -81.093214, - "right": -91.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 232, - "left": -91.40625, - "top": -81.093214, - "right": -90.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 232, - "left": -90.0, - "top": -81.093214, - "right": -88.59375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 232, - "left": -88.59375, - "top": -81.093214, - "right": -87.1875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 232, - "left": -87.1875, - "top": -81.093214, - "right": -85.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 232, - "left": -85.78125, - "top": -81.093214, - "right": -84.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 232, - "left": -84.375, - "top": -81.093214, - "right": -82.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 232, - "left": -82.96875, - "top": -81.093214, - "right": -81.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 232, - "left": -81.5625, - "top": -81.093214, - "right": -80.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 232, - "left": -80.15625, - "top": -81.093214, - "right": -78.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 232, - "left": -78.75, - "top": -81.093214, - "right": -77.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 232, - "left": -77.34375, - "top": -81.093214, - "right": -75.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 232, - "left": -75.9375, - "top": -81.093214, - "right": -74.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 232, - "left": -74.53125, - "top": -81.093214, - "right": -73.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 232, - "left": -73.125, - "top": -81.093214, - "right": -71.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 232, - "left": -71.71875, - "top": -81.093214, - "right": -70.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 232, - "left": -70.3125, - "top": -81.093214, - "right": -68.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 232, - "left": -68.90625, - "top": -81.093214, - "right": -67.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 232, - "left": -67.5, - "top": -81.093214, - "right": -66.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 232, - "left": -66.09375, - "top": -81.093214, - "right": -64.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 232, - "left": -64.6875, - "top": -81.093214, - "right": -63.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 232, - "left": -63.28125, - "top": -81.093214, - "right": -61.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 232, - "left": -61.875, - "top": -81.093214, - "right": -60.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 232, - "left": -42.1875, - "top": -81.093214, - "right": -40.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 232, - "left": -40.78125, - "top": -81.093214, - "right": -39.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 232, - "left": -39.375, - "top": -81.093214, - "right": -37.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 232, - "left": -37.96875, - "top": -81.093214, - "right": -36.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 232, - "left": -36.5625, - "top": -81.093214, - "right": -35.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 232, - "left": -35.15625, - "top": -81.093214, - "right": -33.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 232, - "left": -33.75, - "top": -81.093214, - "right": -32.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 232, - "left": -32.34375, - "top": -81.093214, - "right": -30.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 232, - "left": -30.9375, - "top": -81.093214, - "right": -29.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 232, - "left": -29.53125, - "top": -81.093214, - "right": -28.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 232, - "left": -28.125, - "top": -81.093214, - "right": -26.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 232, - "left": -26.71875, - "top": -81.093214, - "right": -25.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 232, - "left": -25.3125, - "top": -81.093214, - "right": -23.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 232, - "left": -23.90625, - "top": -81.093214, - "right": -22.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 232, - "left": -22.5, - "top": -81.093214, - "right": -21.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 232, - "left": -21.09375, - "top": -81.093214, - "right": -19.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 232, - "left": -19.6875, - "top": -81.093214, - "right": -18.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 232, - "left": -18.28125, - "top": -81.093214, - "right": -16.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 232, - "left": -16.875, - "top": -81.093214, - "right": -15.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 232, - "left": -15.46875, - "top": -81.093214, - "right": -14.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 232, - "left": -14.0625, - "top": -81.093214, - "right": -12.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 232, - "left": -12.65625, - "top": -81.093214, - "right": -11.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 232, - "left": -11.25, - "top": -81.093214, - "right": -9.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 232, - "left": -9.84375, - "top": -81.093214, - "right": -8.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 232, - "left": -8.4375, - "top": -81.093214, - "right": -7.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 232, - "left": -7.03125, - "top": -81.093214, - "right": -5.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 232, - "left": -5.625, - "top": -81.093214, - "right": -4.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 232, - "left": -4.21875, - "top": -81.093214, - "right": -2.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 232, - "left": -2.8125, - "top": -81.093214, - "right": -1.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 232, - "left": -1.40625, - "top": -81.093214, - "right": 0.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 232, - "left": 0.0, - "top": -81.093214, - "right": 1.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 232, - "left": 1.40625, - "top": -81.093214, - "right": 2.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 232, - "left": 2.8125, - "top": -81.093214, - "right": 4.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 232, - "left": 4.21875, - "top": -81.093214, - "right": 5.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 232, - "left": 5.625, - "top": -81.093214, - "right": 7.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 232, - "left": 7.03125, - "top": -81.093214, - "right": 8.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 232, - "left": 8.4375, - "top": -81.093214, - "right": 9.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 232, - "left": 9.84375, - "top": -81.093214, - "right": 11.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 232, - "left": 11.25, - "top": -81.093214, - "right": 12.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 232, - "left": 12.65625, - "top": -81.093214, - "right": 14.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 232, - "left": 14.0625, - "top": -81.093214, - "right": 15.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 232, - "left": 15.46875, - "top": -81.093214, - "right": 16.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 232, - "left": 16.875, - "top": -81.093214, - "right": 18.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 232, - "left": 18.28125, - "top": -81.093214, - "right": 19.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 232, - "left": 19.6875, - "top": -81.093214, - "right": 21.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 232, - "left": 21.09375, - "top": -81.093214, - "right": 22.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 232, - "left": 22.5, - "top": -81.093214, - "right": 23.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 232, - "left": 23.90625, - "top": -81.093214, - "right": 25.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 232, - "left": 25.3125, - "top": -81.093214, - "right": 26.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 232, - "left": 26.71875, - "top": -81.093214, - "right": 28.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 232, - "left": 28.125, - "top": -81.093214, - "right": 29.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 232, - "left": 29.53125, - "top": -81.093214, - "right": 30.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 232, - "left": 30.9375, - "top": -81.093214, - "right": 32.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 232, - "left": 32.34375, - "top": -81.093214, - "right": 33.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 232, - "left": 33.75, - "top": -81.093214, - "right": 35.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 232, - "left": 35.15625, - "top": -81.093214, - "right": 36.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 232, - "left": 36.5625, - "top": -81.093214, - "right": 37.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 232, - "left": 37.96875, - "top": -81.093214, - "right": 39.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 232, - "left": 39.375, - "top": -81.093214, - "right": 40.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 232, - "left": 40.78125, - "top": -81.093214, - "right": 42.1875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 232, - "left": 42.1875, - "top": -81.093214, - "right": 43.59375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 232, - "left": 43.59375, - "top": -81.093214, - "right": 45.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 232, - "left": 45.0, - "top": -81.093214, - "right": 46.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 232, - "left": 46.40625, - "top": -81.093214, - "right": 47.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 232, - "left": 47.8125, - "top": -81.093214, - "right": 49.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 232, - "left": 49.21875, - "top": -81.093214, - "right": 50.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 232, - "left": 50.625, - "top": -81.093214, - "right": 52.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 232, - "left": 52.03125, - "top": -81.093214, - "right": 53.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 232, - "left": 53.4375, - "top": -81.093214, - "right": 54.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 232, - "left": 54.84375, - "top": -81.093214, - "right": 56.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 232, - "left": 56.25, - "top": -81.093214, - "right": 57.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 232, - "left": 57.65625, - "top": -81.093214, - "right": 59.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 232, - "left": 59.0625, - "top": -81.093214, - "right": 60.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 232, - "left": 60.46875, - "top": -81.093214, - "right": 61.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 232, - "left": 61.875, - "top": -81.093214, - "right": 63.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 232, - "left": 63.28125, - "top": -81.093214, - "right": 64.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 232, - "left": 64.6875, - "top": -81.093214, - "right": 66.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 232, - "left": 66.09375, - "top": -81.093214, - "right": 67.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 232, - "left": 67.5, - "top": -81.093214, - "right": 68.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 232, - "left": 68.90625, - "top": -81.093214, - "right": 70.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 232, - "left": 70.3125, - "top": -81.093214, - "right": 71.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 232, - "left": 71.71875, - "top": -81.093214, - "right": 73.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 232, - "left": 73.125, - "top": -81.093214, - "right": 74.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 232, - "left": 74.53125, - "top": -81.093214, - "right": 75.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 232, - "left": 75.9375, - "top": -81.093214, - "right": 77.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 232, - "left": 77.34375, - "top": -81.093214, - "right": 78.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 232, - "left": 78.75, - "top": -81.093214, - "right": 80.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 232, - "left": 80.15625, - "top": -81.093214, - "right": 81.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 232, - "left": 81.5625, - "top": -81.093214, - "right": 82.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 232, - "left": 82.96875, - "top": -81.093214, - "right": 84.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 232, - "left": 84.375, - "top": -81.093214, - "right": 85.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 232, - "left": 85.78125, - "top": -81.093214, - "right": 87.1875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 232, - "left": 87.1875, - "top": -81.093214, - "right": 88.59375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 232, - "left": 88.59375, - "top": -81.093214, - "right": 90.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 232, - "left": 90.0, - "top": -81.093214, - "right": 91.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 232, - "left": 91.40625, - "top": -81.093214, - "right": 92.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 232, - "left": 92.8125, - "top": -81.093214, - "right": 94.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 232, - "left": 94.21875, - "top": -81.093214, - "right": 95.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 232, - "left": 95.625, - "top": -81.093214, - "right": 97.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 232, - "left": 97.03125, - "top": -81.093214, - "right": 98.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 232, - "left": 98.4375, - "top": -81.093214, - "right": 99.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 232, - "left": 99.84375, - "top": -81.093214, - "right": 101.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 232, - "left": 101.25, - "top": -81.093214, - "right": 102.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 232, - "left": 102.65625, - "top": -81.093214, - "right": 104.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 232, - "left": 104.0625, - "top": -81.093214, - "right": 105.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 232, - "left": 105.46875, - "top": -81.093214, - "right": 106.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 232, - "left": 106.875, - "top": -81.093214, - "right": 108.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 232, - "left": 108.28125, - "top": -81.093214, - "right": 109.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 232, - "left": 109.6875, - "top": -81.093214, - "right": 111.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 232, - "left": 111.09375, - "top": -81.093214, - "right": 112.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 232, - "left": 112.5, - "top": -81.093214, - "right": 113.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 232, - "left": 113.90625, - "top": -81.093214, - "right": 115.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 232, - "left": 115.3125, - "top": -81.093214, - "right": 116.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 232, - "left": 116.71875, - "top": -81.093214, - "right": 118.125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 232, - "left": 118.125, - "top": -81.093214, - "right": 119.53125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 232, - "left": 119.53125, - "top": -81.093214, - "right": 120.9375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 232, - "left": 120.9375, - "top": -81.093214, - "right": 122.34375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 232, - "left": 122.34375, - "top": -81.093214, - "right": 123.75, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 232, - "left": 123.75, - "top": -81.093214, - "right": 125.15625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 232, - "left": 125.15625, - "top": -81.093214, - "right": 126.5625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 232, - "left": 126.5625, - "top": -81.093214, - "right": 127.96875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 232, - "left": 127.96875, - "top": -81.093214, - "right": 129.375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 232, - "left": 129.375, - "top": -81.093214, - "right": 130.78125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 232, - "left": 130.78125, - "top": -81.093214, - "right": 132.1875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 232, - "left": 132.1875, - "top": -81.093214, - "right": 133.59375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 232, - "left": 133.59375, - "top": -81.093214, - "right": 135.0, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 232, - "left": 135.0, - "top": -81.093214, - "right": 136.40625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 232, - "left": 136.40625, - "top": -81.093214, - "right": 137.8125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 232, - "left": 137.8125, - "top": -81.093214, - "right": 139.21875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 232, - "left": 139.21875, - "top": -81.093214, - "right": 140.625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 232, - "left": 140.625, - "top": -81.093214, - "right": 142.03125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 232, - "left": 142.03125, - "top": -81.093214, - "right": 143.4375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 232, - "left": 143.4375, - "top": -81.093214, - "right": 144.84375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 232, - "left": 144.84375, - "top": -81.093214, - "right": 146.25, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 232, - "left": 146.25, - "top": -81.093214, - "right": 147.65625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 232, - "left": 147.65625, - "top": -81.093214, - "right": 149.0625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 232, - "left": 149.0625, - "top": -81.093214, - "right": 150.46875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 232, - "left": 150.46875, - "top": -81.093214, - "right": 151.875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 232, - "left": 151.875, - "top": -81.093214, - "right": 153.28125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 232, - "left": 153.28125, - "top": -81.093214, - "right": 154.6875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 232, - "left": 154.6875, - "top": -81.093214, - "right": 156.09375, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 232, - "left": 156.09375, - "top": -81.093214, - "right": 157.5, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 232, - "left": 157.5, - "top": -81.093214, - "right": 158.90625, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 232, - "left": 158.90625, - "top": -81.093214, - "right": 160.3125, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 232, - "left": 160.3125, - "top": -81.093214, - "right": 161.71875, - "bottom": -81.308321, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 233, - "left": -156.09375, - "top": -81.308321, - "right": -154.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 233, - "left": -154.6875, - "top": -81.308321, - "right": -153.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 233, - "left": -153.28125, - "top": -81.308321, - "right": -151.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 233, - "left": -151.875, - "top": -81.308321, - "right": -150.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 233, - "left": -150.46875, - "top": -81.308321, - "right": -149.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 233, - "left": -149.0625, - "top": -81.308321, - "right": -147.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 233, - "left": -147.65625, - "top": -81.308321, - "right": -146.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 233, - "left": -146.25, - "top": -81.308321, - "right": -144.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 233, - "left": -144.84375, - "top": -81.308321, - "right": -143.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 233, - "left": -143.4375, - "top": -81.308321, - "right": -142.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 233, - "left": -142.03125, - "top": -81.308321, - "right": -140.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 233, - "left": -140.625, - "top": -81.308321, - "right": -139.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 233, - "left": -139.21875, - "top": -81.308321, - "right": -137.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 233, - "left": -137.8125, - "top": -81.308321, - "right": -136.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 233, - "left": -136.40625, - "top": -81.308321, - "right": -135.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 233, - "left": -135.0, - "top": -81.308321, - "right": -133.59375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 233, - "left": -133.59375, - "top": -81.308321, - "right": -132.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 233, - "left": -132.1875, - "top": -81.308321, - "right": -130.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 233, - "left": -130.78125, - "top": -81.308321, - "right": -129.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 233, - "left": -129.375, - "top": -81.308321, - "right": -127.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 233, - "left": -127.96875, - "top": -81.308321, - "right": -126.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 233, - "left": -126.5625, - "top": -81.308321, - "right": -125.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 233, - "left": -125.15625, - "top": -81.308321, - "right": -123.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 233, - "left": -123.75, - "top": -81.308321, - "right": -122.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 233, - "left": -122.34375, - "top": -81.308321, - "right": -120.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 233, - "left": -120.9375, - "top": -81.308321, - "right": -119.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 233, - "left": -119.53125, - "top": -81.308321, - "right": -118.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 233, - "left": -118.125, - "top": -81.308321, - "right": -116.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 233, - "left": -116.71875, - "top": -81.308321, - "right": -115.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 233, - "left": -115.3125, - "top": -81.308321, - "right": -113.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 233, - "left": -113.90625, - "top": -81.308321, - "right": -112.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 233, - "left": -112.5, - "top": -81.308321, - "right": -111.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 233, - "left": -111.09375, - "top": -81.308321, - "right": -109.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 233, - "left": -109.6875, - "top": -81.308321, - "right": -108.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 233, - "left": -108.28125, - "top": -81.308321, - "right": -106.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 233, - "left": -106.875, - "top": -81.308321, - "right": -105.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 233, - "left": -105.46875, - "top": -81.308321, - "right": -104.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 233, - "left": -104.0625, - "top": -81.308321, - "right": -102.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 233, - "left": -102.65625, - "top": -81.308321, - "right": -101.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 233, - "left": -101.25, - "top": -81.308321, - "right": -99.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 233, - "left": -99.84375, - "top": -81.308321, - "right": -98.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 233, - "left": -98.4375, - "top": -81.308321, - "right": -97.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 233, - "left": -97.03125, - "top": -81.308321, - "right": -95.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 233, - "left": -95.625, - "top": -81.308321, - "right": -94.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 233, - "left": -94.21875, - "top": -81.308321, - "right": -92.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 233, - "left": -92.8125, - "top": -81.308321, - "right": -91.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 233, - "left": -91.40625, - "top": -81.308321, - "right": -90.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 233, - "left": -90.0, - "top": -81.308321, - "right": -88.59375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 233, - "left": -88.59375, - "top": -81.308321, - "right": -87.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 233, - "left": -87.1875, - "top": -81.308321, - "right": -85.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 233, - "left": -85.78125, - "top": -81.308321, - "right": -84.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 233, - "left": -84.375, - "top": -81.308321, - "right": -82.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 233, - "left": -82.96875, - "top": -81.308321, - "right": -81.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 233, - "left": -81.5625, - "top": -81.308321, - "right": -80.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 233, - "left": -80.15625, - "top": -81.308321, - "right": -78.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 233, - "left": -78.75, - "top": -81.308321, - "right": -77.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 233, - "left": -77.34375, - "top": -81.308321, - "right": -75.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 233, - "left": -75.9375, - "top": -81.308321, - "right": -74.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 233, - "left": -74.53125, - "top": -81.308321, - "right": -73.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 233, - "left": -73.125, - "top": -81.308321, - "right": -71.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 233, - "left": -71.71875, - "top": -81.308321, - "right": -70.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 233, - "left": -43.59375, - "top": -81.308321, - "right": -42.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 233, - "left": -42.1875, - "top": -81.308321, - "right": -40.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 233, - "left": -40.78125, - "top": -81.308321, - "right": -39.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 233, - "left": -39.375, - "top": -81.308321, - "right": -37.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 233, - "left": -37.96875, - "top": -81.308321, - "right": -36.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 233, - "left": -36.5625, - "top": -81.308321, - "right": -35.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 233, - "left": -35.15625, - "top": -81.308321, - "right": -33.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 233, - "left": -33.75, - "top": -81.308321, - "right": -32.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 233, - "left": -32.34375, - "top": -81.308321, - "right": -30.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 233, - "left": -30.9375, - "top": -81.308321, - "right": -29.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 233, - "left": -29.53125, - "top": -81.308321, - "right": -28.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 233, - "left": -28.125, - "top": -81.308321, - "right": -26.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 233, - "left": -26.71875, - "top": -81.308321, - "right": -25.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 233, - "left": -25.3125, - "top": -81.308321, - "right": -23.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 233, - "left": -23.90625, - "top": -81.308321, - "right": -22.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 233, - "left": -22.5, - "top": -81.308321, - "right": -21.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 233, - "left": -21.09375, - "top": -81.308321, - "right": -19.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 233, - "left": -19.6875, - "top": -81.308321, - "right": -18.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 233, - "left": -18.28125, - "top": -81.308321, - "right": -16.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 233, - "left": -16.875, - "top": -81.308321, - "right": -15.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 233, - "left": -15.46875, - "top": -81.308321, - "right": -14.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 233, - "left": -14.0625, - "top": -81.308321, - "right": -12.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 233, - "left": -12.65625, - "top": -81.308321, - "right": -11.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 233, - "left": -11.25, - "top": -81.308321, - "right": -9.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 233, - "left": -9.84375, - "top": -81.308321, - "right": -8.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 233, - "left": -8.4375, - "top": -81.308321, - "right": -7.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 233, - "left": -7.03125, - "top": -81.308321, - "right": -5.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 233, - "left": -5.625, - "top": -81.308321, - "right": -4.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 233, - "left": -4.21875, - "top": -81.308321, - "right": -2.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 233, - "left": -2.8125, - "top": -81.308321, - "right": -1.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 233, - "left": -1.40625, - "top": -81.308321, - "right": 0.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 233, - "left": 0.0, - "top": -81.308321, - "right": 1.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 233, - "left": 1.40625, - "top": -81.308321, - "right": 2.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 233, - "left": 2.8125, - "top": -81.308321, - "right": 4.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 233, - "left": 4.21875, - "top": -81.308321, - "right": 5.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 233, - "left": 5.625, - "top": -81.308321, - "right": 7.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 233, - "left": 7.03125, - "top": -81.308321, - "right": 8.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 233, - "left": 8.4375, - "top": -81.308321, - "right": 9.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 233, - "left": 9.84375, - "top": -81.308321, - "right": 11.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 233, - "left": 11.25, - "top": -81.308321, - "right": 12.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 233, - "left": 12.65625, - "top": -81.308321, - "right": 14.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 233, - "left": 14.0625, - "top": -81.308321, - "right": 15.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 233, - "left": 15.46875, - "top": -81.308321, - "right": 16.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 233, - "left": 16.875, - "top": -81.308321, - "right": 18.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 233, - "left": 18.28125, - "top": -81.308321, - "right": 19.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 233, - "left": 19.6875, - "top": -81.308321, - "right": 21.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 233, - "left": 21.09375, - "top": -81.308321, - "right": 22.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 233, - "left": 22.5, - "top": -81.308321, - "right": 23.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 233, - "left": 23.90625, - "top": -81.308321, - "right": 25.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 233, - "left": 25.3125, - "top": -81.308321, - "right": 26.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 233, - "left": 26.71875, - "top": -81.308321, - "right": 28.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 233, - "left": 28.125, - "top": -81.308321, - "right": 29.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 233, - "left": 29.53125, - "top": -81.308321, - "right": 30.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 233, - "left": 30.9375, - "top": -81.308321, - "right": 32.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 233, - "left": 32.34375, - "top": -81.308321, - "right": 33.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 233, - "left": 33.75, - "top": -81.308321, - "right": 35.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 233, - "left": 35.15625, - "top": -81.308321, - "right": 36.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 233, - "left": 36.5625, - "top": -81.308321, - "right": 37.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 233, - "left": 37.96875, - "top": -81.308321, - "right": 39.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 233, - "left": 39.375, - "top": -81.308321, - "right": 40.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 233, - "left": 40.78125, - "top": -81.308321, - "right": 42.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 233, - "left": 42.1875, - "top": -81.308321, - "right": 43.59375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 233, - "left": 43.59375, - "top": -81.308321, - "right": 45.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 233, - "left": 45.0, - "top": -81.308321, - "right": 46.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 233, - "left": 46.40625, - "top": -81.308321, - "right": 47.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 233, - "left": 47.8125, - "top": -81.308321, - "right": 49.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 233, - "left": 49.21875, - "top": -81.308321, - "right": 50.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 233, - "left": 50.625, - "top": -81.308321, - "right": 52.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 233, - "left": 52.03125, - "top": -81.308321, - "right": 53.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 233, - "left": 53.4375, - "top": -81.308321, - "right": 54.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 233, - "left": 54.84375, - "top": -81.308321, - "right": 56.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 233, - "left": 56.25, - "top": -81.308321, - "right": 57.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 233, - "left": 57.65625, - "top": -81.308321, - "right": 59.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 233, - "left": 59.0625, - "top": -81.308321, - "right": 60.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 233, - "left": 60.46875, - "top": -81.308321, - "right": 61.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 233, - "left": 61.875, - "top": -81.308321, - "right": 63.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 233, - "left": 63.28125, - "top": -81.308321, - "right": 64.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 233, - "left": 64.6875, - "top": -81.308321, - "right": 66.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 233, - "left": 66.09375, - "top": -81.308321, - "right": 67.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 233, - "left": 67.5, - "top": -81.308321, - "right": 68.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 233, - "left": 68.90625, - "top": -81.308321, - "right": 70.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 233, - "left": 70.3125, - "top": -81.308321, - "right": 71.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 233, - "left": 71.71875, - "top": -81.308321, - "right": 73.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 233, - "left": 73.125, - "top": -81.308321, - "right": 74.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 233, - "left": 74.53125, - "top": -81.308321, - "right": 75.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 233, - "left": 75.9375, - "top": -81.308321, - "right": 77.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 233, - "left": 77.34375, - "top": -81.308321, - "right": 78.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 233, - "left": 78.75, - "top": -81.308321, - "right": 80.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 233, - "left": 80.15625, - "top": -81.308321, - "right": 81.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 233, - "left": 81.5625, - "top": -81.308321, - "right": 82.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 233, - "left": 82.96875, - "top": -81.308321, - "right": 84.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 233, - "left": 84.375, - "top": -81.308321, - "right": 85.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 233, - "left": 85.78125, - "top": -81.308321, - "right": 87.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 233, - "left": 87.1875, - "top": -81.308321, - "right": 88.59375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 233, - "left": 88.59375, - "top": -81.308321, - "right": 90.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 233, - "left": 90.0, - "top": -81.308321, - "right": 91.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 233, - "left": 91.40625, - "top": -81.308321, - "right": 92.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 233, - "left": 92.8125, - "top": -81.308321, - "right": 94.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 233, - "left": 94.21875, - "top": -81.308321, - "right": 95.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 233, - "left": 95.625, - "top": -81.308321, - "right": 97.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 233, - "left": 97.03125, - "top": -81.308321, - "right": 98.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 233, - "left": 98.4375, - "top": -81.308321, - "right": 99.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 233, - "left": 99.84375, - "top": -81.308321, - "right": 101.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 233, - "left": 101.25, - "top": -81.308321, - "right": 102.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 233, - "left": 102.65625, - "top": -81.308321, - "right": 104.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 233, - "left": 104.0625, - "top": -81.308321, - "right": 105.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 233, - "left": 105.46875, - "top": -81.308321, - "right": 106.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 233, - "left": 106.875, - "top": -81.308321, - "right": 108.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 233, - "left": 108.28125, - "top": -81.308321, - "right": 109.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 233, - "left": 109.6875, - "top": -81.308321, - "right": 111.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 233, - "left": 111.09375, - "top": -81.308321, - "right": 112.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 233, - "left": 112.5, - "top": -81.308321, - "right": 113.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 233, - "left": 113.90625, - "top": -81.308321, - "right": 115.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 233, - "left": 115.3125, - "top": -81.308321, - "right": 116.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 233, - "left": 116.71875, - "top": -81.308321, - "right": 118.125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 233, - "left": 118.125, - "top": -81.308321, - "right": 119.53125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 233, - "left": 119.53125, - "top": -81.308321, - "right": 120.9375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 233, - "left": 120.9375, - "top": -81.308321, - "right": 122.34375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 233, - "left": 122.34375, - "top": -81.308321, - "right": 123.75, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 233, - "left": 123.75, - "top": -81.308321, - "right": 125.15625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 233, - "left": 125.15625, - "top": -81.308321, - "right": 126.5625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 233, - "left": 126.5625, - "top": -81.308321, - "right": 127.96875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 233, - "left": 127.96875, - "top": -81.308321, - "right": 129.375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 233, - "left": 129.375, - "top": -81.308321, - "right": 130.78125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 233, - "left": 130.78125, - "top": -81.308321, - "right": 132.1875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 233, - "left": 132.1875, - "top": -81.308321, - "right": 133.59375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 233, - "left": 133.59375, - "top": -81.308321, - "right": 135.0, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 233, - "left": 135.0, - "top": -81.308321, - "right": 136.40625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 233, - "left": 136.40625, - "top": -81.308321, - "right": 137.8125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 233, - "left": 137.8125, - "top": -81.308321, - "right": 139.21875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 233, - "left": 139.21875, - "top": -81.308321, - "right": 140.625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 233, - "left": 140.625, - "top": -81.308321, - "right": 142.03125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 233, - "left": 142.03125, - "top": -81.308321, - "right": 143.4375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 233, - "left": 143.4375, - "top": -81.308321, - "right": 144.84375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 233, - "left": 144.84375, - "top": -81.308321, - "right": 146.25, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 233, - "left": 146.25, - "top": -81.308321, - "right": 147.65625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 233, - "left": 147.65625, - "top": -81.308321, - "right": 149.0625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 233, - "left": 149.0625, - "top": -81.308321, - "right": 150.46875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 233, - "left": 150.46875, - "top": -81.308321, - "right": 151.875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 233, - "left": 151.875, - "top": -81.308321, - "right": 153.28125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 233, - "left": 153.28125, - "top": -81.308321, - "right": 154.6875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 233, - "left": 154.6875, - "top": -81.308321, - "right": 156.09375, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 233, - "left": 156.09375, - "top": -81.308321, - "right": 157.5, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 233, - "left": 157.5, - "top": -81.308321, - "right": 158.90625, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 233, - "left": 158.90625, - "top": -81.308321, - "right": 160.3125, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 233, - "left": 160.3125, - "top": -81.308321, - "right": 161.71875, - "bottom": -81.518272, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 234, - "left": -156.09375, - "top": -81.518272, - "right": -154.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 234, - "left": -154.6875, - "top": -81.518272, - "right": -153.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 234, - "left": -153.28125, - "top": -81.518272, - "right": -151.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 234, - "left": -151.875, - "top": -81.518272, - "right": -150.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 234, - "left": -150.46875, - "top": -81.518272, - "right": -149.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 234, - "left": -149.0625, - "top": -81.518272, - "right": -147.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 234, - "left": -147.65625, - "top": -81.518272, - "right": -146.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 234, - "left": -146.25, - "top": -81.518272, - "right": -144.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 234, - "left": -144.84375, - "top": -81.518272, - "right": -143.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 234, - "left": -143.4375, - "top": -81.518272, - "right": -142.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 234, - "left": -142.03125, - "top": -81.518272, - "right": -140.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 234, - "left": -140.625, - "top": -81.518272, - "right": -139.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 234, - "left": -139.21875, - "top": -81.518272, - "right": -137.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 234, - "left": -137.8125, - "top": -81.518272, - "right": -136.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 234, - "left": -136.40625, - "top": -81.518272, - "right": -135.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 234, - "left": -135.0, - "top": -81.518272, - "right": -133.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 234, - "left": -133.59375, - "top": -81.518272, - "right": -132.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 234, - "left": -132.1875, - "top": -81.518272, - "right": -130.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 234, - "left": -130.78125, - "top": -81.518272, - "right": -129.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 234, - "left": -129.375, - "top": -81.518272, - "right": -127.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 234, - "left": -127.96875, - "top": -81.518272, - "right": -126.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 234, - "left": -126.5625, - "top": -81.518272, - "right": -125.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 234, - "left": -125.15625, - "top": -81.518272, - "right": -123.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 234, - "left": -123.75, - "top": -81.518272, - "right": -122.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 234, - "left": -122.34375, - "top": -81.518272, - "right": -120.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 234, - "left": -120.9375, - "top": -81.518272, - "right": -119.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 234, - "left": -119.53125, - "top": -81.518272, - "right": -118.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 234, - "left": -118.125, - "top": -81.518272, - "right": -116.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 234, - "left": -116.71875, - "top": -81.518272, - "right": -115.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 234, - "left": -115.3125, - "top": -81.518272, - "right": -113.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 234, - "left": -113.90625, - "top": -81.518272, - "right": -112.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 234, - "left": -112.5, - "top": -81.518272, - "right": -111.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 234, - "left": -111.09375, - "top": -81.518272, - "right": -109.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 234, - "left": -109.6875, - "top": -81.518272, - "right": -108.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 234, - "left": -108.28125, - "top": -81.518272, - "right": -106.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 234, - "left": -106.875, - "top": -81.518272, - "right": -105.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 234, - "left": -105.46875, - "top": -81.518272, - "right": -104.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 234, - "left": -104.0625, - "top": -81.518272, - "right": -102.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 234, - "left": -102.65625, - "top": -81.518272, - "right": -101.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 234, - "left": -101.25, - "top": -81.518272, - "right": -99.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 234, - "left": -99.84375, - "top": -81.518272, - "right": -98.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 234, - "left": -98.4375, - "top": -81.518272, - "right": -97.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 234, - "left": -97.03125, - "top": -81.518272, - "right": -95.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 234, - "left": -95.625, - "top": -81.518272, - "right": -94.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 234, - "left": -94.21875, - "top": -81.518272, - "right": -92.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 234, - "left": -92.8125, - "top": -81.518272, - "right": -91.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 234, - "left": -91.40625, - "top": -81.518272, - "right": -90.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 234, - "left": -90.0, - "top": -81.518272, - "right": -88.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 234, - "left": -88.59375, - "top": -81.518272, - "right": -87.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 234, - "left": -87.1875, - "top": -81.518272, - "right": -85.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 234, - "left": -85.78125, - "top": -81.518272, - "right": -84.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 234, - "left": -84.375, - "top": -81.518272, - "right": -82.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 234, - "left": -82.96875, - "top": -81.518272, - "right": -81.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 234, - "left": -81.5625, - "top": -81.518272, - "right": -80.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 234, - "left": -80.15625, - "top": -81.518272, - "right": -78.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 234, - "left": -78.75, - "top": -81.518272, - "right": -77.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 234, - "left": -77.34375, - "top": -81.518272, - "right": -75.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 234, - "left": -75.9375, - "top": -81.518272, - "right": -74.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 234, - "left": -74.53125, - "top": -81.518272, - "right": -73.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 234, - "left": -73.125, - "top": -81.518272, - "right": -71.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 234, - "left": -47.8125, - "top": -81.518272, - "right": -46.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 234, - "left": -46.40625, - "top": -81.518272, - "right": -45.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 234, - "left": -45.0, - "top": -81.518272, - "right": -43.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 234, - "left": -43.59375, - "top": -81.518272, - "right": -42.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 234, - "left": -42.1875, - "top": -81.518272, - "right": -40.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 234, - "left": -40.78125, - "top": -81.518272, - "right": -39.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 234, - "left": -39.375, - "top": -81.518272, - "right": -37.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 234, - "left": -37.96875, - "top": -81.518272, - "right": -36.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 234, - "left": -36.5625, - "top": -81.518272, - "right": -35.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 234, - "left": -35.15625, - "top": -81.518272, - "right": -33.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 234, - "left": -33.75, - "top": -81.518272, - "right": -32.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 234, - "left": -32.34375, - "top": -81.518272, - "right": -30.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 234, - "left": -30.9375, - "top": -81.518272, - "right": -29.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 234, - "left": -29.53125, - "top": -81.518272, - "right": -28.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 234, - "left": -28.125, - "top": -81.518272, - "right": -26.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 234, - "left": -26.71875, - "top": -81.518272, - "right": -25.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 234, - "left": -25.3125, - "top": -81.518272, - "right": -23.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 234, - "left": -23.90625, - "top": -81.518272, - "right": -22.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 234, - "left": -22.5, - "top": -81.518272, - "right": -21.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 234, - "left": -21.09375, - "top": -81.518272, - "right": -19.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 234, - "left": -19.6875, - "top": -81.518272, - "right": -18.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 234, - "left": -18.28125, - "top": -81.518272, - "right": -16.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 234, - "left": -16.875, - "top": -81.518272, - "right": -15.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 234, - "left": -15.46875, - "top": -81.518272, - "right": -14.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 234, - "left": -14.0625, - "top": -81.518272, - "right": -12.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 234, - "left": -12.65625, - "top": -81.518272, - "right": -11.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 234, - "left": -11.25, - "top": -81.518272, - "right": -9.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 234, - "left": -9.84375, - "top": -81.518272, - "right": -8.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 234, - "left": -8.4375, - "top": -81.518272, - "right": -7.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 234, - "left": -7.03125, - "top": -81.518272, - "right": -5.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 234, - "left": -5.625, - "top": -81.518272, - "right": -4.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 234, - "left": -4.21875, - "top": -81.518272, - "right": -2.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 234, - "left": -2.8125, - "top": -81.518272, - "right": -1.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 234, - "left": -1.40625, - "top": -81.518272, - "right": 0.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 234, - "left": 0.0, - "top": -81.518272, - "right": 1.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 234, - "left": 1.40625, - "top": -81.518272, - "right": 2.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 234, - "left": 2.8125, - "top": -81.518272, - "right": 4.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 234, - "left": 4.21875, - "top": -81.518272, - "right": 5.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 234, - "left": 5.625, - "top": -81.518272, - "right": 7.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 234, - "left": 7.03125, - "top": -81.518272, - "right": 8.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 234, - "left": 8.4375, - "top": -81.518272, - "right": 9.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 234, - "left": 9.84375, - "top": -81.518272, - "right": 11.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 234, - "left": 11.25, - "top": -81.518272, - "right": 12.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 234, - "left": 12.65625, - "top": -81.518272, - "right": 14.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 234, - "left": 14.0625, - "top": -81.518272, - "right": 15.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 234, - "left": 15.46875, - "top": -81.518272, - "right": 16.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 234, - "left": 16.875, - "top": -81.518272, - "right": 18.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 234, - "left": 18.28125, - "top": -81.518272, - "right": 19.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 234, - "left": 19.6875, - "top": -81.518272, - "right": 21.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 234, - "left": 21.09375, - "top": -81.518272, - "right": 22.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 234, - "left": 22.5, - "top": -81.518272, - "right": 23.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 234, - "left": 23.90625, - "top": -81.518272, - "right": 25.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 234, - "left": 25.3125, - "top": -81.518272, - "right": 26.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 234, - "left": 26.71875, - "top": -81.518272, - "right": 28.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 234, - "left": 28.125, - "top": -81.518272, - "right": 29.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 234, - "left": 29.53125, - "top": -81.518272, - "right": 30.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 234, - "left": 30.9375, - "top": -81.518272, - "right": 32.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 234, - "left": 32.34375, - "top": -81.518272, - "right": 33.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 234, - "left": 33.75, - "top": -81.518272, - "right": 35.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 234, - "left": 35.15625, - "top": -81.518272, - "right": 36.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 234, - "left": 36.5625, - "top": -81.518272, - "right": 37.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 234, - "left": 37.96875, - "top": -81.518272, - "right": 39.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 234, - "left": 39.375, - "top": -81.518272, - "right": 40.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 234, - "left": 40.78125, - "top": -81.518272, - "right": 42.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 234, - "left": 42.1875, - "top": -81.518272, - "right": 43.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 234, - "left": 43.59375, - "top": -81.518272, - "right": 45.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 234, - "left": 45.0, - "top": -81.518272, - "right": 46.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 234, - "left": 46.40625, - "top": -81.518272, - "right": 47.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 234, - "left": 47.8125, - "top": -81.518272, - "right": 49.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 234, - "left": 49.21875, - "top": -81.518272, - "right": 50.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 234, - "left": 50.625, - "top": -81.518272, - "right": 52.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 234, - "left": 52.03125, - "top": -81.518272, - "right": 53.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 234, - "left": 53.4375, - "top": -81.518272, - "right": 54.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 234, - "left": 54.84375, - "top": -81.518272, - "right": 56.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 234, - "left": 56.25, - "top": -81.518272, - "right": 57.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 234, - "left": 57.65625, - "top": -81.518272, - "right": 59.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 234, - "left": 59.0625, - "top": -81.518272, - "right": 60.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 234, - "left": 60.46875, - "top": -81.518272, - "right": 61.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 234, - "left": 61.875, - "top": -81.518272, - "right": 63.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 234, - "left": 63.28125, - "top": -81.518272, - "right": 64.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 234, - "left": 64.6875, - "top": -81.518272, - "right": 66.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 234, - "left": 66.09375, - "top": -81.518272, - "right": 67.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 234, - "left": 67.5, - "top": -81.518272, - "right": 68.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 234, - "left": 68.90625, - "top": -81.518272, - "right": 70.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 234, - "left": 70.3125, - "top": -81.518272, - "right": 71.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 234, - "left": 71.71875, - "top": -81.518272, - "right": 73.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 234, - "left": 73.125, - "top": -81.518272, - "right": 74.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 234, - "left": 74.53125, - "top": -81.518272, - "right": 75.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 234, - "left": 75.9375, - "top": -81.518272, - "right": 77.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 234, - "left": 77.34375, - "top": -81.518272, - "right": 78.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 234, - "left": 78.75, - "top": -81.518272, - "right": 80.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 234, - "left": 80.15625, - "top": -81.518272, - "right": 81.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 234, - "left": 81.5625, - "top": -81.518272, - "right": 82.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 234, - "left": 82.96875, - "top": -81.518272, - "right": 84.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 234, - "left": 84.375, - "top": -81.518272, - "right": 85.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 234, - "left": 85.78125, - "top": -81.518272, - "right": 87.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 234, - "left": 87.1875, - "top": -81.518272, - "right": 88.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 234, - "left": 88.59375, - "top": -81.518272, - "right": 90.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 234, - "left": 90.0, - "top": -81.518272, - "right": 91.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 234, - "left": 91.40625, - "top": -81.518272, - "right": 92.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 234, - "left": 92.8125, - "top": -81.518272, - "right": 94.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 234, - "left": 94.21875, - "top": -81.518272, - "right": 95.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 234, - "left": 95.625, - "top": -81.518272, - "right": 97.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 234, - "left": 97.03125, - "top": -81.518272, - "right": 98.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 234, - "left": 98.4375, - "top": -81.518272, - "right": 99.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 234, - "left": 99.84375, - "top": -81.518272, - "right": 101.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 234, - "left": 101.25, - "top": -81.518272, - "right": 102.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 234, - "left": 102.65625, - "top": -81.518272, - "right": 104.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 234, - "left": 104.0625, - "top": -81.518272, - "right": 105.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 234, - "left": 105.46875, - "top": -81.518272, - "right": 106.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 234, - "left": 106.875, - "top": -81.518272, - "right": 108.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 234, - "left": 108.28125, - "top": -81.518272, - "right": 109.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 234, - "left": 109.6875, - "top": -81.518272, - "right": 111.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 234, - "left": 111.09375, - "top": -81.518272, - "right": 112.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 234, - "left": 112.5, - "top": -81.518272, - "right": 113.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 234, - "left": 113.90625, - "top": -81.518272, - "right": 115.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 234, - "left": 115.3125, - "top": -81.518272, - "right": 116.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 234, - "left": 116.71875, - "top": -81.518272, - "right": 118.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 234, - "left": 118.125, - "top": -81.518272, - "right": 119.53125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 234, - "left": 119.53125, - "top": -81.518272, - "right": 120.9375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 234, - "left": 120.9375, - "top": -81.518272, - "right": 122.34375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 234, - "left": 122.34375, - "top": -81.518272, - "right": 123.75, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 234, - "left": 123.75, - "top": -81.518272, - "right": 125.15625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 234, - "left": 125.15625, - "top": -81.518272, - "right": 126.5625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 234, - "left": 126.5625, - "top": -81.518272, - "right": 127.96875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 234, - "left": 127.96875, - "top": -81.518272, - "right": 129.375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 234, - "left": 129.375, - "top": -81.518272, - "right": 130.78125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 234, - "left": 130.78125, - "top": -81.518272, - "right": 132.1875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 234, - "left": 132.1875, - "top": -81.518272, - "right": 133.59375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 234, - "left": 133.59375, - "top": -81.518272, - "right": 135.0, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 234, - "left": 135.0, - "top": -81.518272, - "right": 136.40625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 234, - "left": 136.40625, - "top": -81.518272, - "right": 137.8125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 234, - "left": 137.8125, - "top": -81.518272, - "right": 139.21875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 234, - "left": 139.21875, - "top": -81.518272, - "right": 140.625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 234, - "left": 140.625, - "top": -81.518272, - "right": 142.03125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 234, - "left": 142.03125, - "top": -81.518272, - "right": 143.4375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 234, - "left": 143.4375, - "top": -81.518272, - "right": 144.84375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 234, - "left": 144.84375, - "top": -81.518272, - "right": 146.25, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 234, - "left": 146.25, - "top": -81.518272, - "right": 147.65625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 234, - "left": 147.65625, - "top": -81.518272, - "right": 149.0625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 234, - "left": 149.0625, - "top": -81.518272, - "right": 150.46875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 234, - "left": 150.46875, - "top": -81.518272, - "right": 151.875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 234, - "left": 151.875, - "top": -81.518272, - "right": 153.28125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 234, - "left": 153.28125, - "top": -81.518272, - "right": 154.6875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 234, - "left": 154.6875, - "top": -81.518272, - "right": 156.09375, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 234, - "left": 156.09375, - "top": -81.518272, - "right": 157.5, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 234, - "left": 157.5, - "top": -81.518272, - "right": 158.90625, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 234, - "left": 158.90625, - "top": -81.518272, - "right": 160.3125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 234, - "left": 160.3125, - "top": -81.518272, - "right": 161.71875, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 234, - "left": 161.71875, - "top": -81.518272, - "right": 163.125, - "bottom": -81.723188, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 235, - "left": -156.09375, - "top": -81.723188, - "right": -154.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 235, - "left": -154.6875, - "top": -81.723188, - "right": -153.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 235, - "left": -153.28125, - "top": -81.723188, - "right": -151.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 235, - "left": -151.875, - "top": -81.723188, - "right": -150.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 235, - "left": -150.46875, - "top": -81.723188, - "right": -149.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 235, - "left": -149.0625, - "top": -81.723188, - "right": -147.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 235, - "left": -147.65625, - "top": -81.723188, - "right": -146.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 235, - "left": -146.25, - "top": -81.723188, - "right": -144.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 235, - "left": -144.84375, - "top": -81.723188, - "right": -143.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 235, - "left": -143.4375, - "top": -81.723188, - "right": -142.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 235, - "left": -142.03125, - "top": -81.723188, - "right": -140.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 235, - "left": -140.625, - "top": -81.723188, - "right": -139.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 235, - "left": -139.21875, - "top": -81.723188, - "right": -137.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 235, - "left": -137.8125, - "top": -81.723188, - "right": -136.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 235, - "left": -136.40625, - "top": -81.723188, - "right": -135.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 235, - "left": -135.0, - "top": -81.723188, - "right": -133.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 235, - "left": -133.59375, - "top": -81.723188, - "right": -132.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 235, - "left": -132.1875, - "top": -81.723188, - "right": -130.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 235, - "left": -130.78125, - "top": -81.723188, - "right": -129.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 235, - "left": -129.375, - "top": -81.723188, - "right": -127.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 235, - "left": -127.96875, - "top": -81.723188, - "right": -126.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 235, - "left": -126.5625, - "top": -81.723188, - "right": -125.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 235, - "left": -125.15625, - "top": -81.723188, - "right": -123.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 235, - "left": -123.75, - "top": -81.723188, - "right": -122.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 235, - "left": -122.34375, - "top": -81.723188, - "right": -120.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 235, - "left": -120.9375, - "top": -81.723188, - "right": -119.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 235, - "left": -119.53125, - "top": -81.723188, - "right": -118.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 235, - "left": -118.125, - "top": -81.723188, - "right": -116.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 235, - "left": -116.71875, - "top": -81.723188, - "right": -115.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 235, - "left": -115.3125, - "top": -81.723188, - "right": -113.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 235, - "left": -113.90625, - "top": -81.723188, - "right": -112.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 235, - "left": -112.5, - "top": -81.723188, - "right": -111.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 235, - "left": -111.09375, - "top": -81.723188, - "right": -109.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 235, - "left": -109.6875, - "top": -81.723188, - "right": -108.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 235, - "left": -108.28125, - "top": -81.723188, - "right": -106.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 235, - "left": -106.875, - "top": -81.723188, - "right": -105.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 235, - "left": -105.46875, - "top": -81.723188, - "right": -104.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 235, - "left": -104.0625, - "top": -81.723188, - "right": -102.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 235, - "left": -102.65625, - "top": -81.723188, - "right": -101.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 235, - "left": -101.25, - "top": -81.723188, - "right": -99.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 235, - "left": -99.84375, - "top": -81.723188, - "right": -98.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 235, - "left": -98.4375, - "top": -81.723188, - "right": -97.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 235, - "left": -97.03125, - "top": -81.723188, - "right": -95.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 235, - "left": -95.625, - "top": -81.723188, - "right": -94.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 235, - "left": -94.21875, - "top": -81.723188, - "right": -92.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 235, - "left": -92.8125, - "top": -81.723188, - "right": -91.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 235, - "left": -91.40625, - "top": -81.723188, - "right": -90.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 235, - "left": -90.0, - "top": -81.723188, - "right": -88.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 235, - "left": -88.59375, - "top": -81.723188, - "right": -87.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 235, - "left": -87.1875, - "top": -81.723188, - "right": -85.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 235, - "left": -85.78125, - "top": -81.723188, - "right": -84.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 235, - "left": -84.375, - "top": -81.723188, - "right": -82.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 235, - "left": -82.96875, - "top": -81.723188, - "right": -81.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 235, - "left": -81.5625, - "top": -81.723188, - "right": -80.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 235, - "left": -80.15625, - "top": -81.723188, - "right": -78.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 235, - "left": -78.75, - "top": -81.723188, - "right": -77.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 235, - "left": -77.34375, - "top": -81.723188, - "right": -75.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 235, - "left": -75.9375, - "top": -81.723188, - "right": -74.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 235, - "left": -74.53125, - "top": -81.723188, - "right": -73.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 235, - "left": -73.125, - "top": -81.723188, - "right": -71.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 235, - "left": -71.71875, - "top": -81.723188, - "right": -70.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 235, - "left": -53.4375, - "top": -81.723188, - "right": -52.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 235, - "left": -52.03125, - "top": -81.723188, - "right": -50.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 235, - "left": -50.625, - "top": -81.723188, - "right": -49.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 235, - "left": -49.21875, - "top": -81.723188, - "right": -47.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 235, - "left": -47.8125, - "top": -81.723188, - "right": -46.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 235, - "left": -46.40625, - "top": -81.723188, - "right": -45.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 235, - "left": -45.0, - "top": -81.723188, - "right": -43.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 235, - "left": -43.59375, - "top": -81.723188, - "right": -42.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 235, - "left": -42.1875, - "top": -81.723188, - "right": -40.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 235, - "left": -40.78125, - "top": -81.723188, - "right": -39.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 235, - "left": -39.375, - "top": -81.723188, - "right": -37.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 235, - "left": -37.96875, - "top": -81.723188, - "right": -36.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 235, - "left": -36.5625, - "top": -81.723188, - "right": -35.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 235, - "left": -35.15625, - "top": -81.723188, - "right": -33.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 235, - "left": -33.75, - "top": -81.723188, - "right": -32.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 235, - "left": -32.34375, - "top": -81.723188, - "right": -30.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 235, - "left": -30.9375, - "top": -81.723188, - "right": -29.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 235, - "left": -29.53125, - "top": -81.723188, - "right": -28.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 235, - "left": -28.125, - "top": -81.723188, - "right": -26.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 235, - "left": -26.71875, - "top": -81.723188, - "right": -25.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 235, - "left": -25.3125, - "top": -81.723188, - "right": -23.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 235, - "left": -23.90625, - "top": -81.723188, - "right": -22.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 235, - "left": -22.5, - "top": -81.723188, - "right": -21.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 235, - "left": -21.09375, - "top": -81.723188, - "right": -19.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 235, - "left": -19.6875, - "top": -81.723188, - "right": -18.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 235, - "left": -18.28125, - "top": -81.723188, - "right": -16.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 235, - "left": -16.875, - "top": -81.723188, - "right": -15.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 235, - "left": -15.46875, - "top": -81.723188, - "right": -14.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 235, - "left": -14.0625, - "top": -81.723188, - "right": -12.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 235, - "left": -12.65625, - "top": -81.723188, - "right": -11.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 235, - "left": -11.25, - "top": -81.723188, - "right": -9.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 235, - "left": -9.84375, - "top": -81.723188, - "right": -8.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 235, - "left": -8.4375, - "top": -81.723188, - "right": -7.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 235, - "left": -7.03125, - "top": -81.723188, - "right": -5.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 235, - "left": -5.625, - "top": -81.723188, - "right": -4.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 235, - "left": -4.21875, - "top": -81.723188, - "right": -2.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 235, - "left": -2.8125, - "top": -81.723188, - "right": -1.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 235, - "left": -1.40625, - "top": -81.723188, - "right": 0.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 235, - "left": 0.0, - "top": -81.723188, - "right": 1.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 235, - "left": 1.40625, - "top": -81.723188, - "right": 2.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 235, - "left": 2.8125, - "top": -81.723188, - "right": 4.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 235, - "left": 4.21875, - "top": -81.723188, - "right": 5.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 235, - "left": 5.625, - "top": -81.723188, - "right": 7.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 235, - "left": 7.03125, - "top": -81.723188, - "right": 8.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 235, - "left": 8.4375, - "top": -81.723188, - "right": 9.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 235, - "left": 9.84375, - "top": -81.723188, - "right": 11.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 235, - "left": 11.25, - "top": -81.723188, - "right": 12.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 235, - "left": 12.65625, - "top": -81.723188, - "right": 14.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 235, - "left": 14.0625, - "top": -81.723188, - "right": 15.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 235, - "left": 15.46875, - "top": -81.723188, - "right": 16.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 235, - "left": 16.875, - "top": -81.723188, - "right": 18.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 235, - "left": 18.28125, - "top": -81.723188, - "right": 19.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 235, - "left": 19.6875, - "top": -81.723188, - "right": 21.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 235, - "left": 21.09375, - "top": -81.723188, - "right": 22.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 235, - "left": 22.5, - "top": -81.723188, - "right": 23.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 235, - "left": 23.90625, - "top": -81.723188, - "right": 25.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 235, - "left": 25.3125, - "top": -81.723188, - "right": 26.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 235, - "left": 26.71875, - "top": -81.723188, - "right": 28.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 235, - "left": 28.125, - "top": -81.723188, - "right": 29.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 235, - "left": 29.53125, - "top": -81.723188, - "right": 30.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 235, - "left": 30.9375, - "top": -81.723188, - "right": 32.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 235, - "left": 32.34375, - "top": -81.723188, - "right": 33.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 235, - "left": 33.75, - "top": -81.723188, - "right": 35.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 235, - "left": 35.15625, - "top": -81.723188, - "right": 36.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 235, - "left": 36.5625, - "top": -81.723188, - "right": 37.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 235, - "left": 37.96875, - "top": -81.723188, - "right": 39.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 235, - "left": 39.375, - "top": -81.723188, - "right": 40.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 235, - "left": 40.78125, - "top": -81.723188, - "right": 42.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 235, - "left": 42.1875, - "top": -81.723188, - "right": 43.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 235, - "left": 43.59375, - "top": -81.723188, - "right": 45.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 235, - "left": 45.0, - "top": -81.723188, - "right": 46.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 235, - "left": 46.40625, - "top": -81.723188, - "right": 47.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 235, - "left": 47.8125, - "top": -81.723188, - "right": 49.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 235, - "left": 49.21875, - "top": -81.723188, - "right": 50.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 235, - "left": 50.625, - "top": -81.723188, - "right": 52.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 235, - "left": 52.03125, - "top": -81.723188, - "right": 53.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 235, - "left": 53.4375, - "top": -81.723188, - "right": 54.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 235, - "left": 54.84375, - "top": -81.723188, - "right": 56.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 235, - "left": 56.25, - "top": -81.723188, - "right": 57.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 235, - "left": 57.65625, - "top": -81.723188, - "right": 59.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 235, - "left": 59.0625, - "top": -81.723188, - "right": 60.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 235, - "left": 60.46875, - "top": -81.723188, - "right": 61.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 235, - "left": 61.875, - "top": -81.723188, - "right": 63.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 235, - "left": 63.28125, - "top": -81.723188, - "right": 64.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 235, - "left": 64.6875, - "top": -81.723188, - "right": 66.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 235, - "left": 66.09375, - "top": -81.723188, - "right": 67.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 235, - "left": 67.5, - "top": -81.723188, - "right": 68.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 235, - "left": 68.90625, - "top": -81.723188, - "right": 70.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 235, - "left": 70.3125, - "top": -81.723188, - "right": 71.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 235, - "left": 71.71875, - "top": -81.723188, - "right": 73.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 235, - "left": 73.125, - "top": -81.723188, - "right": 74.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 235, - "left": 74.53125, - "top": -81.723188, - "right": 75.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 235, - "left": 75.9375, - "top": -81.723188, - "right": 77.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 235, - "left": 77.34375, - "top": -81.723188, - "right": 78.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 235, - "left": 78.75, - "top": -81.723188, - "right": 80.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 235, - "left": 80.15625, - "top": -81.723188, - "right": 81.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 235, - "left": 81.5625, - "top": -81.723188, - "right": 82.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 235, - "left": 82.96875, - "top": -81.723188, - "right": 84.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 235, - "left": 84.375, - "top": -81.723188, - "right": 85.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 235, - "left": 85.78125, - "top": -81.723188, - "right": 87.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 235, - "left": 87.1875, - "top": -81.723188, - "right": 88.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 235, - "left": 88.59375, - "top": -81.723188, - "right": 90.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 235, - "left": 90.0, - "top": -81.723188, - "right": 91.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 235, - "left": 91.40625, - "top": -81.723188, - "right": 92.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 235, - "left": 92.8125, - "top": -81.723188, - "right": 94.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 235, - "left": 94.21875, - "top": -81.723188, - "right": 95.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 235, - "left": 95.625, - "top": -81.723188, - "right": 97.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 235, - "left": 97.03125, - "top": -81.723188, - "right": 98.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 235, - "left": 98.4375, - "top": -81.723188, - "right": 99.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 235, - "left": 99.84375, - "top": -81.723188, - "right": 101.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 235, - "left": 101.25, - "top": -81.723188, - "right": 102.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 235, - "left": 102.65625, - "top": -81.723188, - "right": 104.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 235, - "left": 104.0625, - "top": -81.723188, - "right": 105.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 235, - "left": 105.46875, - "top": -81.723188, - "right": 106.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 235, - "left": 106.875, - "top": -81.723188, - "right": 108.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 235, - "left": 108.28125, - "top": -81.723188, - "right": 109.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 235, - "left": 109.6875, - "top": -81.723188, - "right": 111.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 235, - "left": 111.09375, - "top": -81.723188, - "right": 112.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 235, - "left": 112.5, - "top": -81.723188, - "right": 113.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 235, - "left": 113.90625, - "top": -81.723188, - "right": 115.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 235, - "left": 115.3125, - "top": -81.723188, - "right": 116.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 235, - "left": 116.71875, - "top": -81.723188, - "right": 118.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 235, - "left": 118.125, - "top": -81.723188, - "right": 119.53125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 235, - "left": 119.53125, - "top": -81.723188, - "right": 120.9375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 235, - "left": 120.9375, - "top": -81.723188, - "right": 122.34375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 235, - "left": 122.34375, - "top": -81.723188, - "right": 123.75, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 235, - "left": 123.75, - "top": -81.723188, - "right": 125.15625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 235, - "left": 125.15625, - "top": -81.723188, - "right": 126.5625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 235, - "left": 126.5625, - "top": -81.723188, - "right": 127.96875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 235, - "left": 127.96875, - "top": -81.723188, - "right": 129.375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 235, - "left": 129.375, - "top": -81.723188, - "right": 130.78125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 235, - "left": 130.78125, - "top": -81.723188, - "right": 132.1875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 235, - "left": 132.1875, - "top": -81.723188, - "right": 133.59375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 235, - "left": 133.59375, - "top": -81.723188, - "right": 135.0, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 235, - "left": 135.0, - "top": -81.723188, - "right": 136.40625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 235, - "left": 136.40625, - "top": -81.723188, - "right": 137.8125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 235, - "left": 137.8125, - "top": -81.723188, - "right": 139.21875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 235, - "left": 139.21875, - "top": -81.723188, - "right": 140.625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 235, - "left": 140.625, - "top": -81.723188, - "right": 142.03125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 235, - "left": 142.03125, - "top": -81.723188, - "right": 143.4375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 235, - "left": 143.4375, - "top": -81.723188, - "right": 144.84375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 235, - "left": 144.84375, - "top": -81.723188, - "right": 146.25, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 235, - "left": 146.25, - "top": -81.723188, - "right": 147.65625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 235, - "left": 147.65625, - "top": -81.723188, - "right": 149.0625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 235, - "left": 149.0625, - "top": -81.723188, - "right": 150.46875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 235, - "left": 150.46875, - "top": -81.723188, - "right": 151.875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 235, - "left": 151.875, - "top": -81.723188, - "right": 153.28125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 235, - "left": 153.28125, - "top": -81.723188, - "right": 154.6875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 235, - "left": 154.6875, - "top": -81.723188, - "right": 156.09375, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 235, - "left": 156.09375, - "top": -81.723188, - "right": 157.5, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 235, - "left": 157.5, - "top": -81.723188, - "right": 158.90625, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 235, - "left": 158.90625, - "top": -81.723188, - "right": 160.3125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 235, - "left": 160.3125, - "top": -81.723188, - "right": 161.71875, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 235, - "left": 161.71875, - "top": -81.723188, - "right": 163.125, - "bottom": -81.923186, - "countries": [ - "antarctica" - ] - }, - { - "x": 17, - "y": 236, - "left": -156.09375, - "top": -81.923186, - "right": -154.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 236, - "left": -154.6875, - "top": -81.923186, - "right": -153.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 236, - "left": -153.28125, - "top": -81.923186, - "right": -151.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 236, - "left": -151.875, - "top": -81.923186, - "right": -150.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 236, - "left": -150.46875, - "top": -81.923186, - "right": -149.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 236, - "left": -149.0625, - "top": -81.923186, - "right": -147.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 236, - "left": -147.65625, - "top": -81.923186, - "right": -146.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 236, - "left": -146.25, - "top": -81.923186, - "right": -144.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 236, - "left": -144.84375, - "top": -81.923186, - "right": -143.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 236, - "left": -143.4375, - "top": -81.923186, - "right": -142.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 236, - "left": -142.03125, - "top": -81.923186, - "right": -140.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 236, - "left": -140.625, - "top": -81.923186, - "right": -139.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 236, - "left": -139.21875, - "top": -81.923186, - "right": -137.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 236, - "left": -137.8125, - "top": -81.923186, - "right": -136.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 236, - "left": -136.40625, - "top": -81.923186, - "right": -135.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 236, - "left": -135.0, - "top": -81.923186, - "right": -133.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 236, - "left": -133.59375, - "top": -81.923186, - "right": -132.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 236, - "left": -132.1875, - "top": -81.923186, - "right": -130.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 236, - "left": -130.78125, - "top": -81.923186, - "right": -129.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 236, - "left": -129.375, - "top": -81.923186, - "right": -127.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 236, - "left": -127.96875, - "top": -81.923186, - "right": -126.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 236, - "left": -126.5625, - "top": -81.923186, - "right": -125.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 236, - "left": -125.15625, - "top": -81.923186, - "right": -123.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 236, - "left": -123.75, - "top": -81.923186, - "right": -122.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 236, - "left": -122.34375, - "top": -81.923186, - "right": -120.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 236, - "left": -120.9375, - "top": -81.923186, - "right": -119.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 236, - "left": -119.53125, - "top": -81.923186, - "right": -118.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 236, - "left": -118.125, - "top": -81.923186, - "right": -116.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 236, - "left": -116.71875, - "top": -81.923186, - "right": -115.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 236, - "left": -115.3125, - "top": -81.923186, - "right": -113.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 236, - "left": -113.90625, - "top": -81.923186, - "right": -112.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 236, - "left": -112.5, - "top": -81.923186, - "right": -111.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 236, - "left": -111.09375, - "top": -81.923186, - "right": -109.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 236, - "left": -109.6875, - "top": -81.923186, - "right": -108.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 236, - "left": -108.28125, - "top": -81.923186, - "right": -106.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 236, - "left": -106.875, - "top": -81.923186, - "right": -105.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 236, - "left": -105.46875, - "top": -81.923186, - "right": -104.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 236, - "left": -104.0625, - "top": -81.923186, - "right": -102.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 236, - "left": -102.65625, - "top": -81.923186, - "right": -101.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 236, - "left": -101.25, - "top": -81.923186, - "right": -99.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 236, - "left": -99.84375, - "top": -81.923186, - "right": -98.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 236, - "left": -98.4375, - "top": -81.923186, - "right": -97.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 236, - "left": -97.03125, - "top": -81.923186, - "right": -95.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 236, - "left": -95.625, - "top": -81.923186, - "right": -94.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 236, - "left": -94.21875, - "top": -81.923186, - "right": -92.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 236, - "left": -92.8125, - "top": -81.923186, - "right": -91.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 236, - "left": -91.40625, - "top": -81.923186, - "right": -90.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 236, - "left": -90.0, - "top": -81.923186, - "right": -88.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 236, - "left": -88.59375, - "top": -81.923186, - "right": -87.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 236, - "left": -87.1875, - "top": -81.923186, - "right": -85.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 236, - "left": -85.78125, - "top": -81.923186, - "right": -84.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 236, - "left": -84.375, - "top": -81.923186, - "right": -82.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 236, - "left": -82.96875, - "top": -81.923186, - "right": -81.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 236, - "left": -81.5625, - "top": -81.923186, - "right": -80.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 236, - "left": -80.15625, - "top": -81.923186, - "right": -78.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 236, - "left": -78.75, - "top": -81.923186, - "right": -77.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 236, - "left": -77.34375, - "top": -81.923186, - "right": -75.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 236, - "left": -75.9375, - "top": -81.923186, - "right": -74.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 236, - "left": -74.53125, - "top": -81.923186, - "right": -73.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 236, - "left": -73.125, - "top": -81.923186, - "right": -71.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 236, - "left": -71.71875, - "top": -81.923186, - "right": -70.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 236, - "left": -54.84375, - "top": -81.923186, - "right": -53.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 236, - "left": -53.4375, - "top": -81.923186, - "right": -52.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 236, - "left": -52.03125, - "top": -81.923186, - "right": -50.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 236, - "left": -50.625, - "top": -81.923186, - "right": -49.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 236, - "left": -49.21875, - "top": -81.923186, - "right": -47.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 236, - "left": -47.8125, - "top": -81.923186, - "right": -46.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 236, - "left": -46.40625, - "top": -81.923186, - "right": -45.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 236, - "left": -45.0, - "top": -81.923186, - "right": -43.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 236, - "left": -43.59375, - "top": -81.923186, - "right": -42.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 236, - "left": -42.1875, - "top": -81.923186, - "right": -40.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 236, - "left": -40.78125, - "top": -81.923186, - "right": -39.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 236, - "left": -39.375, - "top": -81.923186, - "right": -37.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 236, - "left": -37.96875, - "top": -81.923186, - "right": -36.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 236, - "left": -36.5625, - "top": -81.923186, - "right": -35.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 236, - "left": -35.15625, - "top": -81.923186, - "right": -33.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 236, - "left": -33.75, - "top": -81.923186, - "right": -32.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 236, - "left": -32.34375, - "top": -81.923186, - "right": -30.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 236, - "left": -30.9375, - "top": -81.923186, - "right": -29.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 236, - "left": -29.53125, - "top": -81.923186, - "right": -28.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 236, - "left": -28.125, - "top": -81.923186, - "right": -26.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 236, - "left": -26.71875, - "top": -81.923186, - "right": -25.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 236, - "left": -25.3125, - "top": -81.923186, - "right": -23.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 236, - "left": -23.90625, - "top": -81.923186, - "right": -22.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 236, - "left": -22.5, - "top": -81.923186, - "right": -21.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 236, - "left": -21.09375, - "top": -81.923186, - "right": -19.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 236, - "left": -19.6875, - "top": -81.923186, - "right": -18.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 236, - "left": -18.28125, - "top": -81.923186, - "right": -16.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 236, - "left": -16.875, - "top": -81.923186, - "right": -15.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 236, - "left": -15.46875, - "top": -81.923186, - "right": -14.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 236, - "left": -14.0625, - "top": -81.923186, - "right": -12.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 236, - "left": -12.65625, - "top": -81.923186, - "right": -11.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 236, - "left": -11.25, - "top": -81.923186, - "right": -9.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 236, - "left": -9.84375, - "top": -81.923186, - "right": -8.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 236, - "left": -8.4375, - "top": -81.923186, - "right": -7.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 236, - "left": -7.03125, - "top": -81.923186, - "right": -5.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 236, - "left": -5.625, - "top": -81.923186, - "right": -4.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 236, - "left": -4.21875, - "top": -81.923186, - "right": -2.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 236, - "left": -2.8125, - "top": -81.923186, - "right": -1.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 236, - "left": -1.40625, - "top": -81.923186, - "right": 0.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 236, - "left": 0.0, - "top": -81.923186, - "right": 1.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 236, - "left": 1.40625, - "top": -81.923186, - "right": 2.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 236, - "left": 2.8125, - "top": -81.923186, - "right": 4.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 236, - "left": 4.21875, - "top": -81.923186, - "right": 5.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 236, - "left": 5.625, - "top": -81.923186, - "right": 7.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 236, - "left": 7.03125, - "top": -81.923186, - "right": 8.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 236, - "left": 8.4375, - "top": -81.923186, - "right": 9.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 236, - "left": 9.84375, - "top": -81.923186, - "right": 11.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 236, - "left": 11.25, - "top": -81.923186, - "right": 12.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 236, - "left": 12.65625, - "top": -81.923186, - "right": 14.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 236, - "left": 14.0625, - "top": -81.923186, - "right": 15.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 236, - "left": 15.46875, - "top": -81.923186, - "right": 16.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 236, - "left": 16.875, - "top": -81.923186, - "right": 18.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 236, - "left": 18.28125, - "top": -81.923186, - "right": 19.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 236, - "left": 19.6875, - "top": -81.923186, - "right": 21.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 236, - "left": 21.09375, - "top": -81.923186, - "right": 22.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 236, - "left": 22.5, - "top": -81.923186, - "right": 23.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 236, - "left": 23.90625, - "top": -81.923186, - "right": 25.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 236, - "left": 25.3125, - "top": -81.923186, - "right": 26.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 236, - "left": 26.71875, - "top": -81.923186, - "right": 28.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 236, - "left": 28.125, - "top": -81.923186, - "right": 29.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 236, - "left": 29.53125, - "top": -81.923186, - "right": 30.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 236, - "left": 30.9375, - "top": -81.923186, - "right": 32.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 236, - "left": 32.34375, - "top": -81.923186, - "right": 33.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 236, - "left": 33.75, - "top": -81.923186, - "right": 35.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 236, - "left": 35.15625, - "top": -81.923186, - "right": 36.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 236, - "left": 36.5625, - "top": -81.923186, - "right": 37.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 236, - "left": 37.96875, - "top": -81.923186, - "right": 39.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 236, - "left": 39.375, - "top": -81.923186, - "right": 40.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 236, - "left": 40.78125, - "top": -81.923186, - "right": 42.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 236, - "left": 42.1875, - "top": -81.923186, - "right": 43.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 236, - "left": 43.59375, - "top": -81.923186, - "right": 45.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 236, - "left": 45.0, - "top": -81.923186, - "right": 46.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 236, - "left": 46.40625, - "top": -81.923186, - "right": 47.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 236, - "left": 47.8125, - "top": -81.923186, - "right": 49.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 236, - "left": 49.21875, - "top": -81.923186, - "right": 50.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 236, - "left": 50.625, - "top": -81.923186, - "right": 52.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 236, - "left": 52.03125, - "top": -81.923186, - "right": 53.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 236, - "left": 53.4375, - "top": -81.923186, - "right": 54.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 236, - "left": 54.84375, - "top": -81.923186, - "right": 56.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 236, - "left": 56.25, - "top": -81.923186, - "right": 57.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 236, - "left": 57.65625, - "top": -81.923186, - "right": 59.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 236, - "left": 59.0625, - "top": -81.923186, - "right": 60.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 236, - "left": 60.46875, - "top": -81.923186, - "right": 61.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 236, - "left": 61.875, - "top": -81.923186, - "right": 63.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 236, - "left": 63.28125, - "top": -81.923186, - "right": 64.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 236, - "left": 64.6875, - "top": -81.923186, - "right": 66.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 236, - "left": 66.09375, - "top": -81.923186, - "right": 67.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 236, - "left": 67.5, - "top": -81.923186, - "right": 68.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 236, - "left": 68.90625, - "top": -81.923186, - "right": 70.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 236, - "left": 70.3125, - "top": -81.923186, - "right": 71.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 236, - "left": 71.71875, - "top": -81.923186, - "right": 73.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 236, - "left": 73.125, - "top": -81.923186, - "right": 74.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 236, - "left": 74.53125, - "top": -81.923186, - "right": 75.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 236, - "left": 75.9375, - "top": -81.923186, - "right": 77.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 236, - "left": 77.34375, - "top": -81.923186, - "right": 78.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 236, - "left": 78.75, - "top": -81.923186, - "right": 80.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 236, - "left": 80.15625, - "top": -81.923186, - "right": 81.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 236, - "left": 81.5625, - "top": -81.923186, - "right": 82.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 236, - "left": 82.96875, - "top": -81.923186, - "right": 84.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 236, - "left": 84.375, - "top": -81.923186, - "right": 85.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 236, - "left": 85.78125, - "top": -81.923186, - "right": 87.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 236, - "left": 87.1875, - "top": -81.923186, - "right": 88.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 236, - "left": 88.59375, - "top": -81.923186, - "right": 90.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 236, - "left": 90.0, - "top": -81.923186, - "right": 91.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 236, - "left": 91.40625, - "top": -81.923186, - "right": 92.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 236, - "left": 92.8125, - "top": -81.923186, - "right": 94.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 236, - "left": 94.21875, - "top": -81.923186, - "right": 95.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 236, - "left": 95.625, - "top": -81.923186, - "right": 97.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 236, - "left": 97.03125, - "top": -81.923186, - "right": 98.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 236, - "left": 98.4375, - "top": -81.923186, - "right": 99.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 236, - "left": 99.84375, - "top": -81.923186, - "right": 101.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 236, - "left": 101.25, - "top": -81.923186, - "right": 102.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 236, - "left": 102.65625, - "top": -81.923186, - "right": 104.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 236, - "left": 104.0625, - "top": -81.923186, - "right": 105.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 236, - "left": 105.46875, - "top": -81.923186, - "right": 106.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 236, - "left": 106.875, - "top": -81.923186, - "right": 108.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 236, - "left": 108.28125, - "top": -81.923186, - "right": 109.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 236, - "left": 109.6875, - "top": -81.923186, - "right": 111.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 236, - "left": 111.09375, - "top": -81.923186, - "right": 112.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 236, - "left": 112.5, - "top": -81.923186, - "right": 113.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 236, - "left": 113.90625, - "top": -81.923186, - "right": 115.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 236, - "left": 115.3125, - "top": -81.923186, - "right": 116.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 236, - "left": 116.71875, - "top": -81.923186, - "right": 118.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 236, - "left": 118.125, - "top": -81.923186, - "right": 119.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 236, - "left": 119.53125, - "top": -81.923186, - "right": 120.9375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 236, - "left": 120.9375, - "top": -81.923186, - "right": 122.34375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 236, - "left": 122.34375, - "top": -81.923186, - "right": 123.75, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 236, - "left": 123.75, - "top": -81.923186, - "right": 125.15625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 236, - "left": 125.15625, - "top": -81.923186, - "right": 126.5625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 236, - "left": 126.5625, - "top": -81.923186, - "right": 127.96875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 236, - "left": 127.96875, - "top": -81.923186, - "right": 129.375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 236, - "left": 129.375, - "top": -81.923186, - "right": 130.78125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 236, - "left": 130.78125, - "top": -81.923186, - "right": 132.1875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 236, - "left": 132.1875, - "top": -81.923186, - "right": 133.59375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 236, - "left": 133.59375, - "top": -81.923186, - "right": 135.0, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 236, - "left": 135.0, - "top": -81.923186, - "right": 136.40625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 236, - "left": 136.40625, - "top": -81.923186, - "right": 137.8125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 236, - "left": 137.8125, - "top": -81.923186, - "right": 139.21875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 236, - "left": 139.21875, - "top": -81.923186, - "right": 140.625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 236, - "left": 140.625, - "top": -81.923186, - "right": 142.03125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 236, - "left": 142.03125, - "top": -81.923186, - "right": 143.4375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 236, - "left": 143.4375, - "top": -81.923186, - "right": 144.84375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 236, - "left": 144.84375, - "top": -81.923186, - "right": 146.25, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 236, - "left": 146.25, - "top": -81.923186, - "right": 147.65625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 236, - "left": 147.65625, - "top": -81.923186, - "right": 149.0625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 236, - "left": 149.0625, - "top": -81.923186, - "right": 150.46875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 236, - "left": 150.46875, - "top": -81.923186, - "right": 151.875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 236, - "left": 151.875, - "top": -81.923186, - "right": 153.28125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 236, - "left": 153.28125, - "top": -81.923186, - "right": 154.6875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 236, - "left": 154.6875, - "top": -81.923186, - "right": 156.09375, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 236, - "left": 156.09375, - "top": -81.923186, - "right": 157.5, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 236, - "left": 157.5, - "top": -81.923186, - "right": 158.90625, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 236, - "left": 158.90625, - "top": -81.923186, - "right": 160.3125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 236, - "left": 160.3125, - "top": -81.923186, - "right": 161.71875, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 236, - "left": 161.71875, - "top": -81.923186, - "right": 163.125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 236, - "left": 163.125, - "top": -81.923186, - "right": 164.53125, - "bottom": -82.118384, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 237, - "left": -154.6875, - "top": -82.118384, - "right": -153.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 237, - "left": -153.28125, - "top": -82.118384, - "right": -151.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 237, - "left": -151.875, - "top": -82.118384, - "right": -150.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 237, - "left": -150.46875, - "top": -82.118384, - "right": -149.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 237, - "left": -149.0625, - "top": -82.118384, - "right": -147.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 237, - "left": -147.65625, - "top": -82.118384, - "right": -146.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 237, - "left": -146.25, - "top": -82.118384, - "right": -144.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 237, - "left": -144.84375, - "top": -82.118384, - "right": -143.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 237, - "left": -143.4375, - "top": -82.118384, - "right": -142.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 237, - "left": -142.03125, - "top": -82.118384, - "right": -140.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 237, - "left": -140.625, - "top": -82.118384, - "right": -139.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 237, - "left": -139.21875, - "top": -82.118384, - "right": -137.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 237, - "left": -137.8125, - "top": -82.118384, - "right": -136.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 237, - "left": -136.40625, - "top": -82.118384, - "right": -135.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 237, - "left": -135.0, - "top": -82.118384, - "right": -133.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 237, - "left": -133.59375, - "top": -82.118384, - "right": -132.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 237, - "left": -132.1875, - "top": -82.118384, - "right": -130.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 237, - "left": -130.78125, - "top": -82.118384, - "right": -129.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 237, - "left": -129.375, - "top": -82.118384, - "right": -127.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 237, - "left": -127.96875, - "top": -82.118384, - "right": -126.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 237, - "left": -126.5625, - "top": -82.118384, - "right": -125.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 237, - "left": -125.15625, - "top": -82.118384, - "right": -123.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 237, - "left": -123.75, - "top": -82.118384, - "right": -122.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 237, - "left": -122.34375, - "top": -82.118384, - "right": -120.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 237, - "left": -120.9375, - "top": -82.118384, - "right": -119.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 237, - "left": -119.53125, - "top": -82.118384, - "right": -118.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 237, - "left": -118.125, - "top": -82.118384, - "right": -116.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 237, - "left": -116.71875, - "top": -82.118384, - "right": -115.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 237, - "left": -115.3125, - "top": -82.118384, - "right": -113.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 237, - "left": -113.90625, - "top": -82.118384, - "right": -112.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 237, - "left": -112.5, - "top": -82.118384, - "right": -111.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 237, - "left": -111.09375, - "top": -82.118384, - "right": -109.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 237, - "left": -109.6875, - "top": -82.118384, - "right": -108.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 237, - "left": -108.28125, - "top": -82.118384, - "right": -106.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 237, - "left": -106.875, - "top": -82.118384, - "right": -105.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 237, - "left": -105.46875, - "top": -82.118384, - "right": -104.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 237, - "left": -104.0625, - "top": -82.118384, - "right": -102.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 237, - "left": -102.65625, - "top": -82.118384, - "right": -101.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 237, - "left": -101.25, - "top": -82.118384, - "right": -99.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 237, - "left": -99.84375, - "top": -82.118384, - "right": -98.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 237, - "left": -98.4375, - "top": -82.118384, - "right": -97.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 237, - "left": -97.03125, - "top": -82.118384, - "right": -95.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 237, - "left": -95.625, - "top": -82.118384, - "right": -94.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 237, - "left": -94.21875, - "top": -82.118384, - "right": -92.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 237, - "left": -92.8125, - "top": -82.118384, - "right": -91.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 237, - "left": -91.40625, - "top": -82.118384, - "right": -90.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 237, - "left": -90.0, - "top": -82.118384, - "right": -88.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 237, - "left": -88.59375, - "top": -82.118384, - "right": -87.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 237, - "left": -87.1875, - "top": -82.118384, - "right": -85.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 237, - "left": -85.78125, - "top": -82.118384, - "right": -84.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 237, - "left": -84.375, - "top": -82.118384, - "right": -82.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 237, - "left": -82.96875, - "top": -82.118384, - "right": -81.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 237, - "left": -81.5625, - "top": -82.118384, - "right": -80.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 237, - "left": -80.15625, - "top": -82.118384, - "right": -78.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 237, - "left": -78.75, - "top": -82.118384, - "right": -77.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 237, - "left": -77.34375, - "top": -82.118384, - "right": -75.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 237, - "left": -75.9375, - "top": -82.118384, - "right": -74.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 237, - "left": -74.53125, - "top": -82.118384, - "right": -73.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 237, - "left": -73.125, - "top": -82.118384, - "right": -71.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 237, - "left": -71.71875, - "top": -82.118384, - "right": -70.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 237, - "left": -70.3125, - "top": -82.118384, - "right": -68.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 237, - "left": -68.90625, - "top": -82.118384, - "right": -67.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 237, - "left": -56.25, - "top": -82.118384, - "right": -54.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 237, - "left": -54.84375, - "top": -82.118384, - "right": -53.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 237, - "left": -53.4375, - "top": -82.118384, - "right": -52.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 237, - "left": -52.03125, - "top": -82.118384, - "right": -50.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 237, - "left": -50.625, - "top": -82.118384, - "right": -49.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 237, - "left": -49.21875, - "top": -82.118384, - "right": -47.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 237, - "left": -47.8125, - "top": -82.118384, - "right": -46.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 237, - "left": -46.40625, - "top": -82.118384, - "right": -45.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 237, - "left": -45.0, - "top": -82.118384, - "right": -43.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 237, - "left": -43.59375, - "top": -82.118384, - "right": -42.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 237, - "left": -42.1875, - "top": -82.118384, - "right": -40.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 237, - "left": -40.78125, - "top": -82.118384, - "right": -39.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 237, - "left": -39.375, - "top": -82.118384, - "right": -37.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 237, - "left": -37.96875, - "top": -82.118384, - "right": -36.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 237, - "left": -36.5625, - "top": -82.118384, - "right": -35.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 237, - "left": -35.15625, - "top": -82.118384, - "right": -33.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 237, - "left": -33.75, - "top": -82.118384, - "right": -32.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 237, - "left": -32.34375, - "top": -82.118384, - "right": -30.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 237, - "left": -30.9375, - "top": -82.118384, - "right": -29.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 237, - "left": -29.53125, - "top": -82.118384, - "right": -28.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 237, - "left": -28.125, - "top": -82.118384, - "right": -26.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 237, - "left": -26.71875, - "top": -82.118384, - "right": -25.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 237, - "left": -25.3125, - "top": -82.118384, - "right": -23.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 237, - "left": -23.90625, - "top": -82.118384, - "right": -22.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 237, - "left": -22.5, - "top": -82.118384, - "right": -21.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 237, - "left": -21.09375, - "top": -82.118384, - "right": -19.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 237, - "left": -19.6875, - "top": -82.118384, - "right": -18.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 237, - "left": -18.28125, - "top": -82.118384, - "right": -16.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 237, - "left": -16.875, - "top": -82.118384, - "right": -15.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 237, - "left": -15.46875, - "top": -82.118384, - "right": -14.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 237, - "left": -14.0625, - "top": -82.118384, - "right": -12.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 237, - "left": -12.65625, - "top": -82.118384, - "right": -11.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 237, - "left": -11.25, - "top": -82.118384, - "right": -9.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 237, - "left": -9.84375, - "top": -82.118384, - "right": -8.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 237, - "left": -8.4375, - "top": -82.118384, - "right": -7.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 237, - "left": -7.03125, - "top": -82.118384, - "right": -5.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 237, - "left": -5.625, - "top": -82.118384, - "right": -4.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 237, - "left": -4.21875, - "top": -82.118384, - "right": -2.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 237, - "left": -2.8125, - "top": -82.118384, - "right": -1.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 237, - "left": -1.40625, - "top": -82.118384, - "right": 0.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 237, - "left": 0.0, - "top": -82.118384, - "right": 1.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 237, - "left": 1.40625, - "top": -82.118384, - "right": 2.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 237, - "left": 2.8125, - "top": -82.118384, - "right": 4.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 237, - "left": 4.21875, - "top": -82.118384, - "right": 5.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 237, - "left": 5.625, - "top": -82.118384, - "right": 7.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 237, - "left": 7.03125, - "top": -82.118384, - "right": 8.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 237, - "left": 8.4375, - "top": -82.118384, - "right": 9.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 237, - "left": 9.84375, - "top": -82.118384, - "right": 11.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 237, - "left": 11.25, - "top": -82.118384, - "right": 12.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 237, - "left": 12.65625, - "top": -82.118384, - "right": 14.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 237, - "left": 14.0625, - "top": -82.118384, - "right": 15.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 237, - "left": 15.46875, - "top": -82.118384, - "right": 16.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 237, - "left": 16.875, - "top": -82.118384, - "right": 18.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 237, - "left": 18.28125, - "top": -82.118384, - "right": 19.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 237, - "left": 19.6875, - "top": -82.118384, - "right": 21.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 237, - "left": 21.09375, - "top": -82.118384, - "right": 22.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 237, - "left": 22.5, - "top": -82.118384, - "right": 23.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 237, - "left": 23.90625, - "top": -82.118384, - "right": 25.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 237, - "left": 25.3125, - "top": -82.118384, - "right": 26.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 237, - "left": 26.71875, - "top": -82.118384, - "right": 28.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 237, - "left": 28.125, - "top": -82.118384, - "right": 29.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 237, - "left": 29.53125, - "top": -82.118384, - "right": 30.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 237, - "left": 30.9375, - "top": -82.118384, - "right": 32.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 237, - "left": 32.34375, - "top": -82.118384, - "right": 33.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 237, - "left": 33.75, - "top": -82.118384, - "right": 35.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 237, - "left": 35.15625, - "top": -82.118384, - "right": 36.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 237, - "left": 36.5625, - "top": -82.118384, - "right": 37.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 237, - "left": 37.96875, - "top": -82.118384, - "right": 39.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 237, - "left": 39.375, - "top": -82.118384, - "right": 40.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 237, - "left": 40.78125, - "top": -82.118384, - "right": 42.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 237, - "left": 42.1875, - "top": -82.118384, - "right": 43.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 237, - "left": 43.59375, - "top": -82.118384, - "right": 45.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 237, - "left": 45.0, - "top": -82.118384, - "right": 46.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 237, - "left": 46.40625, - "top": -82.118384, - "right": 47.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 237, - "left": 47.8125, - "top": -82.118384, - "right": 49.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 237, - "left": 49.21875, - "top": -82.118384, - "right": 50.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 237, - "left": 50.625, - "top": -82.118384, - "right": 52.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 237, - "left": 52.03125, - "top": -82.118384, - "right": 53.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 237, - "left": 53.4375, - "top": -82.118384, - "right": 54.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 237, - "left": 54.84375, - "top": -82.118384, - "right": 56.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 237, - "left": 56.25, - "top": -82.118384, - "right": 57.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 237, - "left": 57.65625, - "top": -82.118384, - "right": 59.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 237, - "left": 59.0625, - "top": -82.118384, - "right": 60.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 237, - "left": 60.46875, - "top": -82.118384, - "right": 61.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 237, - "left": 61.875, - "top": -82.118384, - "right": 63.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 237, - "left": 63.28125, - "top": -82.118384, - "right": 64.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 237, - "left": 64.6875, - "top": -82.118384, - "right": 66.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 237, - "left": 66.09375, - "top": -82.118384, - "right": 67.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 237, - "left": 67.5, - "top": -82.118384, - "right": 68.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 237, - "left": 68.90625, - "top": -82.118384, - "right": 70.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 237, - "left": 70.3125, - "top": -82.118384, - "right": 71.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 237, - "left": 71.71875, - "top": -82.118384, - "right": 73.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 237, - "left": 73.125, - "top": -82.118384, - "right": 74.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 237, - "left": 74.53125, - "top": -82.118384, - "right": 75.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 237, - "left": 75.9375, - "top": -82.118384, - "right": 77.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 237, - "left": 77.34375, - "top": -82.118384, - "right": 78.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 237, - "left": 78.75, - "top": -82.118384, - "right": 80.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 237, - "left": 80.15625, - "top": -82.118384, - "right": 81.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 237, - "left": 81.5625, - "top": -82.118384, - "right": 82.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 237, - "left": 82.96875, - "top": -82.118384, - "right": 84.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 237, - "left": 84.375, - "top": -82.118384, - "right": 85.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 237, - "left": 85.78125, - "top": -82.118384, - "right": 87.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 237, - "left": 87.1875, - "top": -82.118384, - "right": 88.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 237, - "left": 88.59375, - "top": -82.118384, - "right": 90.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 237, - "left": 90.0, - "top": -82.118384, - "right": 91.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 237, - "left": 91.40625, - "top": -82.118384, - "right": 92.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 237, - "left": 92.8125, - "top": -82.118384, - "right": 94.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 237, - "left": 94.21875, - "top": -82.118384, - "right": 95.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 237, - "left": 95.625, - "top": -82.118384, - "right": 97.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 237, - "left": 97.03125, - "top": -82.118384, - "right": 98.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 237, - "left": 98.4375, - "top": -82.118384, - "right": 99.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 237, - "left": 99.84375, - "top": -82.118384, - "right": 101.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 237, - "left": 101.25, - "top": -82.118384, - "right": 102.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 237, - "left": 102.65625, - "top": -82.118384, - "right": 104.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 237, - "left": 104.0625, - "top": -82.118384, - "right": 105.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 237, - "left": 105.46875, - "top": -82.118384, - "right": 106.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 237, - "left": 106.875, - "top": -82.118384, - "right": 108.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 237, - "left": 108.28125, - "top": -82.118384, - "right": 109.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 237, - "left": 109.6875, - "top": -82.118384, - "right": 111.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 237, - "left": 111.09375, - "top": -82.118384, - "right": 112.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 237, - "left": 112.5, - "top": -82.118384, - "right": 113.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 237, - "left": 113.90625, - "top": -82.118384, - "right": 115.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 237, - "left": 115.3125, - "top": -82.118384, - "right": 116.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 237, - "left": 116.71875, - "top": -82.118384, - "right": 118.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 237, - "left": 118.125, - "top": -82.118384, - "right": 119.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 237, - "left": 119.53125, - "top": -82.118384, - "right": 120.9375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 237, - "left": 120.9375, - "top": -82.118384, - "right": 122.34375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 237, - "left": 122.34375, - "top": -82.118384, - "right": 123.75, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 237, - "left": 123.75, - "top": -82.118384, - "right": 125.15625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 237, - "left": 125.15625, - "top": -82.118384, - "right": 126.5625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 237, - "left": 126.5625, - "top": -82.118384, - "right": 127.96875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 237, - "left": 127.96875, - "top": -82.118384, - "right": 129.375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 237, - "left": 129.375, - "top": -82.118384, - "right": 130.78125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 237, - "left": 130.78125, - "top": -82.118384, - "right": 132.1875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 237, - "left": 132.1875, - "top": -82.118384, - "right": 133.59375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 237, - "left": 133.59375, - "top": -82.118384, - "right": 135.0, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 237, - "left": 135.0, - "top": -82.118384, - "right": 136.40625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 237, - "left": 136.40625, - "top": -82.118384, - "right": 137.8125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 237, - "left": 137.8125, - "top": -82.118384, - "right": 139.21875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 237, - "left": 139.21875, - "top": -82.118384, - "right": 140.625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 237, - "left": 140.625, - "top": -82.118384, - "right": 142.03125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 237, - "left": 142.03125, - "top": -82.118384, - "right": 143.4375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 237, - "left": 143.4375, - "top": -82.118384, - "right": 144.84375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 237, - "left": 144.84375, - "top": -82.118384, - "right": 146.25, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 237, - "left": 146.25, - "top": -82.118384, - "right": 147.65625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 237, - "left": 147.65625, - "top": -82.118384, - "right": 149.0625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 237, - "left": 149.0625, - "top": -82.118384, - "right": 150.46875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 237, - "left": 150.46875, - "top": -82.118384, - "right": 151.875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 237, - "left": 151.875, - "top": -82.118384, - "right": 153.28125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 237, - "left": 153.28125, - "top": -82.118384, - "right": 154.6875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 237, - "left": 154.6875, - "top": -82.118384, - "right": 156.09375, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 237, - "left": 156.09375, - "top": -82.118384, - "right": 157.5, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 237, - "left": 157.5, - "top": -82.118384, - "right": 158.90625, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 237, - "left": 158.90625, - "top": -82.118384, - "right": 160.3125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 237, - "left": 160.3125, - "top": -82.118384, - "right": 161.71875, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 237, - "left": 161.71875, - "top": -82.118384, - "right": 163.125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 237, - "left": 163.125, - "top": -82.118384, - "right": 164.53125, - "bottom": -82.308893, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 238, - "left": -154.6875, - "top": -82.308893, - "right": -153.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 238, - "left": -153.28125, - "top": -82.308893, - "right": -151.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 238, - "left": -151.875, - "top": -82.308893, - "right": -150.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 238, - "left": -150.46875, - "top": -82.308893, - "right": -149.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 238, - "left": -149.0625, - "top": -82.308893, - "right": -147.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 238, - "left": -147.65625, - "top": -82.308893, - "right": -146.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 238, - "left": -146.25, - "top": -82.308893, - "right": -144.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 238, - "left": -144.84375, - "top": -82.308893, - "right": -143.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 238, - "left": -143.4375, - "top": -82.308893, - "right": -142.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 238, - "left": -142.03125, - "top": -82.308893, - "right": -140.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 238, - "left": -140.625, - "top": -82.308893, - "right": -139.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 238, - "left": -139.21875, - "top": -82.308893, - "right": -137.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 238, - "left": -137.8125, - "top": -82.308893, - "right": -136.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 238, - "left": -136.40625, - "top": -82.308893, - "right": -135.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 238, - "left": -135.0, - "top": -82.308893, - "right": -133.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 238, - "left": -133.59375, - "top": -82.308893, - "right": -132.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 238, - "left": -132.1875, - "top": -82.308893, - "right": -130.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 238, - "left": -130.78125, - "top": -82.308893, - "right": -129.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 238, - "left": -129.375, - "top": -82.308893, - "right": -127.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 238, - "left": -127.96875, - "top": -82.308893, - "right": -126.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 238, - "left": -126.5625, - "top": -82.308893, - "right": -125.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 238, - "left": -125.15625, - "top": -82.308893, - "right": -123.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 238, - "left": -123.75, - "top": -82.308893, - "right": -122.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 238, - "left": -122.34375, - "top": -82.308893, - "right": -120.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 238, - "left": -120.9375, - "top": -82.308893, - "right": -119.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 238, - "left": -119.53125, - "top": -82.308893, - "right": -118.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 238, - "left": -118.125, - "top": -82.308893, - "right": -116.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 238, - "left": -116.71875, - "top": -82.308893, - "right": -115.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 238, - "left": -115.3125, - "top": -82.308893, - "right": -113.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 238, - "left": -113.90625, - "top": -82.308893, - "right": -112.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 238, - "left": -112.5, - "top": -82.308893, - "right": -111.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 238, - "left": -111.09375, - "top": -82.308893, - "right": -109.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 238, - "left": -109.6875, - "top": -82.308893, - "right": -108.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 238, - "left": -108.28125, - "top": -82.308893, - "right": -106.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 238, - "left": -106.875, - "top": -82.308893, - "right": -105.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 238, - "left": -105.46875, - "top": -82.308893, - "right": -104.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 238, - "left": -104.0625, - "top": -82.308893, - "right": -102.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 238, - "left": -102.65625, - "top": -82.308893, - "right": -101.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 238, - "left": -101.25, - "top": -82.308893, - "right": -99.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 238, - "left": -99.84375, - "top": -82.308893, - "right": -98.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 238, - "left": -98.4375, - "top": -82.308893, - "right": -97.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 238, - "left": -97.03125, - "top": -82.308893, - "right": -95.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 238, - "left": -95.625, - "top": -82.308893, - "right": -94.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 238, - "left": -94.21875, - "top": -82.308893, - "right": -92.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 238, - "left": -92.8125, - "top": -82.308893, - "right": -91.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 238, - "left": -91.40625, - "top": -82.308893, - "right": -90.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 238, - "left": -90.0, - "top": -82.308893, - "right": -88.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 238, - "left": -88.59375, - "top": -82.308893, - "right": -87.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 238, - "left": -87.1875, - "top": -82.308893, - "right": -85.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 238, - "left": -85.78125, - "top": -82.308893, - "right": -84.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 238, - "left": -84.375, - "top": -82.308893, - "right": -82.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 238, - "left": -82.96875, - "top": -82.308893, - "right": -81.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 238, - "left": -81.5625, - "top": -82.308893, - "right": -80.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 238, - "left": -80.15625, - "top": -82.308893, - "right": -78.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 238, - "left": -78.75, - "top": -82.308893, - "right": -77.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 238, - "left": -77.34375, - "top": -82.308893, - "right": -75.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 238, - "left": -75.9375, - "top": -82.308893, - "right": -74.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 238, - "left": -74.53125, - "top": -82.308893, - "right": -73.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 238, - "left": -73.125, - "top": -82.308893, - "right": -71.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 238, - "left": -71.71875, - "top": -82.308893, - "right": -70.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 238, - "left": -70.3125, - "top": -82.308893, - "right": -68.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 238, - "left": -68.90625, - "top": -82.308893, - "right": -67.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 238, - "left": -67.5, - "top": -82.308893, - "right": -66.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 238, - "left": -66.09375, - "top": -82.308893, - "right": -64.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 238, - "left": -63.28125, - "top": -82.308893, - "right": -61.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 238, - "left": -61.875, - "top": -82.308893, - "right": -60.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 238, - "left": -60.46875, - "top": -82.308893, - "right": -59.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 238, - "left": -57.65625, - "top": -82.308893, - "right": -56.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 238, - "left": -56.25, - "top": -82.308893, - "right": -54.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 238, - "left": -54.84375, - "top": -82.308893, - "right": -53.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 238, - "left": -53.4375, - "top": -82.308893, - "right": -52.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 238, - "left": -52.03125, - "top": -82.308893, - "right": -50.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 238, - "left": -50.625, - "top": -82.308893, - "right": -49.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 238, - "left": -49.21875, - "top": -82.308893, - "right": -47.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 238, - "left": -47.8125, - "top": -82.308893, - "right": -46.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 238, - "left": -46.40625, - "top": -82.308893, - "right": -45.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 238, - "left": -45.0, - "top": -82.308893, - "right": -43.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 238, - "left": -43.59375, - "top": -82.308893, - "right": -42.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 238, - "left": -42.1875, - "top": -82.308893, - "right": -40.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 238, - "left": -40.78125, - "top": -82.308893, - "right": -39.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 238, - "left": -39.375, - "top": -82.308893, - "right": -37.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 238, - "left": -37.96875, - "top": -82.308893, - "right": -36.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 238, - "left": -36.5625, - "top": -82.308893, - "right": -35.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 238, - "left": -35.15625, - "top": -82.308893, - "right": -33.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 238, - "left": -33.75, - "top": -82.308893, - "right": -32.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 238, - "left": -32.34375, - "top": -82.308893, - "right": -30.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 238, - "left": -30.9375, - "top": -82.308893, - "right": -29.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 238, - "left": -29.53125, - "top": -82.308893, - "right": -28.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 238, - "left": -28.125, - "top": -82.308893, - "right": -26.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 238, - "left": -26.71875, - "top": -82.308893, - "right": -25.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 238, - "left": -25.3125, - "top": -82.308893, - "right": -23.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 238, - "left": -23.90625, - "top": -82.308893, - "right": -22.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 238, - "left": -22.5, - "top": -82.308893, - "right": -21.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 238, - "left": -21.09375, - "top": -82.308893, - "right": -19.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 238, - "left": -19.6875, - "top": -82.308893, - "right": -18.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 238, - "left": -18.28125, - "top": -82.308893, - "right": -16.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 238, - "left": -16.875, - "top": -82.308893, - "right": -15.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 238, - "left": -15.46875, - "top": -82.308893, - "right": -14.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 238, - "left": -14.0625, - "top": -82.308893, - "right": -12.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 238, - "left": -12.65625, - "top": -82.308893, - "right": -11.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 238, - "left": -11.25, - "top": -82.308893, - "right": -9.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 238, - "left": -9.84375, - "top": -82.308893, - "right": -8.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 238, - "left": -8.4375, - "top": -82.308893, - "right": -7.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 238, - "left": -7.03125, - "top": -82.308893, - "right": -5.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 238, - "left": -5.625, - "top": -82.308893, - "right": -4.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 238, - "left": -4.21875, - "top": -82.308893, - "right": -2.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 238, - "left": -2.8125, - "top": -82.308893, - "right": -1.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 238, - "left": -1.40625, - "top": -82.308893, - "right": 0.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 238, - "left": 0.0, - "top": -82.308893, - "right": 1.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 238, - "left": 1.40625, - "top": -82.308893, - "right": 2.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 238, - "left": 2.8125, - "top": -82.308893, - "right": 4.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 238, - "left": 4.21875, - "top": -82.308893, - "right": 5.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 238, - "left": 5.625, - "top": -82.308893, - "right": 7.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 238, - "left": 7.03125, - "top": -82.308893, - "right": 8.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 238, - "left": 8.4375, - "top": -82.308893, - "right": 9.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 238, - "left": 9.84375, - "top": -82.308893, - "right": 11.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 238, - "left": 11.25, - "top": -82.308893, - "right": 12.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 238, - "left": 12.65625, - "top": -82.308893, - "right": 14.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 238, - "left": 14.0625, - "top": -82.308893, - "right": 15.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 238, - "left": 15.46875, - "top": -82.308893, - "right": 16.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 238, - "left": 16.875, - "top": -82.308893, - "right": 18.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 238, - "left": 18.28125, - "top": -82.308893, - "right": 19.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 238, - "left": 19.6875, - "top": -82.308893, - "right": 21.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 238, - "left": 21.09375, - "top": -82.308893, - "right": 22.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 238, - "left": 22.5, - "top": -82.308893, - "right": 23.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 238, - "left": 23.90625, - "top": -82.308893, - "right": 25.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 238, - "left": 25.3125, - "top": -82.308893, - "right": 26.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 238, - "left": 26.71875, - "top": -82.308893, - "right": 28.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 238, - "left": 28.125, - "top": -82.308893, - "right": 29.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 238, - "left": 29.53125, - "top": -82.308893, - "right": 30.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 238, - "left": 30.9375, - "top": -82.308893, - "right": 32.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 238, - "left": 32.34375, - "top": -82.308893, - "right": 33.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 238, - "left": 33.75, - "top": -82.308893, - "right": 35.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 238, - "left": 35.15625, - "top": -82.308893, - "right": 36.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 238, - "left": 36.5625, - "top": -82.308893, - "right": 37.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 238, - "left": 37.96875, - "top": -82.308893, - "right": 39.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 238, - "left": 39.375, - "top": -82.308893, - "right": 40.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 238, - "left": 40.78125, - "top": -82.308893, - "right": 42.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 238, - "left": 42.1875, - "top": -82.308893, - "right": 43.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 238, - "left": 43.59375, - "top": -82.308893, - "right": 45.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 238, - "left": 45.0, - "top": -82.308893, - "right": 46.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 238, - "left": 46.40625, - "top": -82.308893, - "right": 47.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 238, - "left": 47.8125, - "top": -82.308893, - "right": 49.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 238, - "left": 49.21875, - "top": -82.308893, - "right": 50.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 238, - "left": 50.625, - "top": -82.308893, - "right": 52.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 238, - "left": 52.03125, - "top": -82.308893, - "right": 53.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 238, - "left": 53.4375, - "top": -82.308893, - "right": 54.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 238, - "left": 54.84375, - "top": -82.308893, - "right": 56.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 238, - "left": 56.25, - "top": -82.308893, - "right": 57.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 238, - "left": 57.65625, - "top": -82.308893, - "right": 59.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 238, - "left": 59.0625, - "top": -82.308893, - "right": 60.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 238, - "left": 60.46875, - "top": -82.308893, - "right": 61.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 238, - "left": 61.875, - "top": -82.308893, - "right": 63.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 238, - "left": 63.28125, - "top": -82.308893, - "right": 64.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 238, - "left": 64.6875, - "top": -82.308893, - "right": 66.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 238, - "left": 66.09375, - "top": -82.308893, - "right": 67.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 238, - "left": 67.5, - "top": -82.308893, - "right": 68.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 238, - "left": 68.90625, - "top": -82.308893, - "right": 70.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 238, - "left": 70.3125, - "top": -82.308893, - "right": 71.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 238, - "left": 71.71875, - "top": -82.308893, - "right": 73.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 238, - "left": 73.125, - "top": -82.308893, - "right": 74.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 238, - "left": 74.53125, - "top": -82.308893, - "right": 75.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 238, - "left": 75.9375, - "top": -82.308893, - "right": 77.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 238, - "left": 77.34375, - "top": -82.308893, - "right": 78.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 238, - "left": 78.75, - "top": -82.308893, - "right": 80.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 238, - "left": 80.15625, - "top": -82.308893, - "right": 81.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 238, - "left": 81.5625, - "top": -82.308893, - "right": 82.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 238, - "left": 82.96875, - "top": -82.308893, - "right": 84.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 238, - "left": 84.375, - "top": -82.308893, - "right": 85.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 238, - "left": 85.78125, - "top": -82.308893, - "right": 87.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 238, - "left": 87.1875, - "top": -82.308893, - "right": 88.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 238, - "left": 88.59375, - "top": -82.308893, - "right": 90.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 238, - "left": 90.0, - "top": -82.308893, - "right": 91.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 238, - "left": 91.40625, - "top": -82.308893, - "right": 92.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 238, - "left": 92.8125, - "top": -82.308893, - "right": 94.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 238, - "left": 94.21875, - "top": -82.308893, - "right": 95.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 238, - "left": 95.625, - "top": -82.308893, - "right": 97.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 238, - "left": 97.03125, - "top": -82.308893, - "right": 98.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 238, - "left": 98.4375, - "top": -82.308893, - "right": 99.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 238, - "left": 99.84375, - "top": -82.308893, - "right": 101.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 238, - "left": 101.25, - "top": -82.308893, - "right": 102.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 238, - "left": 102.65625, - "top": -82.308893, - "right": 104.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 238, - "left": 104.0625, - "top": -82.308893, - "right": 105.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 238, - "left": 105.46875, - "top": -82.308893, - "right": 106.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 238, - "left": 106.875, - "top": -82.308893, - "right": 108.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 238, - "left": 108.28125, - "top": -82.308893, - "right": 109.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 238, - "left": 109.6875, - "top": -82.308893, - "right": 111.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 238, - "left": 111.09375, - "top": -82.308893, - "right": 112.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 238, - "left": 112.5, - "top": -82.308893, - "right": 113.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 238, - "left": 113.90625, - "top": -82.308893, - "right": 115.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 238, - "left": 115.3125, - "top": -82.308893, - "right": 116.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 238, - "left": 116.71875, - "top": -82.308893, - "right": 118.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 238, - "left": 118.125, - "top": -82.308893, - "right": 119.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 238, - "left": 119.53125, - "top": -82.308893, - "right": 120.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 238, - "left": 120.9375, - "top": -82.308893, - "right": 122.34375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 238, - "left": 122.34375, - "top": -82.308893, - "right": 123.75, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 238, - "left": 123.75, - "top": -82.308893, - "right": 125.15625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 238, - "left": 125.15625, - "top": -82.308893, - "right": 126.5625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 238, - "left": 126.5625, - "top": -82.308893, - "right": 127.96875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 238, - "left": 127.96875, - "top": -82.308893, - "right": 129.375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 238, - "left": 129.375, - "top": -82.308893, - "right": 130.78125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 238, - "left": 130.78125, - "top": -82.308893, - "right": 132.1875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 238, - "left": 132.1875, - "top": -82.308893, - "right": 133.59375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 238, - "left": 133.59375, - "top": -82.308893, - "right": 135.0, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 238, - "left": 135.0, - "top": -82.308893, - "right": 136.40625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 238, - "left": 136.40625, - "top": -82.308893, - "right": 137.8125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 238, - "left": 137.8125, - "top": -82.308893, - "right": 139.21875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 238, - "left": 139.21875, - "top": -82.308893, - "right": 140.625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 238, - "left": 140.625, - "top": -82.308893, - "right": 142.03125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 238, - "left": 142.03125, - "top": -82.308893, - "right": 143.4375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 238, - "left": 143.4375, - "top": -82.308893, - "right": 144.84375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 238, - "left": 144.84375, - "top": -82.308893, - "right": 146.25, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 238, - "left": 146.25, - "top": -82.308893, - "right": 147.65625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 238, - "left": 147.65625, - "top": -82.308893, - "right": 149.0625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 238, - "left": 149.0625, - "top": -82.308893, - "right": 150.46875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 238, - "left": 150.46875, - "top": -82.308893, - "right": 151.875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 238, - "left": 151.875, - "top": -82.308893, - "right": 153.28125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 238, - "left": 153.28125, - "top": -82.308893, - "right": 154.6875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 238, - "left": 154.6875, - "top": -82.308893, - "right": 156.09375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 238, - "left": 156.09375, - "top": -82.308893, - "right": 157.5, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 238, - "left": 157.5, - "top": -82.308893, - "right": 158.90625, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 238, - "left": 158.90625, - "top": -82.308893, - "right": 160.3125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 238, - "left": 160.3125, - "top": -82.308893, - "right": 161.71875, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 238, - "left": 161.71875, - "top": -82.308893, - "right": 163.125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 238, - "left": 163.125, - "top": -82.308893, - "right": 164.53125, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 238, - "left": 164.53125, - "top": -82.308893, - "right": 165.9375, - "bottom": -82.494824, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 239, - "left": -154.6875, - "top": -82.494824, - "right": -153.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 239, - "left": -153.28125, - "top": -82.494824, - "right": -151.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 239, - "left": -151.875, - "top": -82.494824, - "right": -150.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 239, - "left": -150.46875, - "top": -82.494824, - "right": -149.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 239, - "left": -149.0625, - "top": -82.494824, - "right": -147.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 239, - "left": -147.65625, - "top": -82.494824, - "right": -146.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 239, - "left": -146.25, - "top": -82.494824, - "right": -144.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 239, - "left": -144.84375, - "top": -82.494824, - "right": -143.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 239, - "left": -143.4375, - "top": -82.494824, - "right": -142.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 239, - "left": -142.03125, - "top": -82.494824, - "right": -140.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 239, - "left": -140.625, - "top": -82.494824, - "right": -139.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 239, - "left": -139.21875, - "top": -82.494824, - "right": -137.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 239, - "left": -137.8125, - "top": -82.494824, - "right": -136.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 239, - "left": -136.40625, - "top": -82.494824, - "right": -135.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 239, - "left": -135.0, - "top": -82.494824, - "right": -133.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 239, - "left": -133.59375, - "top": -82.494824, - "right": -132.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 239, - "left": -132.1875, - "top": -82.494824, - "right": -130.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 239, - "left": -130.78125, - "top": -82.494824, - "right": -129.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 239, - "left": -129.375, - "top": -82.494824, - "right": -127.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 239, - "left": -127.96875, - "top": -82.494824, - "right": -126.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 239, - "left": -126.5625, - "top": -82.494824, - "right": -125.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 239, - "left": -125.15625, - "top": -82.494824, - "right": -123.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 239, - "left": -123.75, - "top": -82.494824, - "right": -122.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 239, - "left": -122.34375, - "top": -82.494824, - "right": -120.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 239, - "left": -120.9375, - "top": -82.494824, - "right": -119.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 239, - "left": -119.53125, - "top": -82.494824, - "right": -118.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 239, - "left": -118.125, - "top": -82.494824, - "right": -116.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 239, - "left": -116.71875, - "top": -82.494824, - "right": -115.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 239, - "left": -115.3125, - "top": -82.494824, - "right": -113.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 239, - "left": -113.90625, - "top": -82.494824, - "right": -112.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 239, - "left": -112.5, - "top": -82.494824, - "right": -111.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 239, - "left": -111.09375, - "top": -82.494824, - "right": -109.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 239, - "left": -109.6875, - "top": -82.494824, - "right": -108.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 239, - "left": -108.28125, - "top": -82.494824, - "right": -106.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 239, - "left": -106.875, - "top": -82.494824, - "right": -105.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 239, - "left": -105.46875, - "top": -82.494824, - "right": -104.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 239, - "left": -104.0625, - "top": -82.494824, - "right": -102.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 239, - "left": -102.65625, - "top": -82.494824, - "right": -101.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 239, - "left": -101.25, - "top": -82.494824, - "right": -99.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 239, - "left": -99.84375, - "top": -82.494824, - "right": -98.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 239, - "left": -98.4375, - "top": -82.494824, - "right": -97.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 239, - "left": -97.03125, - "top": -82.494824, - "right": -95.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 239, - "left": -95.625, - "top": -82.494824, - "right": -94.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 239, - "left": -94.21875, - "top": -82.494824, - "right": -92.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 239, - "left": -92.8125, - "top": -82.494824, - "right": -91.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 239, - "left": -91.40625, - "top": -82.494824, - "right": -90.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 239, - "left": -90.0, - "top": -82.494824, - "right": -88.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 239, - "left": -88.59375, - "top": -82.494824, - "right": -87.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 239, - "left": -87.1875, - "top": -82.494824, - "right": -85.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 239, - "left": -85.78125, - "top": -82.494824, - "right": -84.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 239, - "left": -84.375, - "top": -82.494824, - "right": -82.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 239, - "left": -82.96875, - "top": -82.494824, - "right": -81.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 239, - "left": -81.5625, - "top": -82.494824, - "right": -80.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 239, - "left": -80.15625, - "top": -82.494824, - "right": -78.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 239, - "left": -78.75, - "top": -82.494824, - "right": -77.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 239, - "left": -77.34375, - "top": -82.494824, - "right": -75.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 239, - "left": -75.9375, - "top": -82.494824, - "right": -74.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 239, - "left": -74.53125, - "top": -82.494824, - "right": -73.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 239, - "left": -73.125, - "top": -82.494824, - "right": -71.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 239, - "left": -71.71875, - "top": -82.494824, - "right": -70.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 239, - "left": -70.3125, - "top": -82.494824, - "right": -68.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 239, - "left": -68.90625, - "top": -82.494824, - "right": -67.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 239, - "left": -67.5, - "top": -82.494824, - "right": -66.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 239, - "left": -66.09375, - "top": -82.494824, - "right": -64.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 239, - "left": -64.6875, - "top": -82.494824, - "right": -63.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 239, - "left": -63.28125, - "top": -82.494824, - "right": -61.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 239, - "left": -61.875, - "top": -82.494824, - "right": -60.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 239, - "left": -60.46875, - "top": -82.494824, - "right": -59.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 239, - "left": -59.0625, - "top": -82.494824, - "right": -57.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 239, - "left": -57.65625, - "top": -82.494824, - "right": -56.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 239, - "left": -56.25, - "top": -82.494824, - "right": -54.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 239, - "left": -54.84375, - "top": -82.494824, - "right": -53.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 239, - "left": -53.4375, - "top": -82.494824, - "right": -52.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 239, - "left": -52.03125, - "top": -82.494824, - "right": -50.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 239, - "left": -50.625, - "top": -82.494824, - "right": -49.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 239, - "left": -49.21875, - "top": -82.494824, - "right": -47.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 239, - "left": -47.8125, - "top": -82.494824, - "right": -46.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 239, - "left": -46.40625, - "top": -82.494824, - "right": -45.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 239, - "left": -45.0, - "top": -82.494824, - "right": -43.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 239, - "left": -43.59375, - "top": -82.494824, - "right": -42.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 239, - "left": -42.1875, - "top": -82.494824, - "right": -40.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 239, - "left": -40.78125, - "top": -82.494824, - "right": -39.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 239, - "left": -39.375, - "top": -82.494824, - "right": -37.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 239, - "left": -37.96875, - "top": -82.494824, - "right": -36.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 239, - "left": -36.5625, - "top": -82.494824, - "right": -35.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 239, - "left": -35.15625, - "top": -82.494824, - "right": -33.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 239, - "left": -33.75, - "top": -82.494824, - "right": -32.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 239, - "left": -32.34375, - "top": -82.494824, - "right": -30.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 239, - "left": -30.9375, - "top": -82.494824, - "right": -29.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 239, - "left": -29.53125, - "top": -82.494824, - "right": -28.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 239, - "left": -28.125, - "top": -82.494824, - "right": -26.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 239, - "left": -26.71875, - "top": -82.494824, - "right": -25.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 239, - "left": -25.3125, - "top": -82.494824, - "right": -23.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 239, - "left": -23.90625, - "top": -82.494824, - "right": -22.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 239, - "left": -22.5, - "top": -82.494824, - "right": -21.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 239, - "left": -21.09375, - "top": -82.494824, - "right": -19.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 239, - "left": -19.6875, - "top": -82.494824, - "right": -18.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 239, - "left": -18.28125, - "top": -82.494824, - "right": -16.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 239, - "left": -16.875, - "top": -82.494824, - "right": -15.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 239, - "left": -15.46875, - "top": -82.494824, - "right": -14.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 239, - "left": -14.0625, - "top": -82.494824, - "right": -12.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 239, - "left": -12.65625, - "top": -82.494824, - "right": -11.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 239, - "left": -11.25, - "top": -82.494824, - "right": -9.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 239, - "left": -9.84375, - "top": -82.494824, - "right": -8.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 239, - "left": -8.4375, - "top": -82.494824, - "right": -7.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 239, - "left": -7.03125, - "top": -82.494824, - "right": -5.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 239, - "left": -5.625, - "top": -82.494824, - "right": -4.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 239, - "left": -4.21875, - "top": -82.494824, - "right": -2.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 239, - "left": -2.8125, - "top": -82.494824, - "right": -1.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 239, - "left": -1.40625, - "top": -82.494824, - "right": 0.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 239, - "left": 0.0, - "top": -82.494824, - "right": 1.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 239, - "left": 1.40625, - "top": -82.494824, - "right": 2.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 239, - "left": 2.8125, - "top": -82.494824, - "right": 4.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 239, - "left": 4.21875, - "top": -82.494824, - "right": 5.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 239, - "left": 5.625, - "top": -82.494824, - "right": 7.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 239, - "left": 7.03125, - "top": -82.494824, - "right": 8.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 239, - "left": 8.4375, - "top": -82.494824, - "right": 9.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 239, - "left": 9.84375, - "top": -82.494824, - "right": 11.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 239, - "left": 11.25, - "top": -82.494824, - "right": 12.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 239, - "left": 12.65625, - "top": -82.494824, - "right": 14.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 239, - "left": 14.0625, - "top": -82.494824, - "right": 15.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 239, - "left": 15.46875, - "top": -82.494824, - "right": 16.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 239, - "left": 16.875, - "top": -82.494824, - "right": 18.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 239, - "left": 18.28125, - "top": -82.494824, - "right": 19.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 239, - "left": 19.6875, - "top": -82.494824, - "right": 21.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 239, - "left": 21.09375, - "top": -82.494824, - "right": 22.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 239, - "left": 22.5, - "top": -82.494824, - "right": 23.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 239, - "left": 23.90625, - "top": -82.494824, - "right": 25.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 239, - "left": 25.3125, - "top": -82.494824, - "right": 26.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 239, - "left": 26.71875, - "top": -82.494824, - "right": 28.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 239, - "left": 28.125, - "top": -82.494824, - "right": 29.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 239, - "left": 29.53125, - "top": -82.494824, - "right": 30.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 239, - "left": 30.9375, - "top": -82.494824, - "right": 32.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 239, - "left": 32.34375, - "top": -82.494824, - "right": 33.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 239, - "left": 33.75, - "top": -82.494824, - "right": 35.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 239, - "left": 35.15625, - "top": -82.494824, - "right": 36.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 239, - "left": 36.5625, - "top": -82.494824, - "right": 37.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 239, - "left": 37.96875, - "top": -82.494824, - "right": 39.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 239, - "left": 39.375, - "top": -82.494824, - "right": 40.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 239, - "left": 40.78125, - "top": -82.494824, - "right": 42.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 239, - "left": 42.1875, - "top": -82.494824, - "right": 43.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 239, - "left": 43.59375, - "top": -82.494824, - "right": 45.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 239, - "left": 45.0, - "top": -82.494824, - "right": 46.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 239, - "left": 46.40625, - "top": -82.494824, - "right": 47.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 239, - "left": 47.8125, - "top": -82.494824, - "right": 49.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 239, - "left": 49.21875, - "top": -82.494824, - "right": 50.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 239, - "left": 50.625, - "top": -82.494824, - "right": 52.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 239, - "left": 52.03125, - "top": -82.494824, - "right": 53.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 239, - "left": 53.4375, - "top": -82.494824, - "right": 54.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 239, - "left": 54.84375, - "top": -82.494824, - "right": 56.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 239, - "left": 56.25, - "top": -82.494824, - "right": 57.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 239, - "left": 57.65625, - "top": -82.494824, - "right": 59.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 239, - "left": 59.0625, - "top": -82.494824, - "right": 60.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 239, - "left": 60.46875, - "top": -82.494824, - "right": 61.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 239, - "left": 61.875, - "top": -82.494824, - "right": 63.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 239, - "left": 63.28125, - "top": -82.494824, - "right": 64.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 239, - "left": 64.6875, - "top": -82.494824, - "right": 66.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 239, - "left": 66.09375, - "top": -82.494824, - "right": 67.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 239, - "left": 67.5, - "top": -82.494824, - "right": 68.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 239, - "left": 68.90625, - "top": -82.494824, - "right": 70.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 239, - "left": 70.3125, - "top": -82.494824, - "right": 71.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 239, - "left": 71.71875, - "top": -82.494824, - "right": 73.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 239, - "left": 73.125, - "top": -82.494824, - "right": 74.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 239, - "left": 74.53125, - "top": -82.494824, - "right": 75.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 239, - "left": 75.9375, - "top": -82.494824, - "right": 77.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 239, - "left": 77.34375, - "top": -82.494824, - "right": 78.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 239, - "left": 78.75, - "top": -82.494824, - "right": 80.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 239, - "left": 80.15625, - "top": -82.494824, - "right": 81.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 239, - "left": 81.5625, - "top": -82.494824, - "right": 82.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 239, - "left": 82.96875, - "top": -82.494824, - "right": 84.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 239, - "left": 84.375, - "top": -82.494824, - "right": 85.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 239, - "left": 85.78125, - "top": -82.494824, - "right": 87.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 239, - "left": 87.1875, - "top": -82.494824, - "right": 88.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 239, - "left": 88.59375, - "top": -82.494824, - "right": 90.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 239, - "left": 90.0, - "top": -82.494824, - "right": 91.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 239, - "left": 91.40625, - "top": -82.494824, - "right": 92.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 239, - "left": 92.8125, - "top": -82.494824, - "right": 94.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 239, - "left": 94.21875, - "top": -82.494824, - "right": 95.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 239, - "left": 95.625, - "top": -82.494824, - "right": 97.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 239, - "left": 97.03125, - "top": -82.494824, - "right": 98.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 239, - "left": 98.4375, - "top": -82.494824, - "right": 99.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 239, - "left": 99.84375, - "top": -82.494824, - "right": 101.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 239, - "left": 101.25, - "top": -82.494824, - "right": 102.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 239, - "left": 102.65625, - "top": -82.494824, - "right": 104.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 239, - "left": 104.0625, - "top": -82.494824, - "right": 105.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 239, - "left": 105.46875, - "top": -82.494824, - "right": 106.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 239, - "left": 106.875, - "top": -82.494824, - "right": 108.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 239, - "left": 108.28125, - "top": -82.494824, - "right": 109.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 239, - "left": 109.6875, - "top": -82.494824, - "right": 111.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 239, - "left": 111.09375, - "top": -82.494824, - "right": 112.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 239, - "left": 112.5, - "top": -82.494824, - "right": 113.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 239, - "left": 113.90625, - "top": -82.494824, - "right": 115.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 239, - "left": 115.3125, - "top": -82.494824, - "right": 116.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 239, - "left": 116.71875, - "top": -82.494824, - "right": 118.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 239, - "left": 118.125, - "top": -82.494824, - "right": 119.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 239, - "left": 119.53125, - "top": -82.494824, - "right": 120.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 239, - "left": 120.9375, - "top": -82.494824, - "right": 122.34375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 239, - "left": 122.34375, - "top": -82.494824, - "right": 123.75, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 239, - "left": 123.75, - "top": -82.494824, - "right": 125.15625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 239, - "left": 125.15625, - "top": -82.494824, - "right": 126.5625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 239, - "left": 126.5625, - "top": -82.494824, - "right": 127.96875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 239, - "left": 127.96875, - "top": -82.494824, - "right": 129.375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 239, - "left": 129.375, - "top": -82.494824, - "right": 130.78125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 239, - "left": 130.78125, - "top": -82.494824, - "right": 132.1875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 239, - "left": 132.1875, - "top": -82.494824, - "right": 133.59375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 239, - "left": 133.59375, - "top": -82.494824, - "right": 135.0, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 239, - "left": 135.0, - "top": -82.494824, - "right": 136.40625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 239, - "left": 136.40625, - "top": -82.494824, - "right": 137.8125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 239, - "left": 137.8125, - "top": -82.494824, - "right": 139.21875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 239, - "left": 139.21875, - "top": -82.494824, - "right": 140.625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 239, - "left": 140.625, - "top": -82.494824, - "right": 142.03125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 239, - "left": 142.03125, - "top": -82.494824, - "right": 143.4375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 239, - "left": 143.4375, - "top": -82.494824, - "right": 144.84375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 239, - "left": 144.84375, - "top": -82.494824, - "right": 146.25, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 239, - "left": 146.25, - "top": -82.494824, - "right": 147.65625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 239, - "left": 147.65625, - "top": -82.494824, - "right": 149.0625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 239, - "left": 149.0625, - "top": -82.494824, - "right": 150.46875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 239, - "left": 150.46875, - "top": -82.494824, - "right": 151.875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 239, - "left": 151.875, - "top": -82.494824, - "right": 153.28125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 239, - "left": 153.28125, - "top": -82.494824, - "right": 154.6875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 239, - "left": 154.6875, - "top": -82.494824, - "right": 156.09375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 239, - "left": 156.09375, - "top": -82.494824, - "right": 157.5, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 239, - "left": 157.5, - "top": -82.494824, - "right": 158.90625, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 239, - "left": 158.90625, - "top": -82.494824, - "right": 160.3125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 239, - "left": 160.3125, - "top": -82.494824, - "right": 161.71875, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 239, - "left": 161.71875, - "top": -82.494824, - "right": 163.125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 239, - "left": 163.125, - "top": -82.494824, - "right": 164.53125, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 239, - "left": 164.53125, - "top": -82.494824, - "right": 165.9375, - "bottom": -82.676285, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 240, - "left": -154.6875, - "top": -82.676285, - "right": -153.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 240, - "left": -153.28125, - "top": -82.676285, - "right": -151.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 240, - "left": -151.875, - "top": -82.676285, - "right": -150.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 240, - "left": -150.46875, - "top": -82.676285, - "right": -149.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 240, - "left": -149.0625, - "top": -82.676285, - "right": -147.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 240, - "left": -147.65625, - "top": -82.676285, - "right": -146.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 240, - "left": -146.25, - "top": -82.676285, - "right": -144.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 240, - "left": -144.84375, - "top": -82.676285, - "right": -143.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 240, - "left": -143.4375, - "top": -82.676285, - "right": -142.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 240, - "left": -142.03125, - "top": -82.676285, - "right": -140.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 240, - "left": -140.625, - "top": -82.676285, - "right": -139.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 240, - "left": -139.21875, - "top": -82.676285, - "right": -137.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 240, - "left": -137.8125, - "top": -82.676285, - "right": -136.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 240, - "left": -136.40625, - "top": -82.676285, - "right": -135.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 240, - "left": -135.0, - "top": -82.676285, - "right": -133.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 240, - "left": -133.59375, - "top": -82.676285, - "right": -132.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 240, - "left": -132.1875, - "top": -82.676285, - "right": -130.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 240, - "left": -130.78125, - "top": -82.676285, - "right": -129.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 240, - "left": -129.375, - "top": -82.676285, - "right": -127.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 240, - "left": -127.96875, - "top": -82.676285, - "right": -126.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 240, - "left": -126.5625, - "top": -82.676285, - "right": -125.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 240, - "left": -125.15625, - "top": -82.676285, - "right": -123.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 240, - "left": -123.75, - "top": -82.676285, - "right": -122.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 240, - "left": -122.34375, - "top": -82.676285, - "right": -120.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 240, - "left": -120.9375, - "top": -82.676285, - "right": -119.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 240, - "left": -119.53125, - "top": -82.676285, - "right": -118.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 240, - "left": -118.125, - "top": -82.676285, - "right": -116.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 240, - "left": -116.71875, - "top": -82.676285, - "right": -115.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 240, - "left": -115.3125, - "top": -82.676285, - "right": -113.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 240, - "left": -113.90625, - "top": -82.676285, - "right": -112.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 240, - "left": -112.5, - "top": -82.676285, - "right": -111.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 240, - "left": -111.09375, - "top": -82.676285, - "right": -109.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 240, - "left": -109.6875, - "top": -82.676285, - "right": -108.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 240, - "left": -108.28125, - "top": -82.676285, - "right": -106.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 240, - "left": -106.875, - "top": -82.676285, - "right": -105.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 240, - "left": -105.46875, - "top": -82.676285, - "right": -104.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 240, - "left": -104.0625, - "top": -82.676285, - "right": -102.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 240, - "left": -102.65625, - "top": -82.676285, - "right": -101.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 240, - "left": -101.25, - "top": -82.676285, - "right": -99.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 240, - "left": -99.84375, - "top": -82.676285, - "right": -98.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 240, - "left": -98.4375, - "top": -82.676285, - "right": -97.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 240, - "left": -97.03125, - "top": -82.676285, - "right": -95.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 240, - "left": -95.625, - "top": -82.676285, - "right": -94.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 240, - "left": -94.21875, - "top": -82.676285, - "right": -92.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 240, - "left": -92.8125, - "top": -82.676285, - "right": -91.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 240, - "left": -91.40625, - "top": -82.676285, - "right": -90.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 240, - "left": -90.0, - "top": -82.676285, - "right": -88.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 240, - "left": -88.59375, - "top": -82.676285, - "right": -87.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 240, - "left": -87.1875, - "top": -82.676285, - "right": -85.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 240, - "left": -85.78125, - "top": -82.676285, - "right": -84.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 240, - "left": -84.375, - "top": -82.676285, - "right": -82.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 240, - "left": -82.96875, - "top": -82.676285, - "right": -81.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 240, - "left": -81.5625, - "top": -82.676285, - "right": -80.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 240, - "left": -80.15625, - "top": -82.676285, - "right": -78.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 240, - "left": -78.75, - "top": -82.676285, - "right": -77.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 240, - "left": -77.34375, - "top": -82.676285, - "right": -75.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 240, - "left": -75.9375, - "top": -82.676285, - "right": -74.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 240, - "left": -74.53125, - "top": -82.676285, - "right": -73.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 240, - "left": -73.125, - "top": -82.676285, - "right": -71.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 240, - "left": -71.71875, - "top": -82.676285, - "right": -70.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 240, - "left": -70.3125, - "top": -82.676285, - "right": -68.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 240, - "left": -68.90625, - "top": -82.676285, - "right": -67.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 240, - "left": -67.5, - "top": -82.676285, - "right": -66.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 240, - "left": -66.09375, - "top": -82.676285, - "right": -64.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 240, - "left": -64.6875, - "top": -82.676285, - "right": -63.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 240, - "left": -63.28125, - "top": -82.676285, - "right": -61.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 240, - "left": -61.875, - "top": -82.676285, - "right": -60.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 240, - "left": -60.46875, - "top": -82.676285, - "right": -59.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 240, - "left": -59.0625, - "top": -82.676285, - "right": -57.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 240, - "left": -57.65625, - "top": -82.676285, - "right": -56.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 240, - "left": -56.25, - "top": -82.676285, - "right": -54.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 240, - "left": -54.84375, - "top": -82.676285, - "right": -53.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 240, - "left": -53.4375, - "top": -82.676285, - "right": -52.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 240, - "left": -52.03125, - "top": -82.676285, - "right": -50.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 240, - "left": -50.625, - "top": -82.676285, - "right": -49.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 240, - "left": -49.21875, - "top": -82.676285, - "right": -47.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 240, - "left": -47.8125, - "top": -82.676285, - "right": -46.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 240, - "left": -46.40625, - "top": -82.676285, - "right": -45.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 240, - "left": -45.0, - "top": -82.676285, - "right": -43.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 240, - "left": -43.59375, - "top": -82.676285, - "right": -42.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 240, - "left": -42.1875, - "top": -82.676285, - "right": -40.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 240, - "left": -40.78125, - "top": -82.676285, - "right": -39.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 240, - "left": -39.375, - "top": -82.676285, - "right": -37.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 240, - "left": -37.96875, - "top": -82.676285, - "right": -36.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 240, - "left": -36.5625, - "top": -82.676285, - "right": -35.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 240, - "left": -35.15625, - "top": -82.676285, - "right": -33.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 240, - "left": -33.75, - "top": -82.676285, - "right": -32.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 240, - "left": -32.34375, - "top": -82.676285, - "right": -30.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 240, - "left": -30.9375, - "top": -82.676285, - "right": -29.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 240, - "left": -29.53125, - "top": -82.676285, - "right": -28.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 240, - "left": -28.125, - "top": -82.676285, - "right": -26.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 240, - "left": -26.71875, - "top": -82.676285, - "right": -25.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 240, - "left": -25.3125, - "top": -82.676285, - "right": -23.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 240, - "left": -23.90625, - "top": -82.676285, - "right": -22.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 240, - "left": -22.5, - "top": -82.676285, - "right": -21.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 240, - "left": -21.09375, - "top": -82.676285, - "right": -19.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 240, - "left": -19.6875, - "top": -82.676285, - "right": -18.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 240, - "left": -18.28125, - "top": -82.676285, - "right": -16.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 240, - "left": -16.875, - "top": -82.676285, - "right": -15.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 240, - "left": -15.46875, - "top": -82.676285, - "right": -14.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 240, - "left": -14.0625, - "top": -82.676285, - "right": -12.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 240, - "left": -12.65625, - "top": -82.676285, - "right": -11.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 240, - "left": -11.25, - "top": -82.676285, - "right": -9.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 240, - "left": -9.84375, - "top": -82.676285, - "right": -8.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 240, - "left": -8.4375, - "top": -82.676285, - "right": -7.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 240, - "left": -7.03125, - "top": -82.676285, - "right": -5.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 240, - "left": -5.625, - "top": -82.676285, - "right": -4.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 240, - "left": -4.21875, - "top": -82.676285, - "right": -2.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 240, - "left": -2.8125, - "top": -82.676285, - "right": -1.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 240, - "left": -1.40625, - "top": -82.676285, - "right": 0.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 240, - "left": 0.0, - "top": -82.676285, - "right": 1.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 240, - "left": 1.40625, - "top": -82.676285, - "right": 2.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 240, - "left": 2.8125, - "top": -82.676285, - "right": 4.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 240, - "left": 4.21875, - "top": -82.676285, - "right": 5.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 240, - "left": 5.625, - "top": -82.676285, - "right": 7.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 240, - "left": 7.03125, - "top": -82.676285, - "right": 8.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 240, - "left": 8.4375, - "top": -82.676285, - "right": 9.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 240, - "left": 9.84375, - "top": -82.676285, - "right": 11.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 240, - "left": 11.25, - "top": -82.676285, - "right": 12.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 240, - "left": 12.65625, - "top": -82.676285, - "right": 14.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 240, - "left": 14.0625, - "top": -82.676285, - "right": 15.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 240, - "left": 15.46875, - "top": -82.676285, - "right": 16.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 240, - "left": 16.875, - "top": -82.676285, - "right": 18.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 240, - "left": 18.28125, - "top": -82.676285, - "right": 19.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 240, - "left": 19.6875, - "top": -82.676285, - "right": 21.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 240, - "left": 21.09375, - "top": -82.676285, - "right": 22.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 240, - "left": 22.5, - "top": -82.676285, - "right": 23.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 240, - "left": 23.90625, - "top": -82.676285, - "right": 25.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 240, - "left": 25.3125, - "top": -82.676285, - "right": 26.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 240, - "left": 26.71875, - "top": -82.676285, - "right": 28.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 240, - "left": 28.125, - "top": -82.676285, - "right": 29.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 240, - "left": 29.53125, - "top": -82.676285, - "right": 30.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 240, - "left": 30.9375, - "top": -82.676285, - "right": 32.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 240, - "left": 32.34375, - "top": -82.676285, - "right": 33.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 240, - "left": 33.75, - "top": -82.676285, - "right": 35.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 240, - "left": 35.15625, - "top": -82.676285, - "right": 36.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 240, - "left": 36.5625, - "top": -82.676285, - "right": 37.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 240, - "left": 37.96875, - "top": -82.676285, - "right": 39.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 240, - "left": 39.375, - "top": -82.676285, - "right": 40.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 240, - "left": 40.78125, - "top": -82.676285, - "right": 42.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 240, - "left": 42.1875, - "top": -82.676285, - "right": 43.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 240, - "left": 43.59375, - "top": -82.676285, - "right": 45.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 240, - "left": 45.0, - "top": -82.676285, - "right": 46.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 240, - "left": 46.40625, - "top": -82.676285, - "right": 47.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 240, - "left": 47.8125, - "top": -82.676285, - "right": 49.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 240, - "left": 49.21875, - "top": -82.676285, - "right": 50.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 240, - "left": 50.625, - "top": -82.676285, - "right": 52.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 240, - "left": 52.03125, - "top": -82.676285, - "right": 53.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 240, - "left": 53.4375, - "top": -82.676285, - "right": 54.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 240, - "left": 54.84375, - "top": -82.676285, - "right": 56.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 240, - "left": 56.25, - "top": -82.676285, - "right": 57.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 240, - "left": 57.65625, - "top": -82.676285, - "right": 59.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 240, - "left": 59.0625, - "top": -82.676285, - "right": 60.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 240, - "left": 60.46875, - "top": -82.676285, - "right": 61.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 240, - "left": 61.875, - "top": -82.676285, - "right": 63.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 240, - "left": 63.28125, - "top": -82.676285, - "right": 64.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 240, - "left": 64.6875, - "top": -82.676285, - "right": 66.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 240, - "left": 66.09375, - "top": -82.676285, - "right": 67.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 240, - "left": 67.5, - "top": -82.676285, - "right": 68.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 240, - "left": 68.90625, - "top": -82.676285, - "right": 70.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 240, - "left": 70.3125, - "top": -82.676285, - "right": 71.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 240, - "left": 71.71875, - "top": -82.676285, - "right": 73.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 240, - "left": 73.125, - "top": -82.676285, - "right": 74.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 240, - "left": 74.53125, - "top": -82.676285, - "right": 75.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 240, - "left": 75.9375, - "top": -82.676285, - "right": 77.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 240, - "left": 77.34375, - "top": -82.676285, - "right": 78.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 240, - "left": 78.75, - "top": -82.676285, - "right": 80.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 240, - "left": 80.15625, - "top": -82.676285, - "right": 81.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 240, - "left": 81.5625, - "top": -82.676285, - "right": 82.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 240, - "left": 82.96875, - "top": -82.676285, - "right": 84.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 240, - "left": 84.375, - "top": -82.676285, - "right": 85.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 240, - "left": 85.78125, - "top": -82.676285, - "right": 87.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 240, - "left": 87.1875, - "top": -82.676285, - "right": 88.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 240, - "left": 88.59375, - "top": -82.676285, - "right": 90.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 240, - "left": 90.0, - "top": -82.676285, - "right": 91.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 240, - "left": 91.40625, - "top": -82.676285, - "right": 92.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 240, - "left": 92.8125, - "top": -82.676285, - "right": 94.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 240, - "left": 94.21875, - "top": -82.676285, - "right": 95.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 240, - "left": 95.625, - "top": -82.676285, - "right": 97.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 240, - "left": 97.03125, - "top": -82.676285, - "right": 98.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 240, - "left": 98.4375, - "top": -82.676285, - "right": 99.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 240, - "left": 99.84375, - "top": -82.676285, - "right": 101.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 240, - "left": 101.25, - "top": -82.676285, - "right": 102.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 240, - "left": 102.65625, - "top": -82.676285, - "right": 104.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 240, - "left": 104.0625, - "top": -82.676285, - "right": 105.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 240, - "left": 105.46875, - "top": -82.676285, - "right": 106.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 240, - "left": 106.875, - "top": -82.676285, - "right": 108.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 240, - "left": 108.28125, - "top": -82.676285, - "right": 109.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 240, - "left": 109.6875, - "top": -82.676285, - "right": 111.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 240, - "left": 111.09375, - "top": -82.676285, - "right": 112.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 240, - "left": 112.5, - "top": -82.676285, - "right": 113.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 240, - "left": 113.90625, - "top": -82.676285, - "right": 115.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 240, - "left": 115.3125, - "top": -82.676285, - "right": 116.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 240, - "left": 116.71875, - "top": -82.676285, - "right": 118.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 240, - "left": 118.125, - "top": -82.676285, - "right": 119.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 240, - "left": 119.53125, - "top": -82.676285, - "right": 120.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 240, - "left": 120.9375, - "top": -82.676285, - "right": 122.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 240, - "left": 122.34375, - "top": -82.676285, - "right": 123.75, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 240, - "left": 123.75, - "top": -82.676285, - "right": 125.15625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 240, - "left": 125.15625, - "top": -82.676285, - "right": 126.5625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 240, - "left": 126.5625, - "top": -82.676285, - "right": 127.96875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 240, - "left": 127.96875, - "top": -82.676285, - "right": 129.375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 240, - "left": 129.375, - "top": -82.676285, - "right": 130.78125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 240, - "left": 130.78125, - "top": -82.676285, - "right": 132.1875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 240, - "left": 132.1875, - "top": -82.676285, - "right": 133.59375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 240, - "left": 133.59375, - "top": -82.676285, - "right": 135.0, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 240, - "left": 135.0, - "top": -82.676285, - "right": 136.40625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 240, - "left": 136.40625, - "top": -82.676285, - "right": 137.8125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 240, - "left": 137.8125, - "top": -82.676285, - "right": 139.21875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 240, - "left": 139.21875, - "top": -82.676285, - "right": 140.625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 240, - "left": 140.625, - "top": -82.676285, - "right": 142.03125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 240, - "left": 142.03125, - "top": -82.676285, - "right": 143.4375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 240, - "left": 143.4375, - "top": -82.676285, - "right": 144.84375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 240, - "left": 144.84375, - "top": -82.676285, - "right": 146.25, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 240, - "left": 146.25, - "top": -82.676285, - "right": 147.65625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 240, - "left": 147.65625, - "top": -82.676285, - "right": 149.0625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 240, - "left": 149.0625, - "top": -82.676285, - "right": 150.46875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 240, - "left": 150.46875, - "top": -82.676285, - "right": 151.875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 240, - "left": 151.875, - "top": -82.676285, - "right": 153.28125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 240, - "left": 153.28125, - "top": -82.676285, - "right": 154.6875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 240, - "left": 154.6875, - "top": -82.676285, - "right": 156.09375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 240, - "left": 156.09375, - "top": -82.676285, - "right": 157.5, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 240, - "left": 157.5, - "top": -82.676285, - "right": 158.90625, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 240, - "left": 158.90625, - "top": -82.676285, - "right": 160.3125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 240, - "left": 160.3125, - "top": -82.676285, - "right": 161.71875, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 240, - "left": 161.71875, - "top": -82.676285, - "right": 163.125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 240, - "left": 163.125, - "top": -82.676285, - "right": 164.53125, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 240, - "left": 164.53125, - "top": -82.676285, - "right": 165.9375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 240, - "left": 165.9375, - "top": -82.676285, - "right": 167.34375, - "bottom": -82.853382, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 241, - "left": -154.6875, - "top": -82.853382, - "right": -153.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 241, - "left": -153.28125, - "top": -82.853382, - "right": -151.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 241, - "left": -151.875, - "top": -82.853382, - "right": -150.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 241, - "left": -150.46875, - "top": -82.853382, - "right": -149.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 241, - "left": -149.0625, - "top": -82.853382, - "right": -147.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 241, - "left": -147.65625, - "top": -82.853382, - "right": -146.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 241, - "left": -146.25, - "top": -82.853382, - "right": -144.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 241, - "left": -144.84375, - "top": -82.853382, - "right": -143.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 241, - "left": -143.4375, - "top": -82.853382, - "right": -142.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 241, - "left": -142.03125, - "top": -82.853382, - "right": -140.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 241, - "left": -140.625, - "top": -82.853382, - "right": -139.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 241, - "left": -139.21875, - "top": -82.853382, - "right": -137.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 241, - "left": -137.8125, - "top": -82.853382, - "right": -136.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 241, - "left": -136.40625, - "top": -82.853382, - "right": -135.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 241, - "left": -135.0, - "top": -82.853382, - "right": -133.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 241, - "left": -133.59375, - "top": -82.853382, - "right": -132.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 241, - "left": -132.1875, - "top": -82.853382, - "right": -130.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 241, - "left": -130.78125, - "top": -82.853382, - "right": -129.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 241, - "left": -129.375, - "top": -82.853382, - "right": -127.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 241, - "left": -127.96875, - "top": -82.853382, - "right": -126.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 241, - "left": -126.5625, - "top": -82.853382, - "right": -125.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 241, - "left": -125.15625, - "top": -82.853382, - "right": -123.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 241, - "left": -123.75, - "top": -82.853382, - "right": -122.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 241, - "left": -122.34375, - "top": -82.853382, - "right": -120.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 241, - "left": -120.9375, - "top": -82.853382, - "right": -119.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 241, - "left": -119.53125, - "top": -82.853382, - "right": -118.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 241, - "left": -118.125, - "top": -82.853382, - "right": -116.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 241, - "left": -116.71875, - "top": -82.853382, - "right": -115.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 241, - "left": -115.3125, - "top": -82.853382, - "right": -113.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 241, - "left": -113.90625, - "top": -82.853382, - "right": -112.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 241, - "left": -112.5, - "top": -82.853382, - "right": -111.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 241, - "left": -111.09375, - "top": -82.853382, - "right": -109.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 241, - "left": -109.6875, - "top": -82.853382, - "right": -108.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 241, - "left": -108.28125, - "top": -82.853382, - "right": -106.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 241, - "left": -106.875, - "top": -82.853382, - "right": -105.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 241, - "left": -105.46875, - "top": -82.853382, - "right": -104.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 241, - "left": -104.0625, - "top": -82.853382, - "right": -102.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 241, - "left": -102.65625, - "top": -82.853382, - "right": -101.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 241, - "left": -101.25, - "top": -82.853382, - "right": -99.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 241, - "left": -99.84375, - "top": -82.853382, - "right": -98.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 241, - "left": -98.4375, - "top": -82.853382, - "right": -97.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 241, - "left": -97.03125, - "top": -82.853382, - "right": -95.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 241, - "left": -95.625, - "top": -82.853382, - "right": -94.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 241, - "left": -94.21875, - "top": -82.853382, - "right": -92.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 241, - "left": -92.8125, - "top": -82.853382, - "right": -91.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 241, - "left": -91.40625, - "top": -82.853382, - "right": -90.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 241, - "left": -90.0, - "top": -82.853382, - "right": -88.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 241, - "left": -88.59375, - "top": -82.853382, - "right": -87.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 241, - "left": -87.1875, - "top": -82.853382, - "right": -85.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 241, - "left": -85.78125, - "top": -82.853382, - "right": -84.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 241, - "left": -84.375, - "top": -82.853382, - "right": -82.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 241, - "left": -82.96875, - "top": -82.853382, - "right": -81.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 241, - "left": -81.5625, - "top": -82.853382, - "right": -80.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 241, - "left": -80.15625, - "top": -82.853382, - "right": -78.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 241, - "left": -78.75, - "top": -82.853382, - "right": -77.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 241, - "left": -77.34375, - "top": -82.853382, - "right": -75.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 241, - "left": -75.9375, - "top": -82.853382, - "right": -74.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 241, - "left": -74.53125, - "top": -82.853382, - "right": -73.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 241, - "left": -73.125, - "top": -82.853382, - "right": -71.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 241, - "left": -71.71875, - "top": -82.853382, - "right": -70.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 241, - "left": -70.3125, - "top": -82.853382, - "right": -68.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 241, - "left": -68.90625, - "top": -82.853382, - "right": -67.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 241, - "left": -67.5, - "top": -82.853382, - "right": -66.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 241, - "left": -66.09375, - "top": -82.853382, - "right": -64.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 241, - "left": -64.6875, - "top": -82.853382, - "right": -63.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 241, - "left": -63.28125, - "top": -82.853382, - "right": -61.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 241, - "left": -61.875, - "top": -82.853382, - "right": -60.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 241, - "left": -60.46875, - "top": -82.853382, - "right": -59.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 241, - "left": -59.0625, - "top": -82.853382, - "right": -57.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 241, - "left": -57.65625, - "top": -82.853382, - "right": -56.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 241, - "left": -56.25, - "top": -82.853382, - "right": -54.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 241, - "left": -54.84375, - "top": -82.853382, - "right": -53.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 241, - "left": -53.4375, - "top": -82.853382, - "right": -52.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 241, - "left": -52.03125, - "top": -82.853382, - "right": -50.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 241, - "left": -50.625, - "top": -82.853382, - "right": -49.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 241, - "left": -49.21875, - "top": -82.853382, - "right": -47.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 241, - "left": -47.8125, - "top": -82.853382, - "right": -46.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 241, - "left": -46.40625, - "top": -82.853382, - "right": -45.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 241, - "left": -45.0, - "top": -82.853382, - "right": -43.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 241, - "left": -43.59375, - "top": -82.853382, - "right": -42.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 241, - "left": -42.1875, - "top": -82.853382, - "right": -40.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 241, - "left": -40.78125, - "top": -82.853382, - "right": -39.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 241, - "left": -39.375, - "top": -82.853382, - "right": -37.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 241, - "left": -37.96875, - "top": -82.853382, - "right": -36.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 241, - "left": -36.5625, - "top": -82.853382, - "right": -35.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 241, - "left": -35.15625, - "top": -82.853382, - "right": -33.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 241, - "left": -33.75, - "top": -82.853382, - "right": -32.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 241, - "left": -32.34375, - "top": -82.853382, - "right": -30.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 241, - "left": -30.9375, - "top": -82.853382, - "right": -29.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 241, - "left": -29.53125, - "top": -82.853382, - "right": -28.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 241, - "left": -28.125, - "top": -82.853382, - "right": -26.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 241, - "left": -26.71875, - "top": -82.853382, - "right": -25.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 241, - "left": -25.3125, - "top": -82.853382, - "right": -23.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 241, - "left": -23.90625, - "top": -82.853382, - "right": -22.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 241, - "left": -22.5, - "top": -82.853382, - "right": -21.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 241, - "left": -21.09375, - "top": -82.853382, - "right": -19.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 241, - "left": -19.6875, - "top": -82.853382, - "right": -18.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 241, - "left": -18.28125, - "top": -82.853382, - "right": -16.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 241, - "left": -16.875, - "top": -82.853382, - "right": -15.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 241, - "left": -15.46875, - "top": -82.853382, - "right": -14.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 241, - "left": -14.0625, - "top": -82.853382, - "right": -12.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 241, - "left": -12.65625, - "top": -82.853382, - "right": -11.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 241, - "left": -11.25, - "top": -82.853382, - "right": -9.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 241, - "left": -9.84375, - "top": -82.853382, - "right": -8.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 241, - "left": -8.4375, - "top": -82.853382, - "right": -7.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 241, - "left": -7.03125, - "top": -82.853382, - "right": -5.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 241, - "left": -5.625, - "top": -82.853382, - "right": -4.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 241, - "left": -4.21875, - "top": -82.853382, - "right": -2.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 241, - "left": -2.8125, - "top": -82.853382, - "right": -1.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 241, - "left": -1.40625, - "top": -82.853382, - "right": 0.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 241, - "left": 0.0, - "top": -82.853382, - "right": 1.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 241, - "left": 1.40625, - "top": -82.853382, - "right": 2.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 241, - "left": 2.8125, - "top": -82.853382, - "right": 4.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 241, - "left": 4.21875, - "top": -82.853382, - "right": 5.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 241, - "left": 5.625, - "top": -82.853382, - "right": 7.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 241, - "left": 7.03125, - "top": -82.853382, - "right": 8.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 241, - "left": 8.4375, - "top": -82.853382, - "right": 9.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 241, - "left": 9.84375, - "top": -82.853382, - "right": 11.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 241, - "left": 11.25, - "top": -82.853382, - "right": 12.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 241, - "left": 12.65625, - "top": -82.853382, - "right": 14.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 241, - "left": 14.0625, - "top": -82.853382, - "right": 15.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 241, - "left": 15.46875, - "top": -82.853382, - "right": 16.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 241, - "left": 16.875, - "top": -82.853382, - "right": 18.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 241, - "left": 18.28125, - "top": -82.853382, - "right": 19.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 241, - "left": 19.6875, - "top": -82.853382, - "right": 21.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 241, - "left": 21.09375, - "top": -82.853382, - "right": 22.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 241, - "left": 22.5, - "top": -82.853382, - "right": 23.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 241, - "left": 23.90625, - "top": -82.853382, - "right": 25.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 241, - "left": 25.3125, - "top": -82.853382, - "right": 26.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 241, - "left": 26.71875, - "top": -82.853382, - "right": 28.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 241, - "left": 28.125, - "top": -82.853382, - "right": 29.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 241, - "left": 29.53125, - "top": -82.853382, - "right": 30.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 241, - "left": 30.9375, - "top": -82.853382, - "right": 32.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 241, - "left": 32.34375, - "top": -82.853382, - "right": 33.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 241, - "left": 33.75, - "top": -82.853382, - "right": 35.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 241, - "left": 35.15625, - "top": -82.853382, - "right": 36.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 241, - "left": 36.5625, - "top": -82.853382, - "right": 37.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 241, - "left": 37.96875, - "top": -82.853382, - "right": 39.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 241, - "left": 39.375, - "top": -82.853382, - "right": 40.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 241, - "left": 40.78125, - "top": -82.853382, - "right": 42.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 241, - "left": 42.1875, - "top": -82.853382, - "right": 43.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 241, - "left": 43.59375, - "top": -82.853382, - "right": 45.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 241, - "left": 45.0, - "top": -82.853382, - "right": 46.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 241, - "left": 46.40625, - "top": -82.853382, - "right": 47.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 241, - "left": 47.8125, - "top": -82.853382, - "right": 49.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 241, - "left": 49.21875, - "top": -82.853382, - "right": 50.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 241, - "left": 50.625, - "top": -82.853382, - "right": 52.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 241, - "left": 52.03125, - "top": -82.853382, - "right": 53.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 241, - "left": 53.4375, - "top": -82.853382, - "right": 54.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 241, - "left": 54.84375, - "top": -82.853382, - "right": 56.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 241, - "left": 56.25, - "top": -82.853382, - "right": 57.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 241, - "left": 57.65625, - "top": -82.853382, - "right": 59.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 241, - "left": 59.0625, - "top": -82.853382, - "right": 60.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 241, - "left": 60.46875, - "top": -82.853382, - "right": 61.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 241, - "left": 61.875, - "top": -82.853382, - "right": 63.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 241, - "left": 63.28125, - "top": -82.853382, - "right": 64.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 241, - "left": 64.6875, - "top": -82.853382, - "right": 66.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 241, - "left": 66.09375, - "top": -82.853382, - "right": 67.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 241, - "left": 67.5, - "top": -82.853382, - "right": 68.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 241, - "left": 68.90625, - "top": -82.853382, - "right": 70.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 241, - "left": 70.3125, - "top": -82.853382, - "right": 71.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 241, - "left": 71.71875, - "top": -82.853382, - "right": 73.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 241, - "left": 73.125, - "top": -82.853382, - "right": 74.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 241, - "left": 74.53125, - "top": -82.853382, - "right": 75.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 241, - "left": 75.9375, - "top": -82.853382, - "right": 77.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 241, - "left": 77.34375, - "top": -82.853382, - "right": 78.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 241, - "left": 78.75, - "top": -82.853382, - "right": 80.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 241, - "left": 80.15625, - "top": -82.853382, - "right": 81.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 241, - "left": 81.5625, - "top": -82.853382, - "right": 82.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 241, - "left": 82.96875, - "top": -82.853382, - "right": 84.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 241, - "left": 84.375, - "top": -82.853382, - "right": 85.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 241, - "left": 85.78125, - "top": -82.853382, - "right": 87.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 241, - "left": 87.1875, - "top": -82.853382, - "right": 88.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 241, - "left": 88.59375, - "top": -82.853382, - "right": 90.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 241, - "left": 90.0, - "top": -82.853382, - "right": 91.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 241, - "left": 91.40625, - "top": -82.853382, - "right": 92.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 241, - "left": 92.8125, - "top": -82.853382, - "right": 94.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 241, - "left": 94.21875, - "top": -82.853382, - "right": 95.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 241, - "left": 95.625, - "top": -82.853382, - "right": 97.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 241, - "left": 97.03125, - "top": -82.853382, - "right": 98.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 241, - "left": 98.4375, - "top": -82.853382, - "right": 99.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 241, - "left": 99.84375, - "top": -82.853382, - "right": 101.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 241, - "left": 101.25, - "top": -82.853382, - "right": 102.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 241, - "left": 102.65625, - "top": -82.853382, - "right": 104.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 241, - "left": 104.0625, - "top": -82.853382, - "right": 105.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 241, - "left": 105.46875, - "top": -82.853382, - "right": 106.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 241, - "left": 106.875, - "top": -82.853382, - "right": 108.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 241, - "left": 108.28125, - "top": -82.853382, - "right": 109.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 241, - "left": 109.6875, - "top": -82.853382, - "right": 111.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 241, - "left": 111.09375, - "top": -82.853382, - "right": 112.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 241, - "left": 112.5, - "top": -82.853382, - "right": 113.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 241, - "left": 113.90625, - "top": -82.853382, - "right": 115.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 241, - "left": 115.3125, - "top": -82.853382, - "right": 116.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 241, - "left": 116.71875, - "top": -82.853382, - "right": 118.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 241, - "left": 118.125, - "top": -82.853382, - "right": 119.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 241, - "left": 119.53125, - "top": -82.853382, - "right": 120.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 241, - "left": 120.9375, - "top": -82.853382, - "right": 122.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 241, - "left": 122.34375, - "top": -82.853382, - "right": 123.75, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 241, - "left": 123.75, - "top": -82.853382, - "right": 125.15625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 241, - "left": 125.15625, - "top": -82.853382, - "right": 126.5625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 241, - "left": 126.5625, - "top": -82.853382, - "right": 127.96875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 241, - "left": 127.96875, - "top": -82.853382, - "right": 129.375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 241, - "left": 129.375, - "top": -82.853382, - "right": 130.78125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 241, - "left": 130.78125, - "top": -82.853382, - "right": 132.1875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 241, - "left": 132.1875, - "top": -82.853382, - "right": 133.59375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 241, - "left": 133.59375, - "top": -82.853382, - "right": 135.0, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 241, - "left": 135.0, - "top": -82.853382, - "right": 136.40625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 241, - "left": 136.40625, - "top": -82.853382, - "right": 137.8125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 241, - "left": 137.8125, - "top": -82.853382, - "right": 139.21875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 241, - "left": 139.21875, - "top": -82.853382, - "right": 140.625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 241, - "left": 140.625, - "top": -82.853382, - "right": 142.03125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 241, - "left": 142.03125, - "top": -82.853382, - "right": 143.4375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 241, - "left": 143.4375, - "top": -82.853382, - "right": 144.84375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 241, - "left": 144.84375, - "top": -82.853382, - "right": 146.25, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 241, - "left": 146.25, - "top": -82.853382, - "right": 147.65625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 241, - "left": 147.65625, - "top": -82.853382, - "right": 149.0625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 241, - "left": 149.0625, - "top": -82.853382, - "right": 150.46875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 241, - "left": 150.46875, - "top": -82.853382, - "right": 151.875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 241, - "left": 151.875, - "top": -82.853382, - "right": 153.28125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 241, - "left": 153.28125, - "top": -82.853382, - "right": 154.6875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 241, - "left": 154.6875, - "top": -82.853382, - "right": 156.09375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 241, - "left": 156.09375, - "top": -82.853382, - "right": 157.5, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 241, - "left": 157.5, - "top": -82.853382, - "right": 158.90625, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 241, - "left": 158.90625, - "top": -82.853382, - "right": 160.3125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 241, - "left": 160.3125, - "top": -82.853382, - "right": 161.71875, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 241, - "left": 161.71875, - "top": -82.853382, - "right": 163.125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 241, - "left": 163.125, - "top": -82.853382, - "right": 164.53125, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 241, - "left": 164.53125, - "top": -82.853382, - "right": 165.9375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 241, - "left": 165.9375, - "top": -82.853382, - "right": 167.34375, - "bottom": -83.026219, - "countries": [ - "antarctica" - ] - }, - { - "x": 18, - "y": 242, - "left": -154.6875, - "top": -83.026219, - "right": -153.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 242, - "left": -153.28125, - "top": -83.026219, - "right": -151.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 242, - "left": -151.875, - "top": -83.026219, - "right": -150.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 242, - "left": -150.46875, - "top": -83.026219, - "right": -149.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 242, - "left": -149.0625, - "top": -83.026219, - "right": -147.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 242, - "left": -147.65625, - "top": -83.026219, - "right": -146.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 242, - "left": -146.25, - "top": -83.026219, - "right": -144.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 242, - "left": -144.84375, - "top": -83.026219, - "right": -143.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 242, - "left": -143.4375, - "top": -83.026219, - "right": -142.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 242, - "left": -142.03125, - "top": -83.026219, - "right": -140.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 242, - "left": -140.625, - "top": -83.026219, - "right": -139.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 242, - "left": -139.21875, - "top": -83.026219, - "right": -137.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 242, - "left": -137.8125, - "top": -83.026219, - "right": -136.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 242, - "left": -136.40625, - "top": -83.026219, - "right": -135.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 242, - "left": -135.0, - "top": -83.026219, - "right": -133.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 242, - "left": -133.59375, - "top": -83.026219, - "right": -132.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 242, - "left": -132.1875, - "top": -83.026219, - "right": -130.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 242, - "left": -130.78125, - "top": -83.026219, - "right": -129.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 242, - "left": -129.375, - "top": -83.026219, - "right": -127.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 242, - "left": -127.96875, - "top": -83.026219, - "right": -126.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 242, - "left": -126.5625, - "top": -83.026219, - "right": -125.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 242, - "left": -125.15625, - "top": -83.026219, - "right": -123.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 242, - "left": -123.75, - "top": -83.026219, - "right": -122.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 242, - "left": -122.34375, - "top": -83.026219, - "right": -120.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 242, - "left": -120.9375, - "top": -83.026219, - "right": -119.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 242, - "left": -119.53125, - "top": -83.026219, - "right": -118.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 242, - "left": -118.125, - "top": -83.026219, - "right": -116.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 242, - "left": -116.71875, - "top": -83.026219, - "right": -115.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 242, - "left": -115.3125, - "top": -83.026219, - "right": -113.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 242, - "left": -113.90625, - "top": -83.026219, - "right": -112.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 242, - "left": -112.5, - "top": -83.026219, - "right": -111.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 242, - "left": -111.09375, - "top": -83.026219, - "right": -109.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 242, - "left": -109.6875, - "top": -83.026219, - "right": -108.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 242, - "left": -108.28125, - "top": -83.026219, - "right": -106.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 242, - "left": -106.875, - "top": -83.026219, - "right": -105.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 242, - "left": -105.46875, - "top": -83.026219, - "right": -104.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 242, - "left": -104.0625, - "top": -83.026219, - "right": -102.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 242, - "left": -102.65625, - "top": -83.026219, - "right": -101.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 242, - "left": -101.25, - "top": -83.026219, - "right": -99.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 242, - "left": -99.84375, - "top": -83.026219, - "right": -98.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 242, - "left": -98.4375, - "top": -83.026219, - "right": -97.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 242, - "left": -97.03125, - "top": -83.026219, - "right": -95.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 242, - "left": -95.625, - "top": -83.026219, - "right": -94.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 242, - "left": -94.21875, - "top": -83.026219, - "right": -92.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 242, - "left": -92.8125, - "top": -83.026219, - "right": -91.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 242, - "left": -91.40625, - "top": -83.026219, - "right": -90.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 242, - "left": -90.0, - "top": -83.026219, - "right": -88.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 242, - "left": -88.59375, - "top": -83.026219, - "right": -87.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 242, - "left": -87.1875, - "top": -83.026219, - "right": -85.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 242, - "left": -85.78125, - "top": -83.026219, - "right": -84.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 242, - "left": -84.375, - "top": -83.026219, - "right": -82.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 242, - "left": -82.96875, - "top": -83.026219, - "right": -81.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 242, - "left": -81.5625, - "top": -83.026219, - "right": -80.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 242, - "left": -80.15625, - "top": -83.026219, - "right": -78.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 242, - "left": -78.75, - "top": -83.026219, - "right": -77.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 242, - "left": -77.34375, - "top": -83.026219, - "right": -75.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 242, - "left": -75.9375, - "top": -83.026219, - "right": -74.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 242, - "left": -74.53125, - "top": -83.026219, - "right": -73.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 242, - "left": -73.125, - "top": -83.026219, - "right": -71.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 242, - "left": -71.71875, - "top": -83.026219, - "right": -70.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 242, - "left": -70.3125, - "top": -83.026219, - "right": -68.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 242, - "left": -68.90625, - "top": -83.026219, - "right": -67.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 242, - "left": -67.5, - "top": -83.026219, - "right": -66.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 242, - "left": -66.09375, - "top": -83.026219, - "right": -64.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 242, - "left": -64.6875, - "top": -83.026219, - "right": -63.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 242, - "left": -63.28125, - "top": -83.026219, - "right": -61.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 242, - "left": -61.875, - "top": -83.026219, - "right": -60.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 242, - "left": -60.46875, - "top": -83.026219, - "right": -59.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 242, - "left": -59.0625, - "top": -83.026219, - "right": -57.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 242, - "left": -57.65625, - "top": -83.026219, - "right": -56.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 242, - "left": -56.25, - "top": -83.026219, - "right": -54.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 242, - "left": -54.84375, - "top": -83.026219, - "right": -53.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 242, - "left": -53.4375, - "top": -83.026219, - "right": -52.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 242, - "left": -52.03125, - "top": -83.026219, - "right": -50.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 242, - "left": -50.625, - "top": -83.026219, - "right": -49.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 242, - "left": -49.21875, - "top": -83.026219, - "right": -47.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 242, - "left": -47.8125, - "top": -83.026219, - "right": -46.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 242, - "left": -46.40625, - "top": -83.026219, - "right": -45.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 242, - "left": -45.0, - "top": -83.026219, - "right": -43.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 242, - "left": -43.59375, - "top": -83.026219, - "right": -42.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 242, - "left": -42.1875, - "top": -83.026219, - "right": -40.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 242, - "left": -40.78125, - "top": -83.026219, - "right": -39.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 242, - "left": -39.375, - "top": -83.026219, - "right": -37.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 242, - "left": -37.96875, - "top": -83.026219, - "right": -36.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 242, - "left": -36.5625, - "top": -83.026219, - "right": -35.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 242, - "left": -35.15625, - "top": -83.026219, - "right": -33.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 242, - "left": -33.75, - "top": -83.026219, - "right": -32.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 242, - "left": -32.34375, - "top": -83.026219, - "right": -30.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 242, - "left": -30.9375, - "top": -83.026219, - "right": -29.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 242, - "left": -29.53125, - "top": -83.026219, - "right": -28.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 242, - "left": -28.125, - "top": -83.026219, - "right": -26.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 242, - "left": -26.71875, - "top": -83.026219, - "right": -25.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 242, - "left": -25.3125, - "top": -83.026219, - "right": -23.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 242, - "left": -23.90625, - "top": -83.026219, - "right": -22.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 242, - "left": -22.5, - "top": -83.026219, - "right": -21.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 242, - "left": -21.09375, - "top": -83.026219, - "right": -19.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 242, - "left": -19.6875, - "top": -83.026219, - "right": -18.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 242, - "left": -18.28125, - "top": -83.026219, - "right": -16.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 242, - "left": -16.875, - "top": -83.026219, - "right": -15.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 242, - "left": -15.46875, - "top": -83.026219, - "right": -14.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 242, - "left": -14.0625, - "top": -83.026219, - "right": -12.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 242, - "left": -12.65625, - "top": -83.026219, - "right": -11.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 242, - "left": -11.25, - "top": -83.026219, - "right": -9.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 242, - "left": -9.84375, - "top": -83.026219, - "right": -8.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 242, - "left": -8.4375, - "top": -83.026219, - "right": -7.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 242, - "left": -7.03125, - "top": -83.026219, - "right": -5.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 242, - "left": -5.625, - "top": -83.026219, - "right": -4.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 242, - "left": -4.21875, - "top": -83.026219, - "right": -2.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 242, - "left": -2.8125, - "top": -83.026219, - "right": -1.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 242, - "left": -1.40625, - "top": -83.026219, - "right": 0.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 242, - "left": 0.0, - "top": -83.026219, - "right": 1.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 242, - "left": 1.40625, - "top": -83.026219, - "right": 2.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 242, - "left": 2.8125, - "top": -83.026219, - "right": 4.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 242, - "left": 4.21875, - "top": -83.026219, - "right": 5.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 242, - "left": 5.625, - "top": -83.026219, - "right": 7.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 242, - "left": 7.03125, - "top": -83.026219, - "right": 8.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 242, - "left": 8.4375, - "top": -83.026219, - "right": 9.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 242, - "left": 9.84375, - "top": -83.026219, - "right": 11.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 242, - "left": 11.25, - "top": -83.026219, - "right": 12.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 242, - "left": 12.65625, - "top": -83.026219, - "right": 14.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 242, - "left": 14.0625, - "top": -83.026219, - "right": 15.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 242, - "left": 15.46875, - "top": -83.026219, - "right": 16.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 242, - "left": 16.875, - "top": -83.026219, - "right": 18.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 242, - "left": 18.28125, - "top": -83.026219, - "right": 19.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 242, - "left": 19.6875, - "top": -83.026219, - "right": 21.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 242, - "left": 21.09375, - "top": -83.026219, - "right": 22.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 242, - "left": 22.5, - "top": -83.026219, - "right": 23.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 242, - "left": 23.90625, - "top": -83.026219, - "right": 25.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 242, - "left": 25.3125, - "top": -83.026219, - "right": 26.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 242, - "left": 26.71875, - "top": -83.026219, - "right": 28.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 242, - "left": 28.125, - "top": -83.026219, - "right": 29.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 242, - "left": 29.53125, - "top": -83.026219, - "right": 30.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 242, - "left": 30.9375, - "top": -83.026219, - "right": 32.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 242, - "left": 32.34375, - "top": -83.026219, - "right": 33.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 242, - "left": 33.75, - "top": -83.026219, - "right": 35.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 242, - "left": 35.15625, - "top": -83.026219, - "right": 36.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 242, - "left": 36.5625, - "top": -83.026219, - "right": 37.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 242, - "left": 37.96875, - "top": -83.026219, - "right": 39.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 242, - "left": 39.375, - "top": -83.026219, - "right": 40.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 242, - "left": 40.78125, - "top": -83.026219, - "right": 42.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 242, - "left": 42.1875, - "top": -83.026219, - "right": 43.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 242, - "left": 43.59375, - "top": -83.026219, - "right": 45.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 242, - "left": 45.0, - "top": -83.026219, - "right": 46.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 242, - "left": 46.40625, - "top": -83.026219, - "right": 47.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 242, - "left": 47.8125, - "top": -83.026219, - "right": 49.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 242, - "left": 49.21875, - "top": -83.026219, - "right": 50.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 242, - "left": 50.625, - "top": -83.026219, - "right": 52.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 242, - "left": 52.03125, - "top": -83.026219, - "right": 53.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 242, - "left": 53.4375, - "top": -83.026219, - "right": 54.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 242, - "left": 54.84375, - "top": -83.026219, - "right": 56.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 242, - "left": 56.25, - "top": -83.026219, - "right": 57.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 242, - "left": 57.65625, - "top": -83.026219, - "right": 59.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 242, - "left": 59.0625, - "top": -83.026219, - "right": 60.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 242, - "left": 60.46875, - "top": -83.026219, - "right": 61.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 242, - "left": 61.875, - "top": -83.026219, - "right": 63.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 242, - "left": 63.28125, - "top": -83.026219, - "right": 64.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 242, - "left": 64.6875, - "top": -83.026219, - "right": 66.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 242, - "left": 66.09375, - "top": -83.026219, - "right": 67.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 242, - "left": 67.5, - "top": -83.026219, - "right": 68.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 242, - "left": 68.90625, - "top": -83.026219, - "right": 70.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 242, - "left": 70.3125, - "top": -83.026219, - "right": 71.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 242, - "left": 71.71875, - "top": -83.026219, - "right": 73.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 242, - "left": 73.125, - "top": -83.026219, - "right": 74.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 242, - "left": 74.53125, - "top": -83.026219, - "right": 75.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 242, - "left": 75.9375, - "top": -83.026219, - "right": 77.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 242, - "left": 77.34375, - "top": -83.026219, - "right": 78.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 242, - "left": 78.75, - "top": -83.026219, - "right": 80.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 242, - "left": 80.15625, - "top": -83.026219, - "right": 81.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 242, - "left": 81.5625, - "top": -83.026219, - "right": 82.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 242, - "left": 82.96875, - "top": -83.026219, - "right": 84.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 242, - "left": 84.375, - "top": -83.026219, - "right": 85.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 242, - "left": 85.78125, - "top": -83.026219, - "right": 87.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 242, - "left": 87.1875, - "top": -83.026219, - "right": 88.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 242, - "left": 88.59375, - "top": -83.026219, - "right": 90.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 242, - "left": 90.0, - "top": -83.026219, - "right": 91.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 242, - "left": 91.40625, - "top": -83.026219, - "right": 92.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 242, - "left": 92.8125, - "top": -83.026219, - "right": 94.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 242, - "left": 94.21875, - "top": -83.026219, - "right": 95.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 242, - "left": 95.625, - "top": -83.026219, - "right": 97.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 242, - "left": 97.03125, - "top": -83.026219, - "right": 98.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 242, - "left": 98.4375, - "top": -83.026219, - "right": 99.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 242, - "left": 99.84375, - "top": -83.026219, - "right": 101.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 242, - "left": 101.25, - "top": -83.026219, - "right": 102.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 242, - "left": 102.65625, - "top": -83.026219, - "right": 104.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 242, - "left": 104.0625, - "top": -83.026219, - "right": 105.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 242, - "left": 105.46875, - "top": -83.026219, - "right": 106.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 242, - "left": 106.875, - "top": -83.026219, - "right": 108.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 242, - "left": 108.28125, - "top": -83.026219, - "right": 109.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 242, - "left": 109.6875, - "top": -83.026219, - "right": 111.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 242, - "left": 111.09375, - "top": -83.026219, - "right": 112.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 242, - "left": 112.5, - "top": -83.026219, - "right": 113.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 242, - "left": 113.90625, - "top": -83.026219, - "right": 115.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 242, - "left": 115.3125, - "top": -83.026219, - "right": 116.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 242, - "left": 116.71875, - "top": -83.026219, - "right": 118.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 242, - "left": 118.125, - "top": -83.026219, - "right": 119.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 242, - "left": 119.53125, - "top": -83.026219, - "right": 120.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 242, - "left": 120.9375, - "top": -83.026219, - "right": 122.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 242, - "left": 122.34375, - "top": -83.026219, - "right": 123.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 242, - "left": 123.75, - "top": -83.026219, - "right": 125.15625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 242, - "left": 125.15625, - "top": -83.026219, - "right": 126.5625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 242, - "left": 126.5625, - "top": -83.026219, - "right": 127.96875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 242, - "left": 127.96875, - "top": -83.026219, - "right": 129.375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 242, - "left": 129.375, - "top": -83.026219, - "right": 130.78125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 242, - "left": 130.78125, - "top": -83.026219, - "right": 132.1875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 242, - "left": 132.1875, - "top": -83.026219, - "right": 133.59375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 242, - "left": 133.59375, - "top": -83.026219, - "right": 135.0, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 242, - "left": 135.0, - "top": -83.026219, - "right": 136.40625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 242, - "left": 136.40625, - "top": -83.026219, - "right": 137.8125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 242, - "left": 137.8125, - "top": -83.026219, - "right": 139.21875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 242, - "left": 139.21875, - "top": -83.026219, - "right": 140.625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 242, - "left": 140.625, - "top": -83.026219, - "right": 142.03125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 242, - "left": 142.03125, - "top": -83.026219, - "right": 143.4375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 242, - "left": 143.4375, - "top": -83.026219, - "right": 144.84375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 242, - "left": 144.84375, - "top": -83.026219, - "right": 146.25, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 242, - "left": 146.25, - "top": -83.026219, - "right": 147.65625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 242, - "left": 147.65625, - "top": -83.026219, - "right": 149.0625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 242, - "left": 149.0625, - "top": -83.026219, - "right": 150.46875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 242, - "left": 150.46875, - "top": -83.026219, - "right": 151.875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 242, - "left": 151.875, - "top": -83.026219, - "right": 153.28125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 242, - "left": 153.28125, - "top": -83.026219, - "right": 154.6875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 242, - "left": 154.6875, - "top": -83.026219, - "right": 156.09375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 242, - "left": 156.09375, - "top": -83.026219, - "right": 157.5, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 242, - "left": 157.5, - "top": -83.026219, - "right": 158.90625, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 242, - "left": 158.90625, - "top": -83.026219, - "right": 160.3125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 242, - "left": 160.3125, - "top": -83.026219, - "right": 161.71875, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 242, - "left": 161.71875, - "top": -83.026219, - "right": 163.125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 242, - "left": 163.125, - "top": -83.026219, - "right": 164.53125, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 242, - "left": 164.53125, - "top": -83.026219, - "right": 165.9375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 242, - "left": 165.9375, - "top": -83.026219, - "right": 167.34375, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 242, - "left": 167.34375, - "top": -83.026219, - "right": 168.75, - "bottom": -83.194896, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 243, - "left": -153.28125, - "top": -83.194896, - "right": -151.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 243, - "left": -151.875, - "top": -83.194896, - "right": -150.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 243, - "left": -150.46875, - "top": -83.194896, - "right": -149.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 243, - "left": -149.0625, - "top": -83.194896, - "right": -147.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 243, - "left": -147.65625, - "top": -83.194896, - "right": -146.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 243, - "left": -146.25, - "top": -83.194896, - "right": -144.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 243, - "left": -144.84375, - "top": -83.194896, - "right": -143.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 243, - "left": -143.4375, - "top": -83.194896, - "right": -142.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 243, - "left": -142.03125, - "top": -83.194896, - "right": -140.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 243, - "left": -140.625, - "top": -83.194896, - "right": -139.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 243, - "left": -139.21875, - "top": -83.194896, - "right": -137.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 243, - "left": -137.8125, - "top": -83.194896, - "right": -136.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 243, - "left": -136.40625, - "top": -83.194896, - "right": -135.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 243, - "left": -135.0, - "top": -83.194896, - "right": -133.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 243, - "left": -133.59375, - "top": -83.194896, - "right": -132.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 243, - "left": -132.1875, - "top": -83.194896, - "right": -130.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 243, - "left": -130.78125, - "top": -83.194896, - "right": -129.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 243, - "left": -129.375, - "top": -83.194896, - "right": -127.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 243, - "left": -127.96875, - "top": -83.194896, - "right": -126.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 243, - "left": -126.5625, - "top": -83.194896, - "right": -125.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 243, - "left": -125.15625, - "top": -83.194896, - "right": -123.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 243, - "left": -123.75, - "top": -83.194896, - "right": -122.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 243, - "left": -122.34375, - "top": -83.194896, - "right": -120.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 243, - "left": -120.9375, - "top": -83.194896, - "right": -119.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 243, - "left": -119.53125, - "top": -83.194896, - "right": -118.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 243, - "left": -118.125, - "top": -83.194896, - "right": -116.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 243, - "left": -116.71875, - "top": -83.194896, - "right": -115.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 243, - "left": -115.3125, - "top": -83.194896, - "right": -113.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 243, - "left": -113.90625, - "top": -83.194896, - "right": -112.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 243, - "left": -112.5, - "top": -83.194896, - "right": -111.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 243, - "left": -111.09375, - "top": -83.194896, - "right": -109.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 243, - "left": -109.6875, - "top": -83.194896, - "right": -108.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 243, - "left": -108.28125, - "top": -83.194896, - "right": -106.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 243, - "left": -106.875, - "top": -83.194896, - "right": -105.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 243, - "left": -105.46875, - "top": -83.194896, - "right": -104.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 243, - "left": -104.0625, - "top": -83.194896, - "right": -102.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 243, - "left": -102.65625, - "top": -83.194896, - "right": -101.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 243, - "left": -101.25, - "top": -83.194896, - "right": -99.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 243, - "left": -99.84375, - "top": -83.194896, - "right": -98.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 243, - "left": -98.4375, - "top": -83.194896, - "right": -97.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 243, - "left": -97.03125, - "top": -83.194896, - "right": -95.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 243, - "left": -95.625, - "top": -83.194896, - "right": -94.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 243, - "left": -94.21875, - "top": -83.194896, - "right": -92.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 243, - "left": -92.8125, - "top": -83.194896, - "right": -91.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 243, - "left": -91.40625, - "top": -83.194896, - "right": -90.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 243, - "left": -90.0, - "top": -83.194896, - "right": -88.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 243, - "left": -88.59375, - "top": -83.194896, - "right": -87.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 243, - "left": -87.1875, - "top": -83.194896, - "right": -85.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 243, - "left": -85.78125, - "top": -83.194896, - "right": -84.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 243, - "left": -84.375, - "top": -83.194896, - "right": -82.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 243, - "left": -82.96875, - "top": -83.194896, - "right": -81.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 243, - "left": -81.5625, - "top": -83.194896, - "right": -80.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 243, - "left": -80.15625, - "top": -83.194896, - "right": -78.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 243, - "left": -78.75, - "top": -83.194896, - "right": -77.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 243, - "left": -77.34375, - "top": -83.194896, - "right": -75.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 243, - "left": -75.9375, - "top": -83.194896, - "right": -74.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 243, - "left": -74.53125, - "top": -83.194896, - "right": -73.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 243, - "left": -73.125, - "top": -83.194896, - "right": -71.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 243, - "left": -71.71875, - "top": -83.194896, - "right": -70.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 243, - "left": -70.3125, - "top": -83.194896, - "right": -68.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 243, - "left": -68.90625, - "top": -83.194896, - "right": -67.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 243, - "left": -67.5, - "top": -83.194896, - "right": -66.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 243, - "left": -66.09375, - "top": -83.194896, - "right": -64.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 243, - "left": -64.6875, - "top": -83.194896, - "right": -63.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 243, - "left": -63.28125, - "top": -83.194896, - "right": -61.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 243, - "left": -61.875, - "top": -83.194896, - "right": -60.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 243, - "left": -60.46875, - "top": -83.194896, - "right": -59.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 243, - "left": -59.0625, - "top": -83.194896, - "right": -57.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 243, - "left": -57.65625, - "top": -83.194896, - "right": -56.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 243, - "left": -56.25, - "top": -83.194896, - "right": -54.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 243, - "left": -54.84375, - "top": -83.194896, - "right": -53.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 243, - "left": -53.4375, - "top": -83.194896, - "right": -52.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 243, - "left": -52.03125, - "top": -83.194896, - "right": -50.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 243, - "left": -50.625, - "top": -83.194896, - "right": -49.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 243, - "left": -49.21875, - "top": -83.194896, - "right": -47.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 243, - "left": -47.8125, - "top": -83.194896, - "right": -46.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 243, - "left": -46.40625, - "top": -83.194896, - "right": -45.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 243, - "left": -45.0, - "top": -83.194896, - "right": -43.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 243, - "left": -43.59375, - "top": -83.194896, - "right": -42.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 243, - "left": -42.1875, - "top": -83.194896, - "right": -40.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 243, - "left": -40.78125, - "top": -83.194896, - "right": -39.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 243, - "left": -39.375, - "top": -83.194896, - "right": -37.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 243, - "left": -37.96875, - "top": -83.194896, - "right": -36.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 243, - "left": -36.5625, - "top": -83.194896, - "right": -35.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 243, - "left": -35.15625, - "top": -83.194896, - "right": -33.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 243, - "left": -33.75, - "top": -83.194896, - "right": -32.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 243, - "left": -32.34375, - "top": -83.194896, - "right": -30.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 243, - "left": -30.9375, - "top": -83.194896, - "right": -29.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 243, - "left": -29.53125, - "top": -83.194896, - "right": -28.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 243, - "left": -28.125, - "top": -83.194896, - "right": -26.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 243, - "left": -26.71875, - "top": -83.194896, - "right": -25.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 243, - "left": -25.3125, - "top": -83.194896, - "right": -23.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 243, - "left": -23.90625, - "top": -83.194896, - "right": -22.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 243, - "left": -22.5, - "top": -83.194896, - "right": -21.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 243, - "left": -21.09375, - "top": -83.194896, - "right": -19.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 243, - "left": -19.6875, - "top": -83.194896, - "right": -18.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 243, - "left": -18.28125, - "top": -83.194896, - "right": -16.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 243, - "left": -16.875, - "top": -83.194896, - "right": -15.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 243, - "left": -15.46875, - "top": -83.194896, - "right": -14.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 243, - "left": -14.0625, - "top": -83.194896, - "right": -12.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 243, - "left": -12.65625, - "top": -83.194896, - "right": -11.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 243, - "left": -11.25, - "top": -83.194896, - "right": -9.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 243, - "left": -9.84375, - "top": -83.194896, - "right": -8.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 243, - "left": -8.4375, - "top": -83.194896, - "right": -7.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 243, - "left": -7.03125, - "top": -83.194896, - "right": -5.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 243, - "left": -5.625, - "top": -83.194896, - "right": -4.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 243, - "left": -4.21875, - "top": -83.194896, - "right": -2.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 243, - "left": -2.8125, - "top": -83.194896, - "right": -1.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 243, - "left": -1.40625, - "top": -83.194896, - "right": 0.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 243, - "left": 0.0, - "top": -83.194896, - "right": 1.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 243, - "left": 1.40625, - "top": -83.194896, - "right": 2.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 243, - "left": 2.8125, - "top": -83.194896, - "right": 4.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 243, - "left": 4.21875, - "top": -83.194896, - "right": 5.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 243, - "left": 5.625, - "top": -83.194896, - "right": 7.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 243, - "left": 7.03125, - "top": -83.194896, - "right": 8.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 243, - "left": 8.4375, - "top": -83.194896, - "right": 9.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 243, - "left": 9.84375, - "top": -83.194896, - "right": 11.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 243, - "left": 11.25, - "top": -83.194896, - "right": 12.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 243, - "left": 12.65625, - "top": -83.194896, - "right": 14.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 243, - "left": 14.0625, - "top": -83.194896, - "right": 15.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 243, - "left": 15.46875, - "top": -83.194896, - "right": 16.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 243, - "left": 16.875, - "top": -83.194896, - "right": 18.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 243, - "left": 18.28125, - "top": -83.194896, - "right": 19.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 243, - "left": 19.6875, - "top": -83.194896, - "right": 21.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 243, - "left": 21.09375, - "top": -83.194896, - "right": 22.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 243, - "left": 22.5, - "top": -83.194896, - "right": 23.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 243, - "left": 23.90625, - "top": -83.194896, - "right": 25.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 243, - "left": 25.3125, - "top": -83.194896, - "right": 26.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 243, - "left": 26.71875, - "top": -83.194896, - "right": 28.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 243, - "left": 28.125, - "top": -83.194896, - "right": 29.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 243, - "left": 29.53125, - "top": -83.194896, - "right": 30.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 243, - "left": 30.9375, - "top": -83.194896, - "right": 32.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 243, - "left": 32.34375, - "top": -83.194896, - "right": 33.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 243, - "left": 33.75, - "top": -83.194896, - "right": 35.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 243, - "left": 35.15625, - "top": -83.194896, - "right": 36.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 243, - "left": 36.5625, - "top": -83.194896, - "right": 37.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 243, - "left": 37.96875, - "top": -83.194896, - "right": 39.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 243, - "left": 39.375, - "top": -83.194896, - "right": 40.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 243, - "left": 40.78125, - "top": -83.194896, - "right": 42.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 243, - "left": 42.1875, - "top": -83.194896, - "right": 43.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 243, - "left": 43.59375, - "top": -83.194896, - "right": 45.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 243, - "left": 45.0, - "top": -83.194896, - "right": 46.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 243, - "left": 46.40625, - "top": -83.194896, - "right": 47.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 243, - "left": 47.8125, - "top": -83.194896, - "right": 49.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 243, - "left": 49.21875, - "top": -83.194896, - "right": 50.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 243, - "left": 50.625, - "top": -83.194896, - "right": 52.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 243, - "left": 52.03125, - "top": -83.194896, - "right": 53.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 243, - "left": 53.4375, - "top": -83.194896, - "right": 54.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 243, - "left": 54.84375, - "top": -83.194896, - "right": 56.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 243, - "left": 56.25, - "top": -83.194896, - "right": 57.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 243, - "left": 57.65625, - "top": -83.194896, - "right": 59.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 243, - "left": 59.0625, - "top": -83.194896, - "right": 60.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 243, - "left": 60.46875, - "top": -83.194896, - "right": 61.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 243, - "left": 61.875, - "top": -83.194896, - "right": 63.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 243, - "left": 63.28125, - "top": -83.194896, - "right": 64.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 243, - "left": 64.6875, - "top": -83.194896, - "right": 66.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 243, - "left": 66.09375, - "top": -83.194896, - "right": 67.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 243, - "left": 67.5, - "top": -83.194896, - "right": 68.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 243, - "left": 68.90625, - "top": -83.194896, - "right": 70.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 243, - "left": 70.3125, - "top": -83.194896, - "right": 71.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 243, - "left": 71.71875, - "top": -83.194896, - "right": 73.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 243, - "left": 73.125, - "top": -83.194896, - "right": 74.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 243, - "left": 74.53125, - "top": -83.194896, - "right": 75.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 243, - "left": 75.9375, - "top": -83.194896, - "right": 77.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 243, - "left": 77.34375, - "top": -83.194896, - "right": 78.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 243, - "left": 78.75, - "top": -83.194896, - "right": 80.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 243, - "left": 80.15625, - "top": -83.194896, - "right": 81.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 243, - "left": 81.5625, - "top": -83.194896, - "right": 82.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 243, - "left": 82.96875, - "top": -83.194896, - "right": 84.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 243, - "left": 84.375, - "top": -83.194896, - "right": 85.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 243, - "left": 85.78125, - "top": -83.194896, - "right": 87.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 243, - "left": 87.1875, - "top": -83.194896, - "right": 88.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 243, - "left": 88.59375, - "top": -83.194896, - "right": 90.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 243, - "left": 90.0, - "top": -83.194896, - "right": 91.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 243, - "left": 91.40625, - "top": -83.194896, - "right": 92.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 243, - "left": 92.8125, - "top": -83.194896, - "right": 94.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 243, - "left": 94.21875, - "top": -83.194896, - "right": 95.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 243, - "left": 95.625, - "top": -83.194896, - "right": 97.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 243, - "left": 97.03125, - "top": -83.194896, - "right": 98.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 243, - "left": 98.4375, - "top": -83.194896, - "right": 99.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 243, - "left": 99.84375, - "top": -83.194896, - "right": 101.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 243, - "left": 101.25, - "top": -83.194896, - "right": 102.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 243, - "left": 102.65625, - "top": -83.194896, - "right": 104.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 243, - "left": 104.0625, - "top": -83.194896, - "right": 105.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 243, - "left": 105.46875, - "top": -83.194896, - "right": 106.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 243, - "left": 106.875, - "top": -83.194896, - "right": 108.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 243, - "left": 108.28125, - "top": -83.194896, - "right": 109.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 243, - "left": 109.6875, - "top": -83.194896, - "right": 111.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 243, - "left": 111.09375, - "top": -83.194896, - "right": 112.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 243, - "left": 112.5, - "top": -83.194896, - "right": 113.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 243, - "left": 113.90625, - "top": -83.194896, - "right": 115.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 243, - "left": 115.3125, - "top": -83.194896, - "right": 116.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 243, - "left": 116.71875, - "top": -83.194896, - "right": 118.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 243, - "left": 118.125, - "top": -83.194896, - "right": 119.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 243, - "left": 119.53125, - "top": -83.194896, - "right": 120.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 243, - "left": 120.9375, - "top": -83.194896, - "right": 122.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 243, - "left": 122.34375, - "top": -83.194896, - "right": 123.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 243, - "left": 123.75, - "top": -83.194896, - "right": 125.15625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 243, - "left": 125.15625, - "top": -83.194896, - "right": 126.5625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 243, - "left": 126.5625, - "top": -83.194896, - "right": 127.96875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 243, - "left": 127.96875, - "top": -83.194896, - "right": 129.375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 243, - "left": 129.375, - "top": -83.194896, - "right": 130.78125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 243, - "left": 130.78125, - "top": -83.194896, - "right": 132.1875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 243, - "left": 132.1875, - "top": -83.194896, - "right": 133.59375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 243, - "left": 133.59375, - "top": -83.194896, - "right": 135.0, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 243, - "left": 135.0, - "top": -83.194896, - "right": 136.40625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 243, - "left": 136.40625, - "top": -83.194896, - "right": 137.8125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 243, - "left": 137.8125, - "top": -83.194896, - "right": 139.21875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 243, - "left": 139.21875, - "top": -83.194896, - "right": 140.625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 243, - "left": 140.625, - "top": -83.194896, - "right": 142.03125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 243, - "left": 142.03125, - "top": -83.194896, - "right": 143.4375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 243, - "left": 143.4375, - "top": -83.194896, - "right": 144.84375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 243, - "left": 144.84375, - "top": -83.194896, - "right": 146.25, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 243, - "left": 146.25, - "top": -83.194896, - "right": 147.65625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 243, - "left": 147.65625, - "top": -83.194896, - "right": 149.0625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 243, - "left": 149.0625, - "top": -83.194896, - "right": 150.46875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 243, - "left": 150.46875, - "top": -83.194896, - "right": 151.875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 243, - "left": 151.875, - "top": -83.194896, - "right": 153.28125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 243, - "left": 153.28125, - "top": -83.194896, - "right": 154.6875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 243, - "left": 154.6875, - "top": -83.194896, - "right": 156.09375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 243, - "left": 156.09375, - "top": -83.194896, - "right": 157.5, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 243, - "left": 157.5, - "top": -83.194896, - "right": 158.90625, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 243, - "left": 158.90625, - "top": -83.194896, - "right": 160.3125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 243, - "left": 160.3125, - "top": -83.194896, - "right": 161.71875, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 243, - "left": 161.71875, - "top": -83.194896, - "right": 163.125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 243, - "left": 163.125, - "top": -83.194896, - "right": 164.53125, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 243, - "left": 164.53125, - "top": -83.194896, - "right": 165.9375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 243, - "left": 165.9375, - "top": -83.194896, - "right": 167.34375, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 243, - "left": 167.34375, - "top": -83.194896, - "right": 168.75, - "bottom": -83.359511, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 244, - "left": -153.28125, - "top": -83.359511, - "right": -151.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 244, - "left": -151.875, - "top": -83.359511, - "right": -150.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 244, - "left": -150.46875, - "top": -83.359511, - "right": -149.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 244, - "left": -149.0625, - "top": -83.359511, - "right": -147.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 244, - "left": -147.65625, - "top": -83.359511, - "right": -146.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 244, - "left": -146.25, - "top": -83.359511, - "right": -144.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 244, - "left": -144.84375, - "top": -83.359511, - "right": -143.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 244, - "left": -143.4375, - "top": -83.359511, - "right": -142.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 244, - "left": -142.03125, - "top": -83.359511, - "right": -140.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 244, - "left": -140.625, - "top": -83.359511, - "right": -139.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 244, - "left": -139.21875, - "top": -83.359511, - "right": -137.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 244, - "left": -137.8125, - "top": -83.359511, - "right": -136.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 244, - "left": -136.40625, - "top": -83.359511, - "right": -135.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 244, - "left": -135.0, - "top": -83.359511, - "right": -133.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 244, - "left": -133.59375, - "top": -83.359511, - "right": -132.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 244, - "left": -132.1875, - "top": -83.359511, - "right": -130.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 244, - "left": -130.78125, - "top": -83.359511, - "right": -129.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 244, - "left": -129.375, - "top": -83.359511, - "right": -127.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 244, - "left": -127.96875, - "top": -83.359511, - "right": -126.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 244, - "left": -126.5625, - "top": -83.359511, - "right": -125.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 244, - "left": -125.15625, - "top": -83.359511, - "right": -123.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 244, - "left": -123.75, - "top": -83.359511, - "right": -122.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 244, - "left": -122.34375, - "top": -83.359511, - "right": -120.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 244, - "left": -120.9375, - "top": -83.359511, - "right": -119.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 244, - "left": -119.53125, - "top": -83.359511, - "right": -118.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 244, - "left": -118.125, - "top": -83.359511, - "right": -116.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 244, - "left": -116.71875, - "top": -83.359511, - "right": -115.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 244, - "left": -115.3125, - "top": -83.359511, - "right": -113.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 244, - "left": -113.90625, - "top": -83.359511, - "right": -112.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 244, - "left": -112.5, - "top": -83.359511, - "right": -111.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 244, - "left": -111.09375, - "top": -83.359511, - "right": -109.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 244, - "left": -109.6875, - "top": -83.359511, - "right": -108.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 244, - "left": -108.28125, - "top": -83.359511, - "right": -106.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 244, - "left": -106.875, - "top": -83.359511, - "right": -105.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 244, - "left": -105.46875, - "top": -83.359511, - "right": -104.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 244, - "left": -104.0625, - "top": -83.359511, - "right": -102.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 244, - "left": -102.65625, - "top": -83.359511, - "right": -101.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 244, - "left": -101.25, - "top": -83.359511, - "right": -99.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 244, - "left": -99.84375, - "top": -83.359511, - "right": -98.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 244, - "left": -98.4375, - "top": -83.359511, - "right": -97.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 244, - "left": -97.03125, - "top": -83.359511, - "right": -95.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 244, - "left": -95.625, - "top": -83.359511, - "right": -94.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 244, - "left": -94.21875, - "top": -83.359511, - "right": -92.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 244, - "left": -92.8125, - "top": -83.359511, - "right": -91.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 244, - "left": -91.40625, - "top": -83.359511, - "right": -90.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 244, - "left": -90.0, - "top": -83.359511, - "right": -88.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 244, - "left": -88.59375, - "top": -83.359511, - "right": -87.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 244, - "left": -87.1875, - "top": -83.359511, - "right": -85.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 244, - "left": -85.78125, - "top": -83.359511, - "right": -84.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 244, - "left": -84.375, - "top": -83.359511, - "right": -82.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 244, - "left": -82.96875, - "top": -83.359511, - "right": -81.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 244, - "left": -81.5625, - "top": -83.359511, - "right": -80.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 244, - "left": -80.15625, - "top": -83.359511, - "right": -78.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 244, - "left": -78.75, - "top": -83.359511, - "right": -77.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 244, - "left": -77.34375, - "top": -83.359511, - "right": -75.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 244, - "left": -75.9375, - "top": -83.359511, - "right": -74.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 244, - "left": -74.53125, - "top": -83.359511, - "right": -73.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 244, - "left": -73.125, - "top": -83.359511, - "right": -71.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 244, - "left": -71.71875, - "top": -83.359511, - "right": -70.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 244, - "left": -70.3125, - "top": -83.359511, - "right": -68.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 244, - "left": -68.90625, - "top": -83.359511, - "right": -67.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 244, - "left": -67.5, - "top": -83.359511, - "right": -66.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 244, - "left": -66.09375, - "top": -83.359511, - "right": -64.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 244, - "left": -64.6875, - "top": -83.359511, - "right": -63.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 244, - "left": -63.28125, - "top": -83.359511, - "right": -61.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 244, - "left": -61.875, - "top": -83.359511, - "right": -60.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 244, - "left": -60.46875, - "top": -83.359511, - "right": -59.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 244, - "left": -59.0625, - "top": -83.359511, - "right": -57.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 244, - "left": -57.65625, - "top": -83.359511, - "right": -56.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 244, - "left": -56.25, - "top": -83.359511, - "right": -54.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 244, - "left": -54.84375, - "top": -83.359511, - "right": -53.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 244, - "left": -53.4375, - "top": -83.359511, - "right": -52.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 244, - "left": -52.03125, - "top": -83.359511, - "right": -50.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 244, - "left": -50.625, - "top": -83.359511, - "right": -49.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 244, - "left": -49.21875, - "top": -83.359511, - "right": -47.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 244, - "left": -47.8125, - "top": -83.359511, - "right": -46.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 244, - "left": -46.40625, - "top": -83.359511, - "right": -45.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 244, - "left": -45.0, - "top": -83.359511, - "right": -43.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 244, - "left": -43.59375, - "top": -83.359511, - "right": -42.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 244, - "left": -42.1875, - "top": -83.359511, - "right": -40.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 244, - "left": -40.78125, - "top": -83.359511, - "right": -39.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 244, - "left": -39.375, - "top": -83.359511, - "right": -37.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 244, - "left": -37.96875, - "top": -83.359511, - "right": -36.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 244, - "left": -36.5625, - "top": -83.359511, - "right": -35.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 244, - "left": -35.15625, - "top": -83.359511, - "right": -33.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 244, - "left": -33.75, - "top": -83.359511, - "right": -32.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 244, - "left": -32.34375, - "top": -83.359511, - "right": -30.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 244, - "left": -30.9375, - "top": -83.359511, - "right": -29.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 244, - "left": -29.53125, - "top": -83.359511, - "right": -28.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 244, - "left": -28.125, - "top": -83.359511, - "right": -26.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 244, - "left": -26.71875, - "top": -83.359511, - "right": -25.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 244, - "left": -25.3125, - "top": -83.359511, - "right": -23.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 244, - "left": -23.90625, - "top": -83.359511, - "right": -22.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 244, - "left": -22.5, - "top": -83.359511, - "right": -21.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 244, - "left": -21.09375, - "top": -83.359511, - "right": -19.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 244, - "left": -19.6875, - "top": -83.359511, - "right": -18.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 244, - "left": -18.28125, - "top": -83.359511, - "right": -16.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 244, - "left": -16.875, - "top": -83.359511, - "right": -15.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 244, - "left": -15.46875, - "top": -83.359511, - "right": -14.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 244, - "left": -14.0625, - "top": -83.359511, - "right": -12.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 244, - "left": -12.65625, - "top": -83.359511, - "right": -11.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 244, - "left": -11.25, - "top": -83.359511, - "right": -9.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 244, - "left": -9.84375, - "top": -83.359511, - "right": -8.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 244, - "left": -8.4375, - "top": -83.359511, - "right": -7.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 244, - "left": -7.03125, - "top": -83.359511, - "right": -5.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 244, - "left": -5.625, - "top": -83.359511, - "right": -4.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 244, - "left": -4.21875, - "top": -83.359511, - "right": -2.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 244, - "left": -2.8125, - "top": -83.359511, - "right": -1.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 244, - "left": -1.40625, - "top": -83.359511, - "right": 0.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 244, - "left": 0.0, - "top": -83.359511, - "right": 1.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 244, - "left": 1.40625, - "top": -83.359511, - "right": 2.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 244, - "left": 2.8125, - "top": -83.359511, - "right": 4.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 244, - "left": 4.21875, - "top": -83.359511, - "right": 5.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 244, - "left": 5.625, - "top": -83.359511, - "right": 7.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 244, - "left": 7.03125, - "top": -83.359511, - "right": 8.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 244, - "left": 8.4375, - "top": -83.359511, - "right": 9.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 244, - "left": 9.84375, - "top": -83.359511, - "right": 11.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 244, - "left": 11.25, - "top": -83.359511, - "right": 12.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 244, - "left": 12.65625, - "top": -83.359511, - "right": 14.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 244, - "left": 14.0625, - "top": -83.359511, - "right": 15.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 244, - "left": 15.46875, - "top": -83.359511, - "right": 16.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 244, - "left": 16.875, - "top": -83.359511, - "right": 18.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 244, - "left": 18.28125, - "top": -83.359511, - "right": 19.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 244, - "left": 19.6875, - "top": -83.359511, - "right": 21.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 244, - "left": 21.09375, - "top": -83.359511, - "right": 22.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 244, - "left": 22.5, - "top": -83.359511, - "right": 23.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 244, - "left": 23.90625, - "top": -83.359511, - "right": 25.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 244, - "left": 25.3125, - "top": -83.359511, - "right": 26.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 244, - "left": 26.71875, - "top": -83.359511, - "right": 28.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 244, - "left": 28.125, - "top": -83.359511, - "right": 29.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 244, - "left": 29.53125, - "top": -83.359511, - "right": 30.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 244, - "left": 30.9375, - "top": -83.359511, - "right": 32.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 244, - "left": 32.34375, - "top": -83.359511, - "right": 33.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 244, - "left": 33.75, - "top": -83.359511, - "right": 35.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 244, - "left": 35.15625, - "top": -83.359511, - "right": 36.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 244, - "left": 36.5625, - "top": -83.359511, - "right": 37.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 244, - "left": 37.96875, - "top": -83.359511, - "right": 39.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 244, - "left": 39.375, - "top": -83.359511, - "right": 40.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 244, - "left": 40.78125, - "top": -83.359511, - "right": 42.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 244, - "left": 42.1875, - "top": -83.359511, - "right": 43.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 244, - "left": 43.59375, - "top": -83.359511, - "right": 45.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 244, - "left": 45.0, - "top": -83.359511, - "right": 46.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 244, - "left": 46.40625, - "top": -83.359511, - "right": 47.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 244, - "left": 47.8125, - "top": -83.359511, - "right": 49.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 244, - "left": 49.21875, - "top": -83.359511, - "right": 50.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 244, - "left": 50.625, - "top": -83.359511, - "right": 52.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 244, - "left": 52.03125, - "top": -83.359511, - "right": 53.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 244, - "left": 53.4375, - "top": -83.359511, - "right": 54.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 244, - "left": 54.84375, - "top": -83.359511, - "right": 56.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 244, - "left": 56.25, - "top": -83.359511, - "right": 57.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 244, - "left": 57.65625, - "top": -83.359511, - "right": 59.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 244, - "left": 59.0625, - "top": -83.359511, - "right": 60.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 244, - "left": 60.46875, - "top": -83.359511, - "right": 61.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 244, - "left": 61.875, - "top": -83.359511, - "right": 63.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 244, - "left": 63.28125, - "top": -83.359511, - "right": 64.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 244, - "left": 64.6875, - "top": -83.359511, - "right": 66.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 244, - "left": 66.09375, - "top": -83.359511, - "right": 67.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 244, - "left": 67.5, - "top": -83.359511, - "right": 68.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 244, - "left": 68.90625, - "top": -83.359511, - "right": 70.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 244, - "left": 70.3125, - "top": -83.359511, - "right": 71.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 244, - "left": 71.71875, - "top": -83.359511, - "right": 73.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 244, - "left": 73.125, - "top": -83.359511, - "right": 74.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 244, - "left": 74.53125, - "top": -83.359511, - "right": 75.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 244, - "left": 75.9375, - "top": -83.359511, - "right": 77.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 244, - "left": 77.34375, - "top": -83.359511, - "right": 78.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 244, - "left": 78.75, - "top": -83.359511, - "right": 80.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 244, - "left": 80.15625, - "top": -83.359511, - "right": 81.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 244, - "left": 81.5625, - "top": -83.359511, - "right": 82.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 244, - "left": 82.96875, - "top": -83.359511, - "right": 84.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 244, - "left": 84.375, - "top": -83.359511, - "right": 85.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 244, - "left": 85.78125, - "top": -83.359511, - "right": 87.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 244, - "left": 87.1875, - "top": -83.359511, - "right": 88.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 244, - "left": 88.59375, - "top": -83.359511, - "right": 90.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 244, - "left": 90.0, - "top": -83.359511, - "right": 91.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 244, - "left": 91.40625, - "top": -83.359511, - "right": 92.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 244, - "left": 92.8125, - "top": -83.359511, - "right": 94.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 244, - "left": 94.21875, - "top": -83.359511, - "right": 95.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 244, - "left": 95.625, - "top": -83.359511, - "right": 97.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 244, - "left": 97.03125, - "top": -83.359511, - "right": 98.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 244, - "left": 98.4375, - "top": -83.359511, - "right": 99.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 244, - "left": 99.84375, - "top": -83.359511, - "right": 101.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 244, - "left": 101.25, - "top": -83.359511, - "right": 102.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 244, - "left": 102.65625, - "top": -83.359511, - "right": 104.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 244, - "left": 104.0625, - "top": -83.359511, - "right": 105.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 244, - "left": 105.46875, - "top": -83.359511, - "right": 106.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 244, - "left": 106.875, - "top": -83.359511, - "right": 108.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 244, - "left": 108.28125, - "top": -83.359511, - "right": 109.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 244, - "left": 109.6875, - "top": -83.359511, - "right": 111.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 244, - "left": 111.09375, - "top": -83.359511, - "right": 112.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 244, - "left": 112.5, - "top": -83.359511, - "right": 113.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 244, - "left": 113.90625, - "top": -83.359511, - "right": 115.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 244, - "left": 115.3125, - "top": -83.359511, - "right": 116.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 244, - "left": 116.71875, - "top": -83.359511, - "right": 118.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 244, - "left": 118.125, - "top": -83.359511, - "right": 119.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 244, - "left": 119.53125, - "top": -83.359511, - "right": 120.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 244, - "left": 120.9375, - "top": -83.359511, - "right": 122.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 244, - "left": 122.34375, - "top": -83.359511, - "right": 123.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 244, - "left": 123.75, - "top": -83.359511, - "right": 125.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 244, - "left": 125.15625, - "top": -83.359511, - "right": 126.5625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 244, - "left": 126.5625, - "top": -83.359511, - "right": 127.96875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 244, - "left": 127.96875, - "top": -83.359511, - "right": 129.375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 244, - "left": 129.375, - "top": -83.359511, - "right": 130.78125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 244, - "left": 130.78125, - "top": -83.359511, - "right": 132.1875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 244, - "left": 132.1875, - "top": -83.359511, - "right": 133.59375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 244, - "left": 133.59375, - "top": -83.359511, - "right": 135.0, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 244, - "left": 135.0, - "top": -83.359511, - "right": 136.40625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 244, - "left": 136.40625, - "top": -83.359511, - "right": 137.8125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 244, - "left": 137.8125, - "top": -83.359511, - "right": 139.21875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 244, - "left": 139.21875, - "top": -83.359511, - "right": 140.625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 244, - "left": 140.625, - "top": -83.359511, - "right": 142.03125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 244, - "left": 142.03125, - "top": -83.359511, - "right": 143.4375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 244, - "left": 143.4375, - "top": -83.359511, - "right": 144.84375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 244, - "left": 144.84375, - "top": -83.359511, - "right": 146.25, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 244, - "left": 146.25, - "top": -83.359511, - "right": 147.65625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 244, - "left": 147.65625, - "top": -83.359511, - "right": 149.0625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 244, - "left": 149.0625, - "top": -83.359511, - "right": 150.46875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 244, - "left": 150.46875, - "top": -83.359511, - "right": 151.875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 244, - "left": 151.875, - "top": -83.359511, - "right": 153.28125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 244, - "left": 153.28125, - "top": -83.359511, - "right": 154.6875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 244, - "left": 154.6875, - "top": -83.359511, - "right": 156.09375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 244, - "left": 156.09375, - "top": -83.359511, - "right": 157.5, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 244, - "left": 157.5, - "top": -83.359511, - "right": 158.90625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 244, - "left": 158.90625, - "top": -83.359511, - "right": 160.3125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 244, - "left": 160.3125, - "top": -83.359511, - "right": 161.71875, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 244, - "left": 161.71875, - "top": -83.359511, - "right": 163.125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 244, - "left": 163.125, - "top": -83.359511, - "right": 164.53125, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 244, - "left": 164.53125, - "top": -83.359511, - "right": 165.9375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 244, - "left": 165.9375, - "top": -83.359511, - "right": 167.34375, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 244, - "left": 167.34375, - "top": -83.359511, - "right": 168.75, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 244, - "left": 168.75, - "top": -83.359511, - "right": 170.15625, - "bottom": -83.520162, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 245, - "left": -153.28125, - "top": -83.520162, - "right": -151.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 245, - "left": -151.875, - "top": -83.520162, - "right": -150.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 245, - "left": -150.46875, - "top": -83.520162, - "right": -149.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 245, - "left": -149.0625, - "top": -83.520162, - "right": -147.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 245, - "left": -147.65625, - "top": -83.520162, - "right": -146.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 245, - "left": -146.25, - "top": -83.520162, - "right": -144.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 245, - "left": -144.84375, - "top": -83.520162, - "right": -143.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 245, - "left": -143.4375, - "top": -83.520162, - "right": -142.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 245, - "left": -142.03125, - "top": -83.520162, - "right": -140.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 245, - "left": -140.625, - "top": -83.520162, - "right": -139.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 245, - "left": -139.21875, - "top": -83.520162, - "right": -137.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 245, - "left": -137.8125, - "top": -83.520162, - "right": -136.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 245, - "left": -136.40625, - "top": -83.520162, - "right": -135.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 245, - "left": -135.0, - "top": -83.520162, - "right": -133.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 245, - "left": -133.59375, - "top": -83.520162, - "right": -132.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 245, - "left": -132.1875, - "top": -83.520162, - "right": -130.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 245, - "left": -130.78125, - "top": -83.520162, - "right": -129.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 245, - "left": -129.375, - "top": -83.520162, - "right": -127.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 245, - "left": -127.96875, - "top": -83.520162, - "right": -126.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 245, - "left": -126.5625, - "top": -83.520162, - "right": -125.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 245, - "left": -125.15625, - "top": -83.520162, - "right": -123.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 245, - "left": -123.75, - "top": -83.520162, - "right": -122.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 245, - "left": -122.34375, - "top": -83.520162, - "right": -120.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 245, - "left": -120.9375, - "top": -83.520162, - "right": -119.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 245, - "left": -119.53125, - "top": -83.520162, - "right": -118.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 245, - "left": -118.125, - "top": -83.520162, - "right": -116.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 245, - "left": -116.71875, - "top": -83.520162, - "right": -115.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 245, - "left": -115.3125, - "top": -83.520162, - "right": -113.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 245, - "left": -113.90625, - "top": -83.520162, - "right": -112.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 245, - "left": -112.5, - "top": -83.520162, - "right": -111.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 245, - "left": -111.09375, - "top": -83.520162, - "right": -109.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 245, - "left": -109.6875, - "top": -83.520162, - "right": -108.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 245, - "left": -108.28125, - "top": -83.520162, - "right": -106.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 245, - "left": -106.875, - "top": -83.520162, - "right": -105.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 245, - "left": -105.46875, - "top": -83.520162, - "right": -104.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 245, - "left": -104.0625, - "top": -83.520162, - "right": -102.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 245, - "left": -102.65625, - "top": -83.520162, - "right": -101.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 245, - "left": -101.25, - "top": -83.520162, - "right": -99.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 245, - "left": -99.84375, - "top": -83.520162, - "right": -98.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 245, - "left": -98.4375, - "top": -83.520162, - "right": -97.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 245, - "left": -97.03125, - "top": -83.520162, - "right": -95.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 245, - "left": -95.625, - "top": -83.520162, - "right": -94.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 245, - "left": -94.21875, - "top": -83.520162, - "right": -92.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 245, - "left": -92.8125, - "top": -83.520162, - "right": -91.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 245, - "left": -91.40625, - "top": -83.520162, - "right": -90.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 245, - "left": -90.0, - "top": -83.520162, - "right": -88.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 245, - "left": -88.59375, - "top": -83.520162, - "right": -87.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 245, - "left": -87.1875, - "top": -83.520162, - "right": -85.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 245, - "left": -85.78125, - "top": -83.520162, - "right": -84.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 245, - "left": -84.375, - "top": -83.520162, - "right": -82.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 245, - "left": -82.96875, - "top": -83.520162, - "right": -81.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 245, - "left": -81.5625, - "top": -83.520162, - "right": -80.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 245, - "left": -80.15625, - "top": -83.520162, - "right": -78.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 245, - "left": -78.75, - "top": -83.520162, - "right": -77.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 245, - "left": -77.34375, - "top": -83.520162, - "right": -75.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 245, - "left": -75.9375, - "top": -83.520162, - "right": -74.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 245, - "left": -74.53125, - "top": -83.520162, - "right": -73.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 245, - "left": -73.125, - "top": -83.520162, - "right": -71.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 245, - "left": -71.71875, - "top": -83.520162, - "right": -70.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 245, - "left": -70.3125, - "top": -83.520162, - "right": -68.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 245, - "left": -68.90625, - "top": -83.520162, - "right": -67.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 245, - "left": -67.5, - "top": -83.520162, - "right": -66.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 245, - "left": -66.09375, - "top": -83.520162, - "right": -64.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 245, - "left": -64.6875, - "top": -83.520162, - "right": -63.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 245, - "left": -63.28125, - "top": -83.520162, - "right": -61.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 245, - "left": -61.875, - "top": -83.520162, - "right": -60.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 245, - "left": -60.46875, - "top": -83.520162, - "right": -59.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 245, - "left": -59.0625, - "top": -83.520162, - "right": -57.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 245, - "left": -57.65625, - "top": -83.520162, - "right": -56.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 245, - "left": -56.25, - "top": -83.520162, - "right": -54.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 245, - "left": -54.84375, - "top": -83.520162, - "right": -53.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 245, - "left": -53.4375, - "top": -83.520162, - "right": -52.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 245, - "left": -52.03125, - "top": -83.520162, - "right": -50.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 245, - "left": -50.625, - "top": -83.520162, - "right": -49.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 245, - "left": -49.21875, - "top": -83.520162, - "right": -47.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 245, - "left": -47.8125, - "top": -83.520162, - "right": -46.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 245, - "left": -46.40625, - "top": -83.520162, - "right": -45.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 245, - "left": -45.0, - "top": -83.520162, - "right": -43.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 245, - "left": -43.59375, - "top": -83.520162, - "right": -42.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 245, - "left": -42.1875, - "top": -83.520162, - "right": -40.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 245, - "left": -40.78125, - "top": -83.520162, - "right": -39.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 245, - "left": -39.375, - "top": -83.520162, - "right": -37.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 245, - "left": -37.96875, - "top": -83.520162, - "right": -36.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 245, - "left": -36.5625, - "top": -83.520162, - "right": -35.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 245, - "left": -35.15625, - "top": -83.520162, - "right": -33.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 245, - "left": -33.75, - "top": -83.520162, - "right": -32.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 245, - "left": -32.34375, - "top": -83.520162, - "right": -30.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 245, - "left": -30.9375, - "top": -83.520162, - "right": -29.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 245, - "left": -29.53125, - "top": -83.520162, - "right": -28.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 245, - "left": -28.125, - "top": -83.520162, - "right": -26.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 245, - "left": -26.71875, - "top": -83.520162, - "right": -25.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 245, - "left": -25.3125, - "top": -83.520162, - "right": -23.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 245, - "left": -23.90625, - "top": -83.520162, - "right": -22.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 245, - "left": -22.5, - "top": -83.520162, - "right": -21.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 245, - "left": -21.09375, - "top": -83.520162, - "right": -19.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 245, - "left": -19.6875, - "top": -83.520162, - "right": -18.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 245, - "left": -18.28125, - "top": -83.520162, - "right": -16.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 245, - "left": -16.875, - "top": -83.520162, - "right": -15.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 245, - "left": -15.46875, - "top": -83.520162, - "right": -14.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 245, - "left": -14.0625, - "top": -83.520162, - "right": -12.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 245, - "left": -12.65625, - "top": -83.520162, - "right": -11.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 245, - "left": -11.25, - "top": -83.520162, - "right": -9.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 245, - "left": -9.84375, - "top": -83.520162, - "right": -8.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 245, - "left": -8.4375, - "top": -83.520162, - "right": -7.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 245, - "left": -7.03125, - "top": -83.520162, - "right": -5.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 245, - "left": -5.625, - "top": -83.520162, - "right": -4.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 245, - "left": -4.21875, - "top": -83.520162, - "right": -2.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 245, - "left": -2.8125, - "top": -83.520162, - "right": -1.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 245, - "left": -1.40625, - "top": -83.520162, - "right": 0.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 245, - "left": 0.0, - "top": -83.520162, - "right": 1.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 245, - "left": 1.40625, - "top": -83.520162, - "right": 2.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 245, - "left": 2.8125, - "top": -83.520162, - "right": 4.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 245, - "left": 4.21875, - "top": -83.520162, - "right": 5.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 245, - "left": 5.625, - "top": -83.520162, - "right": 7.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 245, - "left": 7.03125, - "top": -83.520162, - "right": 8.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 245, - "left": 8.4375, - "top": -83.520162, - "right": 9.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 245, - "left": 9.84375, - "top": -83.520162, - "right": 11.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 245, - "left": 11.25, - "top": -83.520162, - "right": 12.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 245, - "left": 12.65625, - "top": -83.520162, - "right": 14.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 245, - "left": 14.0625, - "top": -83.520162, - "right": 15.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 245, - "left": 15.46875, - "top": -83.520162, - "right": 16.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 245, - "left": 16.875, - "top": -83.520162, - "right": 18.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 245, - "left": 18.28125, - "top": -83.520162, - "right": 19.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 245, - "left": 19.6875, - "top": -83.520162, - "right": 21.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 245, - "left": 21.09375, - "top": -83.520162, - "right": 22.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 245, - "left": 22.5, - "top": -83.520162, - "right": 23.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 245, - "left": 23.90625, - "top": -83.520162, - "right": 25.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 245, - "left": 25.3125, - "top": -83.520162, - "right": 26.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 245, - "left": 26.71875, - "top": -83.520162, - "right": 28.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 245, - "left": 28.125, - "top": -83.520162, - "right": 29.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 245, - "left": 29.53125, - "top": -83.520162, - "right": 30.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 245, - "left": 30.9375, - "top": -83.520162, - "right": 32.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 245, - "left": 32.34375, - "top": -83.520162, - "right": 33.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 245, - "left": 33.75, - "top": -83.520162, - "right": 35.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 245, - "left": 35.15625, - "top": -83.520162, - "right": 36.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 245, - "left": 36.5625, - "top": -83.520162, - "right": 37.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 245, - "left": 37.96875, - "top": -83.520162, - "right": 39.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 245, - "left": 39.375, - "top": -83.520162, - "right": 40.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 245, - "left": 40.78125, - "top": -83.520162, - "right": 42.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 245, - "left": 42.1875, - "top": -83.520162, - "right": 43.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 245, - "left": 43.59375, - "top": -83.520162, - "right": 45.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 245, - "left": 45.0, - "top": -83.520162, - "right": 46.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 245, - "left": 46.40625, - "top": -83.520162, - "right": 47.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 245, - "left": 47.8125, - "top": -83.520162, - "right": 49.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 245, - "left": 49.21875, - "top": -83.520162, - "right": 50.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 245, - "left": 50.625, - "top": -83.520162, - "right": 52.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 245, - "left": 52.03125, - "top": -83.520162, - "right": 53.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 245, - "left": 53.4375, - "top": -83.520162, - "right": 54.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 245, - "left": 54.84375, - "top": -83.520162, - "right": 56.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 245, - "left": 56.25, - "top": -83.520162, - "right": 57.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 245, - "left": 57.65625, - "top": -83.520162, - "right": 59.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 245, - "left": 59.0625, - "top": -83.520162, - "right": 60.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 245, - "left": 60.46875, - "top": -83.520162, - "right": 61.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 245, - "left": 61.875, - "top": -83.520162, - "right": 63.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 245, - "left": 63.28125, - "top": -83.520162, - "right": 64.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 245, - "left": 64.6875, - "top": -83.520162, - "right": 66.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 245, - "left": 66.09375, - "top": -83.520162, - "right": 67.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 245, - "left": 67.5, - "top": -83.520162, - "right": 68.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 245, - "left": 68.90625, - "top": -83.520162, - "right": 70.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 245, - "left": 70.3125, - "top": -83.520162, - "right": 71.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 245, - "left": 71.71875, - "top": -83.520162, - "right": 73.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 245, - "left": 73.125, - "top": -83.520162, - "right": 74.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 245, - "left": 74.53125, - "top": -83.520162, - "right": 75.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 245, - "left": 75.9375, - "top": -83.520162, - "right": 77.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 245, - "left": 77.34375, - "top": -83.520162, - "right": 78.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 245, - "left": 78.75, - "top": -83.520162, - "right": 80.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 245, - "left": 80.15625, - "top": -83.520162, - "right": 81.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 245, - "left": 81.5625, - "top": -83.520162, - "right": 82.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 245, - "left": 82.96875, - "top": -83.520162, - "right": 84.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 245, - "left": 84.375, - "top": -83.520162, - "right": 85.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 245, - "left": 85.78125, - "top": -83.520162, - "right": 87.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 245, - "left": 87.1875, - "top": -83.520162, - "right": 88.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 245, - "left": 88.59375, - "top": -83.520162, - "right": 90.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 245, - "left": 90.0, - "top": -83.520162, - "right": 91.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 245, - "left": 91.40625, - "top": -83.520162, - "right": 92.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 245, - "left": 92.8125, - "top": -83.520162, - "right": 94.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 245, - "left": 94.21875, - "top": -83.520162, - "right": 95.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 245, - "left": 95.625, - "top": -83.520162, - "right": 97.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 245, - "left": 97.03125, - "top": -83.520162, - "right": 98.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 245, - "left": 98.4375, - "top": -83.520162, - "right": 99.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 245, - "left": 99.84375, - "top": -83.520162, - "right": 101.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 245, - "left": 101.25, - "top": -83.520162, - "right": 102.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 245, - "left": 102.65625, - "top": -83.520162, - "right": 104.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 245, - "left": 104.0625, - "top": -83.520162, - "right": 105.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 245, - "left": 105.46875, - "top": -83.520162, - "right": 106.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 245, - "left": 106.875, - "top": -83.520162, - "right": 108.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 245, - "left": 108.28125, - "top": -83.520162, - "right": 109.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 245, - "left": 109.6875, - "top": -83.520162, - "right": 111.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 245, - "left": 111.09375, - "top": -83.520162, - "right": 112.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 245, - "left": 112.5, - "top": -83.520162, - "right": 113.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 245, - "left": 113.90625, - "top": -83.520162, - "right": 115.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 245, - "left": 115.3125, - "top": -83.520162, - "right": 116.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 245, - "left": 116.71875, - "top": -83.520162, - "right": 118.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 245, - "left": 118.125, - "top": -83.520162, - "right": 119.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 245, - "left": 119.53125, - "top": -83.520162, - "right": 120.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 245, - "left": 120.9375, - "top": -83.520162, - "right": 122.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 245, - "left": 122.34375, - "top": -83.520162, - "right": 123.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 245, - "left": 123.75, - "top": -83.520162, - "right": 125.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 245, - "left": 125.15625, - "top": -83.520162, - "right": 126.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 245, - "left": 126.5625, - "top": -83.520162, - "right": 127.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 245, - "left": 127.96875, - "top": -83.520162, - "right": 129.375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 245, - "left": 129.375, - "top": -83.520162, - "right": 130.78125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 245, - "left": 130.78125, - "top": -83.520162, - "right": 132.1875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 245, - "left": 132.1875, - "top": -83.520162, - "right": 133.59375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 245, - "left": 133.59375, - "top": -83.520162, - "right": 135.0, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 245, - "left": 135.0, - "top": -83.520162, - "right": 136.40625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 245, - "left": 136.40625, - "top": -83.520162, - "right": 137.8125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 245, - "left": 137.8125, - "top": -83.520162, - "right": 139.21875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 245, - "left": 139.21875, - "top": -83.520162, - "right": 140.625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 245, - "left": 140.625, - "top": -83.520162, - "right": 142.03125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 245, - "left": 142.03125, - "top": -83.520162, - "right": 143.4375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 245, - "left": 143.4375, - "top": -83.520162, - "right": 144.84375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 245, - "left": 144.84375, - "top": -83.520162, - "right": 146.25, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 245, - "left": 146.25, - "top": -83.520162, - "right": 147.65625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 245, - "left": 147.65625, - "top": -83.520162, - "right": 149.0625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 245, - "left": 149.0625, - "top": -83.520162, - "right": 150.46875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 245, - "left": 150.46875, - "top": -83.520162, - "right": 151.875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 245, - "left": 151.875, - "top": -83.520162, - "right": 153.28125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 245, - "left": 153.28125, - "top": -83.520162, - "right": 154.6875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 245, - "left": 154.6875, - "top": -83.520162, - "right": 156.09375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 245, - "left": 156.09375, - "top": -83.520162, - "right": 157.5, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 245, - "left": 157.5, - "top": -83.520162, - "right": 158.90625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 245, - "left": 158.90625, - "top": -83.520162, - "right": 160.3125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 245, - "left": 160.3125, - "top": -83.520162, - "right": 161.71875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 245, - "left": 161.71875, - "top": -83.520162, - "right": 163.125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 245, - "left": 163.125, - "top": -83.520162, - "right": 164.53125, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 245, - "left": 164.53125, - "top": -83.520162, - "right": 165.9375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 245, - "left": 165.9375, - "top": -83.520162, - "right": 167.34375, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 245, - "left": 167.34375, - "top": -83.520162, - "right": 168.75, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 245, - "left": 168.75, - "top": -83.520162, - "right": 170.15625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 245, - "left": 170.15625, - "top": -83.520162, - "right": 171.5625, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 245, - "left": 171.5625, - "top": -83.520162, - "right": 172.96875, - "bottom": -83.676943, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 246, - "left": -153.28125, - "top": -83.676943, - "right": -151.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 246, - "left": -151.875, - "top": -83.676943, - "right": -150.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 246, - "left": -150.46875, - "top": -83.676943, - "right": -149.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 246, - "left": -149.0625, - "top": -83.676943, - "right": -147.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 246, - "left": -147.65625, - "top": -83.676943, - "right": -146.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 246, - "left": -146.25, - "top": -83.676943, - "right": -144.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 246, - "left": -144.84375, - "top": -83.676943, - "right": -143.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 246, - "left": -143.4375, - "top": -83.676943, - "right": -142.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 246, - "left": -142.03125, - "top": -83.676943, - "right": -140.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 246, - "left": -140.625, - "top": -83.676943, - "right": -139.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 246, - "left": -139.21875, - "top": -83.676943, - "right": -137.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 246, - "left": -137.8125, - "top": -83.676943, - "right": -136.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 246, - "left": -136.40625, - "top": -83.676943, - "right": -135.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 246, - "left": -135.0, - "top": -83.676943, - "right": -133.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 246, - "left": -133.59375, - "top": -83.676943, - "right": -132.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 246, - "left": -132.1875, - "top": -83.676943, - "right": -130.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 246, - "left": -130.78125, - "top": -83.676943, - "right": -129.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 246, - "left": -129.375, - "top": -83.676943, - "right": -127.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 246, - "left": -127.96875, - "top": -83.676943, - "right": -126.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 246, - "left": -126.5625, - "top": -83.676943, - "right": -125.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 246, - "left": -125.15625, - "top": -83.676943, - "right": -123.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 246, - "left": -123.75, - "top": -83.676943, - "right": -122.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 246, - "left": -122.34375, - "top": -83.676943, - "right": -120.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 246, - "left": -120.9375, - "top": -83.676943, - "right": -119.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 246, - "left": -119.53125, - "top": -83.676943, - "right": -118.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 246, - "left": -118.125, - "top": -83.676943, - "right": -116.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 246, - "left": -116.71875, - "top": -83.676943, - "right": -115.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 246, - "left": -115.3125, - "top": -83.676943, - "right": -113.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 246, - "left": -113.90625, - "top": -83.676943, - "right": -112.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 246, - "left": -112.5, - "top": -83.676943, - "right": -111.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 246, - "left": -111.09375, - "top": -83.676943, - "right": -109.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 246, - "left": -109.6875, - "top": -83.676943, - "right": -108.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 246, - "left": -108.28125, - "top": -83.676943, - "right": -106.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 246, - "left": -106.875, - "top": -83.676943, - "right": -105.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 246, - "left": -105.46875, - "top": -83.676943, - "right": -104.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 246, - "left": -104.0625, - "top": -83.676943, - "right": -102.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 246, - "left": -102.65625, - "top": -83.676943, - "right": -101.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 246, - "left": -101.25, - "top": -83.676943, - "right": -99.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 246, - "left": -99.84375, - "top": -83.676943, - "right": -98.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 246, - "left": -98.4375, - "top": -83.676943, - "right": -97.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 246, - "left": -97.03125, - "top": -83.676943, - "right": -95.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 246, - "left": -95.625, - "top": -83.676943, - "right": -94.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 246, - "left": -94.21875, - "top": -83.676943, - "right": -92.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 246, - "left": -92.8125, - "top": -83.676943, - "right": -91.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 246, - "left": -91.40625, - "top": -83.676943, - "right": -90.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 246, - "left": -90.0, - "top": -83.676943, - "right": -88.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 246, - "left": -88.59375, - "top": -83.676943, - "right": -87.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 246, - "left": -87.1875, - "top": -83.676943, - "right": -85.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 246, - "left": -85.78125, - "top": -83.676943, - "right": -84.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 246, - "left": -84.375, - "top": -83.676943, - "right": -82.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 246, - "left": -82.96875, - "top": -83.676943, - "right": -81.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 246, - "left": -81.5625, - "top": -83.676943, - "right": -80.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 246, - "left": -80.15625, - "top": -83.676943, - "right": -78.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 246, - "left": -78.75, - "top": -83.676943, - "right": -77.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 246, - "left": -77.34375, - "top": -83.676943, - "right": -75.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 246, - "left": -75.9375, - "top": -83.676943, - "right": -74.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 246, - "left": -74.53125, - "top": -83.676943, - "right": -73.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 246, - "left": -73.125, - "top": -83.676943, - "right": -71.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 246, - "left": -71.71875, - "top": -83.676943, - "right": -70.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 246, - "left": -70.3125, - "top": -83.676943, - "right": -68.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 246, - "left": -68.90625, - "top": -83.676943, - "right": -67.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 246, - "left": -67.5, - "top": -83.676943, - "right": -66.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 246, - "left": -66.09375, - "top": -83.676943, - "right": -64.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 246, - "left": -64.6875, - "top": -83.676943, - "right": -63.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 246, - "left": -63.28125, - "top": -83.676943, - "right": -61.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 246, - "left": -61.875, - "top": -83.676943, - "right": -60.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 246, - "left": -60.46875, - "top": -83.676943, - "right": -59.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 246, - "left": -59.0625, - "top": -83.676943, - "right": -57.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 246, - "left": -57.65625, - "top": -83.676943, - "right": -56.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 246, - "left": -56.25, - "top": -83.676943, - "right": -54.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 246, - "left": -54.84375, - "top": -83.676943, - "right": -53.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 246, - "left": -53.4375, - "top": -83.676943, - "right": -52.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 246, - "left": -52.03125, - "top": -83.676943, - "right": -50.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 246, - "left": -50.625, - "top": -83.676943, - "right": -49.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 246, - "left": -49.21875, - "top": -83.676943, - "right": -47.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 246, - "left": -47.8125, - "top": -83.676943, - "right": -46.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 246, - "left": -46.40625, - "top": -83.676943, - "right": -45.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 246, - "left": -45.0, - "top": -83.676943, - "right": -43.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 246, - "left": -43.59375, - "top": -83.676943, - "right": -42.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 246, - "left": -42.1875, - "top": -83.676943, - "right": -40.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 246, - "left": -40.78125, - "top": -83.676943, - "right": -39.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 246, - "left": -39.375, - "top": -83.676943, - "right": -37.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 246, - "left": -37.96875, - "top": -83.676943, - "right": -36.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 246, - "left": -36.5625, - "top": -83.676943, - "right": -35.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 246, - "left": -35.15625, - "top": -83.676943, - "right": -33.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 246, - "left": -33.75, - "top": -83.676943, - "right": -32.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 246, - "left": -32.34375, - "top": -83.676943, - "right": -30.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 246, - "left": -30.9375, - "top": -83.676943, - "right": -29.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 246, - "left": -29.53125, - "top": -83.676943, - "right": -28.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 246, - "left": -28.125, - "top": -83.676943, - "right": -26.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 246, - "left": -26.71875, - "top": -83.676943, - "right": -25.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 246, - "left": -25.3125, - "top": -83.676943, - "right": -23.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 246, - "left": -23.90625, - "top": -83.676943, - "right": -22.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 246, - "left": -22.5, - "top": -83.676943, - "right": -21.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 246, - "left": -21.09375, - "top": -83.676943, - "right": -19.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 246, - "left": -19.6875, - "top": -83.676943, - "right": -18.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 246, - "left": -18.28125, - "top": -83.676943, - "right": -16.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 246, - "left": -16.875, - "top": -83.676943, - "right": -15.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 246, - "left": -15.46875, - "top": -83.676943, - "right": -14.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 246, - "left": -14.0625, - "top": -83.676943, - "right": -12.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 246, - "left": -12.65625, - "top": -83.676943, - "right": -11.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 246, - "left": -11.25, - "top": -83.676943, - "right": -9.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 246, - "left": -9.84375, - "top": -83.676943, - "right": -8.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 246, - "left": -8.4375, - "top": -83.676943, - "right": -7.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 246, - "left": -7.03125, - "top": -83.676943, - "right": -5.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 246, - "left": -5.625, - "top": -83.676943, - "right": -4.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 246, - "left": -4.21875, - "top": -83.676943, - "right": -2.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 246, - "left": -2.8125, - "top": -83.676943, - "right": -1.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 246, - "left": -1.40625, - "top": -83.676943, - "right": 0.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 246, - "left": 0.0, - "top": -83.676943, - "right": 1.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 246, - "left": 1.40625, - "top": -83.676943, - "right": 2.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 246, - "left": 2.8125, - "top": -83.676943, - "right": 4.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 246, - "left": 4.21875, - "top": -83.676943, - "right": 5.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 246, - "left": 5.625, - "top": -83.676943, - "right": 7.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 246, - "left": 7.03125, - "top": -83.676943, - "right": 8.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 246, - "left": 8.4375, - "top": -83.676943, - "right": 9.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 246, - "left": 9.84375, - "top": -83.676943, - "right": 11.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 246, - "left": 11.25, - "top": -83.676943, - "right": 12.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 246, - "left": 12.65625, - "top": -83.676943, - "right": 14.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 246, - "left": 14.0625, - "top": -83.676943, - "right": 15.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 246, - "left": 15.46875, - "top": -83.676943, - "right": 16.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 246, - "left": 16.875, - "top": -83.676943, - "right": 18.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 246, - "left": 18.28125, - "top": -83.676943, - "right": 19.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 246, - "left": 19.6875, - "top": -83.676943, - "right": 21.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 246, - "left": 21.09375, - "top": -83.676943, - "right": 22.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 246, - "left": 22.5, - "top": -83.676943, - "right": 23.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 246, - "left": 23.90625, - "top": -83.676943, - "right": 25.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 246, - "left": 25.3125, - "top": -83.676943, - "right": 26.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 246, - "left": 26.71875, - "top": -83.676943, - "right": 28.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 246, - "left": 28.125, - "top": -83.676943, - "right": 29.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 246, - "left": 29.53125, - "top": -83.676943, - "right": 30.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 246, - "left": 30.9375, - "top": -83.676943, - "right": 32.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 246, - "left": 32.34375, - "top": -83.676943, - "right": 33.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 246, - "left": 33.75, - "top": -83.676943, - "right": 35.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 246, - "left": 35.15625, - "top": -83.676943, - "right": 36.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 246, - "left": 36.5625, - "top": -83.676943, - "right": 37.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 246, - "left": 37.96875, - "top": -83.676943, - "right": 39.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 246, - "left": 39.375, - "top": -83.676943, - "right": 40.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 246, - "left": 40.78125, - "top": -83.676943, - "right": 42.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 246, - "left": 42.1875, - "top": -83.676943, - "right": 43.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 246, - "left": 43.59375, - "top": -83.676943, - "right": 45.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 246, - "left": 45.0, - "top": -83.676943, - "right": 46.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 246, - "left": 46.40625, - "top": -83.676943, - "right": 47.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 246, - "left": 47.8125, - "top": -83.676943, - "right": 49.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 246, - "left": 49.21875, - "top": -83.676943, - "right": 50.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 246, - "left": 50.625, - "top": -83.676943, - "right": 52.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 246, - "left": 52.03125, - "top": -83.676943, - "right": 53.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 246, - "left": 53.4375, - "top": -83.676943, - "right": 54.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 246, - "left": 54.84375, - "top": -83.676943, - "right": 56.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 246, - "left": 56.25, - "top": -83.676943, - "right": 57.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 246, - "left": 57.65625, - "top": -83.676943, - "right": 59.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 246, - "left": 59.0625, - "top": -83.676943, - "right": 60.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 246, - "left": 60.46875, - "top": -83.676943, - "right": 61.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 246, - "left": 61.875, - "top": -83.676943, - "right": 63.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 246, - "left": 63.28125, - "top": -83.676943, - "right": 64.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 246, - "left": 64.6875, - "top": -83.676943, - "right": 66.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 246, - "left": 66.09375, - "top": -83.676943, - "right": 67.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 246, - "left": 67.5, - "top": -83.676943, - "right": 68.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 246, - "left": 68.90625, - "top": -83.676943, - "right": 70.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 246, - "left": 70.3125, - "top": -83.676943, - "right": 71.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 246, - "left": 71.71875, - "top": -83.676943, - "right": 73.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 246, - "left": 73.125, - "top": -83.676943, - "right": 74.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 246, - "left": 74.53125, - "top": -83.676943, - "right": 75.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 246, - "left": 75.9375, - "top": -83.676943, - "right": 77.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 246, - "left": 77.34375, - "top": -83.676943, - "right": 78.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 246, - "left": 78.75, - "top": -83.676943, - "right": 80.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 246, - "left": 80.15625, - "top": -83.676943, - "right": 81.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 246, - "left": 81.5625, - "top": -83.676943, - "right": 82.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 246, - "left": 82.96875, - "top": -83.676943, - "right": 84.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 246, - "left": 84.375, - "top": -83.676943, - "right": 85.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 246, - "left": 85.78125, - "top": -83.676943, - "right": 87.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 246, - "left": 87.1875, - "top": -83.676943, - "right": 88.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 246, - "left": 88.59375, - "top": -83.676943, - "right": 90.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 246, - "left": 90.0, - "top": -83.676943, - "right": 91.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 246, - "left": 91.40625, - "top": -83.676943, - "right": 92.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 246, - "left": 92.8125, - "top": -83.676943, - "right": 94.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 246, - "left": 94.21875, - "top": -83.676943, - "right": 95.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 246, - "left": 95.625, - "top": -83.676943, - "right": 97.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 246, - "left": 97.03125, - "top": -83.676943, - "right": 98.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 246, - "left": 98.4375, - "top": -83.676943, - "right": 99.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 246, - "left": 99.84375, - "top": -83.676943, - "right": 101.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 246, - "left": 101.25, - "top": -83.676943, - "right": 102.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 246, - "left": 102.65625, - "top": -83.676943, - "right": 104.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 246, - "left": 104.0625, - "top": -83.676943, - "right": 105.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 246, - "left": 105.46875, - "top": -83.676943, - "right": 106.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 246, - "left": 106.875, - "top": -83.676943, - "right": 108.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 246, - "left": 108.28125, - "top": -83.676943, - "right": 109.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 246, - "left": 109.6875, - "top": -83.676943, - "right": 111.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 246, - "left": 111.09375, - "top": -83.676943, - "right": 112.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 246, - "left": 112.5, - "top": -83.676943, - "right": 113.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 246, - "left": 113.90625, - "top": -83.676943, - "right": 115.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 246, - "left": 115.3125, - "top": -83.676943, - "right": 116.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 246, - "left": 116.71875, - "top": -83.676943, - "right": 118.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 246, - "left": 118.125, - "top": -83.676943, - "right": 119.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 246, - "left": 119.53125, - "top": -83.676943, - "right": 120.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 246, - "left": 120.9375, - "top": -83.676943, - "right": 122.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 246, - "left": 122.34375, - "top": -83.676943, - "right": 123.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 246, - "left": 123.75, - "top": -83.676943, - "right": 125.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 246, - "left": 125.15625, - "top": -83.676943, - "right": 126.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 246, - "left": 126.5625, - "top": -83.676943, - "right": 127.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 246, - "left": 127.96875, - "top": -83.676943, - "right": 129.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 246, - "left": 129.375, - "top": -83.676943, - "right": 130.78125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 246, - "left": 130.78125, - "top": -83.676943, - "right": 132.1875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 246, - "left": 132.1875, - "top": -83.676943, - "right": 133.59375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 246, - "left": 133.59375, - "top": -83.676943, - "right": 135.0, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 246, - "left": 135.0, - "top": -83.676943, - "right": 136.40625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 246, - "left": 136.40625, - "top": -83.676943, - "right": 137.8125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 246, - "left": 137.8125, - "top": -83.676943, - "right": 139.21875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 246, - "left": 139.21875, - "top": -83.676943, - "right": 140.625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 246, - "left": 140.625, - "top": -83.676943, - "right": 142.03125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 246, - "left": 142.03125, - "top": -83.676943, - "right": 143.4375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 246, - "left": 143.4375, - "top": -83.676943, - "right": 144.84375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 246, - "left": 144.84375, - "top": -83.676943, - "right": 146.25, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 246, - "left": 146.25, - "top": -83.676943, - "right": 147.65625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 246, - "left": 147.65625, - "top": -83.676943, - "right": 149.0625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 246, - "left": 149.0625, - "top": -83.676943, - "right": 150.46875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 246, - "left": 150.46875, - "top": -83.676943, - "right": 151.875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 246, - "left": 151.875, - "top": -83.676943, - "right": 153.28125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 246, - "left": 153.28125, - "top": -83.676943, - "right": 154.6875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 246, - "left": 154.6875, - "top": -83.676943, - "right": 156.09375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 246, - "left": 156.09375, - "top": -83.676943, - "right": 157.5, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 246, - "left": 157.5, - "top": -83.676943, - "right": 158.90625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 246, - "left": 158.90625, - "top": -83.676943, - "right": 160.3125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 246, - "left": 160.3125, - "top": -83.676943, - "right": 161.71875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 246, - "left": 161.71875, - "top": -83.676943, - "right": 163.125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 246, - "left": 163.125, - "top": -83.676943, - "right": 164.53125, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 246, - "left": 164.53125, - "top": -83.676943, - "right": 165.9375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 246, - "left": 165.9375, - "top": -83.676943, - "right": 167.34375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 246, - "left": 167.34375, - "top": -83.676943, - "right": 168.75, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 246, - "left": 168.75, - "top": -83.676943, - "right": 170.15625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 246, - "left": 170.15625, - "top": -83.676943, - "right": 171.5625, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 246, - "left": 171.5625, - "top": -83.676943, - "right": 172.96875, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 246, - "left": 172.96875, - "top": -83.676943, - "right": 174.375, - "bottom": -83.829945, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 247, - "left": -153.28125, - "top": -83.829945, - "right": -151.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 247, - "left": -151.875, - "top": -83.829945, - "right": -150.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 247, - "left": -150.46875, - "top": -83.829945, - "right": -149.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 247, - "left": -149.0625, - "top": -83.829945, - "right": -147.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 247, - "left": -147.65625, - "top": -83.829945, - "right": -146.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 247, - "left": -146.25, - "top": -83.829945, - "right": -144.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 247, - "left": -144.84375, - "top": -83.829945, - "right": -143.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 247, - "left": -143.4375, - "top": -83.829945, - "right": -142.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 247, - "left": -142.03125, - "top": -83.829945, - "right": -140.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 247, - "left": -140.625, - "top": -83.829945, - "right": -139.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 247, - "left": -139.21875, - "top": -83.829945, - "right": -137.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 247, - "left": -137.8125, - "top": -83.829945, - "right": -136.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 247, - "left": -136.40625, - "top": -83.829945, - "right": -135.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 247, - "left": -135.0, - "top": -83.829945, - "right": -133.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 247, - "left": -133.59375, - "top": -83.829945, - "right": -132.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 247, - "left": -132.1875, - "top": -83.829945, - "right": -130.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 247, - "left": -130.78125, - "top": -83.829945, - "right": -129.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 247, - "left": -129.375, - "top": -83.829945, - "right": -127.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 247, - "left": -127.96875, - "top": -83.829945, - "right": -126.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 247, - "left": -126.5625, - "top": -83.829945, - "right": -125.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 247, - "left": -125.15625, - "top": -83.829945, - "right": -123.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 247, - "left": -123.75, - "top": -83.829945, - "right": -122.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 247, - "left": -122.34375, - "top": -83.829945, - "right": -120.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 247, - "left": -120.9375, - "top": -83.829945, - "right": -119.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 247, - "left": -119.53125, - "top": -83.829945, - "right": -118.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 247, - "left": -118.125, - "top": -83.829945, - "right": -116.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 247, - "left": -116.71875, - "top": -83.829945, - "right": -115.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 247, - "left": -115.3125, - "top": -83.829945, - "right": -113.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 247, - "left": -113.90625, - "top": -83.829945, - "right": -112.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 247, - "left": -112.5, - "top": -83.829945, - "right": -111.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 247, - "left": -111.09375, - "top": -83.829945, - "right": -109.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 247, - "left": -109.6875, - "top": -83.829945, - "right": -108.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 247, - "left": -108.28125, - "top": -83.829945, - "right": -106.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 247, - "left": -106.875, - "top": -83.829945, - "right": -105.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 247, - "left": -105.46875, - "top": -83.829945, - "right": -104.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 247, - "left": -104.0625, - "top": -83.829945, - "right": -102.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 247, - "left": -102.65625, - "top": -83.829945, - "right": -101.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 247, - "left": -101.25, - "top": -83.829945, - "right": -99.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 247, - "left": -99.84375, - "top": -83.829945, - "right": -98.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 247, - "left": -98.4375, - "top": -83.829945, - "right": -97.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 247, - "left": -97.03125, - "top": -83.829945, - "right": -95.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 247, - "left": -95.625, - "top": -83.829945, - "right": -94.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 247, - "left": -94.21875, - "top": -83.829945, - "right": -92.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 247, - "left": -92.8125, - "top": -83.829945, - "right": -91.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 247, - "left": -91.40625, - "top": -83.829945, - "right": -90.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 247, - "left": -90.0, - "top": -83.829945, - "right": -88.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 247, - "left": -88.59375, - "top": -83.829945, - "right": -87.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 247, - "left": -87.1875, - "top": -83.829945, - "right": -85.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 247, - "left": -85.78125, - "top": -83.829945, - "right": -84.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 247, - "left": -84.375, - "top": -83.829945, - "right": -82.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 247, - "left": -82.96875, - "top": -83.829945, - "right": -81.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 247, - "left": -81.5625, - "top": -83.829945, - "right": -80.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 247, - "left": -80.15625, - "top": -83.829945, - "right": -78.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 247, - "left": -78.75, - "top": -83.829945, - "right": -77.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 247, - "left": -77.34375, - "top": -83.829945, - "right": -75.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 247, - "left": -75.9375, - "top": -83.829945, - "right": -74.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 247, - "left": -74.53125, - "top": -83.829945, - "right": -73.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 247, - "left": -73.125, - "top": -83.829945, - "right": -71.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 247, - "left": -71.71875, - "top": -83.829945, - "right": -70.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 247, - "left": -70.3125, - "top": -83.829945, - "right": -68.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 247, - "left": -68.90625, - "top": -83.829945, - "right": -67.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 247, - "left": -67.5, - "top": -83.829945, - "right": -66.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 247, - "left": -66.09375, - "top": -83.829945, - "right": -64.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 247, - "left": -64.6875, - "top": -83.829945, - "right": -63.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 247, - "left": -63.28125, - "top": -83.829945, - "right": -61.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 247, - "left": -61.875, - "top": -83.829945, - "right": -60.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 247, - "left": -60.46875, - "top": -83.829945, - "right": -59.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 247, - "left": -59.0625, - "top": -83.829945, - "right": -57.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 247, - "left": -57.65625, - "top": -83.829945, - "right": -56.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 247, - "left": -56.25, - "top": -83.829945, - "right": -54.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 247, - "left": -54.84375, - "top": -83.829945, - "right": -53.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 247, - "left": -53.4375, - "top": -83.829945, - "right": -52.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 247, - "left": -52.03125, - "top": -83.829945, - "right": -50.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 247, - "left": -50.625, - "top": -83.829945, - "right": -49.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 247, - "left": -49.21875, - "top": -83.829945, - "right": -47.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 247, - "left": -47.8125, - "top": -83.829945, - "right": -46.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 247, - "left": -46.40625, - "top": -83.829945, - "right": -45.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 247, - "left": -45.0, - "top": -83.829945, - "right": -43.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 247, - "left": -43.59375, - "top": -83.829945, - "right": -42.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 247, - "left": -42.1875, - "top": -83.829945, - "right": -40.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 247, - "left": -40.78125, - "top": -83.829945, - "right": -39.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 247, - "left": -39.375, - "top": -83.829945, - "right": -37.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 247, - "left": -37.96875, - "top": -83.829945, - "right": -36.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 247, - "left": -36.5625, - "top": -83.829945, - "right": -35.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 247, - "left": -35.15625, - "top": -83.829945, - "right": -33.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 247, - "left": -33.75, - "top": -83.829945, - "right": -32.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 247, - "left": -32.34375, - "top": -83.829945, - "right": -30.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 247, - "left": -30.9375, - "top": -83.829945, - "right": -29.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 247, - "left": -29.53125, - "top": -83.829945, - "right": -28.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 247, - "left": -28.125, - "top": -83.829945, - "right": -26.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 247, - "left": -26.71875, - "top": -83.829945, - "right": -25.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 247, - "left": -25.3125, - "top": -83.829945, - "right": -23.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 247, - "left": -23.90625, - "top": -83.829945, - "right": -22.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 247, - "left": -22.5, - "top": -83.829945, - "right": -21.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 247, - "left": -21.09375, - "top": -83.829945, - "right": -19.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 247, - "left": -19.6875, - "top": -83.829945, - "right": -18.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 247, - "left": -18.28125, - "top": -83.829945, - "right": -16.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 247, - "left": -16.875, - "top": -83.829945, - "right": -15.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 247, - "left": -15.46875, - "top": -83.829945, - "right": -14.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 247, - "left": -14.0625, - "top": -83.829945, - "right": -12.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 247, - "left": -12.65625, - "top": -83.829945, - "right": -11.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 247, - "left": -11.25, - "top": -83.829945, - "right": -9.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 247, - "left": -9.84375, - "top": -83.829945, - "right": -8.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 247, - "left": -8.4375, - "top": -83.829945, - "right": -7.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 247, - "left": -7.03125, - "top": -83.829945, - "right": -5.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 247, - "left": -5.625, - "top": -83.829945, - "right": -4.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 247, - "left": -4.21875, - "top": -83.829945, - "right": -2.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 247, - "left": -2.8125, - "top": -83.829945, - "right": -1.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 247, - "left": -1.40625, - "top": -83.829945, - "right": 0.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 247, - "left": 0.0, - "top": -83.829945, - "right": 1.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 247, - "left": 1.40625, - "top": -83.829945, - "right": 2.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 247, - "left": 2.8125, - "top": -83.829945, - "right": 4.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 247, - "left": 4.21875, - "top": -83.829945, - "right": 5.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 247, - "left": 5.625, - "top": -83.829945, - "right": 7.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 247, - "left": 7.03125, - "top": -83.829945, - "right": 8.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 247, - "left": 8.4375, - "top": -83.829945, - "right": 9.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 247, - "left": 9.84375, - "top": -83.829945, - "right": 11.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 247, - "left": 11.25, - "top": -83.829945, - "right": 12.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 247, - "left": 12.65625, - "top": -83.829945, - "right": 14.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 247, - "left": 14.0625, - "top": -83.829945, - "right": 15.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 247, - "left": 15.46875, - "top": -83.829945, - "right": 16.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 247, - "left": 16.875, - "top": -83.829945, - "right": 18.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 247, - "left": 18.28125, - "top": -83.829945, - "right": 19.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 247, - "left": 19.6875, - "top": -83.829945, - "right": 21.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 247, - "left": 21.09375, - "top": -83.829945, - "right": 22.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 247, - "left": 22.5, - "top": -83.829945, - "right": 23.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 247, - "left": 23.90625, - "top": -83.829945, - "right": 25.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 247, - "left": 25.3125, - "top": -83.829945, - "right": 26.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 247, - "left": 26.71875, - "top": -83.829945, - "right": 28.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 247, - "left": 28.125, - "top": -83.829945, - "right": 29.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 247, - "left": 29.53125, - "top": -83.829945, - "right": 30.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 247, - "left": 30.9375, - "top": -83.829945, - "right": 32.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 247, - "left": 32.34375, - "top": -83.829945, - "right": 33.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 247, - "left": 33.75, - "top": -83.829945, - "right": 35.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 247, - "left": 35.15625, - "top": -83.829945, - "right": 36.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 247, - "left": 36.5625, - "top": -83.829945, - "right": 37.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 247, - "left": 37.96875, - "top": -83.829945, - "right": 39.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 247, - "left": 39.375, - "top": -83.829945, - "right": 40.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 247, - "left": 40.78125, - "top": -83.829945, - "right": 42.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 247, - "left": 42.1875, - "top": -83.829945, - "right": 43.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 247, - "left": 43.59375, - "top": -83.829945, - "right": 45.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 247, - "left": 45.0, - "top": -83.829945, - "right": 46.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 247, - "left": 46.40625, - "top": -83.829945, - "right": 47.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 247, - "left": 47.8125, - "top": -83.829945, - "right": 49.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 247, - "left": 49.21875, - "top": -83.829945, - "right": 50.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 247, - "left": 50.625, - "top": -83.829945, - "right": 52.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 247, - "left": 52.03125, - "top": -83.829945, - "right": 53.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 247, - "left": 53.4375, - "top": -83.829945, - "right": 54.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 247, - "left": 54.84375, - "top": -83.829945, - "right": 56.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 247, - "left": 56.25, - "top": -83.829945, - "right": 57.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 247, - "left": 57.65625, - "top": -83.829945, - "right": 59.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 247, - "left": 59.0625, - "top": -83.829945, - "right": 60.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 247, - "left": 60.46875, - "top": -83.829945, - "right": 61.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 247, - "left": 61.875, - "top": -83.829945, - "right": 63.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 247, - "left": 63.28125, - "top": -83.829945, - "right": 64.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 247, - "left": 64.6875, - "top": -83.829945, - "right": 66.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 247, - "left": 66.09375, - "top": -83.829945, - "right": 67.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 247, - "left": 67.5, - "top": -83.829945, - "right": 68.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 247, - "left": 68.90625, - "top": -83.829945, - "right": 70.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 247, - "left": 70.3125, - "top": -83.829945, - "right": 71.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 247, - "left": 71.71875, - "top": -83.829945, - "right": 73.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 247, - "left": 73.125, - "top": -83.829945, - "right": 74.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 247, - "left": 74.53125, - "top": -83.829945, - "right": 75.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 247, - "left": 75.9375, - "top": -83.829945, - "right": 77.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 247, - "left": 77.34375, - "top": -83.829945, - "right": 78.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 247, - "left": 78.75, - "top": -83.829945, - "right": 80.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 247, - "left": 80.15625, - "top": -83.829945, - "right": 81.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 247, - "left": 81.5625, - "top": -83.829945, - "right": 82.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 247, - "left": 82.96875, - "top": -83.829945, - "right": 84.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 247, - "left": 84.375, - "top": -83.829945, - "right": 85.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 247, - "left": 85.78125, - "top": -83.829945, - "right": 87.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 247, - "left": 87.1875, - "top": -83.829945, - "right": 88.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 247, - "left": 88.59375, - "top": -83.829945, - "right": 90.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 247, - "left": 90.0, - "top": -83.829945, - "right": 91.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 247, - "left": 91.40625, - "top": -83.829945, - "right": 92.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 247, - "left": 92.8125, - "top": -83.829945, - "right": 94.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 247, - "left": 94.21875, - "top": -83.829945, - "right": 95.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 247, - "left": 95.625, - "top": -83.829945, - "right": 97.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 247, - "left": 97.03125, - "top": -83.829945, - "right": 98.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 247, - "left": 98.4375, - "top": -83.829945, - "right": 99.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 247, - "left": 99.84375, - "top": -83.829945, - "right": 101.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 247, - "left": 101.25, - "top": -83.829945, - "right": 102.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 247, - "left": 102.65625, - "top": -83.829945, - "right": 104.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 247, - "left": 104.0625, - "top": -83.829945, - "right": 105.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 247, - "left": 105.46875, - "top": -83.829945, - "right": 106.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 247, - "left": 106.875, - "top": -83.829945, - "right": 108.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 247, - "left": 108.28125, - "top": -83.829945, - "right": 109.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 247, - "left": 109.6875, - "top": -83.829945, - "right": 111.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 247, - "left": 111.09375, - "top": -83.829945, - "right": 112.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 247, - "left": 112.5, - "top": -83.829945, - "right": 113.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 247, - "left": 113.90625, - "top": -83.829945, - "right": 115.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 247, - "left": 115.3125, - "top": -83.829945, - "right": 116.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 247, - "left": 116.71875, - "top": -83.829945, - "right": 118.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 247, - "left": 118.125, - "top": -83.829945, - "right": 119.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 247, - "left": 119.53125, - "top": -83.829945, - "right": 120.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 247, - "left": 120.9375, - "top": -83.829945, - "right": 122.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 247, - "left": 122.34375, - "top": -83.829945, - "right": 123.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 247, - "left": 123.75, - "top": -83.829945, - "right": 125.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 247, - "left": 125.15625, - "top": -83.829945, - "right": 126.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 247, - "left": 126.5625, - "top": -83.829945, - "right": 127.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 247, - "left": 127.96875, - "top": -83.829945, - "right": 129.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 247, - "left": 129.375, - "top": -83.829945, - "right": 130.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 247, - "left": 130.78125, - "top": -83.829945, - "right": 132.1875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 247, - "left": 132.1875, - "top": -83.829945, - "right": 133.59375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 247, - "left": 133.59375, - "top": -83.829945, - "right": 135.0, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 247, - "left": 135.0, - "top": -83.829945, - "right": 136.40625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 247, - "left": 136.40625, - "top": -83.829945, - "right": 137.8125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 247, - "left": 137.8125, - "top": -83.829945, - "right": 139.21875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 247, - "left": 139.21875, - "top": -83.829945, - "right": 140.625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 247, - "left": 140.625, - "top": -83.829945, - "right": 142.03125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 247, - "left": 142.03125, - "top": -83.829945, - "right": 143.4375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 247, - "left": 143.4375, - "top": -83.829945, - "right": 144.84375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 247, - "left": 144.84375, - "top": -83.829945, - "right": 146.25, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 247, - "left": 146.25, - "top": -83.829945, - "right": 147.65625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 247, - "left": 147.65625, - "top": -83.829945, - "right": 149.0625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 247, - "left": 149.0625, - "top": -83.829945, - "right": 150.46875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 247, - "left": 150.46875, - "top": -83.829945, - "right": 151.875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 247, - "left": 151.875, - "top": -83.829945, - "right": 153.28125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 247, - "left": 153.28125, - "top": -83.829945, - "right": 154.6875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 247, - "left": 154.6875, - "top": -83.829945, - "right": 156.09375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 247, - "left": 156.09375, - "top": -83.829945, - "right": 157.5, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 247, - "left": 157.5, - "top": -83.829945, - "right": 158.90625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 247, - "left": 158.90625, - "top": -83.829945, - "right": 160.3125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 247, - "left": 160.3125, - "top": -83.829945, - "right": 161.71875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 247, - "left": 161.71875, - "top": -83.829945, - "right": 163.125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 247, - "left": 163.125, - "top": -83.829945, - "right": 164.53125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 247, - "left": 164.53125, - "top": -83.829945, - "right": 165.9375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 247, - "left": 165.9375, - "top": -83.829945, - "right": 167.34375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 247, - "left": 167.34375, - "top": -83.829945, - "right": 168.75, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 247, - "left": 168.75, - "top": -83.829945, - "right": 170.15625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 247, - "left": 170.15625, - "top": -83.829945, - "right": 171.5625, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 247, - "left": 171.5625, - "top": -83.829945, - "right": 172.96875, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 247, - "left": 172.96875, - "top": -83.829945, - "right": 174.375, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 247, - "left": 174.375, - "top": -83.829945, - "right": 175.78125, - "bottom": -83.979259, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 248, - "left": -153.28125, - "top": -83.979259, - "right": -151.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 248, - "left": -151.875, - "top": -83.979259, - "right": -150.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 248, - "left": -150.46875, - "top": -83.979259, - "right": -149.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 248, - "left": -149.0625, - "top": -83.979259, - "right": -147.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 248, - "left": -147.65625, - "top": -83.979259, - "right": -146.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 248, - "left": -146.25, - "top": -83.979259, - "right": -144.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 248, - "left": -144.84375, - "top": -83.979259, - "right": -143.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 248, - "left": -143.4375, - "top": -83.979259, - "right": -142.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 248, - "left": -142.03125, - "top": -83.979259, - "right": -140.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 248, - "left": -140.625, - "top": -83.979259, - "right": -139.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 248, - "left": -139.21875, - "top": -83.979259, - "right": -137.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 248, - "left": -137.8125, - "top": -83.979259, - "right": -136.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 248, - "left": -136.40625, - "top": -83.979259, - "right": -135.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 248, - "left": -135.0, - "top": -83.979259, - "right": -133.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 248, - "left": -133.59375, - "top": -83.979259, - "right": -132.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 248, - "left": -132.1875, - "top": -83.979259, - "right": -130.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 248, - "left": -130.78125, - "top": -83.979259, - "right": -129.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 248, - "left": -129.375, - "top": -83.979259, - "right": -127.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 248, - "left": -127.96875, - "top": -83.979259, - "right": -126.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 248, - "left": -126.5625, - "top": -83.979259, - "right": -125.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 248, - "left": -125.15625, - "top": -83.979259, - "right": -123.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 248, - "left": -123.75, - "top": -83.979259, - "right": -122.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 248, - "left": -122.34375, - "top": -83.979259, - "right": -120.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 248, - "left": -120.9375, - "top": -83.979259, - "right": -119.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 248, - "left": -119.53125, - "top": -83.979259, - "right": -118.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 248, - "left": -118.125, - "top": -83.979259, - "right": -116.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 248, - "left": -116.71875, - "top": -83.979259, - "right": -115.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 248, - "left": -115.3125, - "top": -83.979259, - "right": -113.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 248, - "left": -113.90625, - "top": -83.979259, - "right": -112.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 248, - "left": -112.5, - "top": -83.979259, - "right": -111.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 248, - "left": -111.09375, - "top": -83.979259, - "right": -109.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 248, - "left": -109.6875, - "top": -83.979259, - "right": -108.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 248, - "left": -108.28125, - "top": -83.979259, - "right": -106.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 248, - "left": -106.875, - "top": -83.979259, - "right": -105.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 248, - "left": -105.46875, - "top": -83.979259, - "right": -104.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 248, - "left": -104.0625, - "top": -83.979259, - "right": -102.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 248, - "left": -102.65625, - "top": -83.979259, - "right": -101.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 248, - "left": -101.25, - "top": -83.979259, - "right": -99.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 248, - "left": -99.84375, - "top": -83.979259, - "right": -98.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 248, - "left": -98.4375, - "top": -83.979259, - "right": -97.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 248, - "left": -97.03125, - "top": -83.979259, - "right": -95.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 248, - "left": -95.625, - "top": -83.979259, - "right": -94.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 248, - "left": -94.21875, - "top": -83.979259, - "right": -92.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 248, - "left": -92.8125, - "top": -83.979259, - "right": -91.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 248, - "left": -91.40625, - "top": -83.979259, - "right": -90.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 248, - "left": -90.0, - "top": -83.979259, - "right": -88.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 248, - "left": -88.59375, - "top": -83.979259, - "right": -87.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 248, - "left": -87.1875, - "top": -83.979259, - "right": -85.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 248, - "left": -85.78125, - "top": -83.979259, - "right": -84.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 248, - "left": -84.375, - "top": -83.979259, - "right": -82.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 248, - "left": -82.96875, - "top": -83.979259, - "right": -81.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 248, - "left": -81.5625, - "top": -83.979259, - "right": -80.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 248, - "left": -80.15625, - "top": -83.979259, - "right": -78.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 248, - "left": -78.75, - "top": -83.979259, - "right": -77.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 248, - "left": -77.34375, - "top": -83.979259, - "right": -75.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 248, - "left": -75.9375, - "top": -83.979259, - "right": -74.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 248, - "left": -74.53125, - "top": -83.979259, - "right": -73.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 248, - "left": -73.125, - "top": -83.979259, - "right": -71.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 248, - "left": -71.71875, - "top": -83.979259, - "right": -70.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 248, - "left": -70.3125, - "top": -83.979259, - "right": -68.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 248, - "left": -68.90625, - "top": -83.979259, - "right": -67.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 248, - "left": -67.5, - "top": -83.979259, - "right": -66.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 248, - "left": -66.09375, - "top": -83.979259, - "right": -64.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 248, - "left": -64.6875, - "top": -83.979259, - "right": -63.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 248, - "left": -63.28125, - "top": -83.979259, - "right": -61.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 248, - "left": -61.875, - "top": -83.979259, - "right": -60.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 248, - "left": -60.46875, - "top": -83.979259, - "right": -59.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 248, - "left": -59.0625, - "top": -83.979259, - "right": -57.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 248, - "left": -57.65625, - "top": -83.979259, - "right": -56.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 248, - "left": -56.25, - "top": -83.979259, - "right": -54.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 248, - "left": -54.84375, - "top": -83.979259, - "right": -53.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 248, - "left": -53.4375, - "top": -83.979259, - "right": -52.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 248, - "left": -52.03125, - "top": -83.979259, - "right": -50.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 248, - "left": -50.625, - "top": -83.979259, - "right": -49.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 248, - "left": -49.21875, - "top": -83.979259, - "right": -47.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 248, - "left": -47.8125, - "top": -83.979259, - "right": -46.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 248, - "left": -46.40625, - "top": -83.979259, - "right": -45.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 248, - "left": -45.0, - "top": -83.979259, - "right": -43.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 248, - "left": -43.59375, - "top": -83.979259, - "right": -42.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 248, - "left": -42.1875, - "top": -83.979259, - "right": -40.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 248, - "left": -40.78125, - "top": -83.979259, - "right": -39.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 248, - "left": -39.375, - "top": -83.979259, - "right": -37.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 248, - "left": -37.96875, - "top": -83.979259, - "right": -36.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 248, - "left": -36.5625, - "top": -83.979259, - "right": -35.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 248, - "left": -35.15625, - "top": -83.979259, - "right": -33.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 248, - "left": -33.75, - "top": -83.979259, - "right": -32.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 248, - "left": -32.34375, - "top": -83.979259, - "right": -30.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 248, - "left": -30.9375, - "top": -83.979259, - "right": -29.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 248, - "left": -29.53125, - "top": -83.979259, - "right": -28.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 248, - "left": -28.125, - "top": -83.979259, - "right": -26.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 248, - "left": -26.71875, - "top": -83.979259, - "right": -25.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 248, - "left": -25.3125, - "top": -83.979259, - "right": -23.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 248, - "left": -23.90625, - "top": -83.979259, - "right": -22.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 248, - "left": -22.5, - "top": -83.979259, - "right": -21.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 248, - "left": -21.09375, - "top": -83.979259, - "right": -19.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 248, - "left": -19.6875, - "top": -83.979259, - "right": -18.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 248, - "left": -18.28125, - "top": -83.979259, - "right": -16.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 248, - "left": -16.875, - "top": -83.979259, - "right": -15.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 248, - "left": -15.46875, - "top": -83.979259, - "right": -14.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 248, - "left": -14.0625, - "top": -83.979259, - "right": -12.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 248, - "left": -12.65625, - "top": -83.979259, - "right": -11.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 248, - "left": -11.25, - "top": -83.979259, - "right": -9.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 248, - "left": -9.84375, - "top": -83.979259, - "right": -8.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 248, - "left": -8.4375, - "top": -83.979259, - "right": -7.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 248, - "left": -7.03125, - "top": -83.979259, - "right": -5.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 248, - "left": -5.625, - "top": -83.979259, - "right": -4.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 248, - "left": -4.21875, - "top": -83.979259, - "right": -2.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 248, - "left": -2.8125, - "top": -83.979259, - "right": -1.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 248, - "left": -1.40625, - "top": -83.979259, - "right": 0.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 248, - "left": 0.0, - "top": -83.979259, - "right": 1.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 248, - "left": 1.40625, - "top": -83.979259, - "right": 2.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 248, - "left": 2.8125, - "top": -83.979259, - "right": 4.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 248, - "left": 4.21875, - "top": -83.979259, - "right": 5.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 248, - "left": 5.625, - "top": -83.979259, - "right": 7.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 248, - "left": 7.03125, - "top": -83.979259, - "right": 8.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 248, - "left": 8.4375, - "top": -83.979259, - "right": 9.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 248, - "left": 9.84375, - "top": -83.979259, - "right": 11.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 248, - "left": 11.25, - "top": -83.979259, - "right": 12.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 248, - "left": 12.65625, - "top": -83.979259, - "right": 14.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 248, - "left": 14.0625, - "top": -83.979259, - "right": 15.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 248, - "left": 15.46875, - "top": -83.979259, - "right": 16.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 248, - "left": 16.875, - "top": -83.979259, - "right": 18.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 248, - "left": 18.28125, - "top": -83.979259, - "right": 19.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 248, - "left": 19.6875, - "top": -83.979259, - "right": 21.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 248, - "left": 21.09375, - "top": -83.979259, - "right": 22.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 248, - "left": 22.5, - "top": -83.979259, - "right": 23.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 248, - "left": 23.90625, - "top": -83.979259, - "right": 25.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 248, - "left": 25.3125, - "top": -83.979259, - "right": 26.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 248, - "left": 26.71875, - "top": -83.979259, - "right": 28.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 248, - "left": 28.125, - "top": -83.979259, - "right": 29.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 248, - "left": 29.53125, - "top": -83.979259, - "right": 30.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 248, - "left": 30.9375, - "top": -83.979259, - "right": 32.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 248, - "left": 32.34375, - "top": -83.979259, - "right": 33.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 248, - "left": 33.75, - "top": -83.979259, - "right": 35.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 248, - "left": 35.15625, - "top": -83.979259, - "right": 36.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 248, - "left": 36.5625, - "top": -83.979259, - "right": 37.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 248, - "left": 37.96875, - "top": -83.979259, - "right": 39.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 248, - "left": 39.375, - "top": -83.979259, - "right": 40.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 248, - "left": 40.78125, - "top": -83.979259, - "right": 42.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 248, - "left": 42.1875, - "top": -83.979259, - "right": 43.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 248, - "left": 43.59375, - "top": -83.979259, - "right": 45.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 248, - "left": 45.0, - "top": -83.979259, - "right": 46.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 248, - "left": 46.40625, - "top": -83.979259, - "right": 47.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 248, - "left": 47.8125, - "top": -83.979259, - "right": 49.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 248, - "left": 49.21875, - "top": -83.979259, - "right": 50.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 248, - "left": 50.625, - "top": -83.979259, - "right": 52.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 248, - "left": 52.03125, - "top": -83.979259, - "right": 53.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 248, - "left": 53.4375, - "top": -83.979259, - "right": 54.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 248, - "left": 54.84375, - "top": -83.979259, - "right": 56.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 248, - "left": 56.25, - "top": -83.979259, - "right": 57.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 248, - "left": 57.65625, - "top": -83.979259, - "right": 59.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 248, - "left": 59.0625, - "top": -83.979259, - "right": 60.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 248, - "left": 60.46875, - "top": -83.979259, - "right": 61.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 248, - "left": 61.875, - "top": -83.979259, - "right": 63.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 248, - "left": 63.28125, - "top": -83.979259, - "right": 64.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 248, - "left": 64.6875, - "top": -83.979259, - "right": 66.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 248, - "left": 66.09375, - "top": -83.979259, - "right": 67.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 248, - "left": 67.5, - "top": -83.979259, - "right": 68.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 248, - "left": 68.90625, - "top": -83.979259, - "right": 70.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 248, - "left": 70.3125, - "top": -83.979259, - "right": 71.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 248, - "left": 71.71875, - "top": -83.979259, - "right": 73.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 248, - "left": 73.125, - "top": -83.979259, - "right": 74.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 248, - "left": 74.53125, - "top": -83.979259, - "right": 75.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 248, - "left": 75.9375, - "top": -83.979259, - "right": 77.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 248, - "left": 77.34375, - "top": -83.979259, - "right": 78.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 248, - "left": 78.75, - "top": -83.979259, - "right": 80.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 248, - "left": 80.15625, - "top": -83.979259, - "right": 81.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 248, - "left": 81.5625, - "top": -83.979259, - "right": 82.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 248, - "left": 82.96875, - "top": -83.979259, - "right": 84.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 248, - "left": 84.375, - "top": -83.979259, - "right": 85.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 248, - "left": 85.78125, - "top": -83.979259, - "right": 87.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 248, - "left": 87.1875, - "top": -83.979259, - "right": 88.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 248, - "left": 88.59375, - "top": -83.979259, - "right": 90.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 248, - "left": 90.0, - "top": -83.979259, - "right": 91.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 248, - "left": 91.40625, - "top": -83.979259, - "right": 92.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 248, - "left": 92.8125, - "top": -83.979259, - "right": 94.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 248, - "left": 94.21875, - "top": -83.979259, - "right": 95.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 248, - "left": 95.625, - "top": -83.979259, - "right": 97.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 248, - "left": 97.03125, - "top": -83.979259, - "right": 98.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 248, - "left": 98.4375, - "top": -83.979259, - "right": 99.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 248, - "left": 99.84375, - "top": -83.979259, - "right": 101.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 248, - "left": 101.25, - "top": -83.979259, - "right": 102.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 248, - "left": 102.65625, - "top": -83.979259, - "right": 104.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 248, - "left": 104.0625, - "top": -83.979259, - "right": 105.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 248, - "left": 105.46875, - "top": -83.979259, - "right": 106.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 248, - "left": 106.875, - "top": -83.979259, - "right": 108.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 248, - "left": 108.28125, - "top": -83.979259, - "right": 109.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 248, - "left": 109.6875, - "top": -83.979259, - "right": 111.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 248, - "left": 111.09375, - "top": -83.979259, - "right": 112.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 248, - "left": 112.5, - "top": -83.979259, - "right": 113.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 248, - "left": 113.90625, - "top": -83.979259, - "right": 115.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 248, - "left": 115.3125, - "top": -83.979259, - "right": 116.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 248, - "left": 116.71875, - "top": -83.979259, - "right": 118.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 248, - "left": 118.125, - "top": -83.979259, - "right": 119.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 248, - "left": 119.53125, - "top": -83.979259, - "right": 120.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 248, - "left": 120.9375, - "top": -83.979259, - "right": 122.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 248, - "left": 122.34375, - "top": -83.979259, - "right": 123.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 248, - "left": 123.75, - "top": -83.979259, - "right": 125.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 248, - "left": 125.15625, - "top": -83.979259, - "right": 126.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 248, - "left": 126.5625, - "top": -83.979259, - "right": 127.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 248, - "left": 127.96875, - "top": -83.979259, - "right": 129.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 248, - "left": 129.375, - "top": -83.979259, - "right": 130.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 248, - "left": 130.78125, - "top": -83.979259, - "right": 132.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 248, - "left": 132.1875, - "top": -83.979259, - "right": 133.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 248, - "left": 133.59375, - "top": -83.979259, - "right": 135.0, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 248, - "left": 135.0, - "top": -83.979259, - "right": 136.40625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 248, - "left": 136.40625, - "top": -83.979259, - "right": 137.8125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 248, - "left": 137.8125, - "top": -83.979259, - "right": 139.21875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 248, - "left": 139.21875, - "top": -83.979259, - "right": 140.625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 248, - "left": 140.625, - "top": -83.979259, - "right": 142.03125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 248, - "left": 142.03125, - "top": -83.979259, - "right": 143.4375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 248, - "left": 143.4375, - "top": -83.979259, - "right": 144.84375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 248, - "left": 144.84375, - "top": -83.979259, - "right": 146.25, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 248, - "left": 146.25, - "top": -83.979259, - "right": 147.65625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 248, - "left": 147.65625, - "top": -83.979259, - "right": 149.0625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 248, - "left": 149.0625, - "top": -83.979259, - "right": 150.46875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 248, - "left": 150.46875, - "top": -83.979259, - "right": 151.875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 248, - "left": 151.875, - "top": -83.979259, - "right": 153.28125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 248, - "left": 153.28125, - "top": -83.979259, - "right": 154.6875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 248, - "left": 154.6875, - "top": -83.979259, - "right": 156.09375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 248, - "left": 156.09375, - "top": -83.979259, - "right": 157.5, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 248, - "left": 157.5, - "top": -83.979259, - "right": 158.90625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 248, - "left": 158.90625, - "top": -83.979259, - "right": 160.3125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 248, - "left": 160.3125, - "top": -83.979259, - "right": 161.71875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 248, - "left": 161.71875, - "top": -83.979259, - "right": 163.125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 248, - "left": 163.125, - "top": -83.979259, - "right": 164.53125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 248, - "left": 164.53125, - "top": -83.979259, - "right": 165.9375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 248, - "left": 165.9375, - "top": -83.979259, - "right": 167.34375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 248, - "left": 167.34375, - "top": -83.979259, - "right": 168.75, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 248, - "left": 168.75, - "top": -83.979259, - "right": 170.15625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 248, - "left": 170.15625, - "top": -83.979259, - "right": 171.5625, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 248, - "left": 171.5625, - "top": -83.979259, - "right": 172.96875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 248, - "left": 172.96875, - "top": -83.979259, - "right": 174.375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 248, - "left": 174.375, - "top": -83.979259, - "right": 175.78125, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 248, - "left": 175.78125, - "top": -83.979259, - "right": 177.1875, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 248, - "left": 177.1875, - "top": -83.979259, - "right": 178.59375, - "bottom": -84.124973, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 249, - "left": -180.0, - "top": -84.124973, - "right": -178.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 249, - "left": -178.59375, - "top": -84.124973, - "right": -177.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 249, - "left": -153.28125, - "top": -84.124973, - "right": -151.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 249, - "left": -151.875, - "top": -84.124973, - "right": -150.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 249, - "left": -150.46875, - "top": -84.124973, - "right": -149.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 249, - "left": -149.0625, - "top": -84.124973, - "right": -147.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 249, - "left": -147.65625, - "top": -84.124973, - "right": -146.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 249, - "left": -146.25, - "top": -84.124973, - "right": -144.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 249, - "left": -144.84375, - "top": -84.124973, - "right": -143.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 249, - "left": -143.4375, - "top": -84.124973, - "right": -142.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 249, - "left": -142.03125, - "top": -84.124973, - "right": -140.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 249, - "left": -140.625, - "top": -84.124973, - "right": -139.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 249, - "left": -139.21875, - "top": -84.124973, - "right": -137.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 249, - "left": -137.8125, - "top": -84.124973, - "right": -136.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 249, - "left": -136.40625, - "top": -84.124973, - "right": -135.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 249, - "left": -135.0, - "top": -84.124973, - "right": -133.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 249, - "left": -133.59375, - "top": -84.124973, - "right": -132.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 249, - "left": -132.1875, - "top": -84.124973, - "right": -130.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 249, - "left": -130.78125, - "top": -84.124973, - "right": -129.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 249, - "left": -129.375, - "top": -84.124973, - "right": -127.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 249, - "left": -127.96875, - "top": -84.124973, - "right": -126.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 249, - "left": -126.5625, - "top": -84.124973, - "right": -125.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 249, - "left": -125.15625, - "top": -84.124973, - "right": -123.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 249, - "left": -123.75, - "top": -84.124973, - "right": -122.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 249, - "left": -122.34375, - "top": -84.124973, - "right": -120.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 249, - "left": -120.9375, - "top": -84.124973, - "right": -119.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 249, - "left": -119.53125, - "top": -84.124973, - "right": -118.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 249, - "left": -118.125, - "top": -84.124973, - "right": -116.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 249, - "left": -116.71875, - "top": -84.124973, - "right": -115.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 249, - "left": -115.3125, - "top": -84.124973, - "right": -113.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 249, - "left": -113.90625, - "top": -84.124973, - "right": -112.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 249, - "left": -112.5, - "top": -84.124973, - "right": -111.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 249, - "left": -111.09375, - "top": -84.124973, - "right": -109.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 249, - "left": -109.6875, - "top": -84.124973, - "right": -108.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 249, - "left": -108.28125, - "top": -84.124973, - "right": -106.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 249, - "left": -106.875, - "top": -84.124973, - "right": -105.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 249, - "left": -105.46875, - "top": -84.124973, - "right": -104.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 249, - "left": -104.0625, - "top": -84.124973, - "right": -102.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 249, - "left": -102.65625, - "top": -84.124973, - "right": -101.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 249, - "left": -101.25, - "top": -84.124973, - "right": -99.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 249, - "left": -99.84375, - "top": -84.124973, - "right": -98.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 249, - "left": -98.4375, - "top": -84.124973, - "right": -97.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 249, - "left": -97.03125, - "top": -84.124973, - "right": -95.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 249, - "left": -95.625, - "top": -84.124973, - "right": -94.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 249, - "left": -94.21875, - "top": -84.124973, - "right": -92.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 249, - "left": -92.8125, - "top": -84.124973, - "right": -91.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 249, - "left": -91.40625, - "top": -84.124973, - "right": -90.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 249, - "left": -90.0, - "top": -84.124973, - "right": -88.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 249, - "left": -88.59375, - "top": -84.124973, - "right": -87.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 249, - "left": -87.1875, - "top": -84.124973, - "right": -85.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 249, - "left": -85.78125, - "top": -84.124973, - "right": -84.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 249, - "left": -84.375, - "top": -84.124973, - "right": -82.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 249, - "left": -82.96875, - "top": -84.124973, - "right": -81.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 249, - "left": -81.5625, - "top": -84.124973, - "right": -80.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 249, - "left": -80.15625, - "top": -84.124973, - "right": -78.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 249, - "left": -78.75, - "top": -84.124973, - "right": -77.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 249, - "left": -77.34375, - "top": -84.124973, - "right": -75.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 249, - "left": -75.9375, - "top": -84.124973, - "right": -74.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 249, - "left": -74.53125, - "top": -84.124973, - "right": -73.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 249, - "left": -73.125, - "top": -84.124973, - "right": -71.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 249, - "left": -71.71875, - "top": -84.124973, - "right": -70.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 249, - "left": -70.3125, - "top": -84.124973, - "right": -68.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 249, - "left": -68.90625, - "top": -84.124973, - "right": -67.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 249, - "left": -67.5, - "top": -84.124973, - "right": -66.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 249, - "left": -66.09375, - "top": -84.124973, - "right": -64.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 249, - "left": -64.6875, - "top": -84.124973, - "right": -63.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 249, - "left": -63.28125, - "top": -84.124973, - "right": -61.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 249, - "left": -61.875, - "top": -84.124973, - "right": -60.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 249, - "left": -60.46875, - "top": -84.124973, - "right": -59.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 249, - "left": -59.0625, - "top": -84.124973, - "right": -57.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 249, - "left": -57.65625, - "top": -84.124973, - "right": -56.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 249, - "left": -56.25, - "top": -84.124973, - "right": -54.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 249, - "left": -54.84375, - "top": -84.124973, - "right": -53.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 249, - "left": -53.4375, - "top": -84.124973, - "right": -52.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 249, - "left": -52.03125, - "top": -84.124973, - "right": -50.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 249, - "left": -50.625, - "top": -84.124973, - "right": -49.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 249, - "left": -49.21875, - "top": -84.124973, - "right": -47.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 249, - "left": -47.8125, - "top": -84.124973, - "right": -46.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 249, - "left": -46.40625, - "top": -84.124973, - "right": -45.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 249, - "left": -45.0, - "top": -84.124973, - "right": -43.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 249, - "left": -43.59375, - "top": -84.124973, - "right": -42.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 249, - "left": -42.1875, - "top": -84.124973, - "right": -40.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 249, - "left": -40.78125, - "top": -84.124973, - "right": -39.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 249, - "left": -39.375, - "top": -84.124973, - "right": -37.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 249, - "left": -37.96875, - "top": -84.124973, - "right": -36.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 249, - "left": -36.5625, - "top": -84.124973, - "right": -35.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 249, - "left": -35.15625, - "top": -84.124973, - "right": -33.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 249, - "left": -33.75, - "top": -84.124973, - "right": -32.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 249, - "left": -32.34375, - "top": -84.124973, - "right": -30.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 249, - "left": -30.9375, - "top": -84.124973, - "right": -29.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 249, - "left": -29.53125, - "top": -84.124973, - "right": -28.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 249, - "left": -28.125, - "top": -84.124973, - "right": -26.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 249, - "left": -26.71875, - "top": -84.124973, - "right": -25.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 249, - "left": -25.3125, - "top": -84.124973, - "right": -23.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 249, - "left": -23.90625, - "top": -84.124973, - "right": -22.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 249, - "left": -22.5, - "top": -84.124973, - "right": -21.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 249, - "left": -21.09375, - "top": -84.124973, - "right": -19.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 249, - "left": -19.6875, - "top": -84.124973, - "right": -18.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 249, - "left": -18.28125, - "top": -84.124973, - "right": -16.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 249, - "left": -16.875, - "top": -84.124973, - "right": -15.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 249, - "left": -15.46875, - "top": -84.124973, - "right": -14.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 249, - "left": -14.0625, - "top": -84.124973, - "right": -12.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 249, - "left": -12.65625, - "top": -84.124973, - "right": -11.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 249, - "left": -11.25, - "top": -84.124973, - "right": -9.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 249, - "left": -9.84375, - "top": -84.124973, - "right": -8.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 249, - "left": -8.4375, - "top": -84.124973, - "right": -7.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 249, - "left": -7.03125, - "top": -84.124973, - "right": -5.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 249, - "left": -5.625, - "top": -84.124973, - "right": -4.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 249, - "left": -4.21875, - "top": -84.124973, - "right": -2.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 249, - "left": -2.8125, - "top": -84.124973, - "right": -1.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 249, - "left": -1.40625, - "top": -84.124973, - "right": 0.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 249, - "left": 0.0, - "top": -84.124973, - "right": 1.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 249, - "left": 1.40625, - "top": -84.124973, - "right": 2.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 249, - "left": 2.8125, - "top": -84.124973, - "right": 4.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 249, - "left": 4.21875, - "top": -84.124973, - "right": 5.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 249, - "left": 5.625, - "top": -84.124973, - "right": 7.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 249, - "left": 7.03125, - "top": -84.124973, - "right": 8.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 249, - "left": 8.4375, - "top": -84.124973, - "right": 9.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 249, - "left": 9.84375, - "top": -84.124973, - "right": 11.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 249, - "left": 11.25, - "top": -84.124973, - "right": 12.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 249, - "left": 12.65625, - "top": -84.124973, - "right": 14.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 249, - "left": 14.0625, - "top": -84.124973, - "right": 15.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 249, - "left": 15.46875, - "top": -84.124973, - "right": 16.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 249, - "left": 16.875, - "top": -84.124973, - "right": 18.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 249, - "left": 18.28125, - "top": -84.124973, - "right": 19.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 249, - "left": 19.6875, - "top": -84.124973, - "right": 21.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 249, - "left": 21.09375, - "top": -84.124973, - "right": 22.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 249, - "left": 22.5, - "top": -84.124973, - "right": 23.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 249, - "left": 23.90625, - "top": -84.124973, - "right": 25.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 249, - "left": 25.3125, - "top": -84.124973, - "right": 26.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 249, - "left": 26.71875, - "top": -84.124973, - "right": 28.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 249, - "left": 28.125, - "top": -84.124973, - "right": 29.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 249, - "left": 29.53125, - "top": -84.124973, - "right": 30.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 249, - "left": 30.9375, - "top": -84.124973, - "right": 32.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 249, - "left": 32.34375, - "top": -84.124973, - "right": 33.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 249, - "left": 33.75, - "top": -84.124973, - "right": 35.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 249, - "left": 35.15625, - "top": -84.124973, - "right": 36.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 249, - "left": 36.5625, - "top": -84.124973, - "right": 37.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 249, - "left": 37.96875, - "top": -84.124973, - "right": 39.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 249, - "left": 39.375, - "top": -84.124973, - "right": 40.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 249, - "left": 40.78125, - "top": -84.124973, - "right": 42.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 249, - "left": 42.1875, - "top": -84.124973, - "right": 43.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 249, - "left": 43.59375, - "top": -84.124973, - "right": 45.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 249, - "left": 45.0, - "top": -84.124973, - "right": 46.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 249, - "left": 46.40625, - "top": -84.124973, - "right": 47.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 249, - "left": 47.8125, - "top": -84.124973, - "right": 49.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 249, - "left": 49.21875, - "top": -84.124973, - "right": 50.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 249, - "left": 50.625, - "top": -84.124973, - "right": 52.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 249, - "left": 52.03125, - "top": -84.124973, - "right": 53.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 249, - "left": 53.4375, - "top": -84.124973, - "right": 54.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 249, - "left": 54.84375, - "top": -84.124973, - "right": 56.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 249, - "left": 56.25, - "top": -84.124973, - "right": 57.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 249, - "left": 57.65625, - "top": -84.124973, - "right": 59.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 249, - "left": 59.0625, - "top": -84.124973, - "right": 60.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 249, - "left": 60.46875, - "top": -84.124973, - "right": 61.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 249, - "left": 61.875, - "top": -84.124973, - "right": 63.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 249, - "left": 63.28125, - "top": -84.124973, - "right": 64.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 249, - "left": 64.6875, - "top": -84.124973, - "right": 66.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 249, - "left": 66.09375, - "top": -84.124973, - "right": 67.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 249, - "left": 67.5, - "top": -84.124973, - "right": 68.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 249, - "left": 68.90625, - "top": -84.124973, - "right": 70.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 249, - "left": 70.3125, - "top": -84.124973, - "right": 71.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 249, - "left": 71.71875, - "top": -84.124973, - "right": 73.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 249, - "left": 73.125, - "top": -84.124973, - "right": 74.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 249, - "left": 74.53125, - "top": -84.124973, - "right": 75.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 249, - "left": 75.9375, - "top": -84.124973, - "right": 77.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 249, - "left": 77.34375, - "top": -84.124973, - "right": 78.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 249, - "left": 78.75, - "top": -84.124973, - "right": 80.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 249, - "left": 80.15625, - "top": -84.124973, - "right": 81.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 249, - "left": 81.5625, - "top": -84.124973, - "right": 82.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 249, - "left": 82.96875, - "top": -84.124973, - "right": 84.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 249, - "left": 84.375, - "top": -84.124973, - "right": 85.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 249, - "left": 85.78125, - "top": -84.124973, - "right": 87.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 249, - "left": 87.1875, - "top": -84.124973, - "right": 88.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 249, - "left": 88.59375, - "top": -84.124973, - "right": 90.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 249, - "left": 90.0, - "top": -84.124973, - "right": 91.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 249, - "left": 91.40625, - "top": -84.124973, - "right": 92.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 249, - "left": 92.8125, - "top": -84.124973, - "right": 94.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 249, - "left": 94.21875, - "top": -84.124973, - "right": 95.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 249, - "left": 95.625, - "top": -84.124973, - "right": 97.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 249, - "left": 97.03125, - "top": -84.124973, - "right": 98.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 249, - "left": 98.4375, - "top": -84.124973, - "right": 99.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 249, - "left": 99.84375, - "top": -84.124973, - "right": 101.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 249, - "left": 101.25, - "top": -84.124973, - "right": 102.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 249, - "left": 102.65625, - "top": -84.124973, - "right": 104.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 249, - "left": 104.0625, - "top": -84.124973, - "right": 105.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 249, - "left": 105.46875, - "top": -84.124973, - "right": 106.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 249, - "left": 106.875, - "top": -84.124973, - "right": 108.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 249, - "left": 108.28125, - "top": -84.124973, - "right": 109.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 249, - "left": 109.6875, - "top": -84.124973, - "right": 111.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 249, - "left": 111.09375, - "top": -84.124973, - "right": 112.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 249, - "left": 112.5, - "top": -84.124973, - "right": 113.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 249, - "left": 113.90625, - "top": -84.124973, - "right": 115.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 249, - "left": 115.3125, - "top": -84.124973, - "right": 116.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 249, - "left": 116.71875, - "top": -84.124973, - "right": 118.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 249, - "left": 118.125, - "top": -84.124973, - "right": 119.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 249, - "left": 119.53125, - "top": -84.124973, - "right": 120.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 249, - "left": 120.9375, - "top": -84.124973, - "right": 122.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 249, - "left": 122.34375, - "top": -84.124973, - "right": 123.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 249, - "left": 123.75, - "top": -84.124973, - "right": 125.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 249, - "left": 125.15625, - "top": -84.124973, - "right": 126.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 249, - "left": 126.5625, - "top": -84.124973, - "right": 127.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 249, - "left": 127.96875, - "top": -84.124973, - "right": 129.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 249, - "left": 129.375, - "top": -84.124973, - "right": 130.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 249, - "left": 130.78125, - "top": -84.124973, - "right": 132.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 249, - "left": 132.1875, - "top": -84.124973, - "right": 133.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 249, - "left": 133.59375, - "top": -84.124973, - "right": 135.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 249, - "left": 135.0, - "top": -84.124973, - "right": 136.40625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 249, - "left": 136.40625, - "top": -84.124973, - "right": 137.8125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 249, - "left": 137.8125, - "top": -84.124973, - "right": 139.21875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 249, - "left": 139.21875, - "top": -84.124973, - "right": 140.625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 249, - "left": 140.625, - "top": -84.124973, - "right": 142.03125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 249, - "left": 142.03125, - "top": -84.124973, - "right": 143.4375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 249, - "left": 143.4375, - "top": -84.124973, - "right": 144.84375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 249, - "left": 144.84375, - "top": -84.124973, - "right": 146.25, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 249, - "left": 146.25, - "top": -84.124973, - "right": 147.65625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 249, - "left": 147.65625, - "top": -84.124973, - "right": 149.0625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 249, - "left": 149.0625, - "top": -84.124973, - "right": 150.46875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 249, - "left": 150.46875, - "top": -84.124973, - "right": 151.875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 249, - "left": 151.875, - "top": -84.124973, - "right": 153.28125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 249, - "left": 153.28125, - "top": -84.124973, - "right": 154.6875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 249, - "left": 154.6875, - "top": -84.124973, - "right": 156.09375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 249, - "left": 156.09375, - "top": -84.124973, - "right": 157.5, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 249, - "left": 157.5, - "top": -84.124973, - "right": 158.90625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 249, - "left": 158.90625, - "top": -84.124973, - "right": 160.3125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 249, - "left": 160.3125, - "top": -84.124973, - "right": 161.71875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 249, - "left": 161.71875, - "top": -84.124973, - "right": 163.125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 249, - "left": 163.125, - "top": -84.124973, - "right": 164.53125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 249, - "left": 164.53125, - "top": -84.124973, - "right": 165.9375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 249, - "left": 165.9375, - "top": -84.124973, - "right": 167.34375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 249, - "left": 167.34375, - "top": -84.124973, - "right": 168.75, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 249, - "left": 168.75, - "top": -84.124973, - "right": 170.15625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 249, - "left": 170.15625, - "top": -84.124973, - "right": 171.5625, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 249, - "left": 171.5625, - "top": -84.124973, - "right": 172.96875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 249, - "left": 172.96875, - "top": -84.124973, - "right": 174.375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 249, - "left": 174.375, - "top": -84.124973, - "right": 175.78125, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 249, - "left": 175.78125, - "top": -84.124973, - "right": 177.1875, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 249, - "left": 177.1875, - "top": -84.124973, - "right": 178.59375, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 249, - "left": 178.59375, - "top": -84.124973, - "right": 180.0, - "bottom": -84.267172, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 250, - "left": -180.0, - "top": -84.267172, - "right": -178.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 250, - "left": -178.59375, - "top": -84.267172, - "right": -177.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 250, - "left": -177.1875, - "top": -84.267172, - "right": -175.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 250, - "left": -175.78125, - "top": -84.267172, - "right": -174.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 19, - "y": 250, - "left": -153.28125, - "top": -84.267172, - "right": -151.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 250, - "left": -151.875, - "top": -84.267172, - "right": -150.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 250, - "left": -150.46875, - "top": -84.267172, - "right": -149.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 250, - "left": -149.0625, - "top": -84.267172, - "right": -147.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 250, - "left": -147.65625, - "top": -84.267172, - "right": -146.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 250, - "left": -146.25, - "top": -84.267172, - "right": -144.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 250, - "left": -144.84375, - "top": -84.267172, - "right": -143.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 250, - "left": -143.4375, - "top": -84.267172, - "right": -142.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 250, - "left": -142.03125, - "top": -84.267172, - "right": -140.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 250, - "left": -140.625, - "top": -84.267172, - "right": -139.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 250, - "left": -139.21875, - "top": -84.267172, - "right": -137.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 250, - "left": -137.8125, - "top": -84.267172, - "right": -136.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 250, - "left": -136.40625, - "top": -84.267172, - "right": -135.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 250, - "left": -135.0, - "top": -84.267172, - "right": -133.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 250, - "left": -133.59375, - "top": -84.267172, - "right": -132.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 250, - "left": -132.1875, - "top": -84.267172, - "right": -130.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 250, - "left": -130.78125, - "top": -84.267172, - "right": -129.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 250, - "left": -129.375, - "top": -84.267172, - "right": -127.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 250, - "left": -127.96875, - "top": -84.267172, - "right": -126.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 250, - "left": -126.5625, - "top": -84.267172, - "right": -125.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 250, - "left": -125.15625, - "top": -84.267172, - "right": -123.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 250, - "left": -123.75, - "top": -84.267172, - "right": -122.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 250, - "left": -122.34375, - "top": -84.267172, - "right": -120.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 250, - "left": -120.9375, - "top": -84.267172, - "right": -119.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 250, - "left": -119.53125, - "top": -84.267172, - "right": -118.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 250, - "left": -118.125, - "top": -84.267172, - "right": -116.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 250, - "left": -116.71875, - "top": -84.267172, - "right": -115.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 250, - "left": -115.3125, - "top": -84.267172, - "right": -113.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 250, - "left": -113.90625, - "top": -84.267172, - "right": -112.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 250, - "left": -112.5, - "top": -84.267172, - "right": -111.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 250, - "left": -111.09375, - "top": -84.267172, - "right": -109.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 250, - "left": -109.6875, - "top": -84.267172, - "right": -108.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 250, - "left": -108.28125, - "top": -84.267172, - "right": -106.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 250, - "left": -106.875, - "top": -84.267172, - "right": -105.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 250, - "left": -105.46875, - "top": -84.267172, - "right": -104.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 250, - "left": -104.0625, - "top": -84.267172, - "right": -102.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 250, - "left": -102.65625, - "top": -84.267172, - "right": -101.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 250, - "left": -101.25, - "top": -84.267172, - "right": -99.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 250, - "left": -99.84375, - "top": -84.267172, - "right": -98.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 250, - "left": -98.4375, - "top": -84.267172, - "right": -97.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 250, - "left": -97.03125, - "top": -84.267172, - "right": -95.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 250, - "left": -95.625, - "top": -84.267172, - "right": -94.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 250, - "left": -94.21875, - "top": -84.267172, - "right": -92.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 250, - "left": -92.8125, - "top": -84.267172, - "right": -91.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 250, - "left": -91.40625, - "top": -84.267172, - "right": -90.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 250, - "left": -90.0, - "top": -84.267172, - "right": -88.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 250, - "left": -88.59375, - "top": -84.267172, - "right": -87.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 250, - "left": -87.1875, - "top": -84.267172, - "right": -85.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 250, - "left": -85.78125, - "top": -84.267172, - "right": -84.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 250, - "left": -84.375, - "top": -84.267172, - "right": -82.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 250, - "left": -82.96875, - "top": -84.267172, - "right": -81.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 250, - "left": -81.5625, - "top": -84.267172, - "right": -80.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 250, - "left": -80.15625, - "top": -84.267172, - "right": -78.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 250, - "left": -78.75, - "top": -84.267172, - "right": -77.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 250, - "left": -77.34375, - "top": -84.267172, - "right": -75.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 250, - "left": -75.9375, - "top": -84.267172, - "right": -74.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 250, - "left": -74.53125, - "top": -84.267172, - "right": -73.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 250, - "left": -73.125, - "top": -84.267172, - "right": -71.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 250, - "left": -71.71875, - "top": -84.267172, - "right": -70.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 250, - "left": -70.3125, - "top": -84.267172, - "right": -68.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 250, - "left": -68.90625, - "top": -84.267172, - "right": -67.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 250, - "left": -67.5, - "top": -84.267172, - "right": -66.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 250, - "left": -66.09375, - "top": -84.267172, - "right": -64.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 250, - "left": -64.6875, - "top": -84.267172, - "right": -63.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 250, - "left": -63.28125, - "top": -84.267172, - "right": -61.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 250, - "left": -61.875, - "top": -84.267172, - "right": -60.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 250, - "left": -60.46875, - "top": -84.267172, - "right": -59.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 250, - "left": -59.0625, - "top": -84.267172, - "right": -57.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 250, - "left": -57.65625, - "top": -84.267172, - "right": -56.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 250, - "left": -56.25, - "top": -84.267172, - "right": -54.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 250, - "left": -54.84375, - "top": -84.267172, - "right": -53.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 250, - "left": -53.4375, - "top": -84.267172, - "right": -52.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 250, - "left": -52.03125, - "top": -84.267172, - "right": -50.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 250, - "left": -50.625, - "top": -84.267172, - "right": -49.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 250, - "left": -49.21875, - "top": -84.267172, - "right": -47.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 250, - "left": -47.8125, - "top": -84.267172, - "right": -46.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 250, - "left": -46.40625, - "top": -84.267172, - "right": -45.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 250, - "left": -45.0, - "top": -84.267172, - "right": -43.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 250, - "left": -43.59375, - "top": -84.267172, - "right": -42.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 250, - "left": -42.1875, - "top": -84.267172, - "right": -40.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 250, - "left": -40.78125, - "top": -84.267172, - "right": -39.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 250, - "left": -39.375, - "top": -84.267172, - "right": -37.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 250, - "left": -37.96875, - "top": -84.267172, - "right": -36.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 250, - "left": -36.5625, - "top": -84.267172, - "right": -35.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 250, - "left": -35.15625, - "top": -84.267172, - "right": -33.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 250, - "left": -33.75, - "top": -84.267172, - "right": -32.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 250, - "left": -32.34375, - "top": -84.267172, - "right": -30.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 250, - "left": -30.9375, - "top": -84.267172, - "right": -29.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 250, - "left": -29.53125, - "top": -84.267172, - "right": -28.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 250, - "left": -28.125, - "top": -84.267172, - "right": -26.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 250, - "left": -26.71875, - "top": -84.267172, - "right": -25.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 250, - "left": -25.3125, - "top": -84.267172, - "right": -23.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 250, - "left": -23.90625, - "top": -84.267172, - "right": -22.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 250, - "left": -22.5, - "top": -84.267172, - "right": -21.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 250, - "left": -21.09375, - "top": -84.267172, - "right": -19.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 250, - "left": -19.6875, - "top": -84.267172, - "right": -18.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 250, - "left": -18.28125, - "top": -84.267172, - "right": -16.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 250, - "left": -16.875, - "top": -84.267172, - "right": -15.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 250, - "left": -15.46875, - "top": -84.267172, - "right": -14.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 250, - "left": -14.0625, - "top": -84.267172, - "right": -12.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 250, - "left": -12.65625, - "top": -84.267172, - "right": -11.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 250, - "left": -11.25, - "top": -84.267172, - "right": -9.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 250, - "left": -9.84375, - "top": -84.267172, - "right": -8.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 250, - "left": -8.4375, - "top": -84.267172, - "right": -7.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 250, - "left": -7.03125, - "top": -84.267172, - "right": -5.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 250, - "left": -5.625, - "top": -84.267172, - "right": -4.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 250, - "left": -4.21875, - "top": -84.267172, - "right": -2.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 250, - "left": -2.8125, - "top": -84.267172, - "right": -1.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 250, - "left": -1.40625, - "top": -84.267172, - "right": 0.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 250, - "left": 0.0, - "top": -84.267172, - "right": 1.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 250, - "left": 1.40625, - "top": -84.267172, - "right": 2.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 250, - "left": 2.8125, - "top": -84.267172, - "right": 4.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 250, - "left": 4.21875, - "top": -84.267172, - "right": 5.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 250, - "left": 5.625, - "top": -84.267172, - "right": 7.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 250, - "left": 7.03125, - "top": -84.267172, - "right": 8.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 250, - "left": 8.4375, - "top": -84.267172, - "right": 9.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 250, - "left": 9.84375, - "top": -84.267172, - "right": 11.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 250, - "left": 11.25, - "top": -84.267172, - "right": 12.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 250, - "left": 12.65625, - "top": -84.267172, - "right": 14.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 250, - "left": 14.0625, - "top": -84.267172, - "right": 15.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 250, - "left": 15.46875, - "top": -84.267172, - "right": 16.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 250, - "left": 16.875, - "top": -84.267172, - "right": 18.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 250, - "left": 18.28125, - "top": -84.267172, - "right": 19.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 250, - "left": 19.6875, - "top": -84.267172, - "right": 21.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 250, - "left": 21.09375, - "top": -84.267172, - "right": 22.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 250, - "left": 22.5, - "top": -84.267172, - "right": 23.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 250, - "left": 23.90625, - "top": -84.267172, - "right": 25.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 250, - "left": 25.3125, - "top": -84.267172, - "right": 26.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 250, - "left": 26.71875, - "top": -84.267172, - "right": 28.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 250, - "left": 28.125, - "top": -84.267172, - "right": 29.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 250, - "left": 29.53125, - "top": -84.267172, - "right": 30.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 250, - "left": 30.9375, - "top": -84.267172, - "right": 32.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 250, - "left": 32.34375, - "top": -84.267172, - "right": 33.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 250, - "left": 33.75, - "top": -84.267172, - "right": 35.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 250, - "left": 35.15625, - "top": -84.267172, - "right": 36.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 250, - "left": 36.5625, - "top": -84.267172, - "right": 37.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 250, - "left": 37.96875, - "top": -84.267172, - "right": 39.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 250, - "left": 39.375, - "top": -84.267172, - "right": 40.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 250, - "left": 40.78125, - "top": -84.267172, - "right": 42.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 250, - "left": 42.1875, - "top": -84.267172, - "right": 43.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 250, - "left": 43.59375, - "top": -84.267172, - "right": 45.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 250, - "left": 45.0, - "top": -84.267172, - "right": 46.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 250, - "left": 46.40625, - "top": -84.267172, - "right": 47.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 250, - "left": 47.8125, - "top": -84.267172, - "right": 49.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 250, - "left": 49.21875, - "top": -84.267172, - "right": 50.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 250, - "left": 50.625, - "top": -84.267172, - "right": 52.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 250, - "left": 52.03125, - "top": -84.267172, - "right": 53.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 250, - "left": 53.4375, - "top": -84.267172, - "right": 54.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 250, - "left": 54.84375, - "top": -84.267172, - "right": 56.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 250, - "left": 56.25, - "top": -84.267172, - "right": 57.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 250, - "left": 57.65625, - "top": -84.267172, - "right": 59.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 250, - "left": 59.0625, - "top": -84.267172, - "right": 60.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 250, - "left": 60.46875, - "top": -84.267172, - "right": 61.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 250, - "left": 61.875, - "top": -84.267172, - "right": 63.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 250, - "left": 63.28125, - "top": -84.267172, - "right": 64.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 250, - "left": 64.6875, - "top": -84.267172, - "right": 66.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 250, - "left": 66.09375, - "top": -84.267172, - "right": 67.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 250, - "left": 67.5, - "top": -84.267172, - "right": 68.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 250, - "left": 68.90625, - "top": -84.267172, - "right": 70.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 250, - "left": 70.3125, - "top": -84.267172, - "right": 71.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 250, - "left": 71.71875, - "top": -84.267172, - "right": 73.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 250, - "left": 73.125, - "top": -84.267172, - "right": 74.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 250, - "left": 74.53125, - "top": -84.267172, - "right": 75.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 250, - "left": 75.9375, - "top": -84.267172, - "right": 77.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 250, - "left": 77.34375, - "top": -84.267172, - "right": 78.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 250, - "left": 78.75, - "top": -84.267172, - "right": 80.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 250, - "left": 80.15625, - "top": -84.267172, - "right": 81.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 250, - "left": 81.5625, - "top": -84.267172, - "right": 82.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 250, - "left": 82.96875, - "top": -84.267172, - "right": 84.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 250, - "left": 84.375, - "top": -84.267172, - "right": 85.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 250, - "left": 85.78125, - "top": -84.267172, - "right": 87.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 250, - "left": 87.1875, - "top": -84.267172, - "right": 88.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 250, - "left": 88.59375, - "top": -84.267172, - "right": 90.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 250, - "left": 90.0, - "top": -84.267172, - "right": 91.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 250, - "left": 91.40625, - "top": -84.267172, - "right": 92.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 250, - "left": 92.8125, - "top": -84.267172, - "right": 94.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 250, - "left": 94.21875, - "top": -84.267172, - "right": 95.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 250, - "left": 95.625, - "top": -84.267172, - "right": 97.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 250, - "left": 97.03125, - "top": -84.267172, - "right": 98.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 250, - "left": 98.4375, - "top": -84.267172, - "right": 99.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 250, - "left": 99.84375, - "top": -84.267172, - "right": 101.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 250, - "left": 101.25, - "top": -84.267172, - "right": 102.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 250, - "left": 102.65625, - "top": -84.267172, - "right": 104.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 250, - "left": 104.0625, - "top": -84.267172, - "right": 105.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 250, - "left": 105.46875, - "top": -84.267172, - "right": 106.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 250, - "left": 106.875, - "top": -84.267172, - "right": 108.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 250, - "left": 108.28125, - "top": -84.267172, - "right": 109.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 250, - "left": 109.6875, - "top": -84.267172, - "right": 111.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 250, - "left": 111.09375, - "top": -84.267172, - "right": 112.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 250, - "left": 112.5, - "top": -84.267172, - "right": 113.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 250, - "left": 113.90625, - "top": -84.267172, - "right": 115.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 250, - "left": 115.3125, - "top": -84.267172, - "right": 116.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 250, - "left": 116.71875, - "top": -84.267172, - "right": 118.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 250, - "left": 118.125, - "top": -84.267172, - "right": 119.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 250, - "left": 119.53125, - "top": -84.267172, - "right": 120.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 250, - "left": 120.9375, - "top": -84.267172, - "right": 122.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 250, - "left": 122.34375, - "top": -84.267172, - "right": 123.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 250, - "left": 123.75, - "top": -84.267172, - "right": 125.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 250, - "left": 125.15625, - "top": -84.267172, - "right": 126.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 250, - "left": 126.5625, - "top": -84.267172, - "right": 127.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 250, - "left": 127.96875, - "top": -84.267172, - "right": 129.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 250, - "left": 129.375, - "top": -84.267172, - "right": 130.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 250, - "left": 130.78125, - "top": -84.267172, - "right": 132.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 250, - "left": 132.1875, - "top": -84.267172, - "right": 133.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 250, - "left": 133.59375, - "top": -84.267172, - "right": 135.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 250, - "left": 135.0, - "top": -84.267172, - "right": 136.40625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 250, - "left": 136.40625, - "top": -84.267172, - "right": 137.8125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 250, - "left": 137.8125, - "top": -84.267172, - "right": 139.21875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 250, - "left": 139.21875, - "top": -84.267172, - "right": 140.625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 250, - "left": 140.625, - "top": -84.267172, - "right": 142.03125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 250, - "left": 142.03125, - "top": -84.267172, - "right": 143.4375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 250, - "left": 143.4375, - "top": -84.267172, - "right": 144.84375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 250, - "left": 144.84375, - "top": -84.267172, - "right": 146.25, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 250, - "left": 146.25, - "top": -84.267172, - "right": 147.65625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 250, - "left": 147.65625, - "top": -84.267172, - "right": 149.0625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 250, - "left": 149.0625, - "top": -84.267172, - "right": 150.46875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 250, - "left": 150.46875, - "top": -84.267172, - "right": 151.875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 250, - "left": 151.875, - "top": -84.267172, - "right": 153.28125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 250, - "left": 153.28125, - "top": -84.267172, - "right": 154.6875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 250, - "left": 154.6875, - "top": -84.267172, - "right": 156.09375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 250, - "left": 156.09375, - "top": -84.267172, - "right": 157.5, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 250, - "left": 157.5, - "top": -84.267172, - "right": 158.90625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 250, - "left": 158.90625, - "top": -84.267172, - "right": 160.3125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 250, - "left": 160.3125, - "top": -84.267172, - "right": 161.71875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 250, - "left": 161.71875, - "top": -84.267172, - "right": 163.125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 250, - "left": 163.125, - "top": -84.267172, - "right": 164.53125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 250, - "left": 164.53125, - "top": -84.267172, - "right": 165.9375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 250, - "left": 165.9375, - "top": -84.267172, - "right": 167.34375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 250, - "left": 167.34375, - "top": -84.267172, - "right": 168.75, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 250, - "left": 168.75, - "top": -84.267172, - "right": 170.15625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 250, - "left": 170.15625, - "top": -84.267172, - "right": 171.5625, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 250, - "left": 171.5625, - "top": -84.267172, - "right": 172.96875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 250, - "left": 172.96875, - "top": -84.267172, - "right": 174.375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 250, - "left": 174.375, - "top": -84.267172, - "right": 175.78125, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 250, - "left": 175.78125, - "top": -84.267172, - "right": 177.1875, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 250, - "left": 177.1875, - "top": -84.267172, - "right": 178.59375, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 250, - "left": 178.59375, - "top": -84.267172, - "right": 180.0, - "bottom": -84.405941, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 251, - "left": -180.0, - "top": -84.405941, - "right": -178.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 251, - "left": -178.59375, - "top": -84.405941, - "right": -177.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 251, - "left": -177.1875, - "top": -84.405941, - "right": -175.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 251, - "left": -175.78125, - "top": -84.405941, - "right": -174.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 4, - "y": 251, - "left": -174.375, - "top": -84.405941, - "right": -172.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 5, - "y": 251, - "left": -172.96875, - "top": -84.405941, - "right": -171.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 20, - "y": 251, - "left": -151.875, - "top": -84.405941, - "right": -150.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 251, - "left": -150.46875, - "top": -84.405941, - "right": -149.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 251, - "left": -149.0625, - "top": -84.405941, - "right": -147.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 251, - "left": -147.65625, - "top": -84.405941, - "right": -146.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 251, - "left": -146.25, - "top": -84.405941, - "right": -144.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 251, - "left": -144.84375, - "top": -84.405941, - "right": -143.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 251, - "left": -143.4375, - "top": -84.405941, - "right": -142.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 251, - "left": -142.03125, - "top": -84.405941, - "right": -140.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 251, - "left": -140.625, - "top": -84.405941, - "right": -139.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 251, - "left": -139.21875, - "top": -84.405941, - "right": -137.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 251, - "left": -137.8125, - "top": -84.405941, - "right": -136.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 251, - "left": -136.40625, - "top": -84.405941, - "right": -135.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 251, - "left": -135.0, - "top": -84.405941, - "right": -133.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 251, - "left": -133.59375, - "top": -84.405941, - "right": -132.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 251, - "left": -132.1875, - "top": -84.405941, - "right": -130.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 251, - "left": -130.78125, - "top": -84.405941, - "right": -129.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 251, - "left": -129.375, - "top": -84.405941, - "right": -127.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 251, - "left": -127.96875, - "top": -84.405941, - "right": -126.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 251, - "left": -126.5625, - "top": -84.405941, - "right": -125.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 251, - "left": -125.15625, - "top": -84.405941, - "right": -123.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 251, - "left": -123.75, - "top": -84.405941, - "right": -122.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 251, - "left": -122.34375, - "top": -84.405941, - "right": -120.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 251, - "left": -120.9375, - "top": -84.405941, - "right": -119.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 251, - "left": -119.53125, - "top": -84.405941, - "right": -118.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 251, - "left": -118.125, - "top": -84.405941, - "right": -116.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 251, - "left": -116.71875, - "top": -84.405941, - "right": -115.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 251, - "left": -115.3125, - "top": -84.405941, - "right": -113.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 251, - "left": -113.90625, - "top": -84.405941, - "right": -112.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 251, - "left": -112.5, - "top": -84.405941, - "right": -111.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 251, - "left": -111.09375, - "top": -84.405941, - "right": -109.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 251, - "left": -109.6875, - "top": -84.405941, - "right": -108.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 251, - "left": -108.28125, - "top": -84.405941, - "right": -106.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 251, - "left": -106.875, - "top": -84.405941, - "right": -105.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 251, - "left": -105.46875, - "top": -84.405941, - "right": -104.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 251, - "left": -104.0625, - "top": -84.405941, - "right": -102.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 251, - "left": -102.65625, - "top": -84.405941, - "right": -101.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 251, - "left": -101.25, - "top": -84.405941, - "right": -99.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 251, - "left": -99.84375, - "top": -84.405941, - "right": -98.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 251, - "left": -98.4375, - "top": -84.405941, - "right": -97.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 251, - "left": -97.03125, - "top": -84.405941, - "right": -95.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 251, - "left": -95.625, - "top": -84.405941, - "right": -94.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 251, - "left": -94.21875, - "top": -84.405941, - "right": -92.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 251, - "left": -92.8125, - "top": -84.405941, - "right": -91.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 251, - "left": -91.40625, - "top": -84.405941, - "right": -90.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 251, - "left": -90.0, - "top": -84.405941, - "right": -88.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 251, - "left": -88.59375, - "top": -84.405941, - "right": -87.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 251, - "left": -87.1875, - "top": -84.405941, - "right": -85.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 251, - "left": -85.78125, - "top": -84.405941, - "right": -84.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 251, - "left": -84.375, - "top": -84.405941, - "right": -82.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 251, - "left": -82.96875, - "top": -84.405941, - "right": -81.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 251, - "left": -81.5625, - "top": -84.405941, - "right": -80.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 251, - "left": -80.15625, - "top": -84.405941, - "right": -78.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 251, - "left": -78.75, - "top": -84.405941, - "right": -77.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 251, - "left": -77.34375, - "top": -84.405941, - "right": -75.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 251, - "left": -75.9375, - "top": -84.405941, - "right": -74.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 251, - "left": -74.53125, - "top": -84.405941, - "right": -73.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 251, - "left": -73.125, - "top": -84.405941, - "right": -71.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 251, - "left": -71.71875, - "top": -84.405941, - "right": -70.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 251, - "left": -70.3125, - "top": -84.405941, - "right": -68.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 251, - "left": -68.90625, - "top": -84.405941, - "right": -67.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 251, - "left": -67.5, - "top": -84.405941, - "right": -66.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 251, - "left": -66.09375, - "top": -84.405941, - "right": -64.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 251, - "left": -64.6875, - "top": -84.405941, - "right": -63.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 251, - "left": -63.28125, - "top": -84.405941, - "right": -61.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 251, - "left": -61.875, - "top": -84.405941, - "right": -60.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 251, - "left": -60.46875, - "top": -84.405941, - "right": -59.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 251, - "left": -59.0625, - "top": -84.405941, - "right": -57.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 251, - "left": -57.65625, - "top": -84.405941, - "right": -56.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 251, - "left": -56.25, - "top": -84.405941, - "right": -54.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 251, - "left": -54.84375, - "top": -84.405941, - "right": -53.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 251, - "left": -53.4375, - "top": -84.405941, - "right": -52.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 251, - "left": -52.03125, - "top": -84.405941, - "right": -50.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 251, - "left": -50.625, - "top": -84.405941, - "right": -49.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 251, - "left": -49.21875, - "top": -84.405941, - "right": -47.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 251, - "left": -47.8125, - "top": -84.405941, - "right": -46.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 251, - "left": -46.40625, - "top": -84.405941, - "right": -45.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 251, - "left": -45.0, - "top": -84.405941, - "right": -43.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 251, - "left": -43.59375, - "top": -84.405941, - "right": -42.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 251, - "left": -42.1875, - "top": -84.405941, - "right": -40.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 251, - "left": -40.78125, - "top": -84.405941, - "right": -39.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 251, - "left": -39.375, - "top": -84.405941, - "right": -37.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 251, - "left": -37.96875, - "top": -84.405941, - "right": -36.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 251, - "left": -36.5625, - "top": -84.405941, - "right": -35.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 251, - "left": -35.15625, - "top": -84.405941, - "right": -33.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 251, - "left": -33.75, - "top": -84.405941, - "right": -32.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 251, - "left": -32.34375, - "top": -84.405941, - "right": -30.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 251, - "left": -30.9375, - "top": -84.405941, - "right": -29.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 251, - "left": -29.53125, - "top": -84.405941, - "right": -28.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 251, - "left": -28.125, - "top": -84.405941, - "right": -26.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 251, - "left": -26.71875, - "top": -84.405941, - "right": -25.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 251, - "left": -25.3125, - "top": -84.405941, - "right": -23.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 251, - "left": -23.90625, - "top": -84.405941, - "right": -22.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 251, - "left": -22.5, - "top": -84.405941, - "right": -21.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 251, - "left": -21.09375, - "top": -84.405941, - "right": -19.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 251, - "left": -19.6875, - "top": -84.405941, - "right": -18.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 251, - "left": -18.28125, - "top": -84.405941, - "right": -16.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 251, - "left": -16.875, - "top": -84.405941, - "right": -15.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 251, - "left": -15.46875, - "top": -84.405941, - "right": -14.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 251, - "left": -14.0625, - "top": -84.405941, - "right": -12.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 251, - "left": -12.65625, - "top": -84.405941, - "right": -11.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 251, - "left": -11.25, - "top": -84.405941, - "right": -9.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 251, - "left": -9.84375, - "top": -84.405941, - "right": -8.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 251, - "left": -8.4375, - "top": -84.405941, - "right": -7.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 251, - "left": -7.03125, - "top": -84.405941, - "right": -5.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 251, - "left": -5.625, - "top": -84.405941, - "right": -4.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 251, - "left": -4.21875, - "top": -84.405941, - "right": -2.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 251, - "left": -2.8125, - "top": -84.405941, - "right": -1.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 251, - "left": -1.40625, - "top": -84.405941, - "right": 0.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 251, - "left": 0.0, - "top": -84.405941, - "right": 1.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 251, - "left": 1.40625, - "top": -84.405941, - "right": 2.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 251, - "left": 2.8125, - "top": -84.405941, - "right": 4.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 251, - "left": 4.21875, - "top": -84.405941, - "right": 5.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 251, - "left": 5.625, - "top": -84.405941, - "right": 7.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 251, - "left": 7.03125, - "top": -84.405941, - "right": 8.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 251, - "left": 8.4375, - "top": -84.405941, - "right": 9.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 251, - "left": 9.84375, - "top": -84.405941, - "right": 11.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 251, - "left": 11.25, - "top": -84.405941, - "right": 12.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 251, - "left": 12.65625, - "top": -84.405941, - "right": 14.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 251, - "left": 14.0625, - "top": -84.405941, - "right": 15.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 251, - "left": 15.46875, - "top": -84.405941, - "right": 16.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 251, - "left": 16.875, - "top": -84.405941, - "right": 18.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 251, - "left": 18.28125, - "top": -84.405941, - "right": 19.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 251, - "left": 19.6875, - "top": -84.405941, - "right": 21.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 251, - "left": 21.09375, - "top": -84.405941, - "right": 22.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 251, - "left": 22.5, - "top": -84.405941, - "right": 23.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 251, - "left": 23.90625, - "top": -84.405941, - "right": 25.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 251, - "left": 25.3125, - "top": -84.405941, - "right": 26.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 251, - "left": 26.71875, - "top": -84.405941, - "right": 28.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 251, - "left": 28.125, - "top": -84.405941, - "right": 29.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 251, - "left": 29.53125, - "top": -84.405941, - "right": 30.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 251, - "left": 30.9375, - "top": -84.405941, - "right": 32.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 251, - "left": 32.34375, - "top": -84.405941, - "right": 33.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 251, - "left": 33.75, - "top": -84.405941, - "right": 35.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 251, - "left": 35.15625, - "top": -84.405941, - "right": 36.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 251, - "left": 36.5625, - "top": -84.405941, - "right": 37.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 251, - "left": 37.96875, - "top": -84.405941, - "right": 39.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 251, - "left": 39.375, - "top": -84.405941, - "right": 40.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 251, - "left": 40.78125, - "top": -84.405941, - "right": 42.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 251, - "left": 42.1875, - "top": -84.405941, - "right": 43.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 251, - "left": 43.59375, - "top": -84.405941, - "right": 45.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 251, - "left": 45.0, - "top": -84.405941, - "right": 46.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 251, - "left": 46.40625, - "top": -84.405941, - "right": 47.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 251, - "left": 47.8125, - "top": -84.405941, - "right": 49.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 251, - "left": 49.21875, - "top": -84.405941, - "right": 50.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 251, - "left": 50.625, - "top": -84.405941, - "right": 52.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 251, - "left": 52.03125, - "top": -84.405941, - "right": 53.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 251, - "left": 53.4375, - "top": -84.405941, - "right": 54.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 251, - "left": 54.84375, - "top": -84.405941, - "right": 56.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 251, - "left": 56.25, - "top": -84.405941, - "right": 57.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 251, - "left": 57.65625, - "top": -84.405941, - "right": 59.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 251, - "left": 59.0625, - "top": -84.405941, - "right": 60.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 251, - "left": 60.46875, - "top": -84.405941, - "right": 61.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 251, - "left": 61.875, - "top": -84.405941, - "right": 63.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 251, - "left": 63.28125, - "top": -84.405941, - "right": 64.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 251, - "left": 64.6875, - "top": -84.405941, - "right": 66.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 251, - "left": 66.09375, - "top": -84.405941, - "right": 67.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 251, - "left": 67.5, - "top": -84.405941, - "right": 68.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 251, - "left": 68.90625, - "top": -84.405941, - "right": 70.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 251, - "left": 70.3125, - "top": -84.405941, - "right": 71.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 251, - "left": 71.71875, - "top": -84.405941, - "right": 73.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 251, - "left": 73.125, - "top": -84.405941, - "right": 74.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 251, - "left": 74.53125, - "top": -84.405941, - "right": 75.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 251, - "left": 75.9375, - "top": -84.405941, - "right": 77.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 251, - "left": 77.34375, - "top": -84.405941, - "right": 78.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 251, - "left": 78.75, - "top": -84.405941, - "right": 80.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 251, - "left": 80.15625, - "top": -84.405941, - "right": 81.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 251, - "left": 81.5625, - "top": -84.405941, - "right": 82.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 251, - "left": 82.96875, - "top": -84.405941, - "right": 84.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 251, - "left": 84.375, - "top": -84.405941, - "right": 85.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 251, - "left": 85.78125, - "top": -84.405941, - "right": 87.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 251, - "left": 87.1875, - "top": -84.405941, - "right": 88.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 251, - "left": 88.59375, - "top": -84.405941, - "right": 90.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 251, - "left": 90.0, - "top": -84.405941, - "right": 91.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 251, - "left": 91.40625, - "top": -84.405941, - "right": 92.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 251, - "left": 92.8125, - "top": -84.405941, - "right": 94.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 251, - "left": 94.21875, - "top": -84.405941, - "right": 95.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 251, - "left": 95.625, - "top": -84.405941, - "right": 97.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 251, - "left": 97.03125, - "top": -84.405941, - "right": 98.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 251, - "left": 98.4375, - "top": -84.405941, - "right": 99.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 251, - "left": 99.84375, - "top": -84.405941, - "right": 101.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 251, - "left": 101.25, - "top": -84.405941, - "right": 102.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 251, - "left": 102.65625, - "top": -84.405941, - "right": 104.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 251, - "left": 104.0625, - "top": -84.405941, - "right": 105.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 251, - "left": 105.46875, - "top": -84.405941, - "right": 106.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 251, - "left": 106.875, - "top": -84.405941, - "right": 108.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 251, - "left": 108.28125, - "top": -84.405941, - "right": 109.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 251, - "left": 109.6875, - "top": -84.405941, - "right": 111.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 251, - "left": 111.09375, - "top": -84.405941, - "right": 112.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 251, - "left": 112.5, - "top": -84.405941, - "right": 113.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 251, - "left": 113.90625, - "top": -84.405941, - "right": 115.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 251, - "left": 115.3125, - "top": -84.405941, - "right": 116.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 251, - "left": 116.71875, - "top": -84.405941, - "right": 118.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 251, - "left": 118.125, - "top": -84.405941, - "right": 119.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 251, - "left": 119.53125, - "top": -84.405941, - "right": 120.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 251, - "left": 120.9375, - "top": -84.405941, - "right": 122.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 251, - "left": 122.34375, - "top": -84.405941, - "right": 123.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 251, - "left": 123.75, - "top": -84.405941, - "right": 125.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 251, - "left": 125.15625, - "top": -84.405941, - "right": 126.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 251, - "left": 126.5625, - "top": -84.405941, - "right": 127.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 251, - "left": 127.96875, - "top": -84.405941, - "right": 129.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 251, - "left": 129.375, - "top": -84.405941, - "right": 130.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 251, - "left": 130.78125, - "top": -84.405941, - "right": 132.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 251, - "left": 132.1875, - "top": -84.405941, - "right": 133.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 251, - "left": 133.59375, - "top": -84.405941, - "right": 135.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 251, - "left": 135.0, - "top": -84.405941, - "right": 136.40625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 251, - "left": 136.40625, - "top": -84.405941, - "right": 137.8125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 251, - "left": 137.8125, - "top": -84.405941, - "right": 139.21875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 251, - "left": 139.21875, - "top": -84.405941, - "right": 140.625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 251, - "left": 140.625, - "top": -84.405941, - "right": 142.03125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 251, - "left": 142.03125, - "top": -84.405941, - "right": 143.4375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 251, - "left": 143.4375, - "top": -84.405941, - "right": 144.84375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 251, - "left": 144.84375, - "top": -84.405941, - "right": 146.25, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 251, - "left": 146.25, - "top": -84.405941, - "right": 147.65625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 251, - "left": 147.65625, - "top": -84.405941, - "right": 149.0625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 251, - "left": 149.0625, - "top": -84.405941, - "right": 150.46875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 251, - "left": 150.46875, - "top": -84.405941, - "right": 151.875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 251, - "left": 151.875, - "top": -84.405941, - "right": 153.28125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 251, - "left": 153.28125, - "top": -84.405941, - "right": 154.6875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 251, - "left": 154.6875, - "top": -84.405941, - "right": 156.09375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 251, - "left": 156.09375, - "top": -84.405941, - "right": 157.5, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 251, - "left": 157.5, - "top": -84.405941, - "right": 158.90625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 251, - "left": 158.90625, - "top": -84.405941, - "right": 160.3125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 251, - "left": 160.3125, - "top": -84.405941, - "right": 161.71875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 251, - "left": 161.71875, - "top": -84.405941, - "right": 163.125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 251, - "left": 163.125, - "top": -84.405941, - "right": 164.53125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 251, - "left": 164.53125, - "top": -84.405941, - "right": 165.9375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 251, - "left": 165.9375, - "top": -84.405941, - "right": 167.34375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 251, - "left": 167.34375, - "top": -84.405941, - "right": 168.75, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 251, - "left": 168.75, - "top": -84.405941, - "right": 170.15625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 251, - "left": 170.15625, - "top": -84.405941, - "right": 171.5625, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 251, - "left": 171.5625, - "top": -84.405941, - "right": 172.96875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 251, - "left": 172.96875, - "top": -84.405941, - "right": 174.375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 251, - "left": 174.375, - "top": -84.405941, - "right": 175.78125, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 251, - "left": 175.78125, - "top": -84.405941, - "right": 177.1875, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 251, - "left": 177.1875, - "top": -84.405941, - "right": 178.59375, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 251, - "left": 178.59375, - "top": -84.405941, - "right": 180.0, - "bottom": -84.541361, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 252, - "left": -180.0, - "top": -84.541361, - "right": -178.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 252, - "left": -178.59375, - "top": -84.541361, - "right": -177.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 252, - "left": -177.1875, - "top": -84.541361, - "right": -175.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 252, - "left": -175.78125, - "top": -84.541361, - "right": -174.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 4, - "y": 252, - "left": -174.375, - "top": -84.541361, - "right": -172.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 5, - "y": 252, - "left": -172.96875, - "top": -84.541361, - "right": -171.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 6, - "y": 252, - "left": -171.5625, - "top": -84.541361, - "right": -170.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 7, - "y": 252, - "left": -170.15625, - "top": -84.541361, - "right": -168.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 21, - "y": 252, - "left": -150.46875, - "top": -84.541361, - "right": -149.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 252, - "left": -149.0625, - "top": -84.541361, - "right": -147.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 252, - "left": -147.65625, - "top": -84.541361, - "right": -146.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 252, - "left": -146.25, - "top": -84.541361, - "right": -144.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 252, - "left": -144.84375, - "top": -84.541361, - "right": -143.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 252, - "left": -143.4375, - "top": -84.541361, - "right": -142.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 252, - "left": -142.03125, - "top": -84.541361, - "right": -140.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 252, - "left": -140.625, - "top": -84.541361, - "right": -139.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 252, - "left": -139.21875, - "top": -84.541361, - "right": -137.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 252, - "left": -137.8125, - "top": -84.541361, - "right": -136.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 252, - "left": -136.40625, - "top": -84.541361, - "right": -135.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 252, - "left": -135.0, - "top": -84.541361, - "right": -133.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 252, - "left": -133.59375, - "top": -84.541361, - "right": -132.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 252, - "left": -132.1875, - "top": -84.541361, - "right": -130.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 252, - "left": -130.78125, - "top": -84.541361, - "right": -129.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 252, - "left": -129.375, - "top": -84.541361, - "right": -127.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 252, - "left": -127.96875, - "top": -84.541361, - "right": -126.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 252, - "left": -126.5625, - "top": -84.541361, - "right": -125.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 252, - "left": -125.15625, - "top": -84.541361, - "right": -123.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 252, - "left": -123.75, - "top": -84.541361, - "right": -122.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 252, - "left": -122.34375, - "top": -84.541361, - "right": -120.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 252, - "left": -120.9375, - "top": -84.541361, - "right": -119.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 252, - "left": -119.53125, - "top": -84.541361, - "right": -118.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 252, - "left": -118.125, - "top": -84.541361, - "right": -116.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 252, - "left": -116.71875, - "top": -84.541361, - "right": -115.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 252, - "left": -115.3125, - "top": -84.541361, - "right": -113.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 252, - "left": -113.90625, - "top": -84.541361, - "right": -112.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 252, - "left": -112.5, - "top": -84.541361, - "right": -111.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 252, - "left": -111.09375, - "top": -84.541361, - "right": -109.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 252, - "left": -109.6875, - "top": -84.541361, - "right": -108.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 252, - "left": -108.28125, - "top": -84.541361, - "right": -106.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 252, - "left": -106.875, - "top": -84.541361, - "right": -105.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 252, - "left": -105.46875, - "top": -84.541361, - "right": -104.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 252, - "left": -104.0625, - "top": -84.541361, - "right": -102.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 252, - "left": -102.65625, - "top": -84.541361, - "right": -101.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 252, - "left": -101.25, - "top": -84.541361, - "right": -99.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 252, - "left": -99.84375, - "top": -84.541361, - "right": -98.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 252, - "left": -98.4375, - "top": -84.541361, - "right": -97.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 252, - "left": -97.03125, - "top": -84.541361, - "right": -95.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 252, - "left": -95.625, - "top": -84.541361, - "right": -94.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 252, - "left": -94.21875, - "top": -84.541361, - "right": -92.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 252, - "left": -92.8125, - "top": -84.541361, - "right": -91.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 252, - "left": -91.40625, - "top": -84.541361, - "right": -90.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 252, - "left": -90.0, - "top": -84.541361, - "right": -88.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 252, - "left": -88.59375, - "top": -84.541361, - "right": -87.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 252, - "left": -87.1875, - "top": -84.541361, - "right": -85.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 252, - "left": -85.78125, - "top": -84.541361, - "right": -84.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 252, - "left": -84.375, - "top": -84.541361, - "right": -82.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 252, - "left": -82.96875, - "top": -84.541361, - "right": -81.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 252, - "left": -81.5625, - "top": -84.541361, - "right": -80.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 252, - "left": -80.15625, - "top": -84.541361, - "right": -78.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 252, - "left": -78.75, - "top": -84.541361, - "right": -77.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 252, - "left": -77.34375, - "top": -84.541361, - "right": -75.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 252, - "left": -75.9375, - "top": -84.541361, - "right": -74.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 252, - "left": -74.53125, - "top": -84.541361, - "right": -73.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 252, - "left": -73.125, - "top": -84.541361, - "right": -71.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 252, - "left": -71.71875, - "top": -84.541361, - "right": -70.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 252, - "left": -70.3125, - "top": -84.541361, - "right": -68.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 252, - "left": -68.90625, - "top": -84.541361, - "right": -67.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 252, - "left": -67.5, - "top": -84.541361, - "right": -66.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 252, - "left": -66.09375, - "top": -84.541361, - "right": -64.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 252, - "left": -64.6875, - "top": -84.541361, - "right": -63.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 252, - "left": -63.28125, - "top": -84.541361, - "right": -61.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 252, - "left": -61.875, - "top": -84.541361, - "right": -60.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 252, - "left": -60.46875, - "top": -84.541361, - "right": -59.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 252, - "left": -59.0625, - "top": -84.541361, - "right": -57.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 252, - "left": -57.65625, - "top": -84.541361, - "right": -56.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 252, - "left": -56.25, - "top": -84.541361, - "right": -54.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 252, - "left": -54.84375, - "top": -84.541361, - "right": -53.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 252, - "left": -53.4375, - "top": -84.541361, - "right": -52.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 252, - "left": -52.03125, - "top": -84.541361, - "right": -50.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 252, - "left": -50.625, - "top": -84.541361, - "right": -49.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 252, - "left": -49.21875, - "top": -84.541361, - "right": -47.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 252, - "left": -47.8125, - "top": -84.541361, - "right": -46.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 252, - "left": -46.40625, - "top": -84.541361, - "right": -45.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 252, - "left": -45.0, - "top": -84.541361, - "right": -43.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 252, - "left": -43.59375, - "top": -84.541361, - "right": -42.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 252, - "left": -42.1875, - "top": -84.541361, - "right": -40.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 252, - "left": -40.78125, - "top": -84.541361, - "right": -39.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 252, - "left": -39.375, - "top": -84.541361, - "right": -37.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 252, - "left": -37.96875, - "top": -84.541361, - "right": -36.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 252, - "left": -36.5625, - "top": -84.541361, - "right": -35.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 252, - "left": -35.15625, - "top": -84.541361, - "right": -33.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 252, - "left": -33.75, - "top": -84.541361, - "right": -32.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 252, - "left": -32.34375, - "top": -84.541361, - "right": -30.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 252, - "left": -30.9375, - "top": -84.541361, - "right": -29.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 252, - "left": -29.53125, - "top": -84.541361, - "right": -28.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 252, - "left": -28.125, - "top": -84.541361, - "right": -26.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 252, - "left": -26.71875, - "top": -84.541361, - "right": -25.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 252, - "left": -25.3125, - "top": -84.541361, - "right": -23.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 252, - "left": -23.90625, - "top": -84.541361, - "right": -22.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 252, - "left": -22.5, - "top": -84.541361, - "right": -21.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 252, - "left": -21.09375, - "top": -84.541361, - "right": -19.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 252, - "left": -19.6875, - "top": -84.541361, - "right": -18.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 252, - "left": -18.28125, - "top": -84.541361, - "right": -16.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 252, - "left": -16.875, - "top": -84.541361, - "right": -15.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 252, - "left": -15.46875, - "top": -84.541361, - "right": -14.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 252, - "left": -14.0625, - "top": -84.541361, - "right": -12.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 252, - "left": -12.65625, - "top": -84.541361, - "right": -11.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 252, - "left": -11.25, - "top": -84.541361, - "right": -9.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 252, - "left": -9.84375, - "top": -84.541361, - "right": -8.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 252, - "left": -8.4375, - "top": -84.541361, - "right": -7.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 252, - "left": -7.03125, - "top": -84.541361, - "right": -5.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 252, - "left": -5.625, - "top": -84.541361, - "right": -4.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 252, - "left": -4.21875, - "top": -84.541361, - "right": -2.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 252, - "left": -2.8125, - "top": -84.541361, - "right": -1.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 252, - "left": -1.40625, - "top": -84.541361, - "right": 0.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 252, - "left": 0.0, - "top": -84.541361, - "right": 1.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 252, - "left": 1.40625, - "top": -84.541361, - "right": 2.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 252, - "left": 2.8125, - "top": -84.541361, - "right": 4.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 252, - "left": 4.21875, - "top": -84.541361, - "right": 5.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 252, - "left": 5.625, - "top": -84.541361, - "right": 7.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 252, - "left": 7.03125, - "top": -84.541361, - "right": 8.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 252, - "left": 8.4375, - "top": -84.541361, - "right": 9.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 252, - "left": 9.84375, - "top": -84.541361, - "right": 11.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 252, - "left": 11.25, - "top": -84.541361, - "right": 12.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 252, - "left": 12.65625, - "top": -84.541361, - "right": 14.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 252, - "left": 14.0625, - "top": -84.541361, - "right": 15.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 252, - "left": 15.46875, - "top": -84.541361, - "right": 16.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 252, - "left": 16.875, - "top": -84.541361, - "right": 18.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 252, - "left": 18.28125, - "top": -84.541361, - "right": 19.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 252, - "left": 19.6875, - "top": -84.541361, - "right": 21.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 252, - "left": 21.09375, - "top": -84.541361, - "right": 22.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 252, - "left": 22.5, - "top": -84.541361, - "right": 23.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 252, - "left": 23.90625, - "top": -84.541361, - "right": 25.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 252, - "left": 25.3125, - "top": -84.541361, - "right": 26.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 252, - "left": 26.71875, - "top": -84.541361, - "right": 28.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 252, - "left": 28.125, - "top": -84.541361, - "right": 29.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 252, - "left": 29.53125, - "top": -84.541361, - "right": 30.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 252, - "left": 30.9375, - "top": -84.541361, - "right": 32.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 252, - "left": 32.34375, - "top": -84.541361, - "right": 33.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 252, - "left": 33.75, - "top": -84.541361, - "right": 35.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 252, - "left": 35.15625, - "top": -84.541361, - "right": 36.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 252, - "left": 36.5625, - "top": -84.541361, - "right": 37.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 252, - "left": 37.96875, - "top": -84.541361, - "right": 39.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 252, - "left": 39.375, - "top": -84.541361, - "right": 40.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 252, - "left": 40.78125, - "top": -84.541361, - "right": 42.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 252, - "left": 42.1875, - "top": -84.541361, - "right": 43.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 252, - "left": 43.59375, - "top": -84.541361, - "right": 45.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 252, - "left": 45.0, - "top": -84.541361, - "right": 46.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 252, - "left": 46.40625, - "top": -84.541361, - "right": 47.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 252, - "left": 47.8125, - "top": -84.541361, - "right": 49.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 252, - "left": 49.21875, - "top": -84.541361, - "right": 50.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 252, - "left": 50.625, - "top": -84.541361, - "right": 52.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 252, - "left": 52.03125, - "top": -84.541361, - "right": 53.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 252, - "left": 53.4375, - "top": -84.541361, - "right": 54.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 252, - "left": 54.84375, - "top": -84.541361, - "right": 56.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 252, - "left": 56.25, - "top": -84.541361, - "right": 57.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 252, - "left": 57.65625, - "top": -84.541361, - "right": 59.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 252, - "left": 59.0625, - "top": -84.541361, - "right": 60.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 252, - "left": 60.46875, - "top": -84.541361, - "right": 61.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 252, - "left": 61.875, - "top": -84.541361, - "right": 63.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 252, - "left": 63.28125, - "top": -84.541361, - "right": 64.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 252, - "left": 64.6875, - "top": -84.541361, - "right": 66.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 252, - "left": 66.09375, - "top": -84.541361, - "right": 67.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 252, - "left": 67.5, - "top": -84.541361, - "right": 68.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 252, - "left": 68.90625, - "top": -84.541361, - "right": 70.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 252, - "left": 70.3125, - "top": -84.541361, - "right": 71.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 252, - "left": 71.71875, - "top": -84.541361, - "right": 73.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 252, - "left": 73.125, - "top": -84.541361, - "right": 74.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 252, - "left": 74.53125, - "top": -84.541361, - "right": 75.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 252, - "left": 75.9375, - "top": -84.541361, - "right": 77.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 252, - "left": 77.34375, - "top": -84.541361, - "right": 78.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 252, - "left": 78.75, - "top": -84.541361, - "right": 80.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 252, - "left": 80.15625, - "top": -84.541361, - "right": 81.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 252, - "left": 81.5625, - "top": -84.541361, - "right": 82.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 252, - "left": 82.96875, - "top": -84.541361, - "right": 84.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 252, - "left": 84.375, - "top": -84.541361, - "right": 85.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 252, - "left": 85.78125, - "top": -84.541361, - "right": 87.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 252, - "left": 87.1875, - "top": -84.541361, - "right": 88.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 252, - "left": 88.59375, - "top": -84.541361, - "right": 90.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 252, - "left": 90.0, - "top": -84.541361, - "right": 91.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 252, - "left": 91.40625, - "top": -84.541361, - "right": 92.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 252, - "left": 92.8125, - "top": -84.541361, - "right": 94.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 252, - "left": 94.21875, - "top": -84.541361, - "right": 95.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 252, - "left": 95.625, - "top": -84.541361, - "right": 97.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 252, - "left": 97.03125, - "top": -84.541361, - "right": 98.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 252, - "left": 98.4375, - "top": -84.541361, - "right": 99.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 252, - "left": 99.84375, - "top": -84.541361, - "right": 101.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 252, - "left": 101.25, - "top": -84.541361, - "right": 102.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 252, - "left": 102.65625, - "top": -84.541361, - "right": 104.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 252, - "left": 104.0625, - "top": -84.541361, - "right": 105.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 252, - "left": 105.46875, - "top": -84.541361, - "right": 106.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 252, - "left": 106.875, - "top": -84.541361, - "right": 108.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 252, - "left": 108.28125, - "top": -84.541361, - "right": 109.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 252, - "left": 109.6875, - "top": -84.541361, - "right": 111.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 252, - "left": 111.09375, - "top": -84.541361, - "right": 112.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 252, - "left": 112.5, - "top": -84.541361, - "right": 113.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 252, - "left": 113.90625, - "top": -84.541361, - "right": 115.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 252, - "left": 115.3125, - "top": -84.541361, - "right": 116.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 252, - "left": 116.71875, - "top": -84.541361, - "right": 118.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 252, - "left": 118.125, - "top": -84.541361, - "right": 119.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 252, - "left": 119.53125, - "top": -84.541361, - "right": 120.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 252, - "left": 120.9375, - "top": -84.541361, - "right": 122.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 252, - "left": 122.34375, - "top": -84.541361, - "right": 123.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 252, - "left": 123.75, - "top": -84.541361, - "right": 125.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 252, - "left": 125.15625, - "top": -84.541361, - "right": 126.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 252, - "left": 126.5625, - "top": -84.541361, - "right": 127.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 252, - "left": 127.96875, - "top": -84.541361, - "right": 129.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 252, - "left": 129.375, - "top": -84.541361, - "right": 130.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 252, - "left": 130.78125, - "top": -84.541361, - "right": 132.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 252, - "left": 132.1875, - "top": -84.541361, - "right": 133.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 252, - "left": 133.59375, - "top": -84.541361, - "right": 135.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 252, - "left": 135.0, - "top": -84.541361, - "right": 136.40625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 252, - "left": 136.40625, - "top": -84.541361, - "right": 137.8125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 252, - "left": 137.8125, - "top": -84.541361, - "right": 139.21875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 252, - "left": 139.21875, - "top": -84.541361, - "right": 140.625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 252, - "left": 140.625, - "top": -84.541361, - "right": 142.03125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 252, - "left": 142.03125, - "top": -84.541361, - "right": 143.4375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 252, - "left": 143.4375, - "top": -84.541361, - "right": 144.84375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 252, - "left": 144.84375, - "top": -84.541361, - "right": 146.25, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 252, - "left": 146.25, - "top": -84.541361, - "right": 147.65625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 252, - "left": 147.65625, - "top": -84.541361, - "right": 149.0625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 252, - "left": 149.0625, - "top": -84.541361, - "right": 150.46875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 252, - "left": 150.46875, - "top": -84.541361, - "right": 151.875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 252, - "left": 151.875, - "top": -84.541361, - "right": 153.28125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 252, - "left": 153.28125, - "top": -84.541361, - "right": 154.6875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 252, - "left": 154.6875, - "top": -84.541361, - "right": 156.09375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 252, - "left": 156.09375, - "top": -84.541361, - "right": 157.5, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 252, - "left": 157.5, - "top": -84.541361, - "right": 158.90625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 252, - "left": 158.90625, - "top": -84.541361, - "right": 160.3125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 252, - "left": 160.3125, - "top": -84.541361, - "right": 161.71875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 252, - "left": 161.71875, - "top": -84.541361, - "right": 163.125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 252, - "left": 163.125, - "top": -84.541361, - "right": 164.53125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 252, - "left": 164.53125, - "top": -84.541361, - "right": 165.9375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 252, - "left": 165.9375, - "top": -84.541361, - "right": 167.34375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 252, - "left": 167.34375, - "top": -84.541361, - "right": 168.75, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 252, - "left": 168.75, - "top": -84.541361, - "right": 170.15625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 252, - "left": 170.15625, - "top": -84.541361, - "right": 171.5625, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 252, - "left": 171.5625, - "top": -84.541361, - "right": 172.96875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 252, - "left": 172.96875, - "top": -84.541361, - "right": 174.375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 252, - "left": 174.375, - "top": -84.541361, - "right": 175.78125, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 252, - "left": 175.78125, - "top": -84.541361, - "right": 177.1875, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 252, - "left": 177.1875, - "top": -84.541361, - "right": 178.59375, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 252, - "left": 178.59375, - "top": -84.541361, - "right": 180.0, - "bottom": -84.673513, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 253, - "left": -180.0, - "top": -84.673513, - "right": -178.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 253, - "left": -178.59375, - "top": -84.673513, - "right": -177.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 253, - "left": -177.1875, - "top": -84.673513, - "right": -175.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 253, - "left": -175.78125, - "top": -84.673513, - "right": -174.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 4, - "y": 253, - "left": -174.375, - "top": -84.673513, - "right": -172.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 5, - "y": 253, - "left": -172.96875, - "top": -84.673513, - "right": -171.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 6, - "y": 253, - "left": -171.5625, - "top": -84.673513, - "right": -170.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 7, - "y": 253, - "left": -170.15625, - "top": -84.673513, - "right": -168.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 8, - "y": 253, - "left": -168.75, - "top": -84.673513, - "right": -167.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 9, - "y": 253, - "left": -167.34375, - "top": -84.673513, - "right": -165.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 22, - "y": 253, - "left": -149.0625, - "top": -84.673513, - "right": -147.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 253, - "left": -147.65625, - "top": -84.673513, - "right": -146.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 253, - "left": -146.25, - "top": -84.673513, - "right": -144.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 253, - "left": -144.84375, - "top": -84.673513, - "right": -143.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 253, - "left": -143.4375, - "top": -84.673513, - "right": -142.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 253, - "left": -142.03125, - "top": -84.673513, - "right": -140.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 253, - "left": -140.625, - "top": -84.673513, - "right": -139.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 253, - "left": -139.21875, - "top": -84.673513, - "right": -137.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 253, - "left": -137.8125, - "top": -84.673513, - "right": -136.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 253, - "left": -136.40625, - "top": -84.673513, - "right": -135.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 253, - "left": -135.0, - "top": -84.673513, - "right": -133.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 253, - "left": -133.59375, - "top": -84.673513, - "right": -132.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 253, - "left": -132.1875, - "top": -84.673513, - "right": -130.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 253, - "left": -130.78125, - "top": -84.673513, - "right": -129.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 253, - "left": -129.375, - "top": -84.673513, - "right": -127.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 253, - "left": -127.96875, - "top": -84.673513, - "right": -126.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 253, - "left": -126.5625, - "top": -84.673513, - "right": -125.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 253, - "left": -125.15625, - "top": -84.673513, - "right": -123.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 253, - "left": -123.75, - "top": -84.673513, - "right": -122.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 253, - "left": -122.34375, - "top": -84.673513, - "right": -120.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 253, - "left": -120.9375, - "top": -84.673513, - "right": -119.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 253, - "left": -119.53125, - "top": -84.673513, - "right": -118.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 253, - "left": -118.125, - "top": -84.673513, - "right": -116.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 253, - "left": -116.71875, - "top": -84.673513, - "right": -115.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 253, - "left": -115.3125, - "top": -84.673513, - "right": -113.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 253, - "left": -113.90625, - "top": -84.673513, - "right": -112.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 253, - "left": -112.5, - "top": -84.673513, - "right": -111.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 253, - "left": -111.09375, - "top": -84.673513, - "right": -109.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 253, - "left": -109.6875, - "top": -84.673513, - "right": -108.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 253, - "left": -108.28125, - "top": -84.673513, - "right": -106.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 253, - "left": -106.875, - "top": -84.673513, - "right": -105.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 253, - "left": -105.46875, - "top": -84.673513, - "right": -104.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 253, - "left": -104.0625, - "top": -84.673513, - "right": -102.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 253, - "left": -102.65625, - "top": -84.673513, - "right": -101.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 253, - "left": -101.25, - "top": -84.673513, - "right": -99.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 253, - "left": -99.84375, - "top": -84.673513, - "right": -98.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 253, - "left": -98.4375, - "top": -84.673513, - "right": -97.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 253, - "left": -97.03125, - "top": -84.673513, - "right": -95.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 253, - "left": -95.625, - "top": -84.673513, - "right": -94.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 253, - "left": -94.21875, - "top": -84.673513, - "right": -92.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 253, - "left": -92.8125, - "top": -84.673513, - "right": -91.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 253, - "left": -91.40625, - "top": -84.673513, - "right": -90.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 253, - "left": -90.0, - "top": -84.673513, - "right": -88.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 253, - "left": -88.59375, - "top": -84.673513, - "right": -87.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 253, - "left": -87.1875, - "top": -84.673513, - "right": -85.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 253, - "left": -85.78125, - "top": -84.673513, - "right": -84.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 253, - "left": -84.375, - "top": -84.673513, - "right": -82.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 253, - "left": -82.96875, - "top": -84.673513, - "right": -81.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 253, - "left": -81.5625, - "top": -84.673513, - "right": -80.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 253, - "left": -80.15625, - "top": -84.673513, - "right": -78.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 253, - "left": -78.75, - "top": -84.673513, - "right": -77.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 253, - "left": -77.34375, - "top": -84.673513, - "right": -75.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 253, - "left": -75.9375, - "top": -84.673513, - "right": -74.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 253, - "left": -74.53125, - "top": -84.673513, - "right": -73.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 253, - "left": -73.125, - "top": -84.673513, - "right": -71.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 253, - "left": -71.71875, - "top": -84.673513, - "right": -70.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 253, - "left": -70.3125, - "top": -84.673513, - "right": -68.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 253, - "left": -68.90625, - "top": -84.673513, - "right": -67.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 253, - "left": -67.5, - "top": -84.673513, - "right": -66.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 253, - "left": -66.09375, - "top": -84.673513, - "right": -64.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 253, - "left": -64.6875, - "top": -84.673513, - "right": -63.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 253, - "left": -63.28125, - "top": -84.673513, - "right": -61.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 253, - "left": -61.875, - "top": -84.673513, - "right": -60.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 253, - "left": -60.46875, - "top": -84.673513, - "right": -59.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 253, - "left": -59.0625, - "top": -84.673513, - "right": -57.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 253, - "left": -57.65625, - "top": -84.673513, - "right": -56.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 253, - "left": -56.25, - "top": -84.673513, - "right": -54.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 253, - "left": -54.84375, - "top": -84.673513, - "right": -53.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 253, - "left": -53.4375, - "top": -84.673513, - "right": -52.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 253, - "left": -52.03125, - "top": -84.673513, - "right": -50.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 253, - "left": -50.625, - "top": -84.673513, - "right": -49.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 253, - "left": -49.21875, - "top": -84.673513, - "right": -47.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 253, - "left": -47.8125, - "top": -84.673513, - "right": -46.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 253, - "left": -46.40625, - "top": -84.673513, - "right": -45.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 253, - "left": -45.0, - "top": -84.673513, - "right": -43.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 253, - "left": -43.59375, - "top": -84.673513, - "right": -42.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 253, - "left": -42.1875, - "top": -84.673513, - "right": -40.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 253, - "left": -40.78125, - "top": -84.673513, - "right": -39.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 253, - "left": -39.375, - "top": -84.673513, - "right": -37.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 253, - "left": -37.96875, - "top": -84.673513, - "right": -36.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 253, - "left": -36.5625, - "top": -84.673513, - "right": -35.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 253, - "left": -35.15625, - "top": -84.673513, - "right": -33.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 253, - "left": -33.75, - "top": -84.673513, - "right": -32.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 253, - "left": -32.34375, - "top": -84.673513, - "right": -30.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 253, - "left": -30.9375, - "top": -84.673513, - "right": -29.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 253, - "left": -29.53125, - "top": -84.673513, - "right": -28.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 253, - "left": -28.125, - "top": -84.673513, - "right": -26.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 253, - "left": -26.71875, - "top": -84.673513, - "right": -25.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 253, - "left": -25.3125, - "top": -84.673513, - "right": -23.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 253, - "left": -23.90625, - "top": -84.673513, - "right": -22.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 253, - "left": -22.5, - "top": -84.673513, - "right": -21.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 253, - "left": -21.09375, - "top": -84.673513, - "right": -19.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 253, - "left": -19.6875, - "top": -84.673513, - "right": -18.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 253, - "left": -18.28125, - "top": -84.673513, - "right": -16.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 253, - "left": -16.875, - "top": -84.673513, - "right": -15.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 253, - "left": -15.46875, - "top": -84.673513, - "right": -14.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 253, - "left": -14.0625, - "top": -84.673513, - "right": -12.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 253, - "left": -12.65625, - "top": -84.673513, - "right": -11.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 253, - "left": -11.25, - "top": -84.673513, - "right": -9.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 253, - "left": -9.84375, - "top": -84.673513, - "right": -8.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 253, - "left": -8.4375, - "top": -84.673513, - "right": -7.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 253, - "left": -7.03125, - "top": -84.673513, - "right": -5.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 253, - "left": -5.625, - "top": -84.673513, - "right": -4.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 253, - "left": -4.21875, - "top": -84.673513, - "right": -2.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 253, - "left": -2.8125, - "top": -84.673513, - "right": -1.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 253, - "left": -1.40625, - "top": -84.673513, - "right": 0.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 253, - "left": 0.0, - "top": -84.673513, - "right": 1.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 253, - "left": 1.40625, - "top": -84.673513, - "right": 2.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 253, - "left": 2.8125, - "top": -84.673513, - "right": 4.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 253, - "left": 4.21875, - "top": -84.673513, - "right": 5.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 253, - "left": 5.625, - "top": -84.673513, - "right": 7.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 253, - "left": 7.03125, - "top": -84.673513, - "right": 8.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 253, - "left": 8.4375, - "top": -84.673513, - "right": 9.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 253, - "left": 9.84375, - "top": -84.673513, - "right": 11.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 253, - "left": 11.25, - "top": -84.673513, - "right": 12.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 253, - "left": 12.65625, - "top": -84.673513, - "right": 14.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 253, - "left": 14.0625, - "top": -84.673513, - "right": 15.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 253, - "left": 15.46875, - "top": -84.673513, - "right": 16.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 253, - "left": 16.875, - "top": -84.673513, - "right": 18.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 253, - "left": 18.28125, - "top": -84.673513, - "right": 19.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 253, - "left": 19.6875, - "top": -84.673513, - "right": 21.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 253, - "left": 21.09375, - "top": -84.673513, - "right": 22.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 253, - "left": 22.5, - "top": -84.673513, - "right": 23.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 253, - "left": 23.90625, - "top": -84.673513, - "right": 25.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 253, - "left": 25.3125, - "top": -84.673513, - "right": 26.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 253, - "left": 26.71875, - "top": -84.673513, - "right": 28.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 253, - "left": 28.125, - "top": -84.673513, - "right": 29.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 253, - "left": 29.53125, - "top": -84.673513, - "right": 30.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 253, - "left": 30.9375, - "top": -84.673513, - "right": 32.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 253, - "left": 32.34375, - "top": -84.673513, - "right": 33.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 253, - "left": 33.75, - "top": -84.673513, - "right": 35.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 253, - "left": 35.15625, - "top": -84.673513, - "right": 36.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 253, - "left": 36.5625, - "top": -84.673513, - "right": 37.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 253, - "left": 37.96875, - "top": -84.673513, - "right": 39.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 253, - "left": 39.375, - "top": -84.673513, - "right": 40.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 253, - "left": 40.78125, - "top": -84.673513, - "right": 42.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 253, - "left": 42.1875, - "top": -84.673513, - "right": 43.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 253, - "left": 43.59375, - "top": -84.673513, - "right": 45.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 253, - "left": 45.0, - "top": -84.673513, - "right": 46.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 253, - "left": 46.40625, - "top": -84.673513, - "right": 47.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 253, - "left": 47.8125, - "top": -84.673513, - "right": 49.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 253, - "left": 49.21875, - "top": -84.673513, - "right": 50.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 253, - "left": 50.625, - "top": -84.673513, - "right": 52.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 253, - "left": 52.03125, - "top": -84.673513, - "right": 53.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 253, - "left": 53.4375, - "top": -84.673513, - "right": 54.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 253, - "left": 54.84375, - "top": -84.673513, - "right": 56.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 253, - "left": 56.25, - "top": -84.673513, - "right": 57.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 253, - "left": 57.65625, - "top": -84.673513, - "right": 59.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 253, - "left": 59.0625, - "top": -84.673513, - "right": 60.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 253, - "left": 60.46875, - "top": -84.673513, - "right": 61.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 253, - "left": 61.875, - "top": -84.673513, - "right": 63.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 253, - "left": 63.28125, - "top": -84.673513, - "right": 64.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 253, - "left": 64.6875, - "top": -84.673513, - "right": 66.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 253, - "left": 66.09375, - "top": -84.673513, - "right": 67.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 253, - "left": 67.5, - "top": -84.673513, - "right": 68.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 253, - "left": 68.90625, - "top": -84.673513, - "right": 70.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 253, - "left": 70.3125, - "top": -84.673513, - "right": 71.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 253, - "left": 71.71875, - "top": -84.673513, - "right": 73.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 253, - "left": 73.125, - "top": -84.673513, - "right": 74.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 253, - "left": 74.53125, - "top": -84.673513, - "right": 75.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 253, - "left": 75.9375, - "top": -84.673513, - "right": 77.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 253, - "left": 77.34375, - "top": -84.673513, - "right": 78.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 253, - "left": 78.75, - "top": -84.673513, - "right": 80.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 253, - "left": 80.15625, - "top": -84.673513, - "right": 81.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 253, - "left": 81.5625, - "top": -84.673513, - "right": 82.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 253, - "left": 82.96875, - "top": -84.673513, - "right": 84.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 253, - "left": 84.375, - "top": -84.673513, - "right": 85.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 253, - "left": 85.78125, - "top": -84.673513, - "right": 87.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 253, - "left": 87.1875, - "top": -84.673513, - "right": 88.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 253, - "left": 88.59375, - "top": -84.673513, - "right": 90.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 253, - "left": 90.0, - "top": -84.673513, - "right": 91.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 253, - "left": 91.40625, - "top": -84.673513, - "right": 92.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 253, - "left": 92.8125, - "top": -84.673513, - "right": 94.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 253, - "left": 94.21875, - "top": -84.673513, - "right": 95.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 253, - "left": 95.625, - "top": -84.673513, - "right": 97.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 253, - "left": 97.03125, - "top": -84.673513, - "right": 98.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 253, - "left": 98.4375, - "top": -84.673513, - "right": 99.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 253, - "left": 99.84375, - "top": -84.673513, - "right": 101.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 253, - "left": 101.25, - "top": -84.673513, - "right": 102.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 253, - "left": 102.65625, - "top": -84.673513, - "right": 104.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 253, - "left": 104.0625, - "top": -84.673513, - "right": 105.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 253, - "left": 105.46875, - "top": -84.673513, - "right": 106.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 253, - "left": 106.875, - "top": -84.673513, - "right": 108.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 253, - "left": 108.28125, - "top": -84.673513, - "right": 109.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 253, - "left": 109.6875, - "top": -84.673513, - "right": 111.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 253, - "left": 111.09375, - "top": -84.673513, - "right": 112.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 253, - "left": 112.5, - "top": -84.673513, - "right": 113.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 253, - "left": 113.90625, - "top": -84.673513, - "right": 115.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 253, - "left": 115.3125, - "top": -84.673513, - "right": 116.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 253, - "left": 116.71875, - "top": -84.673513, - "right": 118.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 253, - "left": 118.125, - "top": -84.673513, - "right": 119.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 253, - "left": 119.53125, - "top": -84.673513, - "right": 120.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 253, - "left": 120.9375, - "top": -84.673513, - "right": 122.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 253, - "left": 122.34375, - "top": -84.673513, - "right": 123.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 253, - "left": 123.75, - "top": -84.673513, - "right": 125.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 253, - "left": 125.15625, - "top": -84.673513, - "right": 126.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 253, - "left": 126.5625, - "top": -84.673513, - "right": 127.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 253, - "left": 127.96875, - "top": -84.673513, - "right": 129.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 253, - "left": 129.375, - "top": -84.673513, - "right": 130.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 253, - "left": 130.78125, - "top": -84.673513, - "right": 132.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 253, - "left": 132.1875, - "top": -84.673513, - "right": 133.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 253, - "left": 133.59375, - "top": -84.673513, - "right": 135.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 253, - "left": 135.0, - "top": -84.673513, - "right": 136.40625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 253, - "left": 136.40625, - "top": -84.673513, - "right": 137.8125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 253, - "left": 137.8125, - "top": -84.673513, - "right": 139.21875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 253, - "left": 139.21875, - "top": -84.673513, - "right": 140.625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 253, - "left": 140.625, - "top": -84.673513, - "right": 142.03125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 253, - "left": 142.03125, - "top": -84.673513, - "right": 143.4375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 253, - "left": 143.4375, - "top": -84.673513, - "right": 144.84375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 253, - "left": 144.84375, - "top": -84.673513, - "right": 146.25, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 253, - "left": 146.25, - "top": -84.673513, - "right": 147.65625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 253, - "left": 147.65625, - "top": -84.673513, - "right": 149.0625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 253, - "left": 149.0625, - "top": -84.673513, - "right": 150.46875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 253, - "left": 150.46875, - "top": -84.673513, - "right": 151.875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 253, - "left": 151.875, - "top": -84.673513, - "right": 153.28125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 253, - "left": 153.28125, - "top": -84.673513, - "right": 154.6875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 253, - "left": 154.6875, - "top": -84.673513, - "right": 156.09375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 253, - "left": 156.09375, - "top": -84.673513, - "right": 157.5, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 253, - "left": 157.5, - "top": -84.673513, - "right": 158.90625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 253, - "left": 158.90625, - "top": -84.673513, - "right": 160.3125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 253, - "left": 160.3125, - "top": -84.673513, - "right": 161.71875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 253, - "left": 161.71875, - "top": -84.673513, - "right": 163.125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 253, - "left": 163.125, - "top": -84.673513, - "right": 164.53125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 253, - "left": 164.53125, - "top": -84.673513, - "right": 165.9375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 253, - "left": 165.9375, - "top": -84.673513, - "right": 167.34375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 253, - "left": 167.34375, - "top": -84.673513, - "right": 168.75, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 253, - "left": 168.75, - "top": -84.673513, - "right": 170.15625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 253, - "left": 170.15625, - "top": -84.673513, - "right": 171.5625, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 253, - "left": 171.5625, - "top": -84.673513, - "right": 172.96875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 253, - "left": 172.96875, - "top": -84.673513, - "right": 174.375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 253, - "left": 174.375, - "top": -84.673513, - "right": 175.78125, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 253, - "left": 175.78125, - "top": -84.673513, - "right": 177.1875, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 253, - "left": 177.1875, - "top": -84.673513, - "right": 178.59375, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 253, - "left": 178.59375, - "top": -84.673513, - "right": 180.0, - "bottom": -84.802474, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 254, - "left": -180.0, - "top": -84.802474, - "right": -178.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 254, - "left": -178.59375, - "top": -84.802474, - "right": -177.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 254, - "left": -177.1875, - "top": -84.802474, - "right": -175.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 254, - "left": -175.78125, - "top": -84.802474, - "right": -174.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 4, - "y": 254, - "left": -174.375, - "top": -84.802474, - "right": -172.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 5, - "y": 254, - "left": -172.96875, - "top": -84.802474, - "right": -171.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 6, - "y": 254, - "left": -171.5625, - "top": -84.802474, - "right": -170.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 7, - "y": 254, - "left": -170.15625, - "top": -84.802474, - "right": -168.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 8, - "y": 254, - "left": -168.75, - "top": -84.802474, - "right": -167.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 9, - "y": 254, - "left": -167.34375, - "top": -84.802474, - "right": -165.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 23, - "y": 254, - "left": -147.65625, - "top": -84.802474, - "right": -146.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 254, - "left": -146.25, - "top": -84.802474, - "right": -144.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 254, - "left": -144.84375, - "top": -84.802474, - "right": -143.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 254, - "left": -143.4375, - "top": -84.802474, - "right": -142.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 254, - "left": -142.03125, - "top": -84.802474, - "right": -140.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 254, - "left": -140.625, - "top": -84.802474, - "right": -139.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 254, - "left": -139.21875, - "top": -84.802474, - "right": -137.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 254, - "left": -137.8125, - "top": -84.802474, - "right": -136.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 254, - "left": -136.40625, - "top": -84.802474, - "right": -135.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 254, - "left": -135.0, - "top": -84.802474, - "right": -133.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 254, - "left": -133.59375, - "top": -84.802474, - "right": -132.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 254, - "left": -132.1875, - "top": -84.802474, - "right": -130.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 254, - "left": -130.78125, - "top": -84.802474, - "right": -129.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 254, - "left": -129.375, - "top": -84.802474, - "right": -127.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 254, - "left": -127.96875, - "top": -84.802474, - "right": -126.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 254, - "left": -126.5625, - "top": -84.802474, - "right": -125.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 254, - "left": -125.15625, - "top": -84.802474, - "right": -123.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 254, - "left": -123.75, - "top": -84.802474, - "right": -122.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 254, - "left": -122.34375, - "top": -84.802474, - "right": -120.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 254, - "left": -120.9375, - "top": -84.802474, - "right": -119.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 254, - "left": -119.53125, - "top": -84.802474, - "right": -118.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 254, - "left": -118.125, - "top": -84.802474, - "right": -116.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 254, - "left": -116.71875, - "top": -84.802474, - "right": -115.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 254, - "left": -115.3125, - "top": -84.802474, - "right": -113.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 254, - "left": -113.90625, - "top": -84.802474, - "right": -112.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 254, - "left": -112.5, - "top": -84.802474, - "right": -111.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 254, - "left": -111.09375, - "top": -84.802474, - "right": -109.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 254, - "left": -109.6875, - "top": -84.802474, - "right": -108.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 254, - "left": -108.28125, - "top": -84.802474, - "right": -106.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 254, - "left": -106.875, - "top": -84.802474, - "right": -105.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 254, - "left": -105.46875, - "top": -84.802474, - "right": -104.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 254, - "left": -104.0625, - "top": -84.802474, - "right": -102.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 254, - "left": -102.65625, - "top": -84.802474, - "right": -101.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 254, - "left": -101.25, - "top": -84.802474, - "right": -99.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 254, - "left": -99.84375, - "top": -84.802474, - "right": -98.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 254, - "left": -98.4375, - "top": -84.802474, - "right": -97.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 254, - "left": -97.03125, - "top": -84.802474, - "right": -95.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 254, - "left": -95.625, - "top": -84.802474, - "right": -94.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 254, - "left": -94.21875, - "top": -84.802474, - "right": -92.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 254, - "left": -92.8125, - "top": -84.802474, - "right": -91.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 254, - "left": -91.40625, - "top": -84.802474, - "right": -90.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 254, - "left": -90.0, - "top": -84.802474, - "right": -88.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 254, - "left": -88.59375, - "top": -84.802474, - "right": -87.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 254, - "left": -87.1875, - "top": -84.802474, - "right": -85.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 254, - "left": -85.78125, - "top": -84.802474, - "right": -84.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 254, - "left": -84.375, - "top": -84.802474, - "right": -82.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 254, - "left": -82.96875, - "top": -84.802474, - "right": -81.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 254, - "left": -81.5625, - "top": -84.802474, - "right": -80.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 254, - "left": -80.15625, - "top": -84.802474, - "right": -78.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 254, - "left": -78.75, - "top": -84.802474, - "right": -77.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 254, - "left": -77.34375, - "top": -84.802474, - "right": -75.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 254, - "left": -75.9375, - "top": -84.802474, - "right": -74.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 254, - "left": -74.53125, - "top": -84.802474, - "right": -73.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 254, - "left": -73.125, - "top": -84.802474, - "right": -71.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 254, - "left": -71.71875, - "top": -84.802474, - "right": -70.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 254, - "left": -70.3125, - "top": -84.802474, - "right": -68.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 254, - "left": -68.90625, - "top": -84.802474, - "right": -67.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 254, - "left": -67.5, - "top": -84.802474, - "right": -66.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 254, - "left": -66.09375, - "top": -84.802474, - "right": -64.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 254, - "left": -64.6875, - "top": -84.802474, - "right": -63.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 254, - "left": -63.28125, - "top": -84.802474, - "right": -61.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 254, - "left": -61.875, - "top": -84.802474, - "right": -60.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 254, - "left": -60.46875, - "top": -84.802474, - "right": -59.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 254, - "left": -59.0625, - "top": -84.802474, - "right": -57.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 254, - "left": -57.65625, - "top": -84.802474, - "right": -56.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 254, - "left": -56.25, - "top": -84.802474, - "right": -54.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 254, - "left": -54.84375, - "top": -84.802474, - "right": -53.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 254, - "left": -53.4375, - "top": -84.802474, - "right": -52.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 254, - "left": -52.03125, - "top": -84.802474, - "right": -50.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 254, - "left": -50.625, - "top": -84.802474, - "right": -49.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 254, - "left": -49.21875, - "top": -84.802474, - "right": -47.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 254, - "left": -47.8125, - "top": -84.802474, - "right": -46.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 254, - "left": -46.40625, - "top": -84.802474, - "right": -45.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 254, - "left": -45.0, - "top": -84.802474, - "right": -43.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 254, - "left": -43.59375, - "top": -84.802474, - "right": -42.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 254, - "left": -42.1875, - "top": -84.802474, - "right": -40.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 254, - "left": -40.78125, - "top": -84.802474, - "right": -39.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 254, - "left": -39.375, - "top": -84.802474, - "right": -37.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 254, - "left": -37.96875, - "top": -84.802474, - "right": -36.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 254, - "left": -36.5625, - "top": -84.802474, - "right": -35.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 254, - "left": -35.15625, - "top": -84.802474, - "right": -33.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 254, - "left": -33.75, - "top": -84.802474, - "right": -32.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 254, - "left": -32.34375, - "top": -84.802474, - "right": -30.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 254, - "left": -30.9375, - "top": -84.802474, - "right": -29.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 254, - "left": -29.53125, - "top": -84.802474, - "right": -28.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 254, - "left": -28.125, - "top": -84.802474, - "right": -26.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 254, - "left": -26.71875, - "top": -84.802474, - "right": -25.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 254, - "left": -25.3125, - "top": -84.802474, - "right": -23.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 254, - "left": -23.90625, - "top": -84.802474, - "right": -22.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 254, - "left": -22.5, - "top": -84.802474, - "right": -21.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 254, - "left": -21.09375, - "top": -84.802474, - "right": -19.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 254, - "left": -19.6875, - "top": -84.802474, - "right": -18.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 254, - "left": -18.28125, - "top": -84.802474, - "right": -16.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 254, - "left": -16.875, - "top": -84.802474, - "right": -15.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 254, - "left": -15.46875, - "top": -84.802474, - "right": -14.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 254, - "left": -14.0625, - "top": -84.802474, - "right": -12.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 254, - "left": -12.65625, - "top": -84.802474, - "right": -11.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 254, - "left": -11.25, - "top": -84.802474, - "right": -9.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 254, - "left": -9.84375, - "top": -84.802474, - "right": -8.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 254, - "left": -8.4375, - "top": -84.802474, - "right": -7.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 254, - "left": -7.03125, - "top": -84.802474, - "right": -5.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 254, - "left": -5.625, - "top": -84.802474, - "right": -4.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 254, - "left": -4.21875, - "top": -84.802474, - "right": -2.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 254, - "left": -2.8125, - "top": -84.802474, - "right": -1.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 254, - "left": -1.40625, - "top": -84.802474, - "right": 0.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 254, - "left": 0.0, - "top": -84.802474, - "right": 1.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 254, - "left": 1.40625, - "top": -84.802474, - "right": 2.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 254, - "left": 2.8125, - "top": -84.802474, - "right": 4.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 254, - "left": 4.21875, - "top": -84.802474, - "right": 5.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 254, - "left": 5.625, - "top": -84.802474, - "right": 7.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 254, - "left": 7.03125, - "top": -84.802474, - "right": 8.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 254, - "left": 8.4375, - "top": -84.802474, - "right": 9.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 254, - "left": 9.84375, - "top": -84.802474, - "right": 11.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 254, - "left": 11.25, - "top": -84.802474, - "right": 12.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 254, - "left": 12.65625, - "top": -84.802474, - "right": 14.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 254, - "left": 14.0625, - "top": -84.802474, - "right": 15.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 254, - "left": 15.46875, - "top": -84.802474, - "right": 16.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 254, - "left": 16.875, - "top": -84.802474, - "right": 18.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 254, - "left": 18.28125, - "top": -84.802474, - "right": 19.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 254, - "left": 19.6875, - "top": -84.802474, - "right": 21.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 254, - "left": 21.09375, - "top": -84.802474, - "right": 22.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 254, - "left": 22.5, - "top": -84.802474, - "right": 23.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 254, - "left": 23.90625, - "top": -84.802474, - "right": 25.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 254, - "left": 25.3125, - "top": -84.802474, - "right": 26.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 254, - "left": 26.71875, - "top": -84.802474, - "right": 28.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 254, - "left": 28.125, - "top": -84.802474, - "right": 29.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 254, - "left": 29.53125, - "top": -84.802474, - "right": 30.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 254, - "left": 30.9375, - "top": -84.802474, - "right": 32.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 254, - "left": 32.34375, - "top": -84.802474, - "right": 33.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 254, - "left": 33.75, - "top": -84.802474, - "right": 35.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 254, - "left": 35.15625, - "top": -84.802474, - "right": 36.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 254, - "left": 36.5625, - "top": -84.802474, - "right": 37.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 254, - "left": 37.96875, - "top": -84.802474, - "right": 39.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 254, - "left": 39.375, - "top": -84.802474, - "right": 40.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 254, - "left": 40.78125, - "top": -84.802474, - "right": 42.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 254, - "left": 42.1875, - "top": -84.802474, - "right": 43.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 254, - "left": 43.59375, - "top": -84.802474, - "right": 45.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 254, - "left": 45.0, - "top": -84.802474, - "right": 46.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 254, - "left": 46.40625, - "top": -84.802474, - "right": 47.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 254, - "left": 47.8125, - "top": -84.802474, - "right": 49.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 254, - "left": 49.21875, - "top": -84.802474, - "right": 50.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 254, - "left": 50.625, - "top": -84.802474, - "right": 52.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 254, - "left": 52.03125, - "top": -84.802474, - "right": 53.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 254, - "left": 53.4375, - "top": -84.802474, - "right": 54.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 254, - "left": 54.84375, - "top": -84.802474, - "right": 56.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 254, - "left": 56.25, - "top": -84.802474, - "right": 57.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 254, - "left": 57.65625, - "top": -84.802474, - "right": 59.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 254, - "left": 59.0625, - "top": -84.802474, - "right": 60.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 254, - "left": 60.46875, - "top": -84.802474, - "right": 61.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 254, - "left": 61.875, - "top": -84.802474, - "right": 63.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 254, - "left": 63.28125, - "top": -84.802474, - "right": 64.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 254, - "left": 64.6875, - "top": -84.802474, - "right": 66.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 254, - "left": 66.09375, - "top": -84.802474, - "right": 67.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 254, - "left": 67.5, - "top": -84.802474, - "right": 68.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 254, - "left": 68.90625, - "top": -84.802474, - "right": 70.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 254, - "left": 70.3125, - "top": -84.802474, - "right": 71.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 254, - "left": 71.71875, - "top": -84.802474, - "right": 73.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 254, - "left": 73.125, - "top": -84.802474, - "right": 74.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 254, - "left": 74.53125, - "top": -84.802474, - "right": 75.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 254, - "left": 75.9375, - "top": -84.802474, - "right": 77.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 254, - "left": 77.34375, - "top": -84.802474, - "right": 78.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 254, - "left": 78.75, - "top": -84.802474, - "right": 80.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 254, - "left": 80.15625, - "top": -84.802474, - "right": 81.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 254, - "left": 81.5625, - "top": -84.802474, - "right": 82.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 254, - "left": 82.96875, - "top": -84.802474, - "right": 84.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 254, - "left": 84.375, - "top": -84.802474, - "right": 85.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 254, - "left": 85.78125, - "top": -84.802474, - "right": 87.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 254, - "left": 87.1875, - "top": -84.802474, - "right": 88.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 254, - "left": 88.59375, - "top": -84.802474, - "right": 90.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 254, - "left": 90.0, - "top": -84.802474, - "right": 91.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 254, - "left": 91.40625, - "top": -84.802474, - "right": 92.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 254, - "left": 92.8125, - "top": -84.802474, - "right": 94.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 254, - "left": 94.21875, - "top": -84.802474, - "right": 95.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 254, - "left": 95.625, - "top": -84.802474, - "right": 97.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 254, - "left": 97.03125, - "top": -84.802474, - "right": 98.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 254, - "left": 98.4375, - "top": -84.802474, - "right": 99.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 254, - "left": 99.84375, - "top": -84.802474, - "right": 101.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 254, - "left": 101.25, - "top": -84.802474, - "right": 102.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 254, - "left": 102.65625, - "top": -84.802474, - "right": 104.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 254, - "left": 104.0625, - "top": -84.802474, - "right": 105.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 254, - "left": 105.46875, - "top": -84.802474, - "right": 106.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 254, - "left": 106.875, - "top": -84.802474, - "right": 108.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 254, - "left": 108.28125, - "top": -84.802474, - "right": 109.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 254, - "left": 109.6875, - "top": -84.802474, - "right": 111.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 254, - "left": 111.09375, - "top": -84.802474, - "right": 112.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 254, - "left": 112.5, - "top": -84.802474, - "right": 113.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 254, - "left": 113.90625, - "top": -84.802474, - "right": 115.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 254, - "left": 115.3125, - "top": -84.802474, - "right": 116.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 254, - "left": 116.71875, - "top": -84.802474, - "right": 118.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 254, - "left": 118.125, - "top": -84.802474, - "right": 119.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 254, - "left": 119.53125, - "top": -84.802474, - "right": 120.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 254, - "left": 120.9375, - "top": -84.802474, - "right": 122.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 254, - "left": 122.34375, - "top": -84.802474, - "right": 123.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 254, - "left": 123.75, - "top": -84.802474, - "right": 125.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 254, - "left": 125.15625, - "top": -84.802474, - "right": 126.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 254, - "left": 126.5625, - "top": -84.802474, - "right": 127.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 254, - "left": 127.96875, - "top": -84.802474, - "right": 129.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 254, - "left": 129.375, - "top": -84.802474, - "right": 130.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 254, - "left": 130.78125, - "top": -84.802474, - "right": 132.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 254, - "left": 132.1875, - "top": -84.802474, - "right": 133.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 254, - "left": 133.59375, - "top": -84.802474, - "right": 135.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 254, - "left": 135.0, - "top": -84.802474, - "right": 136.40625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 254, - "left": 136.40625, - "top": -84.802474, - "right": 137.8125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 254, - "left": 137.8125, - "top": -84.802474, - "right": 139.21875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 254, - "left": 139.21875, - "top": -84.802474, - "right": 140.625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 254, - "left": 140.625, - "top": -84.802474, - "right": 142.03125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 254, - "left": 142.03125, - "top": -84.802474, - "right": 143.4375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 254, - "left": 143.4375, - "top": -84.802474, - "right": 144.84375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 254, - "left": 144.84375, - "top": -84.802474, - "right": 146.25, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 254, - "left": 146.25, - "top": -84.802474, - "right": 147.65625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 254, - "left": 147.65625, - "top": -84.802474, - "right": 149.0625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 254, - "left": 149.0625, - "top": -84.802474, - "right": 150.46875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 254, - "left": 150.46875, - "top": -84.802474, - "right": 151.875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 254, - "left": 151.875, - "top": -84.802474, - "right": 153.28125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 254, - "left": 153.28125, - "top": -84.802474, - "right": 154.6875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 254, - "left": 154.6875, - "top": -84.802474, - "right": 156.09375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 254, - "left": 156.09375, - "top": -84.802474, - "right": 157.5, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 254, - "left": 157.5, - "top": -84.802474, - "right": 158.90625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 254, - "left": 158.90625, - "top": -84.802474, - "right": 160.3125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 254, - "left": 160.3125, - "top": -84.802474, - "right": 161.71875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 254, - "left": 161.71875, - "top": -84.802474, - "right": 163.125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 254, - "left": 163.125, - "top": -84.802474, - "right": 164.53125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 254, - "left": 164.53125, - "top": -84.802474, - "right": 165.9375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 254, - "left": 165.9375, - "top": -84.802474, - "right": 167.34375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 254, - "left": 167.34375, - "top": -84.802474, - "right": 168.75, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 254, - "left": 168.75, - "top": -84.802474, - "right": 170.15625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 254, - "left": 170.15625, - "top": -84.802474, - "right": 171.5625, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 254, - "left": 171.5625, - "top": -84.802474, - "right": 172.96875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 254, - "left": 172.96875, - "top": -84.802474, - "right": 174.375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 254, - "left": 174.375, - "top": -84.802474, - "right": 175.78125, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 254, - "left": 175.78125, - "top": -84.802474, - "right": 177.1875, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 254, - "left": 177.1875, - "top": -84.802474, - "right": 178.59375, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 254, - "left": 178.59375, - "top": -84.802474, - "right": 180.0, - "bottom": -84.928321, - "countries": [ - "antarctica" - ] - }, - { - "x": 0, - "y": 255, - "left": -180.0, - "top": -84.928321, - "right": -178.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 1, - "y": 255, - "left": -178.59375, - "top": -84.928321, - "right": -177.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 2, - "y": 255, - "left": -177.1875, - "top": -84.928321, - "right": -175.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 3, - "y": 255, - "left": -175.78125, - "top": -84.928321, - "right": -174.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 4, - "y": 255, - "left": -174.375, - "top": -84.928321, - "right": -172.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 5, - "y": 255, - "left": -172.96875, - "top": -84.928321, - "right": -171.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 6, - "y": 255, - "left": -171.5625, - "top": -84.928321, - "right": -170.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 7, - "y": 255, - "left": -170.15625, - "top": -84.928321, - "right": -168.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 8, - "y": 255, - "left": -168.75, - "top": -84.928321, - "right": -167.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 9, - "y": 255, - "left": -167.34375, - "top": -84.928321, - "right": -165.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 10, - "y": 255, - "left": -165.9375, - "top": -84.928321, - "right": -164.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 24, - "y": 255, - "left": -146.25, - "top": -84.928321, - "right": -144.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 25, - "y": 255, - "left": -144.84375, - "top": -84.928321, - "right": -143.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 26, - "y": 255, - "left": -143.4375, - "top": -84.928321, - "right": -142.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 27, - "y": 255, - "left": -142.03125, - "top": -84.928321, - "right": -140.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 28, - "y": 255, - "left": -140.625, - "top": -84.928321, - "right": -139.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 29, - "y": 255, - "left": -139.21875, - "top": -84.928321, - "right": -137.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 30, - "y": 255, - "left": -137.8125, - "top": -84.928321, - "right": -136.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 31, - "y": 255, - "left": -136.40625, - "top": -84.928321, - "right": -135.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 32, - "y": 255, - "left": -135.0, - "top": -84.928321, - "right": -133.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 33, - "y": 255, - "left": -133.59375, - "top": -84.928321, - "right": -132.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 34, - "y": 255, - "left": -132.1875, - "top": -84.928321, - "right": -130.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 35, - "y": 255, - "left": -130.78125, - "top": -84.928321, - "right": -129.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 36, - "y": 255, - "left": -129.375, - "top": -84.928321, - "right": -127.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 37, - "y": 255, - "left": -127.96875, - "top": -84.928321, - "right": -126.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 38, - "y": 255, - "left": -126.5625, - "top": -84.928321, - "right": -125.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 39, - "y": 255, - "left": -125.15625, - "top": -84.928321, - "right": -123.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 40, - "y": 255, - "left": -123.75, - "top": -84.928321, - "right": -122.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 41, - "y": 255, - "left": -122.34375, - "top": -84.928321, - "right": -120.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 42, - "y": 255, - "left": -120.9375, - "top": -84.928321, - "right": -119.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 43, - "y": 255, - "left": -119.53125, - "top": -84.928321, - "right": -118.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 44, - "y": 255, - "left": -118.125, - "top": -84.928321, - "right": -116.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 45, - "y": 255, - "left": -116.71875, - "top": -84.928321, - "right": -115.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 46, - "y": 255, - "left": -115.3125, - "top": -84.928321, - "right": -113.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 47, - "y": 255, - "left": -113.90625, - "top": -84.928321, - "right": -112.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 48, - "y": 255, - "left": -112.5, - "top": -84.928321, - "right": -111.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 49, - "y": 255, - "left": -111.09375, - "top": -84.928321, - "right": -109.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 50, - "y": 255, - "left": -109.6875, - "top": -84.928321, - "right": -108.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 51, - "y": 255, - "left": -108.28125, - "top": -84.928321, - "right": -106.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 52, - "y": 255, - "left": -106.875, - "top": -84.928321, - "right": -105.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 53, - "y": 255, - "left": -105.46875, - "top": -84.928321, - "right": -104.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 54, - "y": 255, - "left": -104.0625, - "top": -84.928321, - "right": -102.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 55, - "y": 255, - "left": -102.65625, - "top": -84.928321, - "right": -101.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 56, - "y": 255, - "left": -101.25, - "top": -84.928321, - "right": -99.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 57, - "y": 255, - "left": -99.84375, - "top": -84.928321, - "right": -98.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 58, - "y": 255, - "left": -98.4375, - "top": -84.928321, - "right": -97.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 59, - "y": 255, - "left": -97.03125, - "top": -84.928321, - "right": -95.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 60, - "y": 255, - "left": -95.625, - "top": -84.928321, - "right": -94.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 61, - "y": 255, - "left": -94.21875, - "top": -84.928321, - "right": -92.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 62, - "y": 255, - "left": -92.8125, - "top": -84.928321, - "right": -91.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 63, - "y": 255, - "left": -91.40625, - "top": -84.928321, - "right": -90.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 64, - "y": 255, - "left": -90.0, - "top": -84.928321, - "right": -88.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 65, - "y": 255, - "left": -88.59375, - "top": -84.928321, - "right": -87.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 66, - "y": 255, - "left": -87.1875, - "top": -84.928321, - "right": -85.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 67, - "y": 255, - "left": -85.78125, - "top": -84.928321, - "right": -84.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 68, - "y": 255, - "left": -84.375, - "top": -84.928321, - "right": -82.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 69, - "y": 255, - "left": -82.96875, - "top": -84.928321, - "right": -81.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 70, - "y": 255, - "left": -81.5625, - "top": -84.928321, - "right": -80.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 71, - "y": 255, - "left": -80.15625, - "top": -84.928321, - "right": -78.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 72, - "y": 255, - "left": -78.75, - "top": -84.928321, - "right": -77.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 73, - "y": 255, - "left": -77.34375, - "top": -84.928321, - "right": -75.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 74, - "y": 255, - "left": -75.9375, - "top": -84.928321, - "right": -74.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 75, - "y": 255, - "left": -74.53125, - "top": -84.928321, - "right": -73.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 76, - "y": 255, - "left": -73.125, - "top": -84.928321, - "right": -71.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 77, - "y": 255, - "left": -71.71875, - "top": -84.928321, - "right": -70.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 78, - "y": 255, - "left": -70.3125, - "top": -84.928321, - "right": -68.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 79, - "y": 255, - "left": -68.90625, - "top": -84.928321, - "right": -67.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 80, - "y": 255, - "left": -67.5, - "top": -84.928321, - "right": -66.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 81, - "y": 255, - "left": -66.09375, - "top": -84.928321, - "right": -64.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 82, - "y": 255, - "left": -64.6875, - "top": -84.928321, - "right": -63.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 83, - "y": 255, - "left": -63.28125, - "top": -84.928321, - "right": -61.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 84, - "y": 255, - "left": -61.875, - "top": -84.928321, - "right": -60.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 85, - "y": 255, - "left": -60.46875, - "top": -84.928321, - "right": -59.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 86, - "y": 255, - "left": -59.0625, - "top": -84.928321, - "right": -57.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 87, - "y": 255, - "left": -57.65625, - "top": -84.928321, - "right": -56.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 88, - "y": 255, - "left": -56.25, - "top": -84.928321, - "right": -54.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 89, - "y": 255, - "left": -54.84375, - "top": -84.928321, - "right": -53.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 90, - "y": 255, - "left": -53.4375, - "top": -84.928321, - "right": -52.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 91, - "y": 255, - "left": -52.03125, - "top": -84.928321, - "right": -50.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 92, - "y": 255, - "left": -50.625, - "top": -84.928321, - "right": -49.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 93, - "y": 255, - "left": -49.21875, - "top": -84.928321, - "right": -47.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 94, - "y": 255, - "left": -47.8125, - "top": -84.928321, - "right": -46.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 95, - "y": 255, - "left": -46.40625, - "top": -84.928321, - "right": -45.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 96, - "y": 255, - "left": -45.0, - "top": -84.928321, - "right": -43.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 97, - "y": 255, - "left": -43.59375, - "top": -84.928321, - "right": -42.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 98, - "y": 255, - "left": -42.1875, - "top": -84.928321, - "right": -40.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 99, - "y": 255, - "left": -40.78125, - "top": -84.928321, - "right": -39.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 100, - "y": 255, - "left": -39.375, - "top": -84.928321, - "right": -37.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 101, - "y": 255, - "left": -37.96875, - "top": -84.928321, - "right": -36.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 102, - "y": 255, - "left": -36.5625, - "top": -84.928321, - "right": -35.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 103, - "y": 255, - "left": -35.15625, - "top": -84.928321, - "right": -33.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 104, - "y": 255, - "left": -33.75, - "top": -84.928321, - "right": -32.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 105, - "y": 255, - "left": -32.34375, - "top": -84.928321, - "right": -30.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 106, - "y": 255, - "left": -30.9375, - "top": -84.928321, - "right": -29.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 107, - "y": 255, - "left": -29.53125, - "top": -84.928321, - "right": -28.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 108, - "y": 255, - "left": -28.125, - "top": -84.928321, - "right": -26.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 109, - "y": 255, - "left": -26.71875, - "top": -84.928321, - "right": -25.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 110, - "y": 255, - "left": -25.3125, - "top": -84.928321, - "right": -23.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 111, - "y": 255, - "left": -23.90625, - "top": -84.928321, - "right": -22.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 112, - "y": 255, - "left": -22.5, - "top": -84.928321, - "right": -21.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 113, - "y": 255, - "left": -21.09375, - "top": -84.928321, - "right": -19.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 114, - "y": 255, - "left": -19.6875, - "top": -84.928321, - "right": -18.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 115, - "y": 255, - "left": -18.28125, - "top": -84.928321, - "right": -16.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 116, - "y": 255, - "left": -16.875, - "top": -84.928321, - "right": -15.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 117, - "y": 255, - "left": -15.46875, - "top": -84.928321, - "right": -14.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 118, - "y": 255, - "left": -14.0625, - "top": -84.928321, - "right": -12.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 119, - "y": 255, - "left": -12.65625, - "top": -84.928321, - "right": -11.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 120, - "y": 255, - "left": -11.25, - "top": -84.928321, - "right": -9.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 121, - "y": 255, - "left": -9.84375, - "top": -84.928321, - "right": -8.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 122, - "y": 255, - "left": -8.4375, - "top": -84.928321, - "right": -7.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 123, - "y": 255, - "left": -7.03125, - "top": -84.928321, - "right": -5.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 124, - "y": 255, - "left": -5.625, - "top": -84.928321, - "right": -4.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 125, - "y": 255, - "left": -4.21875, - "top": -84.928321, - "right": -2.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 126, - "y": 255, - "left": -2.8125, - "top": -84.928321, - "right": -1.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 127, - "y": 255, - "left": -1.40625, - "top": -84.928321, - "right": 0.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 128, - "y": 255, - "left": 0.0, - "top": -84.928321, - "right": 1.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 129, - "y": 255, - "left": 1.40625, - "top": -84.928321, - "right": 2.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 130, - "y": 255, - "left": 2.8125, - "top": -84.928321, - "right": 4.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 131, - "y": 255, - "left": 4.21875, - "top": -84.928321, - "right": 5.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 132, - "y": 255, - "left": 5.625, - "top": -84.928321, - "right": 7.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 133, - "y": 255, - "left": 7.03125, - "top": -84.928321, - "right": 8.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 134, - "y": 255, - "left": 8.4375, - "top": -84.928321, - "right": 9.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 135, - "y": 255, - "left": 9.84375, - "top": -84.928321, - "right": 11.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 136, - "y": 255, - "left": 11.25, - "top": -84.928321, - "right": 12.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 137, - "y": 255, - "left": 12.65625, - "top": -84.928321, - "right": 14.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 138, - "y": 255, - "left": 14.0625, - "top": -84.928321, - "right": 15.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 139, - "y": 255, - "left": 15.46875, - "top": -84.928321, - "right": 16.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 140, - "y": 255, - "left": 16.875, - "top": -84.928321, - "right": 18.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 141, - "y": 255, - "left": 18.28125, - "top": -84.928321, - "right": 19.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 142, - "y": 255, - "left": 19.6875, - "top": -84.928321, - "right": 21.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 143, - "y": 255, - "left": 21.09375, - "top": -84.928321, - "right": 22.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 144, - "y": 255, - "left": 22.5, - "top": -84.928321, - "right": 23.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 145, - "y": 255, - "left": 23.90625, - "top": -84.928321, - "right": 25.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 146, - "y": 255, - "left": 25.3125, - "top": -84.928321, - "right": 26.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 147, - "y": 255, - "left": 26.71875, - "top": -84.928321, - "right": 28.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 148, - "y": 255, - "left": 28.125, - "top": -84.928321, - "right": 29.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 149, - "y": 255, - "left": 29.53125, - "top": -84.928321, - "right": 30.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 150, - "y": 255, - "left": 30.9375, - "top": -84.928321, - "right": 32.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 151, - "y": 255, - "left": 32.34375, - "top": -84.928321, - "right": 33.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 152, - "y": 255, - "left": 33.75, - "top": -84.928321, - "right": 35.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 153, - "y": 255, - "left": 35.15625, - "top": -84.928321, - "right": 36.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 154, - "y": 255, - "left": 36.5625, - "top": -84.928321, - "right": 37.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 155, - "y": 255, - "left": 37.96875, - "top": -84.928321, - "right": 39.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 156, - "y": 255, - "left": 39.375, - "top": -84.928321, - "right": 40.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 157, - "y": 255, - "left": 40.78125, - "top": -84.928321, - "right": 42.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 158, - "y": 255, - "left": 42.1875, - "top": -84.928321, - "right": 43.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 159, - "y": 255, - "left": 43.59375, - "top": -84.928321, - "right": 45.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 160, - "y": 255, - "left": 45.0, - "top": -84.928321, - "right": 46.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 161, - "y": 255, - "left": 46.40625, - "top": -84.928321, - "right": 47.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 162, - "y": 255, - "left": 47.8125, - "top": -84.928321, - "right": 49.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 163, - "y": 255, - "left": 49.21875, - "top": -84.928321, - "right": 50.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 164, - "y": 255, - "left": 50.625, - "top": -84.928321, - "right": 52.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 165, - "y": 255, - "left": 52.03125, - "top": -84.928321, - "right": 53.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 166, - "y": 255, - "left": 53.4375, - "top": -84.928321, - "right": 54.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 167, - "y": 255, - "left": 54.84375, - "top": -84.928321, - "right": 56.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 168, - "y": 255, - "left": 56.25, - "top": -84.928321, - "right": 57.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 169, - "y": 255, - "left": 57.65625, - "top": -84.928321, - "right": 59.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 170, - "y": 255, - "left": 59.0625, - "top": -84.928321, - "right": 60.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 171, - "y": 255, - "left": 60.46875, - "top": -84.928321, - "right": 61.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 172, - "y": 255, - "left": 61.875, - "top": -84.928321, - "right": 63.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 173, - "y": 255, - "left": 63.28125, - "top": -84.928321, - "right": 64.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 174, - "y": 255, - "left": 64.6875, - "top": -84.928321, - "right": 66.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 175, - "y": 255, - "left": 66.09375, - "top": -84.928321, - "right": 67.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 176, - "y": 255, - "left": 67.5, - "top": -84.928321, - "right": 68.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 177, - "y": 255, - "left": 68.90625, - "top": -84.928321, - "right": 70.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 178, - "y": 255, - "left": 70.3125, - "top": -84.928321, - "right": 71.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 179, - "y": 255, - "left": 71.71875, - "top": -84.928321, - "right": 73.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 180, - "y": 255, - "left": 73.125, - "top": -84.928321, - "right": 74.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 181, - "y": 255, - "left": 74.53125, - "top": -84.928321, - "right": 75.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 182, - "y": 255, - "left": 75.9375, - "top": -84.928321, - "right": 77.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 183, - "y": 255, - "left": 77.34375, - "top": -84.928321, - "right": 78.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 184, - "y": 255, - "left": 78.75, - "top": -84.928321, - "right": 80.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 185, - "y": 255, - "left": 80.15625, - "top": -84.928321, - "right": 81.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 186, - "y": 255, - "left": 81.5625, - "top": -84.928321, - "right": 82.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 187, - "y": 255, - "left": 82.96875, - "top": -84.928321, - "right": 84.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 188, - "y": 255, - "left": 84.375, - "top": -84.928321, - "right": 85.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 189, - "y": 255, - "left": 85.78125, - "top": -84.928321, - "right": 87.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 190, - "y": 255, - "left": 87.1875, - "top": -84.928321, - "right": 88.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 191, - "y": 255, - "left": 88.59375, - "top": -84.928321, - "right": 90.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 192, - "y": 255, - "left": 90.0, - "top": -84.928321, - "right": 91.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 193, - "y": 255, - "left": 91.40625, - "top": -84.928321, - "right": 92.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 194, - "y": 255, - "left": 92.8125, - "top": -84.928321, - "right": 94.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 195, - "y": 255, - "left": 94.21875, - "top": -84.928321, - "right": 95.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 196, - "y": 255, - "left": 95.625, - "top": -84.928321, - "right": 97.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 197, - "y": 255, - "left": 97.03125, - "top": -84.928321, - "right": 98.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 198, - "y": 255, - "left": 98.4375, - "top": -84.928321, - "right": 99.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 199, - "y": 255, - "left": 99.84375, - "top": -84.928321, - "right": 101.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 200, - "y": 255, - "left": 101.25, - "top": -84.928321, - "right": 102.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 201, - "y": 255, - "left": 102.65625, - "top": -84.928321, - "right": 104.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 202, - "y": 255, - "left": 104.0625, - "top": -84.928321, - "right": 105.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 203, - "y": 255, - "left": 105.46875, - "top": -84.928321, - "right": 106.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 204, - "y": 255, - "left": 106.875, - "top": -84.928321, - "right": 108.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 205, - "y": 255, - "left": 108.28125, - "top": -84.928321, - "right": 109.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 206, - "y": 255, - "left": 109.6875, - "top": -84.928321, - "right": 111.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 207, - "y": 255, - "left": 111.09375, - "top": -84.928321, - "right": 112.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 208, - "y": 255, - "left": 112.5, - "top": -84.928321, - "right": 113.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 209, - "y": 255, - "left": 113.90625, - "top": -84.928321, - "right": 115.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 210, - "y": 255, - "left": 115.3125, - "top": -84.928321, - "right": 116.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 211, - "y": 255, - "left": 116.71875, - "top": -84.928321, - "right": 118.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 212, - "y": 255, - "left": 118.125, - "top": -84.928321, - "right": 119.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 213, - "y": 255, - "left": 119.53125, - "top": -84.928321, - "right": 120.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 214, - "y": 255, - "left": 120.9375, - "top": -84.928321, - "right": 122.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 215, - "y": 255, - "left": 122.34375, - "top": -84.928321, - "right": 123.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 216, - "y": 255, - "left": 123.75, - "top": -84.928321, - "right": 125.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 217, - "y": 255, - "left": 125.15625, - "top": -84.928321, - "right": 126.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 218, - "y": 255, - "left": 126.5625, - "top": -84.928321, - "right": 127.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 219, - "y": 255, - "left": 127.96875, - "top": -84.928321, - "right": 129.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 220, - "y": 255, - "left": 129.375, - "top": -84.928321, - "right": 130.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 221, - "y": 255, - "left": 130.78125, - "top": -84.928321, - "right": 132.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 222, - "y": 255, - "left": 132.1875, - "top": -84.928321, - "right": 133.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 223, - "y": 255, - "left": 133.59375, - "top": -84.928321, - "right": 135.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 224, - "y": 255, - "left": 135.0, - "top": -84.928321, - "right": 136.40625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 225, - "y": 255, - "left": 136.40625, - "top": -84.928321, - "right": 137.8125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 226, - "y": 255, - "left": 137.8125, - "top": -84.928321, - "right": 139.21875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 227, - "y": 255, - "left": 139.21875, - "top": -84.928321, - "right": 140.625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 228, - "y": 255, - "left": 140.625, - "top": -84.928321, - "right": 142.03125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 229, - "y": 255, - "left": 142.03125, - "top": -84.928321, - "right": 143.4375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 230, - "y": 255, - "left": 143.4375, - "top": -84.928321, - "right": 144.84375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 231, - "y": 255, - "left": 144.84375, - "top": -84.928321, - "right": 146.25, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 232, - "y": 255, - "left": 146.25, - "top": -84.928321, - "right": 147.65625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 233, - "y": 255, - "left": 147.65625, - "top": -84.928321, - "right": 149.0625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 234, - "y": 255, - "left": 149.0625, - "top": -84.928321, - "right": 150.46875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 235, - "y": 255, - "left": 150.46875, - "top": -84.928321, - "right": 151.875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 236, - "y": 255, - "left": 151.875, - "top": -84.928321, - "right": 153.28125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 237, - "y": 255, - "left": 153.28125, - "top": -84.928321, - "right": 154.6875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 238, - "y": 255, - "left": 154.6875, - "top": -84.928321, - "right": 156.09375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 239, - "y": 255, - "left": 156.09375, - "top": -84.928321, - "right": 157.5, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 240, - "y": 255, - "left": 157.5, - "top": -84.928321, - "right": 158.90625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 241, - "y": 255, - "left": 158.90625, - "top": -84.928321, - "right": 160.3125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 242, - "y": 255, - "left": 160.3125, - "top": -84.928321, - "right": 161.71875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 243, - "y": 255, - "left": 161.71875, - "top": -84.928321, - "right": 163.125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 244, - "y": 255, - "left": 163.125, - "top": -84.928321, - "right": 164.53125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 245, - "y": 255, - "left": 164.53125, - "top": -84.928321, - "right": 165.9375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 246, - "y": 255, - "left": 165.9375, - "top": -84.928321, - "right": 167.34375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 247, - "y": 255, - "left": 167.34375, - "top": -84.928321, - "right": 168.75, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 248, - "y": 255, - "left": 168.75, - "top": -84.928321, - "right": 170.15625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 249, - "y": 255, - "left": 170.15625, - "top": -84.928321, - "right": 171.5625, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 250, - "y": 255, - "left": 171.5625, - "top": -84.928321, - "right": 172.96875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 251, - "y": 255, - "left": 172.96875, - "top": -84.928321, - "right": 174.375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 252, - "y": 255, - "left": 174.375, - "top": -84.928321, - "right": 175.78125, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 253, - "y": 255, - "left": 175.78125, - "top": -84.928321, - "right": 177.1875, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 254, - "y": 255, - "left": 177.1875, - "top": -84.928321, - "right": 178.59375, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - }, - { - "x": 255, - "y": 255, - "left": 178.59375, - "top": -84.928321, - "right": 180.0, - "bottom": -85.051129, - "countries": [ - "antarctica" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/antarctica/bouvet_island.json b/wahoomc/resources/json/antarctica/bouvet_island.json deleted file mode 100644 index f6cc4cc2..00000000 --- a/wahoomc/resources/json/antarctica/bouvet_island.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 130, - "y": 174, - "left": 2.8125, - "top": -54.162434, - "right": 4.21875, - "bottom": -54.977614, - "countries": [ - "bouvet_island" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/antarctica/heard_island_and_mcdonald_islands.json b/wahoomc/resources/json/antarctica/heard_island_and_mcdonald_islands.json deleted file mode 100644 index 36e280b1..00000000 --- a/wahoomc/resources/json/antarctica/heard_island_and_mcdonald_islands.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 179, - "y": 172, - "left": 71.71875, - "top": -52.48278, - "right": 73.125, - "bottom": -53.330873, - "countries": [ - "heard_island_and_mcdonald_islands" - ] - }, - { - "x": 180, - "y": 172, - "left": 73.125, - "top": -52.48278, - "right": 74.53125, - "bottom": -53.330873, - "countries": [ - "heard_island_and_mcdonald_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/antarctica/south_georgia_and_the_south_sandwich_islands.json b/wahoomc/resources/json/antarctica/south_georgia_and_the_south_sandwich_islands.json deleted file mode 100644 index 55fcedac..00000000 --- a/wahoomc/resources/json/antarctica/south_georgia_and_the_south_sandwich_islands.json +++ /dev/null @@ -1,145 +0,0 @@ -[ - { - "x": 98, - "y": 173, - "left": -42.1875, - "top": -53.330873, - "right": -40.78125, - "bottom": -54.162434, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 100, - "y": 173, - "left": -39.375, - "top": -53.330873, - "right": -37.96875, - "bottom": -54.162434, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 101, - "y": 173, - "left": -37.96875, - "top": -53.330873, - "right": -36.5625, - "bottom": -54.162434, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 102, - "y": 173, - "left": -36.5625, - "top": -53.330873, - "right": -35.15625, - "bottom": -54.162434, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 101, - "y": 174, - "left": -37.96875, - "top": -54.162434, - "right": -36.5625, - "bottom": -54.977614, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 102, - "y": 174, - "left": -36.5625, - "top": -54.162434, - "right": -35.15625, - "bottom": -54.977614, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 108, - "y": 176, - "left": -28.125, - "top": -55.776573, - "right": -26.71875, - "bottom": -56.559482, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 108, - "y": 177, - "left": -28.125, - "top": -56.559482, - "right": -26.71875, - "bottom": -57.326521, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 109, - "y": 177, - "left": -26.71875, - "top": -56.559482, - "right": -25.3125, - "bottom": -57.326521, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 109, - "y": 178, - "left": -26.71875, - "top": -57.326521, - "right": -25.3125, - "bottom": -58.077876, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 109, - "y": 179, - "left": -26.71875, - "top": -58.077876, - "right": -25.3125, - "bottom": -58.813742, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 108, - "y": 180, - "left": -28.125, - "top": -58.813742, - "right": -26.71875, - "bottom": -59.534318, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - }, - { - "x": 109, - "y": 180, - "left": -26.71875, - "top": -58.813742, - "right": -25.3125, - "bottom": -59.534318, - "countries": [ - "south_georgia_and_the_south_sandwich_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/afghanistan.json b/wahoomc/resources/json/asia/afghanistan.json deleted file mode 100644 index 606ae404..00000000 --- a/wahoomc/resources/json/asia/afghanistan.json +++ /dev/null @@ -1,687 +0,0 @@ -[ - { - "x": 177, - "y": 98, - "left": 68.90625, - "top": 38.822591, - "right": 70.3125, - "bottom": 37.71859, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 178, - "y": 98, - "left": 70.3125, - "top": 38.822591, - "right": 71.71875, - "bottom": 37.71859, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 173, - "y": 99, - "left": 63.28125, - "top": 37.71859, - "right": 64.6875, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 174, - "y": 99, - "left": 64.6875, - "top": 37.71859, - "right": 66.09375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 175, - "y": 99, - "left": 66.09375, - "top": 37.71859, - "right": 67.5, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 99, - "left": 67.5, - "top": 37.71859, - "right": 68.90625, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 177, - "y": 99, - "left": 68.90625, - "top": 37.71859, - "right": 70.3125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 178, - "y": 99, - "left": 70.3125, - "top": 37.71859, - "right": 71.71875, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 179, - "y": 99, - "left": 71.71875, - "top": 37.71859, - "right": 73.125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "pakistan" - ] - }, - { - "x": 180, - "y": 99, - "left": 73.125, - "top": 37.71859, - "right": 74.53125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 181, - "y": 99, - "left": 74.53125, - "top": 37.71859, - "right": 75.9375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 171, - "y": 100, - "left": 60.46875, - "top": 36.597889, - "right": 61.875, - "bottom": 35.46067, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 172, - "y": 100, - "left": 61.875, - "top": 36.597889, - "right": 63.28125, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 173, - "y": 100, - "left": 63.28125, - "top": 36.597889, - "right": 64.6875, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 174, - "y": 100, - "left": 64.6875, - "top": 36.597889, - "right": 66.09375, - "bottom": 35.46067, - "countries": [ - "afghanistan" - ] - }, - { - "x": 175, - "y": 100, - "left": 66.09375, - "top": 36.597889, - "right": 67.5, - "bottom": 35.46067, - "countries": [ - "afghanistan" - ] - }, - { - "x": 176, - "y": 100, - "left": 67.5, - "top": 36.597889, - "right": 68.90625, - "bottom": 35.46067, - "countries": [ - "afghanistan" - ] - }, - { - "x": 177, - "y": 100, - "left": 68.90625, - "top": 36.597889, - "right": 70.3125, - "bottom": 35.46067, - "countries": [ - "afghanistan" - ] - }, - { - "x": 178, - "y": 100, - "left": 70.3125, - "top": 36.597889, - "right": 71.71875, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 179, - "y": 100, - "left": 71.71875, - "top": 36.597889, - "right": 73.125, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 101, - "left": 60.46875, - "top": 35.46067, - "right": 61.875, - "bottom": 34.307144, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 172, - "y": 101, - "left": 61.875, - "top": 35.46067, - "right": 63.28125, - "bottom": 34.307144, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 173, - "y": 101, - "left": 63.28125, - "top": 35.46067, - "right": 64.6875, - "bottom": 34.307144, - "countries": [ - "afghanistan" - ] - }, - { - "x": 174, - "y": 101, - "left": 64.6875, - "top": 35.46067, - "right": 66.09375, - "bottom": 34.307144, - "countries": [ - "afghanistan" - ] - }, - { - "x": 175, - "y": 101, - "left": 66.09375, - "top": 35.46067, - "right": 67.5, - "bottom": 34.307144, - "countries": [ - "afghanistan" - ] - }, - { - "x": 176, - "y": 101, - "left": 67.5, - "top": 35.46067, - "right": 68.90625, - "bottom": 34.307144, - "countries": [ - "afghanistan" - ] - }, - { - "x": 177, - "y": 101, - "left": 68.90625, - "top": 35.46067, - "right": 70.3125, - "bottom": 34.307144, - "countries": [ - "afghanistan" - ] - }, - { - "x": 178, - "y": 101, - "left": 70.3125, - "top": 35.46067, - "right": 71.71875, - "bottom": 34.307144, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 102, - "left": 60.46875, - "top": 34.307144, - "right": 61.875, - "bottom": 33.137551, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 172, - "y": 102, - "left": 61.875, - "top": 34.307144, - "right": 63.28125, - "bottom": 33.137551, - "countries": [ - "afghanistan" - ] - }, - { - "x": 173, - "y": 102, - "left": 63.28125, - "top": 34.307144, - "right": 64.6875, - "bottom": 33.137551, - "countries": [ - "afghanistan" - ] - }, - { - "x": 174, - "y": 102, - "left": 64.6875, - "top": 34.307144, - "right": 66.09375, - "bottom": 33.137551, - "countries": [ - "afghanistan" - ] - }, - { - "x": 175, - "y": 102, - "left": 66.09375, - "top": 34.307144, - "right": 67.5, - "bottom": 33.137551, - "countries": [ - "afghanistan" - ] - }, - { - "x": 176, - "y": 102, - "left": 67.5, - "top": 34.307144, - "right": 68.90625, - "bottom": 33.137551, - "countries": [ - "afghanistan" - ] - }, - { - "x": 177, - "y": 102, - "left": 68.90625, - "top": 34.307144, - "right": 70.3125, - "bottom": 33.137551, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 178, - "y": 102, - "left": 70.3125, - "top": 34.307144, - "right": 71.71875, - "bottom": 33.137551, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 103, - "left": 60.46875, - "top": 33.137551, - "right": 61.875, - "bottom": 31.952162, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 172, - "y": 103, - "left": 61.875, - "top": 33.137551, - "right": 63.28125, - "bottom": 31.952162, - "countries": [ - "afghanistan" - ] - }, - { - "x": 173, - "y": 103, - "left": 63.28125, - "top": 33.137551, - "right": 64.6875, - "bottom": 31.952162, - "countries": [ - "afghanistan" - ] - }, - { - "x": 174, - "y": 103, - "left": 64.6875, - "top": 33.137551, - "right": 66.09375, - "bottom": 31.952162, - "countries": [ - "afghanistan" - ] - }, - { - "x": 175, - "y": 103, - "left": 66.09375, - "top": 33.137551, - "right": 67.5, - "bottom": 31.952162, - "countries": [ - "afghanistan" - ] - }, - { - "x": 176, - "y": 103, - "left": 67.5, - "top": 33.137551, - "right": 68.90625, - "bottom": 31.952162, - "countries": [ - "afghanistan" - ] - }, - { - "x": 177, - "y": 103, - "left": 68.90625, - "top": 33.137551, - "right": 70.3125, - "bottom": 31.952162, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 104, - "left": 60.46875, - "top": 31.952162, - "right": 61.875, - "bottom": 30.751278, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 172, - "y": 104, - "left": 61.875, - "top": 31.952162, - "right": 63.28125, - "bottom": 30.751278, - "countries": [ - "afghanistan" - ] - }, - { - "x": 173, - "y": 104, - "left": 63.28125, - "top": 31.952162, - "right": 64.6875, - "bottom": 30.751278, - "countries": [ - "afghanistan" - ] - }, - { - "x": 174, - "y": 104, - "left": 64.6875, - "top": 31.952162, - "right": 66.09375, - "bottom": 30.751278, - "countries": [ - "afghanistan" - ] - }, - { - "x": 175, - "y": 104, - "left": 66.09375, - "top": 31.952162, - "right": 67.5, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 176, - "y": 104, - "left": 67.5, - "top": 31.952162, - "right": 68.90625, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 177, - "y": 104, - "left": 68.90625, - "top": 31.952162, - "right": 70.3125, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 105, - "left": 60.46875, - "top": 30.751278, - "right": 61.875, - "bottom": 29.53523, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 172, - "y": 105, - "left": 61.875, - "top": 30.751278, - "right": 63.28125, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 173, - "y": 105, - "left": 63.28125, - "top": 30.751278, - "right": 64.6875, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 174, - "y": 105, - "left": 64.6875, - "top": 30.751278, - "right": 66.09375, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 175, - "y": 105, - "left": 66.09375, - "top": 30.751278, - "right": 67.5, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 172, - "y": 106, - "left": 61.875, - "top": 29.53523, - "right": 63.28125, - "bottom": 28.304381, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 173, - "y": 106, - "left": 63.28125, - "top": 29.53523, - "right": 64.6875, - "bottom": 28.304381, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 174, - "y": 106, - "left": 64.6875, - "top": 29.53523, - "right": 66.09375, - "bottom": 28.304381, - "countries": [ - "afghanistan", - "pakistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/armenia.json b/wahoomc/resources/json/asia/armenia.json deleted file mode 100644 index c3e51ee9..00000000 --- a/wahoomc/resources/json/asia/armenia.json +++ /dev/null @@ -1,119 +0,0 @@ -[ - { - "x": 158, - "y": 95, - "left": 42.1875, - "top": 42.032974, - "right": 43.59375, - "bottom": 40.979898, - "countries": [ - "georgia", - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 95, - "left": 43.59375, - "top": 42.032974, - "right": 45.0, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 95, - "left": 45.0, - "top": 42.032974, - "right": 46.40625, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "russia" - ] - }, - { - "x": 158, - "y": 96, - "left": 42.1875, - "top": 40.979898, - "right": 43.59375, - "bottom": 39.909736, - "countries": [ - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 96, - "left": 43.59375, - "top": 40.979898, - "right": 45.0, - "bottom": 39.909736, - "countries": [ - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 96, - "left": 45.0, - "top": 40.979898, - "right": 46.40625, - "bottom": 39.909736, - "countries": [ - "azerbaijan", - "armenia" - ] - }, - { - "x": 159, - "y": 97, - "left": 43.59375, - "top": 39.909736, - "right": 45.0, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 97, - "left": 45.0, - "top": 39.909736, - "right": 46.40625, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - }, - { - "x": 161, - "y": 97, - "left": 46.40625, - "top": 39.909736, - "right": 47.8125, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/azerbaijan.json b/wahoomc/resources/json/asia/azerbaijan.json deleted file mode 100644 index 8a83d3f2..00000000 --- a/wahoomc/resources/json/asia/azerbaijan.json +++ /dev/null @@ -1,198 +0,0 @@ -[ - { - "x": 159, - "y": 95, - "left": 43.59375, - "top": 42.032974, - "right": 45.0, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 95, - "left": 45.0, - "top": 42.032974, - "right": 46.40625, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "russia" - ] - }, - { - "x": 160, - "y": 96, - "left": 45.0, - "top": 40.979898, - "right": 46.40625, - "bottom": 39.909736, - "countries": [ - "azerbaijan", - "armenia" - ] - }, - { - "x": 159, - "y": 97, - "left": 43.59375, - "top": 39.909736, - "right": 45.0, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 97, - "left": 45.0, - "top": 39.909736, - "right": 46.40625, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - }, - { - "x": 161, - "y": 97, - "left": 46.40625, - "top": 39.909736, - "right": 47.8125, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - }, - { - "x": 161, - "y": 95, - "left": 46.40625, - "top": 42.032974, - "right": 47.8125, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "russia" - ] - }, - { - "x": 162, - "y": 95, - "left": 47.8125, - "top": 42.032974, - "right": 49.21875, - "bottom": 40.979898, - "countries": [ - "russia", - "azerbaijan" - ] - }, - { - "x": 163, - "y": 95, - "left": 49.21875, - "top": 42.032974, - "right": 50.625, - "bottom": 40.979898, - "countries": [ - "azerbaijan" - ] - }, - { - "x": 161, - "y": 96, - "left": 46.40625, - "top": 40.979898, - "right": 47.8125, - "bottom": 39.909736, - "countries": [ - "azerbaijan" - ] - }, - { - "x": 162, - "y": 96, - "left": 47.8125, - "top": 40.979898, - "right": 49.21875, - "bottom": 39.909736, - "countries": [ - "azerbaijan" - ] - }, - { - "x": 163, - "y": 96, - "left": 49.21875, - "top": 40.979898, - "right": 50.625, - "bottom": 39.909736, - "countries": [ - "azerbaijan" - ] - }, - { - "x": 162, - "y": 97, - "left": 47.8125, - "top": 39.909736, - "right": 49.21875, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan" - ] - }, - { - "x": 163, - "y": 97, - "left": 49.21875, - "top": 39.909736, - "right": 50.625, - "bottom": 38.822591, - "countries": [ - "azerbaijan" - ] - }, - { - "x": 160, - "y": 98, - "left": 45.0, - "top": 38.822591, - "right": 46.40625, - "bottom": 37.71859, - "countries": [ - "iran", - "azerbaijan" - ] - }, - { - "x": 162, - "y": 98, - "left": 47.8125, - "top": 38.822591, - "right": 49.21875, - "bottom": 37.71859, - "countries": [ - "iran", - "azerbaijan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/bahrain.json b/wahoomc/resources/json/asia/bahrain.json deleted file mode 100644 index 7b13ddea..00000000 --- a/wahoomc/resources/json/asia/bahrain.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "x": 163, - "y": 108, - "left": 49.21875, - "top": 27.059126, - "right": 50.625, - "bottom": 25.799891, - "countries": [ - "saudi_arabia", - "bahrain" - ] - }, - { - "x": 164, - "y": 108, - "left": 50.625, - "top": 27.059126, - "right": 52.03125, - "bottom": 25.799891, - "countries": [ - "qatar", - "bahrain" - ] - }, - { - "x": 163, - "y": 109, - "left": 49.21875, - "top": 25.799891, - "right": 50.625, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "bahrain" - ] - }, - { - "x": 164, - "y": 109, - "left": 50.625, - "top": 25.799891, - "right": 52.03125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates", - "bahrain" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/bangladesh.json b/wahoomc/resources/json/asia/bangladesh.json deleted file mode 100644 index 66337ac6..00000000 --- a/wahoomc/resources/json/asia/bangladesh.json +++ /dev/null @@ -1,208 +0,0 @@ -[ - { - "x": 190, - "y": 108, - "left": 87.1875, - "top": 27.059126, - "right": 88.59375, - "bottom": 25.799891, - "countries": [ - "nepal", - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 108, - "left": 88.59375, - "top": 27.059126, - "right": 90.0, - "bottom": 25.799891, - "countries": [ - "bhutan", - "bangladesh", - "india" - ] - }, - { - "x": 190, - "y": 109, - "left": 87.1875, - "top": 25.799891, - "right": 88.59375, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 109, - "left": 88.59375, - "top": 25.799891, - "right": 90.0, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 109, - "left": 90.0, - "top": 25.799891, - "right": 91.40625, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 109, - "left": 91.40625, - "top": 25.799891, - "right": 92.8125, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 190, - "y": 110, - "left": 87.1875, - "top": 24.527135, - "right": 88.59375, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 110, - "left": 88.59375, - "top": 24.527135, - "right": 90.0, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 110, - "left": 90.0, - "top": 24.527135, - "right": 91.40625, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 110, - "left": 91.40625, - "top": 24.527135, - "right": 92.8125, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 111, - "left": 88.59375, - "top": 23.241346, - "right": 90.0, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 111, - "left": 90.0, - "top": 23.241346, - "right": 91.40625, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 111, - "left": 91.40625, - "top": 23.241346, - "right": 92.8125, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "myanmar", - "india" - ] - }, - { - "x": 191, - "y": 112, - "left": 88.59375, - "top": 21.943046, - "right": 90.0, - "bottom": 20.632784, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 112, - "left": 90.0, - "top": 21.943046, - "right": 91.40625, - "bottom": 20.632784, - "countries": [ - "bangladesh" - ] - }, - { - "x": 193, - "y": 112, - "left": 91.40625, - "top": 21.943046, - "right": 92.8125, - "bottom": 20.632784, - "countries": [ - "bangladesh", - "myanmar" - ] - }, - { - "x": 193, - "y": 113, - "left": 91.40625, - "top": 20.632784, - "right": 92.8125, - "bottom": 19.311143, - "countries": [ - "bangladesh", - "myanmar" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/bhutan.json b/wahoomc/resources/json/asia/bhutan.json deleted file mode 100644 index a62408a3..00000000 --- a/wahoomc/resources/json/asia/bhutan.json +++ /dev/null @@ -1,101 +0,0 @@ -[ - { - "x": 191, - "y": 108, - "left": 88.59375, - "top": 27.059126, - "right": 90.0, - "bottom": 25.799891, - "countries": [ - "bhutan", - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 106, - "left": 88.59375, - "top": 29.53523, - "right": 90.0, - "bottom": 28.304381, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 192, - "y": 106, - "left": 90.0, - "top": 29.53523, - "right": 91.40625, - "bottom": 28.304381, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 191, - "y": 107, - "left": 88.59375, - "top": 28.304381, - "right": 90.0, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 192, - "y": 107, - "left": 90.0, - "top": 28.304381, - "right": 91.40625, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 193, - "y": 107, - "left": 91.40625, - "top": 28.304381, - "right": 92.8125, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 192, - "y": 108, - "left": 90.0, - "top": 27.059126, - "right": 91.40625, - "bottom": 25.799891, - "countries": [ - "bhutan", - "india" - ] - }, - { - "x": 193, - "y": 108, - "left": 91.40625, - "top": 27.059126, - "right": 92.8125, - "bottom": 25.799891, - "countries": [ - "bhutan", - "india" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/british_indian_ocean_territory.json b/wahoomc/resources/json/asia/british_indian_ocean_territory.json deleted file mode 100644 index 2dabdc24..00000000 --- a/wahoomc/resources/json/asia/british_indian_ocean_territory.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "x": 179, - "y": 131, - "left": 71.71875, - "top": -4.214943, - "right": 73.125, - "bottom": -5.615986, - "countries": [ - "british_indian_ocean_territory" - ] - }, - { - "x": 178, - "y": 132, - "left": 70.3125, - "top": -5.615986, - "right": 71.71875, - "bottom": -7.013668, - "countries": [ - "british_indian_ocean_territory" - ] - }, - { - "x": 179, - "y": 132, - "left": 71.71875, - "top": -5.615986, - "right": 73.125, - "bottom": -7.013668, - "countries": [ - "british_indian_ocean_territory" - ] - }, - { - "x": 179, - "y": 133, - "left": 71.71875, - "top": -7.013668, - "right": 73.125, - "bottom": -8.407168, - "countries": [ - "british_indian_ocean_territory" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/brunei.json b/wahoomc/resources/json/asia/brunei.json deleted file mode 100644 index dfe03cf6..00000000 --- a/wahoomc/resources/json/asia/brunei.json +++ /dev/null @@ -1,40 +0,0 @@ -[ - { - "x": 209, - "y": 124, - "left": 113.90625, - "top": 5.615986, - "right": 115.3125, - "bottom": 4.214943, - "countries": [ - "brunei", - "malaysia" - ] - }, - { - "x": 210, - "y": 124, - "left": 115.3125, - "top": 5.615986, - "right": 116.71875, - "bottom": 4.214943, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - }, - { - "x": 209, - "y": 125, - "left": 113.90625, - "top": 4.214943, - "right": 115.3125, - "bottom": 2.811371, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/cambodia.json b/wahoomc/resources/json/asia/cambodia.json deleted file mode 100644 index 7170a1e5..00000000 --- a/wahoomc/resources/json/asia/cambodia.json +++ /dev/null @@ -1,195 +0,0 @@ -[ - { - "x": 201, - "y": 117, - "left": 102.65625, - "top": 15.284185, - "right": 104.0625, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 202, - "y": 117, - "left": 104.0625, - "top": 15.284185, - "right": 105.46875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 117, - "left": 105.46875, - "top": 15.284185, - "right": 106.875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 204, - "y": 117, - "left": 106.875, - "top": 15.284185, - "right": 108.28125, - "bottom": 13.923404, - "countries": [ - "cambodia", - "vietnam", - "laos" - ] - }, - { - "x": 200, - "y": 118, - "left": 101.25, - "top": 13.923404, - "right": 102.65625, - "bottom": 12.554564, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 201, - "y": 118, - "left": 102.65625, - "top": 13.923404, - "right": 104.0625, - "bottom": 12.554564, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 202, - "y": 118, - "left": 104.0625, - "top": 13.923404, - "right": 105.46875, - "bottom": 12.554564, - "countries": [ - "cambodia" - ] - }, - { - "x": 203, - "y": 118, - "left": 105.46875, - "top": 13.923404, - "right": 106.875, - "bottom": 12.554564, - "countries": [ - "cambodia", - "laos" - ] - }, - { - "x": 204, - "y": 118, - "left": 106.875, - "top": 13.923404, - "right": 108.28125, - "bottom": 12.554564, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 201, - "y": 119, - "left": 102.65625, - "top": 12.554564, - "right": 104.0625, - "bottom": 11.178402, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 202, - "y": 119, - "left": 104.0625, - "top": 12.554564, - "right": 105.46875, - "bottom": 11.178402, - "countries": [ - "cambodia" - ] - }, - { - "x": 203, - "y": 119, - "left": 105.46875, - "top": 12.554564, - "right": 106.875, - "bottom": 11.178402, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 204, - "y": 119, - "left": 106.875, - "top": 12.554564, - "right": 108.28125, - "bottom": 11.178402, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 201, - "y": 120, - "left": 102.65625, - "top": 11.178402, - "right": 104.0625, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 202, - "y": 120, - "left": 104.0625, - "top": 11.178402, - "right": 105.46875, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 203, - "y": 120, - "left": 105.46875, - "top": 11.178402, - "right": 106.875, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/china.json b/wahoomc/resources/json/asia/china.json deleted file mode 100644 index 23ea1097..00000000 --- a/wahoomc/resources/json/asia/china.json +++ /dev/null @@ -1,8176 +0,0 @@ -[ - { - "x": 180, - "y": 99, - "left": 73.125, - "top": 37.71859, - "right": 74.53125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 181, - "y": 99, - "left": 74.53125, - "top": 37.71859, - "right": 75.9375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 191, - "y": 106, - "left": 88.59375, - "top": 29.53523, - "right": 90.0, - "bottom": 28.304381, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 192, - "y": 106, - "left": 90.0, - "top": 29.53523, - "right": 91.40625, - "bottom": 28.304381, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 191, - "y": 107, - "left": 88.59375, - "top": 28.304381, - "right": 90.0, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 192, - "y": 107, - "left": 90.0, - "top": 28.304381, - "right": 91.40625, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china" - ] - }, - { - "x": 193, - "y": 107, - "left": 91.40625, - "top": 28.304381, - "right": 92.8125, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 214, - "y": 82, - "left": 120.9375, - "top": 54.162434, - "right": 122.34375, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 215, - "y": 82, - "left": 122.34375, - "top": 54.162434, - "right": 123.75, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 216, - "y": 82, - "left": 123.75, - "top": 54.162434, - "right": 125.15625, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 83, - "left": 119.53125, - "top": 53.330873, - "right": 120.9375, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 214, - "y": 83, - "left": 120.9375, - "top": 53.330873, - "right": 122.34375, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 215, - "y": 83, - "left": 122.34375, - "top": 53.330873, - "right": 123.75, - "bottom": 52.48278, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 83, - "left": 123.75, - "top": 53.330873, - "right": 125.15625, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 217, - "y": 83, - "left": 125.15625, - "top": 53.330873, - "right": 126.5625, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 84, - "left": 119.53125, - "top": 52.48278, - "right": 120.9375, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 214, - "y": 84, - "left": 120.9375, - "top": 52.48278, - "right": 122.34375, - "bottom": 51.618017, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 84, - "left": 122.34375, - "top": 52.48278, - "right": 123.75, - "bottom": 51.618017, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 84, - "left": 123.75, - "top": 52.48278, - "right": 125.15625, - "bottom": 51.618017, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 84, - "left": 125.15625, - "top": 52.48278, - "right": 126.5625, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 218, - "y": 84, - "left": 126.5625, - "top": 52.48278, - "right": 127.96875, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 212, - "y": 85, - "left": 118.125, - "top": 51.618017, - "right": 119.53125, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 85, - "left": 119.53125, - "top": 51.618017, - "right": 120.9375, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 214, - "y": 85, - "left": 120.9375, - "top": 51.618017, - "right": 122.34375, - "bottom": 50.736455, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 85, - "left": 122.34375, - "top": 51.618017, - "right": 123.75, - "bottom": 50.736455, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 85, - "left": 123.75, - "top": 51.618017, - "right": 125.15625, - "bottom": 50.736455, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 85, - "left": 125.15625, - "top": 51.618017, - "right": 126.5625, - "bottom": 50.736455, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 85, - "left": 126.5625, - "top": 51.618017, - "right": 127.96875, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 210, - "y": 86, - "left": 115.3125, - "top": 50.736455, - "right": 116.71875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 86, - "left": 118.125, - "top": 50.736455, - "right": 119.53125, - "bottom": 49.837982, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 86, - "left": 119.53125, - "top": 50.736455, - "right": 120.9375, - "bottom": 49.837982, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 86, - "left": 120.9375, - "top": 50.736455, - "right": 122.34375, - "bottom": 49.837982, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 86, - "left": 122.34375, - "top": 50.736455, - "right": 123.75, - "bottom": 49.837982, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 86, - "left": 123.75, - "top": 50.736455, - "right": 125.15625, - "bottom": 49.837982, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 86, - "left": 125.15625, - "top": 50.736455, - "right": 126.5625, - "bottom": 49.837982, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 86, - "left": 126.5625, - "top": 50.736455, - "right": 127.96875, - "bottom": 49.837982, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 189, - "y": 87, - "left": 85.78125, - "top": 49.837982, - "right": 87.1875, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan", - "china" - ] - }, - { - "x": 190, - "y": 87, - "left": 87.1875, - "top": 49.837982, - "right": 88.59375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "kazakhstan", - "china" - ] - }, - { - "x": 210, - "y": 87, - "left": 115.3125, - "top": 49.837982, - "right": 116.71875, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 87, - "left": 116.71875, - "top": 49.837982, - "right": 118.125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 212, - "y": 87, - "left": 118.125, - "top": 49.837982, - "right": 119.53125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 87, - "left": 119.53125, - "top": 49.837982, - "right": 120.9375, - "bottom": 48.922499, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 87, - "left": 120.9375, - "top": 49.837982, - "right": 122.34375, - "bottom": 48.922499, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 87, - "left": 122.34375, - "top": 49.837982, - "right": 123.75, - "bottom": 48.922499, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 87, - "left": 123.75, - "top": 49.837982, - "right": 125.15625, - "bottom": 48.922499, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 87, - "left": 125.15625, - "top": 49.837982, - "right": 126.5625, - "bottom": 48.922499, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 87, - "left": 126.5625, - "top": 49.837982, - "right": 127.96875, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 219, - "y": 87, - "left": 127.96875, - "top": 49.837982, - "right": 129.375, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 220, - "y": 87, - "left": 129.375, - "top": 49.837982, - "right": 130.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 188, - "y": 88, - "left": 84.375, - "top": 48.922499, - "right": 85.78125, - "bottom": 47.989922, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 189, - "y": 88, - "left": 85.78125, - "top": 48.922499, - "right": 87.1875, - "bottom": 47.989922, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 190, - "y": 88, - "left": 87.1875, - "top": 48.922499, - "right": 88.59375, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 191, - "y": 88, - "left": 88.59375, - "top": 48.922499, - "right": 90.0, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 88, - "left": 115.3125, - "top": 48.922499, - "right": 116.71875, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 88, - "left": 116.71875, - "top": 48.922499, - "right": 118.125, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 88, - "left": 118.125, - "top": 48.922499, - "right": 119.53125, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 213, - "y": 88, - "left": 119.53125, - "top": 48.922499, - "right": 120.9375, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 88, - "left": 120.9375, - "top": 48.922499, - "right": 122.34375, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 88, - "left": 122.34375, - "top": 48.922499, - "right": 123.75, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 88, - "left": 123.75, - "top": 48.922499, - "right": 125.15625, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 88, - "left": 125.15625, - "top": 48.922499, - "right": 126.5625, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 88, - "left": 126.5625, - "top": 48.922499, - "right": 127.96875, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 88, - "left": 127.96875, - "top": 48.922499, - "right": 129.375, - "bottom": 47.989922, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 88, - "left": 129.375, - "top": 48.922499, - "right": 130.78125, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 88, - "left": 130.78125, - "top": 48.922499, - "right": 132.1875, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 88, - "left": 132.1875, - "top": 48.922499, - "right": 133.59375, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 88, - "left": 133.59375, - "top": 48.922499, - "right": 135.0, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 187, - "y": 89, - "left": 82.96875, - "top": 47.989922, - "right": 84.375, - "bottom": 47.040182, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 188, - "y": 89, - "left": 84.375, - "top": 47.989922, - "right": 85.78125, - "bottom": 47.040182, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 189, - "y": 89, - "left": 85.78125, - "top": 47.989922, - "right": 87.1875, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 89, - "left": 87.1875, - "top": 47.989922, - "right": 88.59375, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 89, - "left": 88.59375, - "top": 47.989922, - "right": 90.0, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 192, - "y": 89, - "left": 90.0, - "top": 47.989922, - "right": 91.40625, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 89, - "left": 115.3125, - "top": 47.989922, - "right": 116.71875, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 89, - "left": 116.71875, - "top": 47.989922, - "right": 118.125, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 89, - "left": 118.125, - "top": 47.989922, - "right": 119.53125, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 213, - "y": 89, - "left": 119.53125, - "top": 47.989922, - "right": 120.9375, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 214, - "y": 89, - "left": 120.9375, - "top": 47.989922, - "right": 122.34375, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 89, - "left": 122.34375, - "top": 47.989922, - "right": 123.75, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 89, - "left": 123.75, - "top": 47.989922, - "right": 125.15625, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 89, - "left": 125.15625, - "top": 47.989922, - "right": 126.5625, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 89, - "left": 126.5625, - "top": 47.989922, - "right": 127.96875, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 89, - "left": 127.96875, - "top": 47.989922, - "right": 129.375, - "bottom": 47.040182, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 89, - "left": 129.375, - "top": 47.989922, - "right": 130.78125, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 89, - "left": 130.78125, - "top": 47.989922, - "right": 132.1875, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 89, - "left": 132.1875, - "top": 47.989922, - "right": 133.59375, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 89, - "left": 133.59375, - "top": 47.989922, - "right": 135.0, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 186, - "y": 90, - "left": 81.5625, - "top": 47.040182, - "right": 82.96875, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 187, - "y": 90, - "left": 82.96875, - "top": 47.040182, - "right": 84.375, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 188, - "y": 90, - "left": 84.375, - "top": 47.040182, - "right": 85.78125, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 189, - "y": 90, - "left": 85.78125, - "top": 47.040182, - "right": 87.1875, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 90, - "left": 87.1875, - "top": 47.040182, - "right": 88.59375, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 90, - "left": 88.59375, - "top": 47.040182, - "right": 90.0, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 90, - "left": 90.0, - "top": 47.040182, - "right": 91.40625, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 90, - "left": 115.3125, - "top": 47.040182, - "right": 116.71875, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 90, - "left": 116.71875, - "top": 47.040182, - "right": 118.125, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 90, - "left": 118.125, - "top": 47.040182, - "right": 119.53125, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 213, - "y": 90, - "left": 119.53125, - "top": 47.040182, - "right": 120.9375, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 214, - "y": 90, - "left": 120.9375, - "top": 47.040182, - "right": 122.34375, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 90, - "left": 122.34375, - "top": 47.040182, - "right": 123.75, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 90, - "left": 123.75, - "top": 47.040182, - "right": 125.15625, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 90, - "left": 125.15625, - "top": 47.040182, - "right": 126.5625, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 90, - "left": 126.5625, - "top": 47.040182, - "right": 127.96875, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 90, - "left": 127.96875, - "top": 47.040182, - "right": 129.375, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 90, - "left": 129.375, - "top": 47.040182, - "right": 130.78125, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 221, - "y": 90, - "left": 130.78125, - "top": 47.040182, - "right": 132.1875, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 222, - "y": 90, - "left": 132.1875, - "top": 47.040182, - "right": 133.59375, - "bottom": 46.073231, - "countries": [ - "china" - ] - }, - { - "x": 223, - "y": 90, - "left": 133.59375, - "top": 47.040182, - "right": 135.0, - "bottom": 46.073231, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 185, - "y": 91, - "left": 80.15625, - "top": 46.073231, - "right": 81.5625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 186, - "y": 91, - "left": 81.5625, - "top": 46.073231, - "right": 82.96875, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 187, - "y": 91, - "left": 82.96875, - "top": 46.073231, - "right": 84.375, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 91, - "left": 84.375, - "top": 46.073231, - "right": 85.78125, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 91, - "left": 85.78125, - "top": 46.073231, - "right": 87.1875, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 91, - "left": 87.1875, - "top": 46.073231, - "right": 88.59375, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 91, - "left": 88.59375, - "top": 46.073231, - "right": 90.0, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 91, - "left": 90.0, - "top": 46.073231, - "right": 91.40625, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 193, - "y": 91, - "left": 91.40625, - "top": 46.073231, - "right": 92.8125, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 91, - "left": 111.09375, - "top": 46.073231, - "right": 112.5, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 209, - "y": 91, - "left": 113.90625, - "top": 46.073231, - "right": 115.3125, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 91, - "left": 115.3125, - "top": 46.073231, - "right": 116.71875, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 91, - "left": 116.71875, - "top": 46.073231, - "right": 118.125, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 91, - "left": 118.125, - "top": 46.073231, - "right": 119.53125, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 91, - "left": 119.53125, - "top": 46.073231, - "right": 120.9375, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 91, - "left": 120.9375, - "top": 46.073231, - "right": 122.34375, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 91, - "left": 122.34375, - "top": 46.073231, - "right": 123.75, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 91, - "left": 123.75, - "top": 46.073231, - "right": 125.15625, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 91, - "left": 125.15625, - "top": 46.073231, - "right": 126.5625, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 91, - "left": 126.5625, - "top": 46.073231, - "right": 127.96875, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 91, - "left": 127.96875, - "top": 46.073231, - "right": 129.375, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 91, - "left": 129.375, - "top": 46.073231, - "right": 130.78125, - "bottom": 45.089036, - "countries": [ - "china" - ] - }, - { - "x": 221, - "y": 91, - "left": 130.78125, - "top": 46.073231, - "right": 132.1875, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 91, - "left": 132.1875, - "top": 46.073231, - "right": 133.59375, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 91, - "left": 133.59375, - "top": 46.073231, - "right": 135.0, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 184, - "y": 92, - "left": 78.75, - "top": 45.089036, - "right": 80.15625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 185, - "y": 92, - "left": 80.15625, - "top": 45.089036, - "right": 81.5625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 186, - "y": 92, - "left": 81.5625, - "top": 45.089036, - "right": 82.96875, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 92, - "left": 82.96875, - "top": 45.089036, - "right": 84.375, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 92, - "left": 84.375, - "top": 45.089036, - "right": 85.78125, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 92, - "left": 85.78125, - "top": 45.089036, - "right": 87.1875, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 92, - "left": 87.1875, - "top": 45.089036, - "right": 88.59375, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 92, - "left": 88.59375, - "top": 45.089036, - "right": 90.0, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 92, - "left": 90.0, - "top": 45.089036, - "right": 91.40625, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 92, - "left": 91.40625, - "top": 45.089036, - "right": 92.8125, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 194, - "y": 92, - "left": 92.8125, - "top": 45.089036, - "right": 94.21875, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 195, - "y": 92, - "left": 94.21875, - "top": 45.089036, - "right": 95.625, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 92, - "left": 111.09375, - "top": 45.089036, - "right": 112.5, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 208, - "y": 92, - "left": 112.5, - "top": 45.089036, - "right": 113.90625, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 209, - "y": 92, - "left": 113.90625, - "top": 45.089036, - "right": 115.3125, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 92, - "left": 115.3125, - "top": 45.089036, - "right": 116.71875, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 92, - "left": 116.71875, - "top": 45.089036, - "right": 118.125, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 92, - "left": 118.125, - "top": 45.089036, - "right": 119.53125, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 92, - "left": 119.53125, - "top": 45.089036, - "right": 120.9375, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 92, - "left": 120.9375, - "top": 45.089036, - "right": 122.34375, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 92, - "left": 122.34375, - "top": 45.089036, - "right": 123.75, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 92, - "left": 123.75, - "top": 45.089036, - "right": 125.15625, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 92, - "left": 125.15625, - "top": 45.089036, - "right": 126.5625, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 92, - "left": 126.5625, - "top": 45.089036, - "right": 127.96875, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 92, - "left": 127.96875, - "top": 45.089036, - "right": 129.375, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 92, - "left": 129.375, - "top": 45.089036, - "right": 130.78125, - "bottom": 44.087585, - "countries": [ - "china" - ] - }, - { - "x": 221, - "y": 92, - "left": 130.78125, - "top": 45.089036, - "right": 132.1875, - "bottom": 44.087585, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 92, - "left": 132.1875, - "top": 45.089036, - "right": 133.59375, - "bottom": 44.087585, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 185, - "y": 93, - "left": 80.15625, - "top": 44.087585, - "right": 81.5625, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 186, - "y": 93, - "left": 81.5625, - "top": 44.087585, - "right": 82.96875, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 93, - "left": 82.96875, - "top": 44.087585, - "right": 84.375, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 93, - "left": 84.375, - "top": 44.087585, - "right": 85.78125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 93, - "left": 85.78125, - "top": 44.087585, - "right": 87.1875, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 93, - "left": 87.1875, - "top": 44.087585, - "right": 88.59375, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 93, - "left": 88.59375, - "top": 44.087585, - "right": 90.0, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 93, - "left": 90.0, - "top": 44.087585, - "right": 91.40625, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 93, - "left": 91.40625, - "top": 44.087585, - "right": 92.8125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 93, - "left": 92.8125, - "top": 44.087585, - "right": 94.21875, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 93, - "left": 94.21875, - "top": 44.087585, - "right": 95.625, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 196, - "y": 93, - "left": 95.625, - "top": 44.087585, - "right": 97.03125, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 206, - "y": 93, - "left": 109.6875, - "top": 44.087585, - "right": 111.09375, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 93, - "left": 111.09375, - "top": 44.087585, - "right": 112.5, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 208, - "y": 93, - "left": 112.5, - "top": 44.087585, - "right": 113.90625, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 93, - "left": 113.90625, - "top": 44.087585, - "right": 115.3125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 93, - "left": 115.3125, - "top": 44.087585, - "right": 116.71875, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 93, - "left": 116.71875, - "top": 44.087585, - "right": 118.125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 93, - "left": 118.125, - "top": 44.087585, - "right": 119.53125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 93, - "left": 119.53125, - "top": 44.087585, - "right": 120.9375, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 93, - "left": 120.9375, - "top": 44.087585, - "right": 122.34375, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 93, - "left": 122.34375, - "top": 44.087585, - "right": 123.75, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 93, - "left": 123.75, - "top": 44.087585, - "right": 125.15625, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 93, - "left": 125.15625, - "top": 44.087585, - "right": 126.5625, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 93, - "left": 126.5625, - "top": 44.087585, - "right": 127.96875, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 93, - "left": 127.96875, - "top": 44.087585, - "right": 129.375, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 220, - "y": 93, - "left": 129.375, - "top": 44.087585, - "right": 130.78125, - "bottom": 43.068888, - "countries": [ - "china" - ] - }, - { - "x": 221, - "y": 93, - "left": 130.78125, - "top": 44.087585, - "right": 132.1875, - "bottom": 43.068888, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 184, - "y": 94, - "left": 78.75, - "top": 43.068888, - "right": 80.15625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 185, - "y": 94, - "left": 80.15625, - "top": 43.068888, - "right": 81.5625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 186, - "y": 94, - "left": 81.5625, - "top": 43.068888, - "right": 82.96875, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 94, - "left": 82.96875, - "top": 43.068888, - "right": 84.375, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 94, - "left": 84.375, - "top": 43.068888, - "right": 85.78125, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 94, - "left": 85.78125, - "top": 43.068888, - "right": 87.1875, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 94, - "left": 87.1875, - "top": 43.068888, - "right": 88.59375, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 94, - "left": 88.59375, - "top": 43.068888, - "right": 90.0, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 94, - "left": 90.0, - "top": 43.068888, - "right": 91.40625, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 94, - "left": 91.40625, - "top": 43.068888, - "right": 92.8125, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 94, - "left": 92.8125, - "top": 43.068888, - "right": 94.21875, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 94, - "left": 94.21875, - "top": 43.068888, - "right": 95.625, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 94, - "left": 95.625, - "top": 43.068888, - "right": 97.03125, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 197, - "y": 94, - "left": 97.03125, - "top": 43.068888, - "right": 98.4375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 198, - "y": 94, - "left": 98.4375, - "top": 43.068888, - "right": 99.84375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 199, - "y": 94, - "left": 99.84375, - "top": 43.068888, - "right": 101.25, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 200, - "y": 94, - "left": 101.25, - "top": 43.068888, - "right": 102.65625, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 201, - "y": 94, - "left": 102.65625, - "top": 43.068888, - "right": 104.0625, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 203, - "y": 94, - "left": 105.46875, - "top": 43.068888, - "right": 106.875, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 204, - "y": 94, - "left": 106.875, - "top": 43.068888, - "right": 108.28125, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 205, - "y": 94, - "left": 108.28125, - "top": 43.068888, - "right": 109.6875, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 206, - "y": 94, - "left": 109.6875, - "top": 43.068888, - "right": 111.09375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 94, - "left": 111.09375, - "top": 43.068888, - "right": 112.5, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 94, - "left": 112.5, - "top": 43.068888, - "right": 113.90625, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 94, - "left": 113.90625, - "top": 43.068888, - "right": 115.3125, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 94, - "left": 115.3125, - "top": 43.068888, - "right": 116.71875, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 94, - "left": 116.71875, - "top": 43.068888, - "right": 118.125, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 94, - "left": 118.125, - "top": 43.068888, - "right": 119.53125, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 94, - "left": 119.53125, - "top": 43.068888, - "right": 120.9375, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 94, - "left": 120.9375, - "top": 43.068888, - "right": 122.34375, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 94, - "left": 122.34375, - "top": 43.068888, - "right": 123.75, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 94, - "left": 123.75, - "top": 43.068888, - "right": 125.15625, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 94, - "left": 125.15625, - "top": 43.068888, - "right": 126.5625, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 218, - "y": 94, - "left": 126.5625, - "top": 43.068888, - "right": 127.96875, - "bottom": 42.032974, - "countries": [ - "china" - ] - }, - { - "x": 219, - "y": 94, - "left": 127.96875, - "top": 43.068888, - "right": 129.375, - "bottom": 42.032974, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 220, - "y": 94, - "left": 129.375, - "top": 43.068888, - "right": 130.78125, - "bottom": 42.032974, - "countries": [ - "russia", - "north_korea", - "china" - ] - }, - { - "x": 221, - "y": 94, - "left": 130.78125, - "top": 43.068888, - "right": 132.1875, - "bottom": 42.032974, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 182, - "y": 95, - "left": 75.9375, - "top": 42.032974, - "right": 77.34375, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 183, - "y": 95, - "left": 77.34375, - "top": 42.032974, - "right": 78.75, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 184, - "y": 95, - "left": 78.75, - "top": 42.032974, - "right": 80.15625, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 185, - "y": 95, - "left": 80.15625, - "top": 42.032974, - "right": 81.5625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 95, - "left": 81.5625, - "top": 42.032974, - "right": 82.96875, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 95, - "left": 82.96875, - "top": 42.032974, - "right": 84.375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 95, - "left": 84.375, - "top": 42.032974, - "right": 85.78125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 95, - "left": 85.78125, - "top": 42.032974, - "right": 87.1875, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 95, - "left": 87.1875, - "top": 42.032974, - "right": 88.59375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 95, - "left": 88.59375, - "top": 42.032974, - "right": 90.0, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 95, - "left": 90.0, - "top": 42.032974, - "right": 91.40625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 95, - "left": 91.40625, - "top": 42.032974, - "right": 92.8125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 95, - "left": 92.8125, - "top": 42.032974, - "right": 94.21875, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 95, - "left": 94.21875, - "top": 42.032974, - "right": 95.625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 95, - "left": 95.625, - "top": 42.032974, - "right": 97.03125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 95, - "left": 97.03125, - "top": 42.032974, - "right": 98.4375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 95, - "left": 98.4375, - "top": 42.032974, - "right": 99.84375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 95, - "left": 99.84375, - "top": 42.032974, - "right": 101.25, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 95, - "left": 101.25, - "top": 42.032974, - "right": 102.65625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 95, - "left": 102.65625, - "top": 42.032974, - "right": 104.0625, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 202, - "y": 95, - "left": 104.0625, - "top": 42.032974, - "right": 105.46875, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 203, - "y": 95, - "left": 105.46875, - "top": 42.032974, - "right": 106.875, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 204, - "y": 95, - "left": 106.875, - "top": 42.032974, - "right": 108.28125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 95, - "left": 108.28125, - "top": 42.032974, - "right": 109.6875, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 95, - "left": 109.6875, - "top": 42.032974, - "right": 111.09375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 95, - "left": 111.09375, - "top": 42.032974, - "right": 112.5, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 95, - "left": 112.5, - "top": 42.032974, - "right": 113.90625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 95, - "left": 113.90625, - "top": 42.032974, - "right": 115.3125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 95, - "left": 115.3125, - "top": 42.032974, - "right": 116.71875, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 95, - "left": 116.71875, - "top": 42.032974, - "right": 118.125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 95, - "left": 118.125, - "top": 42.032974, - "right": 119.53125, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 95, - "left": 119.53125, - "top": 42.032974, - "right": 120.9375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 95, - "left": 120.9375, - "top": 42.032974, - "right": 122.34375, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 95, - "left": 122.34375, - "top": 42.032974, - "right": 123.75, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 95, - "left": 123.75, - "top": 42.032974, - "right": 125.15625, - "bottom": 40.979898, - "countries": [ - "china" - ] - }, - { - "x": 217, - "y": 95, - "left": 125.15625, - "top": 42.032974, - "right": 126.5625, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 218, - "y": 95, - "left": 126.5625, - "top": 42.032974, - "right": 127.96875, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 219, - "y": 95, - "left": 127.96875, - "top": 42.032974, - "right": 129.375, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 180, - "y": 96, - "left": 73.125, - "top": 40.979898, - "right": 74.53125, - "bottom": 39.909736, - "countries": [ - "uzbekistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 96, - "left": 74.53125, - "top": 40.979898, - "right": 75.9375, - "bottom": 39.909736, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 96, - "left": 75.9375, - "top": 40.979898, - "right": 77.34375, - "bottom": 39.909736, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 183, - "y": 96, - "left": 77.34375, - "top": 40.979898, - "right": 78.75, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 184, - "y": 96, - "left": 78.75, - "top": 40.979898, - "right": 80.15625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 185, - "y": 96, - "left": 80.15625, - "top": 40.979898, - "right": 81.5625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 96, - "left": 81.5625, - "top": 40.979898, - "right": 82.96875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 96, - "left": 82.96875, - "top": 40.979898, - "right": 84.375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 96, - "left": 84.375, - "top": 40.979898, - "right": 85.78125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 96, - "left": 85.78125, - "top": 40.979898, - "right": 87.1875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 96, - "left": 87.1875, - "top": 40.979898, - "right": 88.59375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 96, - "left": 88.59375, - "top": 40.979898, - "right": 90.0, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 96, - "left": 90.0, - "top": 40.979898, - "right": 91.40625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 96, - "left": 91.40625, - "top": 40.979898, - "right": 92.8125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 96, - "left": 92.8125, - "top": 40.979898, - "right": 94.21875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 96, - "left": 94.21875, - "top": 40.979898, - "right": 95.625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 96, - "left": 95.625, - "top": 40.979898, - "right": 97.03125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 96, - "left": 97.03125, - "top": 40.979898, - "right": 98.4375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 96, - "left": 98.4375, - "top": 40.979898, - "right": 99.84375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 96, - "left": 99.84375, - "top": 40.979898, - "right": 101.25, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 96, - "left": 101.25, - "top": 40.979898, - "right": 102.65625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 96, - "left": 102.65625, - "top": 40.979898, - "right": 104.0625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 96, - "left": 104.0625, - "top": 40.979898, - "right": 105.46875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 96, - "left": 105.46875, - "top": 40.979898, - "right": 106.875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 96, - "left": 106.875, - "top": 40.979898, - "right": 108.28125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 96, - "left": 108.28125, - "top": 40.979898, - "right": 109.6875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 96, - "left": 109.6875, - "top": 40.979898, - "right": 111.09375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 96, - "left": 111.09375, - "top": 40.979898, - "right": 112.5, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 96, - "left": 112.5, - "top": 40.979898, - "right": 113.90625, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 96, - "left": 113.90625, - "top": 40.979898, - "right": 115.3125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 96, - "left": 115.3125, - "top": 40.979898, - "right": 116.71875, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 96, - "left": 116.71875, - "top": 40.979898, - "right": 118.125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 96, - "left": 118.125, - "top": 40.979898, - "right": 119.53125, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 96, - "left": 119.53125, - "top": 40.979898, - "right": 120.9375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 96, - "left": 120.9375, - "top": 40.979898, - "right": 122.34375, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 96, - "left": 122.34375, - "top": 40.979898, - "right": 123.75, - "bottom": 39.909736, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 96, - "left": 123.75, - "top": 40.979898, - "right": 125.15625, - "bottom": 39.909736, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 217, - "y": 96, - "left": 125.15625, - "top": 40.979898, - "right": 126.5625, - "bottom": 39.909736, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 180, - "y": 97, - "left": 73.125, - "top": 39.909736, - "right": 74.53125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 97, - "left": 74.53125, - "top": 39.909736, - "right": 75.9375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 182, - "y": 97, - "left": 75.9375, - "top": 39.909736, - "right": 77.34375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 97, - "left": 77.34375, - "top": 39.909736, - "right": 78.75, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 184, - "y": 97, - "left": 78.75, - "top": 39.909736, - "right": 80.15625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 185, - "y": 97, - "left": 80.15625, - "top": 39.909736, - "right": 81.5625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 97, - "left": 81.5625, - "top": 39.909736, - "right": 82.96875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 97, - "left": 82.96875, - "top": 39.909736, - "right": 84.375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 97, - "left": 84.375, - "top": 39.909736, - "right": 85.78125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 97, - "left": 85.78125, - "top": 39.909736, - "right": 87.1875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 97, - "left": 87.1875, - "top": 39.909736, - "right": 88.59375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 97, - "left": 88.59375, - "top": 39.909736, - "right": 90.0, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 97, - "left": 90.0, - "top": 39.909736, - "right": 91.40625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 97, - "left": 91.40625, - "top": 39.909736, - "right": 92.8125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 97, - "left": 92.8125, - "top": 39.909736, - "right": 94.21875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 97, - "left": 94.21875, - "top": 39.909736, - "right": 95.625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 97, - "left": 95.625, - "top": 39.909736, - "right": 97.03125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 97, - "left": 97.03125, - "top": 39.909736, - "right": 98.4375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 97, - "left": 98.4375, - "top": 39.909736, - "right": 99.84375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 97, - "left": 99.84375, - "top": 39.909736, - "right": 101.25, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 97, - "left": 101.25, - "top": 39.909736, - "right": 102.65625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 97, - "left": 102.65625, - "top": 39.909736, - "right": 104.0625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 97, - "left": 104.0625, - "top": 39.909736, - "right": 105.46875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 97, - "left": 105.46875, - "top": 39.909736, - "right": 106.875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 97, - "left": 106.875, - "top": 39.909736, - "right": 108.28125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 97, - "left": 108.28125, - "top": 39.909736, - "right": 109.6875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 97, - "left": 109.6875, - "top": 39.909736, - "right": 111.09375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 97, - "left": 111.09375, - "top": 39.909736, - "right": 112.5, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 97, - "left": 112.5, - "top": 39.909736, - "right": 113.90625, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 97, - "left": 113.90625, - "top": 39.909736, - "right": 115.3125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 97, - "left": 115.3125, - "top": 39.909736, - "right": 116.71875, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 97, - "left": 116.71875, - "top": 39.909736, - "right": 118.125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 97, - "left": 118.125, - "top": 39.909736, - "right": 119.53125, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 97, - "left": 119.53125, - "top": 39.909736, - "right": 120.9375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 97, - "left": 120.9375, - "top": 39.909736, - "right": 122.34375, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 97, - "left": 122.34375, - "top": 39.909736, - "right": 123.75, - "bottom": 38.822591, - "countries": [ - "china" - ] - }, - { - "x": 216, - "y": 97, - "left": 123.75, - "top": 39.909736, - "right": 125.15625, - "bottom": 38.822591, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 180, - "y": 98, - "left": 73.125, - "top": 38.822591, - "right": 74.53125, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "china" - ] - }, - { - "x": 181, - "y": 98, - "left": 74.53125, - "top": 38.822591, - "right": 75.9375, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "china" - ] - }, - { - "x": 182, - "y": 98, - "left": 75.9375, - "top": 38.822591, - "right": 77.34375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 98, - "left": 77.34375, - "top": 38.822591, - "right": 78.75, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 184, - "y": 98, - "left": 78.75, - "top": 38.822591, - "right": 80.15625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 185, - "y": 98, - "left": 80.15625, - "top": 38.822591, - "right": 81.5625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 98, - "left": 81.5625, - "top": 38.822591, - "right": 82.96875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 98, - "left": 82.96875, - "top": 38.822591, - "right": 84.375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 98, - "left": 84.375, - "top": 38.822591, - "right": 85.78125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 98, - "left": 85.78125, - "top": 38.822591, - "right": 87.1875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 98, - "left": 87.1875, - "top": 38.822591, - "right": 88.59375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 98, - "left": 88.59375, - "top": 38.822591, - "right": 90.0, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 98, - "left": 90.0, - "top": 38.822591, - "right": 91.40625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 98, - "left": 91.40625, - "top": 38.822591, - "right": 92.8125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 98, - "left": 92.8125, - "top": 38.822591, - "right": 94.21875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 98, - "left": 94.21875, - "top": 38.822591, - "right": 95.625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 98, - "left": 95.625, - "top": 38.822591, - "right": 97.03125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 98, - "left": 97.03125, - "top": 38.822591, - "right": 98.4375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 98, - "left": 98.4375, - "top": 38.822591, - "right": 99.84375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 98, - "left": 99.84375, - "top": 38.822591, - "right": 101.25, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 98, - "left": 101.25, - "top": 38.822591, - "right": 102.65625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 98, - "left": 102.65625, - "top": 38.822591, - "right": 104.0625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 98, - "left": 104.0625, - "top": 38.822591, - "right": 105.46875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 98, - "left": 105.46875, - "top": 38.822591, - "right": 106.875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 98, - "left": 106.875, - "top": 38.822591, - "right": 108.28125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 98, - "left": 108.28125, - "top": 38.822591, - "right": 109.6875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 98, - "left": 109.6875, - "top": 38.822591, - "right": 111.09375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 98, - "left": 111.09375, - "top": 38.822591, - "right": 112.5, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 98, - "left": 112.5, - "top": 38.822591, - "right": 113.90625, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 98, - "left": 113.90625, - "top": 38.822591, - "right": 115.3125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 98, - "left": 115.3125, - "top": 38.822591, - "right": 116.71875, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 98, - "left": 116.71875, - "top": 38.822591, - "right": 118.125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 98, - "left": 118.125, - "top": 38.822591, - "right": 119.53125, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 98, - "left": 119.53125, - "top": 38.822591, - "right": 120.9375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 98, - "left": 120.9375, - "top": 38.822591, - "right": 122.34375, - "bottom": 37.71859, - "countries": [ - "china" - ] - }, - { - "x": 182, - "y": 99, - "left": 75.9375, - "top": 37.71859, - "right": 77.34375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 99, - "left": 77.34375, - "top": 37.71859, - "right": 78.75, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 184, - "y": 99, - "left": 78.75, - "top": 37.71859, - "right": 80.15625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 185, - "y": 99, - "left": 80.15625, - "top": 37.71859, - "right": 81.5625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 99, - "left": 81.5625, - "top": 37.71859, - "right": 82.96875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 99, - "left": 82.96875, - "top": 37.71859, - "right": 84.375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 99, - "left": 84.375, - "top": 37.71859, - "right": 85.78125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 99, - "left": 85.78125, - "top": 37.71859, - "right": 87.1875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 99, - "left": 87.1875, - "top": 37.71859, - "right": 88.59375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 99, - "left": 88.59375, - "top": 37.71859, - "right": 90.0, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 99, - "left": 90.0, - "top": 37.71859, - "right": 91.40625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 99, - "left": 91.40625, - "top": 37.71859, - "right": 92.8125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 99, - "left": 92.8125, - "top": 37.71859, - "right": 94.21875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 99, - "left": 94.21875, - "top": 37.71859, - "right": 95.625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 99, - "left": 95.625, - "top": 37.71859, - "right": 97.03125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 99, - "left": 97.03125, - "top": 37.71859, - "right": 98.4375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 99, - "left": 98.4375, - "top": 37.71859, - "right": 99.84375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 99, - "left": 99.84375, - "top": 37.71859, - "right": 101.25, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 99, - "left": 101.25, - "top": 37.71859, - "right": 102.65625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 99, - "left": 102.65625, - "top": 37.71859, - "right": 104.0625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 99, - "left": 104.0625, - "top": 37.71859, - "right": 105.46875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 99, - "left": 105.46875, - "top": 37.71859, - "right": 106.875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 99, - "left": 106.875, - "top": 37.71859, - "right": 108.28125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 99, - "left": 108.28125, - "top": 37.71859, - "right": 109.6875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 99, - "left": 109.6875, - "top": 37.71859, - "right": 111.09375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 99, - "left": 111.09375, - "top": 37.71859, - "right": 112.5, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 99, - "left": 112.5, - "top": 37.71859, - "right": 113.90625, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 99, - "left": 113.90625, - "top": 37.71859, - "right": 115.3125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 99, - "left": 115.3125, - "top": 37.71859, - "right": 116.71875, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 99, - "left": 116.71875, - "top": 37.71859, - "right": 118.125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 99, - "left": 118.125, - "top": 37.71859, - "right": 119.53125, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 99, - "left": 119.53125, - "top": 37.71859, - "right": 120.9375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 99, - "left": 120.9375, - "top": 37.71859, - "right": 122.34375, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 99, - "left": 122.34375, - "top": 37.71859, - "right": 123.75, - "bottom": 36.597889, - "countries": [ - "china" - ] - }, - { - "x": 181, - "y": 100, - "left": 74.53125, - "top": 36.597889, - "right": 75.9375, - "bottom": 35.46067, - "countries": [ - "china", - "pakistan" - ] - }, - { - "x": 182, - "y": 100, - "left": 75.9375, - "top": 36.597889, - "right": 77.34375, - "bottom": 35.46067, - "countries": [ - "china", - "pakistan" - ] - }, - { - "x": 183, - "y": 100, - "left": 77.34375, - "top": 36.597889, - "right": 78.75, - "bottom": 35.46067, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 184, - "y": 100, - "left": 78.75, - "top": 36.597889, - "right": 80.15625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 185, - "y": 100, - "left": 80.15625, - "top": 36.597889, - "right": 81.5625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 100, - "left": 81.5625, - "top": 36.597889, - "right": 82.96875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 100, - "left": 82.96875, - "top": 36.597889, - "right": 84.375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 100, - "left": 84.375, - "top": 36.597889, - "right": 85.78125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 100, - "left": 85.78125, - "top": 36.597889, - "right": 87.1875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 100, - "left": 87.1875, - "top": 36.597889, - "right": 88.59375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 100, - "left": 88.59375, - "top": 36.597889, - "right": 90.0, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 100, - "left": 90.0, - "top": 36.597889, - "right": 91.40625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 100, - "left": 91.40625, - "top": 36.597889, - "right": 92.8125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 100, - "left": 92.8125, - "top": 36.597889, - "right": 94.21875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 100, - "left": 94.21875, - "top": 36.597889, - "right": 95.625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 100, - "left": 95.625, - "top": 36.597889, - "right": 97.03125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 100, - "left": 97.03125, - "top": 36.597889, - "right": 98.4375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 100, - "left": 98.4375, - "top": 36.597889, - "right": 99.84375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 100, - "left": 99.84375, - "top": 36.597889, - "right": 101.25, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 100, - "left": 101.25, - "top": 36.597889, - "right": 102.65625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 100, - "left": 102.65625, - "top": 36.597889, - "right": 104.0625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 100, - "left": 104.0625, - "top": 36.597889, - "right": 105.46875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 100, - "left": 105.46875, - "top": 36.597889, - "right": 106.875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 100, - "left": 106.875, - "top": 36.597889, - "right": 108.28125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 100, - "left": 108.28125, - "top": 36.597889, - "right": 109.6875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 100, - "left": 109.6875, - "top": 36.597889, - "right": 111.09375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 100, - "left": 111.09375, - "top": 36.597889, - "right": 112.5, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 100, - "left": 112.5, - "top": 36.597889, - "right": 113.90625, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 100, - "left": 113.90625, - "top": 36.597889, - "right": 115.3125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 100, - "left": 115.3125, - "top": 36.597889, - "right": 116.71875, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 100, - "left": 116.71875, - "top": 36.597889, - "right": 118.125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 100, - "left": 118.125, - "top": 36.597889, - "right": 119.53125, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 100, - "left": 119.53125, - "top": 36.597889, - "right": 120.9375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 100, - "left": 120.9375, - "top": 36.597889, - "right": 122.34375, - "bottom": 35.46067, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 101, - "left": 77.34375, - "top": 35.46067, - "right": 78.75, - "bottom": 34.307144, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 184, - "y": 101, - "left": 78.75, - "top": 35.46067, - "right": 80.15625, - "bottom": 34.307144, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 101, - "left": 80.15625, - "top": 35.46067, - "right": 81.5625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 101, - "left": 81.5625, - "top": 35.46067, - "right": 82.96875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 101, - "left": 82.96875, - "top": 35.46067, - "right": 84.375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 101, - "left": 84.375, - "top": 35.46067, - "right": 85.78125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 101, - "left": 85.78125, - "top": 35.46067, - "right": 87.1875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 101, - "left": 87.1875, - "top": 35.46067, - "right": 88.59375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 101, - "left": 88.59375, - "top": 35.46067, - "right": 90.0, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 101, - "left": 90.0, - "top": 35.46067, - "right": 91.40625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 101, - "left": 91.40625, - "top": 35.46067, - "right": 92.8125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 101, - "left": 92.8125, - "top": 35.46067, - "right": 94.21875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 101, - "left": 94.21875, - "top": 35.46067, - "right": 95.625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 101, - "left": 95.625, - "top": 35.46067, - "right": 97.03125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 101, - "left": 97.03125, - "top": 35.46067, - "right": 98.4375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 101, - "left": 98.4375, - "top": 35.46067, - "right": 99.84375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 101, - "left": 99.84375, - "top": 35.46067, - "right": 101.25, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 101, - "left": 101.25, - "top": 35.46067, - "right": 102.65625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 101, - "left": 102.65625, - "top": 35.46067, - "right": 104.0625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 101, - "left": 104.0625, - "top": 35.46067, - "right": 105.46875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 101, - "left": 105.46875, - "top": 35.46067, - "right": 106.875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 101, - "left": 106.875, - "top": 35.46067, - "right": 108.28125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 101, - "left": 108.28125, - "top": 35.46067, - "right": 109.6875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 101, - "left": 109.6875, - "top": 35.46067, - "right": 111.09375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 101, - "left": 111.09375, - "top": 35.46067, - "right": 112.5, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 101, - "left": 112.5, - "top": 35.46067, - "right": 113.90625, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 101, - "left": 113.90625, - "top": 35.46067, - "right": 115.3125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 101, - "left": 115.3125, - "top": 35.46067, - "right": 116.71875, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 101, - "left": 116.71875, - "top": 35.46067, - "right": 118.125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 101, - "left": 118.125, - "top": 35.46067, - "right": 119.53125, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 101, - "left": 119.53125, - "top": 35.46067, - "right": 120.9375, - "bottom": 34.307144, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 102, - "left": 77.34375, - "top": 34.307144, - "right": 78.75, - "bottom": 33.137551, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 102, - "left": 78.75, - "top": 34.307144, - "right": 80.15625, - "bottom": 33.137551, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 102, - "left": 80.15625, - "top": 34.307144, - "right": 81.5625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 102, - "left": 81.5625, - "top": 34.307144, - "right": 82.96875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 102, - "left": 82.96875, - "top": 34.307144, - "right": 84.375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 102, - "left": 84.375, - "top": 34.307144, - "right": 85.78125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 102, - "left": 85.78125, - "top": 34.307144, - "right": 87.1875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 102, - "left": 87.1875, - "top": 34.307144, - "right": 88.59375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 102, - "left": 88.59375, - "top": 34.307144, - "right": 90.0, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 102, - "left": 90.0, - "top": 34.307144, - "right": 91.40625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 102, - "left": 91.40625, - "top": 34.307144, - "right": 92.8125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 102, - "left": 92.8125, - "top": 34.307144, - "right": 94.21875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 102, - "left": 94.21875, - "top": 34.307144, - "right": 95.625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 102, - "left": 95.625, - "top": 34.307144, - "right": 97.03125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 102, - "left": 97.03125, - "top": 34.307144, - "right": 98.4375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 102, - "left": 98.4375, - "top": 34.307144, - "right": 99.84375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 102, - "left": 99.84375, - "top": 34.307144, - "right": 101.25, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 102, - "left": 101.25, - "top": 34.307144, - "right": 102.65625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 102, - "left": 102.65625, - "top": 34.307144, - "right": 104.0625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 102, - "left": 104.0625, - "top": 34.307144, - "right": 105.46875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 102, - "left": 105.46875, - "top": 34.307144, - "right": 106.875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 102, - "left": 106.875, - "top": 34.307144, - "right": 108.28125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 102, - "left": 108.28125, - "top": 34.307144, - "right": 109.6875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 102, - "left": 109.6875, - "top": 34.307144, - "right": 111.09375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 102, - "left": 111.09375, - "top": 34.307144, - "right": 112.5, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 102, - "left": 112.5, - "top": 34.307144, - "right": 113.90625, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 102, - "left": 113.90625, - "top": 34.307144, - "right": 115.3125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 102, - "left": 115.3125, - "top": 34.307144, - "right": 116.71875, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 102, - "left": 116.71875, - "top": 34.307144, - "right": 118.125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 102, - "left": 118.125, - "top": 34.307144, - "right": 119.53125, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 102, - "left": 119.53125, - "top": 34.307144, - "right": 120.9375, - "bottom": 33.137551, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 103, - "left": 77.34375, - "top": 33.137551, - "right": 78.75, - "bottom": 31.952162, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 103, - "left": 78.75, - "top": 33.137551, - "right": 80.15625, - "bottom": 31.952162, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 103, - "left": 80.15625, - "top": 33.137551, - "right": 81.5625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 103, - "left": 81.5625, - "top": 33.137551, - "right": 82.96875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 103, - "left": 82.96875, - "top": 33.137551, - "right": 84.375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 103, - "left": 84.375, - "top": 33.137551, - "right": 85.78125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 103, - "left": 85.78125, - "top": 33.137551, - "right": 87.1875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 103, - "left": 87.1875, - "top": 33.137551, - "right": 88.59375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 103, - "left": 88.59375, - "top": 33.137551, - "right": 90.0, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 103, - "left": 90.0, - "top": 33.137551, - "right": 91.40625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 103, - "left": 91.40625, - "top": 33.137551, - "right": 92.8125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 103, - "left": 92.8125, - "top": 33.137551, - "right": 94.21875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 103, - "left": 94.21875, - "top": 33.137551, - "right": 95.625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 103, - "left": 95.625, - "top": 33.137551, - "right": 97.03125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 103, - "left": 97.03125, - "top": 33.137551, - "right": 98.4375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 103, - "left": 98.4375, - "top": 33.137551, - "right": 99.84375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 103, - "left": 99.84375, - "top": 33.137551, - "right": 101.25, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 103, - "left": 101.25, - "top": 33.137551, - "right": 102.65625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 103, - "left": 102.65625, - "top": 33.137551, - "right": 104.0625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 103, - "left": 104.0625, - "top": 33.137551, - "right": 105.46875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 103, - "left": 105.46875, - "top": 33.137551, - "right": 106.875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 103, - "left": 106.875, - "top": 33.137551, - "right": 108.28125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 103, - "left": 108.28125, - "top": 33.137551, - "right": 109.6875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 103, - "left": 109.6875, - "top": 33.137551, - "right": 111.09375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 103, - "left": 111.09375, - "top": 33.137551, - "right": 112.5, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 103, - "left": 112.5, - "top": 33.137551, - "right": 113.90625, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 103, - "left": 113.90625, - "top": 33.137551, - "right": 115.3125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 103, - "left": 115.3125, - "top": 33.137551, - "right": 116.71875, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 103, - "left": 116.71875, - "top": 33.137551, - "right": 118.125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 103, - "left": 118.125, - "top": 33.137551, - "right": 119.53125, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 103, - "left": 119.53125, - "top": 33.137551, - "right": 120.9375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 103, - "left": 120.9375, - "top": 33.137551, - "right": 122.34375, - "bottom": 31.952162, - "countries": [ - "china" - ] - }, - { - "x": 183, - "y": 104, - "left": 77.34375, - "top": 31.952162, - "right": 78.75, - "bottom": 30.751278, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 104, - "left": 78.75, - "top": 31.952162, - "right": 80.15625, - "bottom": 30.751278, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 104, - "left": 80.15625, - "top": 31.952162, - "right": 81.5625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 186, - "y": 104, - "left": 81.5625, - "top": 31.952162, - "right": 82.96875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 104, - "left": 82.96875, - "top": 31.952162, - "right": 84.375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 104, - "left": 84.375, - "top": 31.952162, - "right": 85.78125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 104, - "left": 85.78125, - "top": 31.952162, - "right": 87.1875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 104, - "left": 87.1875, - "top": 31.952162, - "right": 88.59375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 104, - "left": 88.59375, - "top": 31.952162, - "right": 90.0, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 104, - "left": 90.0, - "top": 31.952162, - "right": 91.40625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 104, - "left": 91.40625, - "top": 31.952162, - "right": 92.8125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 104, - "left": 92.8125, - "top": 31.952162, - "right": 94.21875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 104, - "left": 94.21875, - "top": 31.952162, - "right": 95.625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 104, - "left": 95.625, - "top": 31.952162, - "right": 97.03125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 104, - "left": 97.03125, - "top": 31.952162, - "right": 98.4375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 104, - "left": 98.4375, - "top": 31.952162, - "right": 99.84375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 104, - "left": 99.84375, - "top": 31.952162, - "right": 101.25, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 104, - "left": 101.25, - "top": 31.952162, - "right": 102.65625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 104, - "left": 102.65625, - "top": 31.952162, - "right": 104.0625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 104, - "left": 104.0625, - "top": 31.952162, - "right": 105.46875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 104, - "left": 105.46875, - "top": 31.952162, - "right": 106.875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 104, - "left": 106.875, - "top": 31.952162, - "right": 108.28125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 104, - "left": 108.28125, - "top": 31.952162, - "right": 109.6875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 104, - "left": 109.6875, - "top": 31.952162, - "right": 111.09375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 104, - "left": 111.09375, - "top": 31.952162, - "right": 112.5, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 104, - "left": 112.5, - "top": 31.952162, - "right": 113.90625, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 104, - "left": 113.90625, - "top": 31.952162, - "right": 115.3125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 104, - "left": 115.3125, - "top": 31.952162, - "right": 116.71875, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 104, - "left": 116.71875, - "top": 31.952162, - "right": 118.125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 104, - "left": 118.125, - "top": 31.952162, - "right": 119.53125, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 104, - "left": 119.53125, - "top": 31.952162, - "right": 120.9375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 104, - "left": 120.9375, - "top": 31.952162, - "right": 122.34375, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 104, - "left": 122.34375, - "top": 31.952162, - "right": 123.75, - "bottom": 30.751278, - "countries": [ - "china" - ] - }, - { - "x": 184, - "y": 105, - "left": 78.75, - "top": 30.751278, - "right": 80.15625, - "bottom": 29.53523, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 105, - "left": 80.15625, - "top": 30.751278, - "right": 81.5625, - "bottom": 29.53523, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 186, - "y": 105, - "left": 81.5625, - "top": 30.751278, - "right": 82.96875, - "bottom": 29.53523, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 187, - "y": 105, - "left": 82.96875, - "top": 30.751278, - "right": 84.375, - "bottom": 29.53523, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 188, - "y": 105, - "left": 84.375, - "top": 30.751278, - "right": 85.78125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 189, - "y": 105, - "left": 85.78125, - "top": 30.751278, - "right": 87.1875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 105, - "left": 87.1875, - "top": 30.751278, - "right": 88.59375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 191, - "y": 105, - "left": 88.59375, - "top": 30.751278, - "right": 90.0, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 192, - "y": 105, - "left": 90.0, - "top": 30.751278, - "right": 91.40625, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 105, - "left": 91.40625, - "top": 30.751278, - "right": 92.8125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 105, - "left": 92.8125, - "top": 30.751278, - "right": 94.21875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 195, - "y": 105, - "left": 94.21875, - "top": 30.751278, - "right": 95.625, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 196, - "y": 105, - "left": 95.625, - "top": 30.751278, - "right": 97.03125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 197, - "y": 105, - "left": 97.03125, - "top": 30.751278, - "right": 98.4375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 105, - "left": 98.4375, - "top": 30.751278, - "right": 99.84375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 105, - "left": 99.84375, - "top": 30.751278, - "right": 101.25, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 105, - "left": 101.25, - "top": 30.751278, - "right": 102.65625, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 105, - "left": 102.65625, - "top": 30.751278, - "right": 104.0625, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 105, - "left": 104.0625, - "top": 30.751278, - "right": 105.46875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 105, - "left": 105.46875, - "top": 30.751278, - "right": 106.875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 105, - "left": 106.875, - "top": 30.751278, - "right": 108.28125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 105, - "left": 108.28125, - "top": 30.751278, - "right": 109.6875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 105, - "left": 109.6875, - "top": 30.751278, - "right": 111.09375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 105, - "left": 111.09375, - "top": 30.751278, - "right": 112.5, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 105, - "left": 112.5, - "top": 30.751278, - "right": 113.90625, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 105, - "left": 113.90625, - "top": 30.751278, - "right": 115.3125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 105, - "left": 115.3125, - "top": 30.751278, - "right": 116.71875, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 105, - "left": 116.71875, - "top": 30.751278, - "right": 118.125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 105, - "left": 118.125, - "top": 30.751278, - "right": 119.53125, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 105, - "left": 119.53125, - "top": 30.751278, - "right": 120.9375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 105, - "left": 120.9375, - "top": 30.751278, - "right": 122.34375, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 215, - "y": 105, - "left": 122.34375, - "top": 30.751278, - "right": 123.75, - "bottom": 29.53523, - "countries": [ - "china" - ] - }, - { - "x": 187, - "y": 106, - "left": 82.96875, - "top": 29.53523, - "right": 84.375, - "bottom": 28.304381, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 188, - "y": 106, - "left": 84.375, - "top": 29.53523, - "right": 85.78125, - "bottom": 28.304381, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 189, - "y": 106, - "left": 85.78125, - "top": 29.53523, - "right": 87.1875, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 190, - "y": 106, - "left": 87.1875, - "top": 29.53523, - "right": 88.59375, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 193, - "y": 106, - "left": 91.40625, - "top": 29.53523, - "right": 92.8125, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 194, - "y": 106, - "left": 92.8125, - "top": 29.53523, - "right": 94.21875, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 195, - "y": 106, - "left": 94.21875, - "top": 29.53523, - "right": 95.625, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 196, - "y": 106, - "left": 95.625, - "top": 29.53523, - "right": 97.03125, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 197, - "y": 106, - "left": 97.03125, - "top": 29.53523, - "right": 98.4375, - "bottom": 28.304381, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 198, - "y": 106, - "left": 98.4375, - "top": 29.53523, - "right": 99.84375, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 106, - "left": 99.84375, - "top": 29.53523, - "right": 101.25, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 106, - "left": 101.25, - "top": 29.53523, - "right": 102.65625, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 106, - "left": 102.65625, - "top": 29.53523, - "right": 104.0625, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 106, - "left": 104.0625, - "top": 29.53523, - "right": 105.46875, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 106, - "left": 105.46875, - "top": 29.53523, - "right": 106.875, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 106, - "left": 106.875, - "top": 29.53523, - "right": 108.28125, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 106, - "left": 108.28125, - "top": 29.53523, - "right": 109.6875, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 106, - "left": 109.6875, - "top": 29.53523, - "right": 111.09375, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 106, - "left": 111.09375, - "top": 29.53523, - "right": 112.5, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 106, - "left": 112.5, - "top": 29.53523, - "right": 113.90625, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 106, - "left": 113.90625, - "top": 29.53523, - "right": 115.3125, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 106, - "left": 115.3125, - "top": 29.53523, - "right": 116.71875, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 106, - "left": 116.71875, - "top": 29.53523, - "right": 118.125, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 106, - "left": 118.125, - "top": 29.53523, - "right": 119.53125, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 106, - "left": 119.53125, - "top": 29.53523, - "right": 120.9375, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 106, - "left": 120.9375, - "top": 29.53523, - "right": 122.34375, - "bottom": 28.304381, - "countries": [ - "china" - ] - }, - { - "x": 188, - "y": 107, - "left": 84.375, - "top": 28.304381, - "right": 85.78125, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 189, - "y": 107, - "left": 85.78125, - "top": 28.304381, - "right": 87.1875, - "bottom": 27.059126, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 190, - "y": 107, - "left": 87.1875, - "top": 28.304381, - "right": 88.59375, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 194, - "y": 107, - "left": 92.8125, - "top": 28.304381, - "right": 94.21875, - "bottom": 27.059126, - "countries": [ - "china", - "india" - ] - }, - { - "x": 197, - "y": 107, - "left": 97.03125, - "top": 28.304381, - "right": 98.4375, - "bottom": 27.059126, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 198, - "y": 107, - "left": 98.4375, - "top": 28.304381, - "right": 99.84375, - "bottom": 27.059126, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 107, - "left": 99.84375, - "top": 28.304381, - "right": 101.25, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 107, - "left": 101.25, - "top": 28.304381, - "right": 102.65625, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 107, - "left": 102.65625, - "top": 28.304381, - "right": 104.0625, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 107, - "left": 104.0625, - "top": 28.304381, - "right": 105.46875, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 107, - "left": 105.46875, - "top": 28.304381, - "right": 106.875, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 107, - "left": 106.875, - "top": 28.304381, - "right": 108.28125, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 107, - "left": 108.28125, - "top": 28.304381, - "right": 109.6875, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 107, - "left": 109.6875, - "top": 28.304381, - "right": 111.09375, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 107, - "left": 111.09375, - "top": 28.304381, - "right": 112.5, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 107, - "left": 112.5, - "top": 28.304381, - "right": 113.90625, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 107, - "left": 113.90625, - "top": 28.304381, - "right": 115.3125, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 107, - "left": 115.3125, - "top": 28.304381, - "right": 116.71875, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 107, - "left": 116.71875, - "top": 28.304381, - "right": 118.125, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 107, - "left": 118.125, - "top": 28.304381, - "right": 119.53125, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 107, - "left": 119.53125, - "top": 28.304381, - "right": 120.9375, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 214, - "y": 107, - "left": 120.9375, - "top": 28.304381, - "right": 122.34375, - "bottom": 27.059126, - "countries": [ - "china" - ] - }, - { - "x": 198, - "y": 108, - "left": 98.4375, - "top": 27.059126, - "right": 99.84375, - "bottom": 25.799891, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 108, - "left": 99.84375, - "top": 27.059126, - "right": 101.25, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 108, - "left": 101.25, - "top": 27.059126, - "right": 102.65625, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 108, - "left": 102.65625, - "top": 27.059126, - "right": 104.0625, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 108, - "left": 104.0625, - "top": 27.059126, - "right": 105.46875, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 108, - "left": 105.46875, - "top": 27.059126, - "right": 106.875, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 108, - "left": 106.875, - "top": 27.059126, - "right": 108.28125, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 108, - "left": 108.28125, - "top": 27.059126, - "right": 109.6875, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 108, - "left": 109.6875, - "top": 27.059126, - "right": 111.09375, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 108, - "left": 111.09375, - "top": 27.059126, - "right": 112.5, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 108, - "left": 112.5, - "top": 27.059126, - "right": 113.90625, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 108, - "left": 113.90625, - "top": 27.059126, - "right": 115.3125, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 108, - "left": 115.3125, - "top": 27.059126, - "right": 116.71875, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 108, - "left": 116.71875, - "top": 27.059126, - "right": 118.125, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 108, - "left": 118.125, - "top": 27.059126, - "right": 119.53125, - "bottom": 25.799891, - "countries": [ - "china" - ] - }, - { - "x": 213, - "y": 108, - "left": 119.53125, - "top": 27.059126, - "right": 120.9375, - "bottom": 25.799891, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 197, - "y": 109, - "left": 97.03125, - "top": 25.799891, - "right": 98.4375, - "bottom": 24.527135, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 109, - "left": 98.4375, - "top": 25.799891, - "right": 99.84375, - "bottom": 24.527135, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 109, - "left": 99.84375, - "top": 25.799891, - "right": 101.25, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 109, - "left": 101.25, - "top": 25.799891, - "right": 102.65625, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 109, - "left": 102.65625, - "top": 25.799891, - "right": 104.0625, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 109, - "left": 104.0625, - "top": 25.799891, - "right": 105.46875, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 203, - "y": 109, - "left": 105.46875, - "top": 25.799891, - "right": 106.875, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 204, - "y": 109, - "left": 106.875, - "top": 25.799891, - "right": 108.28125, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 109, - "left": 108.28125, - "top": 25.799891, - "right": 109.6875, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 109, - "left": 109.6875, - "top": 25.799891, - "right": 111.09375, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 109, - "left": 111.09375, - "top": 25.799891, - "right": 112.5, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 109, - "left": 112.5, - "top": 25.799891, - "right": 113.90625, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 109, - "left": 113.90625, - "top": 25.799891, - "right": 115.3125, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 109, - "left": 115.3125, - "top": 25.799891, - "right": 116.71875, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 109, - "left": 116.71875, - "top": 25.799891, - "right": 118.125, - "bottom": 24.527135, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 109, - "left": 118.125, - "top": 25.799891, - "right": 119.53125, - "bottom": 24.527135, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 213, - "y": 109, - "left": 119.53125, - "top": 25.799891, - "right": 120.9375, - "bottom": 24.527135, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 197, - "y": 110, - "left": 97.03125, - "top": 24.527135, - "right": 98.4375, - "bottom": 23.241346, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 110, - "left": 98.4375, - "top": 24.527135, - "right": 99.84375, - "bottom": 23.241346, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 110, - "left": 99.84375, - "top": 24.527135, - "right": 101.25, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 200, - "y": 110, - "left": 101.25, - "top": 24.527135, - "right": 102.65625, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 201, - "y": 110, - "left": 102.65625, - "top": 24.527135, - "right": 104.0625, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 202, - "y": 110, - "left": 104.0625, - "top": 24.527135, - "right": 105.46875, - "bottom": 23.241346, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 203, - "y": 110, - "left": 105.46875, - "top": 24.527135, - "right": 106.875, - "bottom": 23.241346, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 204, - "y": 110, - "left": 106.875, - "top": 24.527135, - "right": 108.28125, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 110, - "left": 108.28125, - "top": 24.527135, - "right": 109.6875, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 110, - "left": 109.6875, - "top": 24.527135, - "right": 111.09375, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 110, - "left": 111.09375, - "top": 24.527135, - "right": 112.5, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 110, - "left": 112.5, - "top": 24.527135, - "right": 113.90625, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 110, - "left": 113.90625, - "top": 24.527135, - "right": 115.3125, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 210, - "y": 110, - "left": 115.3125, - "top": 24.527135, - "right": 116.71875, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 110, - "left": 116.71875, - "top": 24.527135, - "right": 118.125, - "bottom": 23.241346, - "countries": [ - "china" - ] - }, - { - "x": 212, - "y": 110, - "left": 118.125, - "top": 24.527135, - "right": 119.53125, - "bottom": 23.241346, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 198, - "y": 111, - "left": 98.4375, - "top": 23.241346, - "right": 99.84375, - "bottom": 21.943046, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 111, - "left": 99.84375, - "top": 23.241346, - "right": 101.25, - "bottom": 21.943046, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 200, - "y": 111, - "left": 101.25, - "top": 23.241346, - "right": 102.65625, - "bottom": 21.943046, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 201, - "y": 111, - "left": 102.65625, - "top": 23.241346, - "right": 104.0625, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 202, - "y": 111, - "left": 104.0625, - "top": 23.241346, - "right": 105.46875, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 203, - "y": 111, - "left": 105.46875, - "top": 23.241346, - "right": 106.875, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 204, - "y": 111, - "left": 106.875, - "top": 23.241346, - "right": 108.28125, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 205, - "y": 111, - "left": 108.28125, - "top": 23.241346, - "right": 109.6875, - "bottom": 21.943046, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 111, - "left": 109.6875, - "top": 23.241346, - "right": 111.09375, - "bottom": 21.943046, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 111, - "left": 111.09375, - "top": 23.241346, - "right": 112.5, - "bottom": 21.943046, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 111, - "left": 112.5, - "top": 23.241346, - "right": 113.90625, - "bottom": 21.943046, - "countries": [ - "hong_kong", - "macao", - "china" - ] - }, - { - "x": 209, - "y": 111, - "left": 113.90625, - "top": 23.241346, - "right": 115.3125, - "bottom": 21.943046, - "countries": [ - "hong_kong", - "china" - ] - }, - { - "x": 210, - "y": 111, - "left": 115.3125, - "top": 23.241346, - "right": 116.71875, - "bottom": 21.943046, - "countries": [ - "china" - ] - }, - { - "x": 211, - "y": 111, - "left": 116.71875, - "top": 23.241346, - "right": 118.125, - "bottom": 21.943046, - "countries": [ - "china" - ] - }, - { - "x": 199, - "y": 112, - "left": 99.84375, - "top": 21.943046, - "right": 101.25, - "bottom": 20.632784, - "countries": [ - "myanmar", - "laos", - "china" - ] - }, - { - "x": 200, - "y": 112, - "left": 101.25, - "top": 21.943046, - "right": 102.65625, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 204, - "y": 112, - "left": 106.875, - "top": 21.943046, - "right": 108.28125, - "bottom": 20.632784, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 205, - "y": 112, - "left": 108.28125, - "top": 21.943046, - "right": 109.6875, - "bottom": 20.632784, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 112, - "left": 109.6875, - "top": 21.943046, - "right": 111.09375, - "bottom": 20.632784, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 112, - "left": 111.09375, - "top": 21.943046, - "right": 112.5, - "bottom": 20.632784, - "countries": [ - "china" - ] - }, - { - "x": 208, - "y": 112, - "left": 112.5, - "top": 21.943046, - "right": 113.90625, - "bottom": 20.632784, - "countries": [ - "china" - ] - }, - { - "x": 209, - "y": 112, - "left": 113.90625, - "top": 21.943046, - "right": 115.3125, - "bottom": 20.632784, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 113, - "left": 108.28125, - "top": 20.632784, - "right": 109.6875, - "bottom": 19.311143, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 113, - "left": 109.6875, - "top": 20.632784, - "right": 111.09375, - "bottom": 19.311143, - "countries": [ - "china" - ] - }, - { - "x": 207, - "y": 113, - "left": 111.09375, - "top": 20.632784, - "right": 112.5, - "bottom": 19.311143, - "countries": [ - "china" - ] - }, - { - "x": 205, - "y": 114, - "left": 108.28125, - "top": 19.311143, - "right": 109.6875, - "bottom": 17.978733, - "countries": [ - "china" - ] - }, - { - "x": 206, - "y": 114, - "left": 109.6875, - "top": 19.311143, - "right": 111.09375, - "bottom": 17.978733, - "countries": [ - "china" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/christmas_island.json b/wahoomc/resources/json/asia/christmas_island.json deleted file mode 100644 index 7271f282..00000000 --- a/wahoomc/resources/json/asia/christmas_island.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 203, - "y": 135, - "left": 105.46875, - "top": -9.795678, - "right": 106.875, - "bottom": -11.178402, - "countries": [ - "christmas_island" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/cocos_islands.json b/wahoomc/resources/json/asia/cocos_islands.json deleted file mode 100644 index a4716c9e..00000000 --- a/wahoomc/resources/json/asia/cocos_islands.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 196, - "y": 136, - "left": 95.625, - "top": -11.178402, - "right": 97.03125, - "bottom": -12.554564, - "countries": [ - "cocos_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/cyprus.json b/wahoomc/resources/json/asia/cyprus.json deleted file mode 100644 index d2951bb8..00000000 --- a/wahoomc/resources/json/asia/cyprus.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "x": 152, - "y": 100, - "left": 33.75, - "top": 36.597889, - "right": 35.15625, - "bottom": 35.46067, - "countries": [ - "turkey", - "cyprus" - ] - }, - { - "x": 150, - "y": 101, - "left": 30.9375, - "top": 35.46067, - "right": 32.34375, - "bottom": 34.307144, - "countries": [ - "cyprus" - ] - }, - { - "x": 151, - "y": 101, - "left": 32.34375, - "top": 35.46067, - "right": 33.75, - "bottom": 34.307144, - "countries": [ - "cyprus" - ] - }, - { - "x": 152, - "y": 101, - "left": 33.75, - "top": 35.46067, - "right": 35.15625, - "bottom": 34.307144, - "countries": [ - "cyprus" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/east_timor.json b/wahoomc/resources/json/asia/east_timor.json deleted file mode 100644 index 2b4326cc..00000000 --- a/wahoomc/resources/json/asia/east_timor.json +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "x": 217, - "y": 133, - "left": 125.15625, - "top": -7.013668, - "right": 126.5625, - "bottom": -8.407168, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 218, - "y": 133, - "left": 126.5625, - "top": -7.013668, - "right": 127.96875, - "bottom": -8.407168, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 216, - "y": 134, - "left": 123.75, - "top": -8.407168, - "right": 125.15625, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 217, - "y": 134, - "left": 125.15625, - "top": -8.407168, - "right": 126.5625, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 218, - "y": 134, - "left": 126.5625, - "top": -8.407168, - "right": 127.96875, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/hong_kong.json b/wahoomc/resources/json/asia/hong_kong.json deleted file mode 100644 index a5819575..00000000 --- a/wahoomc/resources/json/asia/hong_kong.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "x": 208, - "y": 111, - "left": 112.5, - "top": 23.241346, - "right": 113.90625, - "bottom": 21.943046, - "countries": [ - "hong_kong", - "macao", - "china" - ] - }, - { - "x": 209, - "y": 111, - "left": 113.90625, - "top": 23.241346, - "right": 115.3125, - "bottom": 21.943046, - "countries": [ - "hong_kong", - "china" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/india.json b/wahoomc/resources/json/asia/india.json deleted file mode 100644 index 0e203e6a..00000000 --- a/wahoomc/resources/json/asia/india.json +++ /dev/null @@ -1,2574 +0,0 @@ -[ - { - "x": 190, - "y": 108, - "left": 87.1875, - "top": 27.059126, - "right": 88.59375, - "bottom": 25.799891, - "countries": [ - "nepal", - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 108, - "left": 88.59375, - "top": 27.059126, - "right": 90.0, - "bottom": 25.799891, - "countries": [ - "bhutan", - "bangladesh", - "india" - ] - }, - { - "x": 190, - "y": 109, - "left": 87.1875, - "top": 25.799891, - "right": 88.59375, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 109, - "left": 88.59375, - "top": 25.799891, - "right": 90.0, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 109, - "left": 90.0, - "top": 25.799891, - "right": 91.40625, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 109, - "left": 91.40625, - "top": 25.799891, - "right": 92.8125, - "bottom": 24.527135, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 190, - "y": 110, - "left": 87.1875, - "top": 24.527135, - "right": 88.59375, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 110, - "left": 88.59375, - "top": 24.527135, - "right": 90.0, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 110, - "left": 90.0, - "top": 24.527135, - "right": 91.40625, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 110, - "left": 91.40625, - "top": 24.527135, - "right": 92.8125, - "bottom": 23.241346, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 111, - "left": 88.59375, - "top": 23.241346, - "right": 90.0, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 192, - "y": 111, - "left": 90.0, - "top": 23.241346, - "right": 91.40625, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 193, - "y": 111, - "left": 91.40625, - "top": 23.241346, - "right": 92.8125, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "myanmar", - "india" - ] - }, - { - "x": 191, - "y": 112, - "left": 88.59375, - "top": 21.943046, - "right": 90.0, - "bottom": 20.632784, - "countries": [ - "bangladesh", - "india" - ] - }, - { - "x": 191, - "y": 107, - "left": 88.59375, - "top": 28.304381, - "right": 90.0, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 193, - "y": 107, - "left": 91.40625, - "top": 28.304381, - "right": 92.8125, - "bottom": 27.059126, - "countries": [ - "bhutan", - "china", - "india" - ] - }, - { - "x": 192, - "y": 108, - "left": 90.0, - "top": 27.059126, - "right": 91.40625, - "bottom": 25.799891, - "countries": [ - "bhutan", - "india" - ] - }, - { - "x": 193, - "y": 108, - "left": 91.40625, - "top": 27.059126, - "right": 92.8125, - "bottom": 25.799891, - "countries": [ - "bhutan", - "india" - ] - }, - { - "x": 183, - "y": 100, - "left": 77.34375, - "top": 36.597889, - "right": 78.75, - "bottom": 35.46067, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 183, - "y": 101, - "left": 77.34375, - "top": 35.46067, - "right": 78.75, - "bottom": 34.307144, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 184, - "y": 101, - "left": 78.75, - "top": 35.46067, - "right": 80.15625, - "bottom": 34.307144, - "countries": [ - "china", - "india" - ] - }, - { - "x": 183, - "y": 102, - "left": 77.34375, - "top": 34.307144, - "right": 78.75, - "bottom": 33.137551, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 102, - "left": 78.75, - "top": 34.307144, - "right": 80.15625, - "bottom": 33.137551, - "countries": [ - "china", - "india" - ] - }, - { - "x": 183, - "y": 103, - "left": 77.34375, - "top": 33.137551, - "right": 78.75, - "bottom": 31.952162, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 103, - "left": 78.75, - "top": 33.137551, - "right": 80.15625, - "bottom": 31.952162, - "countries": [ - "china", - "india" - ] - }, - { - "x": 183, - "y": 104, - "left": 77.34375, - "top": 31.952162, - "right": 78.75, - "bottom": 30.751278, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 104, - "left": 78.75, - "top": 31.952162, - "right": 80.15625, - "bottom": 30.751278, - "countries": [ - "china", - "india" - ] - }, - { - "x": 184, - "y": 105, - "left": 78.75, - "top": 30.751278, - "right": 80.15625, - "bottom": 29.53523, - "countries": [ - "china", - "india" - ] - }, - { - "x": 185, - "y": 105, - "left": 80.15625, - "top": 30.751278, - "right": 81.5625, - "bottom": 29.53523, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 194, - "y": 106, - "left": 92.8125, - "top": 29.53523, - "right": 94.21875, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 195, - "y": 106, - "left": 94.21875, - "top": 29.53523, - "right": 95.625, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 196, - "y": 106, - "left": 95.625, - "top": 29.53523, - "right": 97.03125, - "bottom": 28.304381, - "countries": [ - "china", - "india" - ] - }, - { - "x": 197, - "y": 106, - "left": 97.03125, - "top": 29.53523, - "right": 98.4375, - "bottom": 28.304381, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 188, - "y": 107, - "left": 84.375, - "top": 28.304381, - "right": 85.78125, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 190, - "y": 107, - "left": 87.1875, - "top": 28.304381, - "right": 88.59375, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 194, - "y": 107, - "left": 92.8125, - "top": 28.304381, - "right": 94.21875, - "bottom": 27.059126, - "countries": [ - "china", - "india" - ] - }, - { - "x": 197, - "y": 107, - "left": 97.03125, - "top": 28.304381, - "right": 98.4375, - "bottom": 27.059126, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 180, - "y": 101, - "left": 73.125, - "top": 35.46067, - "right": 74.53125, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 101, - "left": 74.53125, - "top": 35.46067, - "right": 75.9375, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 182, - "y": 101, - "left": 75.9375, - "top": 35.46067, - "right": 77.34375, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 102, - "left": 73.125, - "top": 34.307144, - "right": 74.53125, - "bottom": 33.137551, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 102, - "left": 74.53125, - "top": 34.307144, - "right": 75.9375, - "bottom": 33.137551, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 102, - "left": 75.9375, - "top": 34.307144, - "right": 77.34375, - "bottom": 33.137551, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 103, - "left": 73.125, - "top": 33.137551, - "right": 74.53125, - "bottom": 31.952162, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 103, - "left": 74.53125, - "top": 33.137551, - "right": 75.9375, - "bottom": 31.952162, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 182, - "y": 103, - "left": 75.9375, - "top": 33.137551, - "right": 77.34375, - "bottom": 31.952162, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 104, - "left": 73.125, - "top": 31.952162, - "right": 74.53125, - "bottom": 30.751278, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 104, - "left": 74.53125, - "top": 31.952162, - "right": 75.9375, - "bottom": 30.751278, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 182, - "y": 104, - "left": 75.9375, - "top": 31.952162, - "right": 77.34375, - "bottom": 30.751278, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 105, - "left": 73.125, - "top": 30.751278, - "right": 74.53125, - "bottom": 29.53523, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 105, - "left": 74.53125, - "top": 30.751278, - "right": 75.9375, - "bottom": 29.53523, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 105, - "left": 75.9375, - "top": 30.751278, - "right": 77.34375, - "bottom": 29.53523, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 105, - "left": 77.34375, - "top": 30.751278, - "right": 78.75, - "bottom": 29.53523, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 106, - "left": 71.71875, - "top": 29.53523, - "right": 73.125, - "bottom": 28.304381, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 106, - "left": 73.125, - "top": 29.53523, - "right": 74.53125, - "bottom": 28.304381, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 106, - "left": 74.53125, - "top": 29.53523, - "right": 75.9375, - "bottom": 28.304381, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 106, - "left": 75.9375, - "top": 29.53523, - "right": 77.34375, - "bottom": 28.304381, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 106, - "left": 77.34375, - "top": 29.53523, - "right": 78.75, - "bottom": 28.304381, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 106, - "left": 78.75, - "top": 29.53523, - "right": 80.15625, - "bottom": 28.304381, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 185, - "y": 106, - "left": 80.15625, - "top": 29.53523, - "right": 81.5625, - "bottom": 28.304381, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 177, - "y": 107, - "left": 68.90625, - "top": 28.304381, - "right": 70.3125, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 107, - "left": 70.3125, - "top": 28.304381, - "right": 71.71875, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 179, - "y": 107, - "left": 71.71875, - "top": 28.304381, - "right": 73.125, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 107, - "left": 73.125, - "top": 28.304381, - "right": 74.53125, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 107, - "left": 74.53125, - "top": 28.304381, - "right": 75.9375, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 107, - "left": 75.9375, - "top": 28.304381, - "right": 77.34375, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 107, - "left": 77.34375, - "top": 28.304381, - "right": 78.75, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 107, - "left": 78.75, - "top": 28.304381, - "right": 80.15625, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 107, - "left": 80.15625, - "top": 28.304381, - "right": 81.5625, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 186, - "y": 107, - "left": 81.5625, - "top": 28.304381, - "right": 82.96875, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 187, - "y": 107, - "left": 82.96875, - "top": 28.304381, - "right": 84.375, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 195, - "y": 107, - "left": 94.21875, - "top": 28.304381, - "right": 95.625, - "bottom": 27.059126, - "countries": [ - "india" - ] - }, - { - "x": 196, - "y": 107, - "left": 95.625, - "top": 28.304381, - "right": 97.03125, - "bottom": 27.059126, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 177, - "y": 108, - "left": 68.90625, - "top": 27.059126, - "right": 70.3125, - "bottom": 25.799891, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 108, - "left": 70.3125, - "top": 27.059126, - "right": 71.71875, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 108, - "left": 71.71875, - "top": 27.059126, - "right": 73.125, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 108, - "left": 73.125, - "top": 27.059126, - "right": 74.53125, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 108, - "left": 74.53125, - "top": 27.059126, - "right": 75.9375, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 108, - "left": 75.9375, - "top": 27.059126, - "right": 77.34375, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 108, - "left": 77.34375, - "top": 27.059126, - "right": 78.75, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 108, - "left": 78.75, - "top": 27.059126, - "right": 80.15625, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 108, - "left": 80.15625, - "top": 27.059126, - "right": 81.5625, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 108, - "left": 81.5625, - "top": 27.059126, - "right": 82.96875, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 108, - "left": 82.96875, - "top": 27.059126, - "right": 84.375, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 108, - "left": 84.375, - "top": 27.059126, - "right": 85.78125, - "bottom": 25.799891, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 189, - "y": 108, - "left": 85.78125, - "top": 27.059126, - "right": 87.1875, - "bottom": 25.799891, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 194, - "y": 108, - "left": 92.8125, - "top": 27.059126, - "right": 94.21875, - "bottom": 25.799891, - "countries": [ - "india" - ] - }, - { - "x": 195, - "y": 108, - "left": 94.21875, - "top": 27.059126, - "right": 95.625, - "bottom": 25.799891, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 196, - "y": 108, - "left": 95.625, - "top": 27.059126, - "right": 97.03125, - "bottom": 25.799891, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 177, - "y": 109, - "left": 68.90625, - "top": 25.799891, - "right": 70.3125, - "bottom": 24.527135, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 109, - "left": 70.3125, - "top": 25.799891, - "right": 71.71875, - "bottom": 24.527135, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 179, - "y": 109, - "left": 71.71875, - "top": 25.799891, - "right": 73.125, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 109, - "left": 73.125, - "top": 25.799891, - "right": 74.53125, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 109, - "left": 74.53125, - "top": 25.799891, - "right": 75.9375, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 109, - "left": 75.9375, - "top": 25.799891, - "right": 77.34375, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 109, - "left": 77.34375, - "top": 25.799891, - "right": 78.75, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 109, - "left": 78.75, - "top": 25.799891, - "right": 80.15625, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 109, - "left": 80.15625, - "top": 25.799891, - "right": 81.5625, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 109, - "left": 81.5625, - "top": 25.799891, - "right": 82.96875, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 109, - "left": 82.96875, - "top": 25.799891, - "right": 84.375, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 109, - "left": 84.375, - "top": 25.799891, - "right": 85.78125, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 189, - "y": 109, - "left": 85.78125, - "top": 25.799891, - "right": 87.1875, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 109, - "left": 92.8125, - "top": 25.799891, - "right": 94.21875, - "bottom": 24.527135, - "countries": [ - "india" - ] - }, - { - "x": 195, - "y": 109, - "left": 94.21875, - "top": 25.799891, - "right": 95.625, - "bottom": 24.527135, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 176, - "y": 110, - "left": 67.5, - "top": 24.527135, - "right": 68.90625, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 177, - "y": 110, - "left": 68.90625, - "top": 24.527135, - "right": 70.3125, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 110, - "left": 70.3125, - "top": 24.527135, - "right": 71.71875, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 179, - "y": 110, - "left": 71.71875, - "top": 24.527135, - "right": 73.125, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 110, - "left": 73.125, - "top": 24.527135, - "right": 74.53125, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 110, - "left": 74.53125, - "top": 24.527135, - "right": 75.9375, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 110, - "left": 75.9375, - "top": 24.527135, - "right": 77.34375, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 110, - "left": 77.34375, - "top": 24.527135, - "right": 78.75, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 110, - "left": 78.75, - "top": 24.527135, - "right": 80.15625, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 110, - "left": 80.15625, - "top": 24.527135, - "right": 81.5625, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 110, - "left": 81.5625, - "top": 24.527135, - "right": 82.96875, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 110, - "left": 82.96875, - "top": 24.527135, - "right": 84.375, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 110, - "left": 84.375, - "top": 24.527135, - "right": 85.78125, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 189, - "y": 110, - "left": 85.78125, - "top": 24.527135, - "right": 87.1875, - "bottom": 23.241346, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 110, - "left": 92.8125, - "top": 24.527135, - "right": 94.21875, - "bottom": 23.241346, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 195, - "y": 110, - "left": 94.21875, - "top": 24.527135, - "right": 95.625, - "bottom": 23.241346, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 176, - "y": 111, - "left": 67.5, - "top": 23.241346, - "right": 68.90625, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 177, - "y": 111, - "left": 68.90625, - "top": 23.241346, - "right": 70.3125, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 178, - "y": 111, - "left": 70.3125, - "top": 23.241346, - "right": 71.71875, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 111, - "left": 71.71875, - "top": 23.241346, - "right": 73.125, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 111, - "left": 73.125, - "top": 23.241346, - "right": 74.53125, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 111, - "left": 74.53125, - "top": 23.241346, - "right": 75.9375, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 111, - "left": 75.9375, - "top": 23.241346, - "right": 77.34375, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 111, - "left": 77.34375, - "top": 23.241346, - "right": 78.75, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 111, - "left": 78.75, - "top": 23.241346, - "right": 80.15625, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 111, - "left": 80.15625, - "top": 23.241346, - "right": 81.5625, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 111, - "left": 81.5625, - "top": 23.241346, - "right": 82.96875, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 111, - "left": 82.96875, - "top": 23.241346, - "right": 84.375, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 111, - "left": 84.375, - "top": 23.241346, - "right": 85.78125, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 189, - "y": 111, - "left": 85.78125, - "top": 23.241346, - "right": 87.1875, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 190, - "y": 111, - "left": 87.1875, - "top": 23.241346, - "right": 88.59375, - "bottom": 21.943046, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 111, - "left": 92.8125, - "top": 23.241346, - "right": 94.21875, - "bottom": 21.943046, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 177, - "y": 112, - "left": 68.90625, - "top": 21.943046, - "right": 70.3125, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 178, - "y": 112, - "left": 70.3125, - "top": 21.943046, - "right": 71.71875, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 112, - "left": 71.71875, - "top": 21.943046, - "right": 73.125, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 112, - "left": 73.125, - "top": 21.943046, - "right": 74.53125, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 112, - "left": 74.53125, - "top": 21.943046, - "right": 75.9375, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 112, - "left": 75.9375, - "top": 21.943046, - "right": 77.34375, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 112, - "left": 77.34375, - "top": 21.943046, - "right": 78.75, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 112, - "left": 78.75, - "top": 21.943046, - "right": 80.15625, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 112, - "left": 80.15625, - "top": 21.943046, - "right": 81.5625, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 112, - "left": 81.5625, - "top": 21.943046, - "right": 82.96875, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 112, - "left": 82.96875, - "top": 21.943046, - "right": 84.375, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 112, - "left": 84.375, - "top": 21.943046, - "right": 85.78125, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 189, - "y": 112, - "left": 85.78125, - "top": 21.943046, - "right": 87.1875, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 190, - "y": 112, - "left": 87.1875, - "top": 21.943046, - "right": 88.59375, - "bottom": 20.632784, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 113, - "left": 71.71875, - "top": 20.632784, - "right": 73.125, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 113, - "left": 73.125, - "top": 20.632784, - "right": 74.53125, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 113, - "left": 74.53125, - "top": 20.632784, - "right": 75.9375, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 113, - "left": 75.9375, - "top": 20.632784, - "right": 77.34375, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 113, - "left": 77.34375, - "top": 20.632784, - "right": 78.75, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 113, - "left": 78.75, - "top": 20.632784, - "right": 80.15625, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 113, - "left": 80.15625, - "top": 20.632784, - "right": 81.5625, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 113, - "left": 81.5625, - "top": 20.632784, - "right": 82.96875, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 113, - "left": 82.96875, - "top": 20.632784, - "right": 84.375, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 113, - "left": 84.375, - "top": 20.632784, - "right": 85.78125, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 189, - "y": 113, - "left": 85.78125, - "top": 20.632784, - "right": 87.1875, - "bottom": 19.311143, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 114, - "left": 71.71875, - "top": 19.311143, - "right": 73.125, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 114, - "left": 73.125, - "top": 19.311143, - "right": 74.53125, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 114, - "left": 74.53125, - "top": 19.311143, - "right": 75.9375, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 114, - "left": 75.9375, - "top": 19.311143, - "right": 77.34375, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 114, - "left": 77.34375, - "top": 19.311143, - "right": 78.75, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 114, - "left": 78.75, - "top": 19.311143, - "right": 80.15625, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 114, - "left": 80.15625, - "top": 19.311143, - "right": 81.5625, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 114, - "left": 81.5625, - "top": 19.311143, - "right": 82.96875, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 114, - "left": 82.96875, - "top": 19.311143, - "right": 84.375, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 188, - "y": 114, - "left": 84.375, - "top": 19.311143, - "right": 85.78125, - "bottom": 17.978733, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 115, - "left": 71.71875, - "top": 17.978733, - "right": 73.125, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 115, - "left": 73.125, - "top": 17.978733, - "right": 74.53125, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 115, - "left": 74.53125, - "top": 17.978733, - "right": 75.9375, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 115, - "left": 75.9375, - "top": 17.978733, - "right": 77.34375, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 115, - "left": 77.34375, - "top": 17.978733, - "right": 78.75, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 115, - "left": 78.75, - "top": 17.978733, - "right": 80.15625, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 115, - "left": 80.15625, - "top": 17.978733, - "right": 81.5625, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 115, - "left": 81.5625, - "top": 17.978733, - "right": 82.96875, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 187, - "y": 115, - "left": 82.96875, - "top": 17.978733, - "right": 84.375, - "bottom": 16.636192, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 116, - "left": 73.125, - "top": 16.636192, - "right": 74.53125, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 116, - "left": 74.53125, - "top": 16.636192, - "right": 75.9375, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 116, - "left": 75.9375, - "top": 16.636192, - "right": 77.34375, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 116, - "left": 77.34375, - "top": 16.636192, - "right": 78.75, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 116, - "left": 78.75, - "top": 16.636192, - "right": 80.15625, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 116, - "left": 80.15625, - "top": 16.636192, - "right": 81.5625, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 186, - "y": 116, - "left": 81.5625, - "top": 16.636192, - "right": 82.96875, - "bottom": 15.284185, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 117, - "left": 73.125, - "top": 15.284185, - "right": 74.53125, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 117, - "left": 74.53125, - "top": 15.284185, - "right": 75.9375, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 117, - "left": 75.9375, - "top": 15.284185, - "right": 77.34375, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 117, - "left": 77.34375, - "top": 15.284185, - "right": 78.75, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 117, - "left": 78.75, - "top": 15.284185, - "right": 80.15625, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 117, - "left": 80.15625, - "top": 15.284185, - "right": 81.5625, - "bottom": 13.923404, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 118, - "left": 74.53125, - "top": 13.923404, - "right": 75.9375, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 118, - "left": 75.9375, - "top": 13.923404, - "right": 77.34375, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 118, - "left": 77.34375, - "top": 13.923404, - "right": 78.75, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 118, - "left": 78.75, - "top": 13.923404, - "right": 80.15625, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 118, - "left": 80.15625, - "top": 13.923404, - "right": 81.5625, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 193, - "y": 118, - "left": 91.40625, - "top": 13.923404, - "right": 92.8125, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 118, - "left": 92.8125, - "top": 13.923404, - "right": 94.21875, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 195, - "y": 118, - "left": 94.21875, - "top": 13.923404, - "right": 95.625, - "bottom": 12.554564, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 119, - "left": 71.71875, - "top": 12.554564, - "right": 73.125, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 119, - "left": 74.53125, - "top": 12.554564, - "right": 75.9375, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 119, - "left": 75.9375, - "top": 12.554564, - "right": 77.34375, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 119, - "left": 77.34375, - "top": 12.554564, - "right": 78.75, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 119, - "left": 78.75, - "top": 12.554564, - "right": 80.15625, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 185, - "y": 119, - "left": 80.15625, - "top": 12.554564, - "right": 81.5625, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 193, - "y": 119, - "left": 91.40625, - "top": 12.554564, - "right": 92.8125, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 119, - "left": 92.8125, - "top": 12.554564, - "right": 94.21875, - "bottom": 11.178402, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 120, - "left": 71.71875, - "top": 11.178402, - "right": 73.125, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 180, - "y": 120, - "left": 73.125, - "top": 11.178402, - "right": 74.53125, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 181, - "y": 120, - "left": 74.53125, - "top": 11.178402, - "right": 75.9375, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 120, - "left": 75.9375, - "top": 11.178402, - "right": 77.34375, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 120, - "left": 77.34375, - "top": 11.178402, - "right": 78.75, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 120, - "left": 78.75, - "top": 11.178402, - "right": 80.15625, - "bottom": 9.795678, - "countries": [ - "sri_lanka", - "india" - ] - }, - { - "x": 193, - "y": 120, - "left": 91.40625, - "top": 11.178402, - "right": 92.8125, - "bottom": 9.795678, - "countries": [ - "india" - ] - }, - { - "x": 182, - "y": 121, - "left": 75.9375, - "top": 9.795678, - "right": 77.34375, - "bottom": 8.407168, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 121, - "left": 77.34375, - "top": 9.795678, - "right": 78.75, - "bottom": 8.407168, - "countries": [ - "india" - ] - }, - { - "x": 184, - "y": 121, - "left": 78.75, - "top": 9.795678, - "right": 80.15625, - "bottom": 8.407168, - "countries": [ - "sri_lanka", - "india" - ] - }, - { - "x": 193, - "y": 121, - "left": 91.40625, - "top": 9.795678, - "right": 92.8125, - "bottom": 8.407168, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 121, - "left": 92.8125, - "top": 9.795678, - "right": 94.21875, - "bottom": 8.407168, - "countries": [ - "india" - ] - }, - { - "x": 179, - "y": 122, - "left": 71.71875, - "top": 8.407168, - "right": 73.125, - "bottom": 7.013668, - "countries": [ - "maldives", - "india" - ] - }, - { - "x": 182, - "y": 122, - "left": 75.9375, - "top": 8.407168, - "right": 77.34375, - "bottom": 7.013668, - "countries": [ - "india" - ] - }, - { - "x": 183, - "y": 122, - "left": 77.34375, - "top": 8.407168, - "right": 78.75, - "bottom": 7.013668, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 122, - "left": 92.8125, - "top": 8.407168, - "right": 94.21875, - "bottom": 7.013668, - "countries": [ - "india" - ] - }, - { - "x": 194, - "y": 123, - "left": 92.8125, - "top": 7.013668, - "right": 94.21875, - "bottom": 5.615986, - "countries": [ - "india" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/indonesia.json b/wahoomc/resources/json/asia/indonesia.json deleted file mode 100644 index ad262ede..00000000 --- a/wahoomc/resources/json/asia/indonesia.json +++ /dev/null @@ -1,2644 +0,0 @@ -[ - { - "x": 210, - "y": 124, - "left": 115.3125, - "top": 5.615986, - "right": 116.71875, - "bottom": 4.214943, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - }, - { - "x": 209, - "y": 125, - "left": 113.90625, - "top": 4.214943, - "right": 115.3125, - "bottom": 2.811371, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - }, - { - "x": 217, - "y": 133, - "left": 125.15625, - "top": -7.013668, - "right": 126.5625, - "bottom": -8.407168, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 218, - "y": 133, - "left": 126.5625, - "top": -7.013668, - "right": 127.96875, - "bottom": -8.407168, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 216, - "y": 134, - "left": 123.75, - "top": -8.407168, - "right": 125.15625, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 217, - "y": 134, - "left": 125.15625, - "top": -8.407168, - "right": 126.5625, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 218, - "y": 134, - "left": 126.5625, - "top": -8.407168, - "right": 127.96875, - "bottom": -9.795678, - "countries": [ - "indonesia", - "east_timor" - ] - }, - { - "x": 195, - "y": 123, - "left": 94.21875, - "top": 7.013668, - "right": 95.625, - "bottom": 5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 195, - "y": 124, - "left": 94.21875, - "top": 5.615986, - "right": 95.625, - "bottom": 4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 196, - "y": 124, - "left": 95.625, - "top": 5.615986, - "right": 97.03125, - "bottom": 4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 197, - "y": 124, - "left": 97.03125, - "top": 5.615986, - "right": 98.4375, - "bottom": 4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 124, - "left": 106.875, - "top": 5.615986, - "right": 108.28125, - "bottom": 4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 124, - "left": 116.71875, - "top": 5.615986, - "right": 118.125, - "bottom": 4.214943, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 217, - "y": 124, - "left": 125.15625, - "top": 5.615986, - "right": 126.5625, - "bottom": 4.214943, - "countries": [ - "indonesia", - "philippines" - ] - }, - { - "x": 218, - "y": 124, - "left": 126.5625, - "top": 5.615986, - "right": 127.96875, - "bottom": 4.214943, - "countries": [ - "indonesia", - "philippines" - ] - }, - { - "x": 195, - "y": 125, - "left": 94.21875, - "top": 4.214943, - "right": 95.625, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 196, - "y": 125, - "left": 95.625, - "top": 4.214943, - "right": 97.03125, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 197, - "y": 125, - "left": 97.03125, - "top": 4.214943, - "right": 98.4375, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 198, - "y": 125, - "left": 98.4375, - "top": 4.214943, - "right": 99.84375, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 199, - "y": 125, - "left": 99.84375, - "top": 4.214943, - "right": 101.25, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 203, - "y": 125, - "left": 105.46875, - "top": 4.214943, - "right": 106.875, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 125, - "left": 106.875, - "top": 4.214943, - "right": 108.28125, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 125, - "left": 108.28125, - "top": 4.214943, - "right": 109.6875, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 125, - "left": 115.3125, - "top": 4.214943, - "right": 116.71875, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 211, - "y": 125, - "left": 116.71875, - "top": 4.214943, - "right": 118.125, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 217, - "y": 125, - "left": 125.15625, - "top": 4.214943, - "right": 126.5625, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 125, - "left": 126.5625, - "top": 4.214943, - "right": 127.96875, - "bottom": 2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 196, - "y": 126, - "left": 95.625, - "top": 2.811371, - "right": 97.03125, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 197, - "y": 126, - "left": 97.03125, - "top": 2.811371, - "right": 98.4375, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 198, - "y": 126, - "left": 98.4375, - "top": 2.811371, - "right": 99.84375, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 199, - "y": 126, - "left": 99.84375, - "top": 2.811371, - "right": 101.25, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 200, - "y": 126, - "left": 101.25, - "top": 2.811371, - "right": 102.65625, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 203, - "y": 126, - "left": 105.46875, - "top": 2.811371, - "right": 106.875, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 126, - "left": 108.28125, - "top": 2.811371, - "right": 109.6875, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 206, - "y": 126, - "left": 109.6875, - "top": 2.811371, - "right": 111.09375, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 207, - "y": 126, - "left": 111.09375, - "top": 2.811371, - "right": 112.5, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 208, - "y": 126, - "left": 112.5, - "top": 2.811371, - "right": 113.90625, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 209, - "y": 126, - "left": 113.90625, - "top": 2.811371, - "right": 115.3125, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 210, - "y": 126, - "left": 115.3125, - "top": 2.811371, - "right": 116.71875, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 126, - "left": 116.71875, - "top": 2.811371, - "right": 118.125, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 126, - "left": 118.125, - "top": 2.811371, - "right": 119.53125, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 126, - "left": 123.75, - "top": 2.811371, - "right": 125.15625, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 217, - "y": 126, - "left": 125.15625, - "top": 2.811371, - "right": 126.5625, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 126, - "left": 126.5625, - "top": 2.811371, - "right": 127.96875, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 126, - "left": 127.96875, - "top": 2.811371, - "right": 129.375, - "bottom": 1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 197, - "y": 127, - "left": 97.03125, - "top": 1.406109, - "right": 98.4375, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 198, - "y": 127, - "left": 98.4375, - "top": 1.406109, - "right": 99.84375, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 199, - "y": 127, - "left": 99.84375, - "top": 1.406109, - "right": 101.25, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 200, - "y": 127, - "left": 101.25, - "top": 1.406109, - "right": 102.65625, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 201, - "y": 127, - "left": 102.65625, - "top": 1.406109, - "right": 104.0625, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 202, - "y": 127, - "left": 104.0625, - "top": 1.406109, - "right": 105.46875, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 204, - "y": 127, - "left": 106.875, - "top": 1.406109, - "right": 108.28125, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 127, - "left": 108.28125, - "top": 1.406109, - "right": 109.6875, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 127, - "left": 109.6875, - "top": 1.406109, - "right": 111.09375, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 207, - "y": 127, - "left": 111.09375, - "top": 1.406109, - "right": 112.5, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 208, - "y": 127, - "left": 112.5, - "top": 1.406109, - "right": 113.90625, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 209, - "y": 127, - "left": 113.90625, - "top": 1.406109, - "right": 115.3125, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 127, - "left": 115.3125, - "top": 1.406109, - "right": 116.71875, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 127, - "left": 116.71875, - "top": 1.406109, - "right": 118.125, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 127, - "left": 118.125, - "top": 1.406109, - "right": 119.53125, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 127, - "left": 119.53125, - "top": 1.406109, - "right": 120.9375, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 127, - "left": 120.9375, - "top": 1.406109, - "right": 122.34375, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 127, - "left": 122.34375, - "top": 1.406109, - "right": 123.75, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 127, - "left": 123.75, - "top": 1.406109, - "right": 125.15625, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 217, - "y": 127, - "left": 125.15625, - "top": 1.406109, - "right": 126.5625, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 127, - "left": 126.5625, - "top": 1.406109, - "right": 127.96875, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 127, - "left": 127.96875, - "top": 1.406109, - "right": 129.375, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 127, - "left": 129.375, - "top": 1.406109, - "right": 130.78125, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 127, - "left": 130.78125, - "top": 1.406109, - "right": 132.1875, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 127, - "left": 133.59375, - "top": 1.406109, - "right": 135.0, - "bottom": 0.0, - "countries": [ - "indonesia" - ] - }, - { - "x": 197, - "y": 128, - "left": 97.03125, - "top": 0.0, - "right": 98.4375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 198, - "y": 128, - "left": 98.4375, - "top": 0.0, - "right": 99.84375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 199, - "y": 128, - "left": 99.84375, - "top": 0.0, - "right": 101.25, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 200, - "y": 128, - "left": 101.25, - "top": 0.0, - "right": 102.65625, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 201, - "y": 128, - "left": 102.65625, - "top": 0.0, - "right": 104.0625, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 202, - "y": 128, - "left": 104.0625, - "top": 0.0, - "right": 105.46875, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 128, - "left": 108.28125, - "top": 0.0, - "right": 109.6875, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 128, - "left": 109.6875, - "top": 0.0, - "right": 111.09375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 207, - "y": 128, - "left": 111.09375, - "top": 0.0, - "right": 112.5, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 208, - "y": 128, - "left": 112.5, - "top": 0.0, - "right": 113.90625, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 128, - "left": 113.90625, - "top": 0.0, - "right": 115.3125, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 128, - "left": 115.3125, - "top": 0.0, - "right": 116.71875, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 128, - "left": 116.71875, - "top": 0.0, - "right": 118.125, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 128, - "left": 118.125, - "top": 0.0, - "right": 119.53125, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 128, - "left": 119.53125, - "top": 0.0, - "right": 120.9375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 128, - "left": 120.9375, - "top": 0.0, - "right": 122.34375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 128, - "left": 122.34375, - "top": 0.0, - "right": 123.75, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 128, - "left": 126.5625, - "top": 0.0, - "right": 127.96875, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 128, - "left": 127.96875, - "top": 0.0, - "right": 129.375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 128, - "left": 129.375, - "top": 0.0, - "right": 130.78125, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 128, - "left": 130.78125, - "top": 0.0, - "right": 132.1875, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 222, - "y": 128, - "left": 132.1875, - "top": 0.0, - "right": 133.59375, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 128, - "left": 133.59375, - "top": 0.0, - "right": 135.0, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 224, - "y": 128, - "left": 135.0, - "top": 0.0, - "right": 136.40625, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 128, - "left": 136.40625, - "top": 0.0, - "right": 137.8125, - "bottom": -1.406109, - "countries": [ - "indonesia" - ] - }, - { - "x": 198, - "y": 129, - "left": 98.4375, - "top": -1.406109, - "right": 99.84375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 199, - "y": 129, - "left": 99.84375, - "top": -1.406109, - "right": 101.25, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 200, - "y": 129, - "left": 101.25, - "top": -1.406109, - "right": 102.65625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 201, - "y": 129, - "left": 102.65625, - "top": -1.406109, - "right": 104.0625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 202, - "y": 129, - "left": 104.0625, - "top": -1.406109, - "right": 105.46875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 203, - "y": 129, - "left": 105.46875, - "top": -1.406109, - "right": 106.875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 129, - "left": 106.875, - "top": -1.406109, - "right": 108.28125, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 129, - "left": 108.28125, - "top": -1.406109, - "right": 109.6875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 129, - "left": 109.6875, - "top": -1.406109, - "right": 111.09375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 207, - "y": 129, - "left": 111.09375, - "top": -1.406109, - "right": 112.5, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 208, - "y": 129, - "left": 112.5, - "top": -1.406109, - "right": 113.90625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 129, - "left": 113.90625, - "top": -1.406109, - "right": 115.3125, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 129, - "left": 115.3125, - "top": -1.406109, - "right": 116.71875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 129, - "left": 118.125, - "top": -1.406109, - "right": 119.53125, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 129, - "left": 119.53125, - "top": -1.406109, - "right": 120.9375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 129, - "left": 120.9375, - "top": -1.406109, - "right": 122.34375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 129, - "left": 122.34375, - "top": -1.406109, - "right": 123.75, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 129, - "left": 123.75, - "top": -1.406109, - "right": 125.15625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 217, - "y": 129, - "left": 125.15625, - "top": -1.406109, - "right": 126.5625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 129, - "left": 126.5625, - "top": -1.406109, - "right": 127.96875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 129, - "left": 127.96875, - "top": -1.406109, - "right": 129.375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 129, - "left": 129.375, - "top": -1.406109, - "right": 130.78125, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 129, - "left": 130.78125, - "top": -1.406109, - "right": 132.1875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 222, - "y": 129, - "left": 132.1875, - "top": -1.406109, - "right": 133.59375, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 129, - "left": 133.59375, - "top": -1.406109, - "right": 135.0, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 224, - "y": 129, - "left": 135.0, - "top": -1.406109, - "right": 136.40625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 129, - "left": 136.40625, - "top": -1.406109, - "right": 137.8125, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 129, - "left": 137.8125, - "top": -1.406109, - "right": 139.21875, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 129, - "left": 139.21875, - "top": -1.406109, - "right": 140.625, - "bottom": -2.811371, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 129, - "left": 140.625, - "top": -1.406109, - "right": 142.03125, - "bottom": -2.811371, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 199, - "y": 130, - "left": 99.84375, - "top": -2.811371, - "right": 101.25, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 200, - "y": 130, - "left": 101.25, - "top": -2.811371, - "right": 102.65625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 201, - "y": 130, - "left": 102.65625, - "top": -2.811371, - "right": 104.0625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 202, - "y": 130, - "left": 104.0625, - "top": -2.811371, - "right": 105.46875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 203, - "y": 130, - "left": 105.46875, - "top": -2.811371, - "right": 106.875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 130, - "left": 106.875, - "top": -2.811371, - "right": 108.28125, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 130, - "left": 108.28125, - "top": -2.811371, - "right": 109.6875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 130, - "left": 109.6875, - "top": -2.811371, - "right": 111.09375, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 207, - "y": 130, - "left": 111.09375, - "top": -2.811371, - "right": 112.5, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 208, - "y": 130, - "left": 112.5, - "top": -2.811371, - "right": 113.90625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 130, - "left": 113.90625, - "top": -2.811371, - "right": 115.3125, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 130, - "left": 115.3125, - "top": -2.811371, - "right": 116.71875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 130, - "left": 118.125, - "top": -2.811371, - "right": 119.53125, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 130, - "left": 119.53125, - "top": -2.811371, - "right": 120.9375, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 130, - "left": 120.9375, - "top": -2.811371, - "right": 122.34375, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 130, - "left": 122.34375, - "top": -2.811371, - "right": 123.75, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 217, - "y": 130, - "left": 125.15625, - "top": -2.811371, - "right": 126.5625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 130, - "left": 126.5625, - "top": -2.811371, - "right": 127.96875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 130, - "left": 127.96875, - "top": -2.811371, - "right": 129.375, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 130, - "left": 129.375, - "top": -2.811371, - "right": 130.78125, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 130, - "left": 130.78125, - "top": -2.811371, - "right": 132.1875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 222, - "y": 130, - "left": 132.1875, - "top": -2.811371, - "right": 133.59375, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 130, - "left": 133.59375, - "top": -2.811371, - "right": 135.0, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 224, - "y": 130, - "left": 135.0, - "top": -2.811371, - "right": 136.40625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 130, - "left": 136.40625, - "top": -2.811371, - "right": 137.8125, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 130, - "left": 137.8125, - "top": -2.811371, - "right": 139.21875, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 130, - "left": 139.21875, - "top": -2.811371, - "right": 140.625, - "bottom": -4.214943, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 130, - "left": 140.625, - "top": -2.811371, - "right": 142.03125, - "bottom": -4.214943, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 200, - "y": 131, - "left": 101.25, - "top": -4.214943, - "right": 102.65625, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 201, - "y": 131, - "left": 102.65625, - "top": -4.214943, - "right": 104.0625, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 202, - "y": 131, - "left": 104.0625, - "top": -4.214943, - "right": 105.46875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 203, - "y": 131, - "left": 105.46875, - "top": -4.214943, - "right": 106.875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 131, - "left": 113.90625, - "top": -4.214943, - "right": 115.3125, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 131, - "left": 115.3125, - "top": -4.214943, - "right": 116.71875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 131, - "left": 116.71875, - "top": -4.214943, - "right": 118.125, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 131, - "left": 118.125, - "top": -4.214943, - "right": 119.53125, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 131, - "left": 119.53125, - "top": -4.214943, - "right": 120.9375, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 131, - "left": 120.9375, - "top": -4.214943, - "right": 122.34375, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 131, - "left": 122.34375, - "top": -4.214943, - "right": 123.75, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 131, - "left": 123.75, - "top": -4.214943, - "right": 125.15625, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 131, - "left": 126.5625, - "top": -4.214943, - "right": 127.96875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 131, - "left": 129.375, - "top": -4.214943, - "right": 130.78125, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 131, - "left": 130.78125, - "top": -4.214943, - "right": 132.1875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 222, - "y": 131, - "left": 132.1875, - "top": -4.214943, - "right": 133.59375, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 131, - "left": 133.59375, - "top": -4.214943, - "right": 135.0, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 224, - "y": 131, - "left": 135.0, - "top": -4.214943, - "right": 136.40625, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 131, - "left": 136.40625, - "top": -4.214943, - "right": 137.8125, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 131, - "left": 137.8125, - "top": -4.214943, - "right": 139.21875, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 131, - "left": 139.21875, - "top": -4.214943, - "right": 140.625, - "bottom": -5.615986, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 131, - "left": 140.625, - "top": -4.214943, - "right": 142.03125, - "bottom": -5.615986, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 202, - "y": 132, - "left": 104.0625, - "top": -5.615986, - "right": 105.46875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 203, - "y": 132, - "left": 105.46875, - "top": -5.615986, - "right": 106.875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 132, - "left": 106.875, - "top": -5.615986, - "right": 108.28125, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 132, - "left": 108.28125, - "top": -5.615986, - "right": 109.6875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 132, - "left": 109.6875, - "top": -5.615986, - "right": 111.09375, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 207, - "y": 132, - "left": 111.09375, - "top": -5.615986, - "right": 112.5, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 208, - "y": 132, - "left": 112.5, - "top": -5.615986, - "right": 113.90625, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 132, - "left": 113.90625, - "top": -5.615986, - "right": 115.3125, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 132, - "left": 115.3125, - "top": -5.615986, - "right": 116.71875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 132, - "left": 118.125, - "top": -5.615986, - "right": 119.53125, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 132, - "left": 119.53125, - "top": -5.615986, - "right": 120.9375, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 132, - "left": 120.9375, - "top": -5.615986, - "right": 122.34375, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 132, - "left": 122.34375, - "top": -5.615986, - "right": 123.75, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 132, - "left": 123.75, - "top": -5.615986, - "right": 125.15625, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 218, - "y": 132, - "left": 126.5625, - "top": -5.615986, - "right": 127.96875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 132, - "left": 127.96875, - "top": -5.615986, - "right": 129.375, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 132, - "left": 129.375, - "top": -5.615986, - "right": 130.78125, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 132, - "left": 130.78125, - "top": -5.615986, - "right": 132.1875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 222, - "y": 132, - "left": 132.1875, - "top": -5.615986, - "right": 133.59375, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 132, - "left": 133.59375, - "top": -5.615986, - "right": 135.0, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 132, - "left": 137.8125, - "top": -5.615986, - "right": 139.21875, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 132, - "left": 139.21875, - "top": -5.615986, - "right": 140.625, - "bottom": -7.013668, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 132, - "left": 140.625, - "top": -5.615986, - "right": 142.03125, - "bottom": -7.013668, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 203, - "y": 133, - "left": 105.46875, - "top": -7.013668, - "right": 106.875, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 204, - "y": 133, - "left": 106.875, - "top": -7.013668, - "right": 108.28125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 205, - "y": 133, - "left": 108.28125, - "top": -7.013668, - "right": 109.6875, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 206, - "y": 133, - "left": 109.6875, - "top": -7.013668, - "right": 111.09375, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 207, - "y": 133, - "left": 111.09375, - "top": -7.013668, - "right": 112.5, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 208, - "y": 133, - "left": 112.5, - "top": -7.013668, - "right": 113.90625, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 133, - "left": 113.90625, - "top": -7.013668, - "right": 115.3125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 133, - "left": 115.3125, - "top": -7.013668, - "right": 116.71875, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 133, - "left": 116.71875, - "top": -7.013668, - "right": 118.125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 133, - "left": 118.125, - "top": -7.013668, - "right": 119.53125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 133, - "left": 119.53125, - "top": -7.013668, - "right": 120.9375, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 133, - "left": 120.9375, - "top": -7.013668, - "right": 122.34375, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 133, - "left": 122.34375, - "top": -7.013668, - "right": 123.75, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 133, - "left": 123.75, - "top": -7.013668, - "right": 125.15625, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 219, - "y": 133, - "left": 127.96875, - "top": -7.013668, - "right": 129.375, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 220, - "y": 133, - "left": 129.375, - "top": -7.013668, - "right": 130.78125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 221, - "y": 133, - "left": 130.78125, - "top": -7.013668, - "right": 132.1875, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 223, - "y": 133, - "left": 133.59375, - "top": -7.013668, - "right": 135.0, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 133, - "left": 136.40625, - "top": -7.013668, - "right": 137.8125, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 133, - "left": 137.8125, - "top": -7.013668, - "right": 139.21875, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 133, - "left": 139.21875, - "top": -7.013668, - "right": 140.625, - "bottom": -8.407168, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 133, - "left": 140.625, - "top": -7.013668, - "right": 142.03125, - "bottom": -8.407168, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 208, - "y": 134, - "left": 112.5, - "top": -8.407168, - "right": 113.90625, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 209, - "y": 134, - "left": 113.90625, - "top": -8.407168, - "right": 115.3125, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 210, - "y": 134, - "left": 115.3125, - "top": -8.407168, - "right": 116.71875, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 211, - "y": 134, - "left": 116.71875, - "top": -8.407168, - "right": 118.125, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 212, - "y": 134, - "left": 118.125, - "top": -8.407168, - "right": 119.53125, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 134, - "left": 119.53125, - "top": -8.407168, - "right": 120.9375, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 134, - "left": 120.9375, - "top": -8.407168, - "right": 122.34375, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 134, - "left": 122.34375, - "top": -8.407168, - "right": 123.75, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 225, - "y": 134, - "left": 136.40625, - "top": -8.407168, - "right": 137.8125, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 226, - "y": 134, - "left": 137.8125, - "top": -8.407168, - "right": 139.21875, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 227, - "y": 134, - "left": 139.21875, - "top": -8.407168, - "right": 140.625, - "bottom": -9.795678, - "countries": [ - "indonesia" - ] - }, - { - "x": 228, - "y": 134, - "left": 140.625, - "top": -8.407168, - "right": 142.03125, - "bottom": -9.795678, - "countries": [ - "indonesia", - "papua_new_guinea", - "australia" - ] - }, - { - "x": 212, - "y": 135, - "left": 118.125, - "top": -9.795678, - "right": 119.53125, - "bottom": -11.178402, - "countries": [ - "indonesia" - ] - }, - { - "x": 213, - "y": 135, - "left": 119.53125, - "top": -9.795678, - "right": 120.9375, - "bottom": -11.178402, - "countries": [ - "indonesia" - ] - }, - { - "x": 214, - "y": 135, - "left": 120.9375, - "top": -9.795678, - "right": 122.34375, - "bottom": -11.178402, - "countries": [ - "indonesia" - ] - }, - { - "x": 215, - "y": 135, - "left": 122.34375, - "top": -9.795678, - "right": 123.75, - "bottom": -11.178402, - "countries": [ - "indonesia" - ] - }, - { - "x": 216, - "y": 135, - "left": 123.75, - "top": -9.795678, - "right": 125.15625, - "bottom": -11.178402, - "countries": [ - "indonesia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/iran.json b/wahoomc/resources/json/asia/iran.json deleted file mode 100644 index a7e2b5c2..00000000 --- a/wahoomc/resources/json/asia/iran.json +++ /dev/null @@ -1,1453 +0,0 @@ -[ - { - "x": 171, - "y": 100, - "left": 60.46875, - "top": 36.597889, - "right": 61.875, - "bottom": 35.46067, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 171, - "y": 101, - "left": 60.46875, - "top": 35.46067, - "right": 61.875, - "bottom": 34.307144, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 171, - "y": 102, - "left": 60.46875, - "top": 34.307144, - "right": 61.875, - "bottom": 33.137551, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 171, - "y": 103, - "left": 60.46875, - "top": 33.137551, - "right": 61.875, - "bottom": 31.952162, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 171, - "y": 104, - "left": 60.46875, - "top": 31.952162, - "right": 61.875, - "bottom": 30.751278, - "countries": [ - "iran", - "afghanistan" - ] - }, - { - "x": 171, - "y": 105, - "left": 60.46875, - "top": 30.751278, - "right": 61.875, - "bottom": 29.53523, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 172, - "y": 106, - "left": 61.875, - "top": 29.53523, - "right": 63.28125, - "bottom": 28.304381, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 159, - "y": 97, - "left": 43.59375, - "top": 39.909736, - "right": 45.0, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 97, - "left": 45.0, - "top": 39.909736, - "right": 46.40625, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - }, - { - "x": 161, - "y": 97, - "left": 46.40625, - "top": 39.909736, - "right": 47.8125, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia" - ] - }, - { - "x": 162, - "y": 97, - "left": 47.8125, - "top": 39.909736, - "right": 49.21875, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan" - ] - }, - { - "x": 160, - "y": 98, - "left": 45.0, - "top": 38.822591, - "right": 46.40625, - "bottom": 37.71859, - "countries": [ - "iran", - "azerbaijan" - ] - }, - { - "x": 162, - "y": 98, - "left": 47.8125, - "top": 38.822591, - "right": 49.21875, - "bottom": 37.71859, - "countries": [ - "iran", - "azerbaijan" - ] - }, - { - "x": 159, - "y": 98, - "left": 43.59375, - "top": 38.822591, - "right": 45.0, - "bottom": 37.71859, - "countries": [ - "iran", - "turkey" - ] - }, - { - "x": 161, - "y": 98, - "left": 46.40625, - "top": 38.822591, - "right": 47.8125, - "bottom": 37.71859, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 98, - "left": 53.4375, - "top": 38.822591, - "right": 54.84375, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 167, - "y": 98, - "left": 54.84375, - "top": 38.822591, - "right": 56.25, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 168, - "y": 98, - "left": 56.25, - "top": 38.822591, - "right": 57.65625, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 169, - "y": 98, - "left": 57.65625, - "top": 38.822591, - "right": 59.0625, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 159, - "y": 99, - "left": 43.59375, - "top": 37.71859, - "right": 45.0, - "bottom": 36.597889, - "countries": [ - "iran", - "turkey", - "iraq" - ] - }, - { - "x": 160, - "y": 99, - "left": 45.0, - "top": 37.71859, - "right": 46.40625, - "bottom": 36.597889, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 99, - "left": 46.40625, - "top": 37.71859, - "right": 47.8125, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 162, - "y": 99, - "left": 47.8125, - "top": 37.71859, - "right": 49.21875, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 99, - "left": 49.21875, - "top": 37.71859, - "right": 50.625, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 99, - "left": 50.625, - "top": 37.71859, - "right": 52.03125, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 99, - "left": 52.03125, - "top": 37.71859, - "right": 53.4375, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 99, - "left": 53.4375, - "top": 37.71859, - "right": 54.84375, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 167, - "y": 99, - "left": 54.84375, - "top": 37.71859, - "right": 56.25, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 99, - "left": 56.25, - "top": 37.71859, - "right": 57.65625, - "bottom": 36.597889, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 99, - "left": 57.65625, - "top": 37.71859, - "right": 59.0625, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 170, - "y": 99, - "left": 59.0625, - "top": 37.71859, - "right": 60.46875, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 171, - "y": 99, - "left": 60.46875, - "top": 37.71859, - "right": 61.875, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 160, - "y": 100, - "left": 45.0, - "top": 36.597889, - "right": 46.40625, - "bottom": 35.46067, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 100, - "left": 46.40625, - "top": 36.597889, - "right": 47.8125, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 162, - "y": 100, - "left": 47.8125, - "top": 36.597889, - "right": 49.21875, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 100, - "left": 49.21875, - "top": 36.597889, - "right": 50.625, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 100, - "left": 50.625, - "top": 36.597889, - "right": 52.03125, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 100, - "left": 52.03125, - "top": 36.597889, - "right": 53.4375, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 100, - "left": 53.4375, - "top": 36.597889, - "right": 54.84375, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 100, - "left": 54.84375, - "top": 36.597889, - "right": 56.25, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 100, - "left": 56.25, - "top": 36.597889, - "right": 57.65625, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 100, - "left": 57.65625, - "top": 36.597889, - "right": 59.0625, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 100, - "left": 59.0625, - "top": 36.597889, - "right": 60.46875, - "bottom": 35.46067, - "countries": [ - "iran" - ] - }, - { - "x": 160, - "y": 101, - "left": 45.0, - "top": 35.46067, - "right": 46.40625, - "bottom": 34.307144, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 101, - "left": 46.40625, - "top": 35.46067, - "right": 47.8125, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 162, - "y": 101, - "left": 47.8125, - "top": 35.46067, - "right": 49.21875, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 101, - "left": 49.21875, - "top": 35.46067, - "right": 50.625, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 101, - "left": 50.625, - "top": 35.46067, - "right": 52.03125, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 101, - "left": 52.03125, - "top": 35.46067, - "right": 53.4375, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 101, - "left": 53.4375, - "top": 35.46067, - "right": 54.84375, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 101, - "left": 54.84375, - "top": 35.46067, - "right": 56.25, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 101, - "left": 56.25, - "top": 35.46067, - "right": 57.65625, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 101, - "left": 57.65625, - "top": 35.46067, - "right": 59.0625, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 101, - "left": 59.0625, - "top": 35.46067, - "right": 60.46875, - "bottom": 34.307144, - "countries": [ - "iran" - ] - }, - { - "x": 160, - "y": 102, - "left": 45.0, - "top": 34.307144, - "right": 46.40625, - "bottom": 33.137551, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 102, - "left": 46.40625, - "top": 34.307144, - "right": 47.8125, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 162, - "y": 102, - "left": 47.8125, - "top": 34.307144, - "right": 49.21875, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 102, - "left": 49.21875, - "top": 34.307144, - "right": 50.625, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 102, - "left": 50.625, - "top": 34.307144, - "right": 52.03125, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 102, - "left": 52.03125, - "top": 34.307144, - "right": 53.4375, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 102, - "left": 53.4375, - "top": 34.307144, - "right": 54.84375, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 102, - "left": 54.84375, - "top": 34.307144, - "right": 56.25, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 102, - "left": 56.25, - "top": 34.307144, - "right": 57.65625, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 102, - "left": 57.65625, - "top": 34.307144, - "right": 59.0625, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 102, - "left": 59.0625, - "top": 34.307144, - "right": 60.46875, - "bottom": 33.137551, - "countries": [ - "iran" - ] - }, - { - "x": 160, - "y": 103, - "left": 45.0, - "top": 33.137551, - "right": 46.40625, - "bottom": 31.952162, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 103, - "left": 46.40625, - "top": 33.137551, - "right": 47.8125, - "bottom": 31.952162, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 162, - "y": 103, - "left": 47.8125, - "top": 33.137551, - "right": 49.21875, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 103, - "left": 49.21875, - "top": 33.137551, - "right": 50.625, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 103, - "left": 50.625, - "top": 33.137551, - "right": 52.03125, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 103, - "left": 52.03125, - "top": 33.137551, - "right": 53.4375, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 103, - "left": 53.4375, - "top": 33.137551, - "right": 54.84375, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 103, - "left": 54.84375, - "top": 33.137551, - "right": 56.25, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 103, - "left": 56.25, - "top": 33.137551, - "right": 57.65625, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 103, - "left": 57.65625, - "top": 33.137551, - "right": 59.0625, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 103, - "left": 59.0625, - "top": 33.137551, - "right": 60.46875, - "bottom": 31.952162, - "countries": [ - "iran" - ] - }, - { - "x": 161, - "y": 104, - "left": 46.40625, - "top": 31.952162, - "right": 47.8125, - "bottom": 30.751278, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 162, - "y": 104, - "left": 47.8125, - "top": 31.952162, - "right": 49.21875, - "bottom": 30.751278, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 163, - "y": 104, - "left": 49.21875, - "top": 31.952162, - "right": 50.625, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 104, - "left": 50.625, - "top": 31.952162, - "right": 52.03125, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 104, - "left": 52.03125, - "top": 31.952162, - "right": 53.4375, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 104, - "left": 53.4375, - "top": 31.952162, - "right": 54.84375, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 104, - "left": 54.84375, - "top": 31.952162, - "right": 56.25, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 104, - "left": 56.25, - "top": 31.952162, - "right": 57.65625, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 104, - "left": 57.65625, - "top": 31.952162, - "right": 59.0625, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 104, - "left": 59.0625, - "top": 31.952162, - "right": 60.46875, - "bottom": 30.751278, - "countries": [ - "iran" - ] - }, - { - "x": 162, - "y": 105, - "left": 47.8125, - "top": 30.751278, - "right": 49.21875, - "bottom": 29.53523, - "countries": [ - "iran", - "iraq", - "kuwait" - ] - }, - { - "x": 163, - "y": 105, - "left": 49.21875, - "top": 30.751278, - "right": 50.625, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 105, - "left": 50.625, - "top": 30.751278, - "right": 52.03125, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 105, - "left": 52.03125, - "top": 30.751278, - "right": 53.4375, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 105, - "left": 53.4375, - "top": 30.751278, - "right": 54.84375, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 105, - "left": 54.84375, - "top": 30.751278, - "right": 56.25, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 105, - "left": 56.25, - "top": 30.751278, - "right": 57.65625, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 105, - "left": 57.65625, - "top": 30.751278, - "right": 59.0625, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 105, - "left": 59.0625, - "top": 30.751278, - "right": 60.46875, - "bottom": 29.53523, - "countries": [ - "iran" - ] - }, - { - "x": 163, - "y": 106, - "left": 49.21875, - "top": 29.53523, - "right": 50.625, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 164, - "y": 106, - "left": 50.625, - "top": 29.53523, - "right": 52.03125, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 106, - "left": 52.03125, - "top": 29.53523, - "right": 53.4375, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 106, - "left": 53.4375, - "top": 29.53523, - "right": 54.84375, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 106, - "left": 54.84375, - "top": 29.53523, - "right": 56.25, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 106, - "left": 56.25, - "top": 29.53523, - "right": 57.65625, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 106, - "left": 57.65625, - "top": 29.53523, - "right": 59.0625, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 106, - "left": 59.0625, - "top": 29.53523, - "right": 60.46875, - "bottom": 28.304381, - "countries": [ - "iran" - ] - }, - { - "x": 171, - "y": 106, - "left": 60.46875, - "top": 29.53523, - "right": 61.875, - "bottom": 28.304381, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 164, - "y": 107, - "left": 50.625, - "top": 28.304381, - "right": 52.03125, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 165, - "y": 107, - "left": 52.03125, - "top": 28.304381, - "right": 53.4375, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 107, - "left": 53.4375, - "top": 28.304381, - "right": 54.84375, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 107, - "left": 54.84375, - "top": 28.304381, - "right": 56.25, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 168, - "y": 107, - "left": 56.25, - "top": 28.304381, - "right": 57.65625, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 169, - "y": 107, - "left": 57.65625, - "top": 28.304381, - "right": 59.0625, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 107, - "left": 59.0625, - "top": 28.304381, - "right": 60.46875, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 171, - "y": 107, - "left": 60.46875, - "top": 28.304381, - "right": 61.875, - "bottom": 27.059126, - "countries": [ - "iran" - ] - }, - { - "x": 172, - "y": 107, - "left": 61.875, - "top": 28.304381, - "right": 63.28125, - "bottom": 27.059126, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 173, - "y": 107, - "left": 63.28125, - "top": 28.304381, - "right": 64.6875, - "bottom": 27.059126, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 165, - "y": 108, - "left": 52.03125, - "top": 27.059126, - "right": 53.4375, - "bottom": 25.799891, - "countries": [ - "iran" - ] - }, - { - "x": 166, - "y": 108, - "left": 53.4375, - "top": 27.059126, - "right": 54.84375, - "bottom": 25.799891, - "countries": [ - "iran" - ] - }, - { - "x": 167, - "y": 108, - "left": 54.84375, - "top": 27.059126, - "right": 56.25, - "bottom": 25.799891, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 168, - "y": 108, - "left": 56.25, - "top": 27.059126, - "right": 57.65625, - "bottom": 25.799891, - "countries": [ - "iran", - "oman" - ] - }, - { - "x": 169, - "y": 108, - "left": 57.65625, - "top": 27.059126, - "right": 59.0625, - "bottom": 25.799891, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 108, - "left": 59.0625, - "top": 27.059126, - "right": 60.46875, - "bottom": 25.799891, - "countries": [ - "iran" - ] - }, - { - "x": 171, - "y": 108, - "left": 60.46875, - "top": 27.059126, - "right": 61.875, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 172, - "y": 108, - "left": 61.875, - "top": 27.059126, - "right": 63.28125, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 173, - "y": 108, - "left": 63.28125, - "top": 27.059126, - "right": 64.6875, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 168, - "y": 109, - "left": 56.25, - "top": 25.799891, - "right": 57.65625, - "bottom": 24.527135, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 169, - "y": 109, - "left": 57.65625, - "top": 25.799891, - "right": 59.0625, - "bottom": 24.527135, - "countries": [ - "iran" - ] - }, - { - "x": 170, - "y": 109, - "left": 59.0625, - "top": 25.799891, - "right": 60.46875, - "bottom": 24.527135, - "countries": [ - "iran" - ] - }, - { - "x": 171, - "y": 109, - "left": 60.46875, - "top": 25.799891, - "right": 61.875, - "bottom": 24.527135, - "countries": [ - "iran", - "pakistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/iraq.json b/wahoomc/resources/json/asia/iraq.json deleted file mode 100644 index da1a2e8f..00000000 --- a/wahoomc/resources/json/asia/iraq.json +++ /dev/null @@ -1,489 +0,0 @@ -[ - { - "x": 159, - "y": 99, - "left": 43.59375, - "top": 37.71859, - "right": 45.0, - "bottom": 36.597889, - "countries": [ - "iran", - "turkey", - "iraq" - ] - }, - { - "x": 160, - "y": 99, - "left": 45.0, - "top": 37.71859, - "right": 46.40625, - "bottom": 36.597889, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 160, - "y": 100, - "left": 45.0, - "top": 36.597889, - "right": 46.40625, - "bottom": 35.46067, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 160, - "y": 101, - "left": 45.0, - "top": 35.46067, - "right": 46.40625, - "bottom": 34.307144, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 160, - "y": 102, - "left": 45.0, - "top": 34.307144, - "right": 46.40625, - "bottom": 33.137551, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 160, - "y": 103, - "left": 45.0, - "top": 33.137551, - "right": 46.40625, - "bottom": 31.952162, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 103, - "left": 46.40625, - "top": 33.137551, - "right": 47.8125, - "bottom": 31.952162, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 161, - "y": 104, - "left": 46.40625, - "top": 31.952162, - "right": 47.8125, - "bottom": 30.751278, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 162, - "y": 104, - "left": 47.8125, - "top": 31.952162, - "right": 49.21875, - "bottom": 30.751278, - "countries": [ - "iran", - "iraq" - ] - }, - { - "x": 162, - "y": 105, - "left": 47.8125, - "top": 30.751278, - "right": 49.21875, - "bottom": 29.53523, - "countries": [ - "iran", - "iraq", - "kuwait" - ] - }, - { - "x": 157, - "y": 99, - "left": 40.78125, - "top": 37.71859, - "right": 42.1875, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 158, - "y": 99, - "left": 42.1875, - "top": 37.71859, - "right": 43.59375, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 157, - "y": 100, - "left": 40.78125, - "top": 36.597889, - "right": 42.1875, - "bottom": 35.46067, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 158, - "y": 100, - "left": 42.1875, - "top": 36.597889, - "right": 43.59375, - "bottom": 35.46067, - "countries": [ - "iraq" - ] - }, - { - "x": 159, - "y": 100, - "left": 43.59375, - "top": 36.597889, - "right": 45.0, - "bottom": 35.46067, - "countries": [ - "iraq" - ] - }, - { - "x": 156, - "y": 101, - "left": 39.375, - "top": 35.46067, - "right": 40.78125, - "bottom": 34.307144, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 157, - "y": 101, - "left": 40.78125, - "top": 35.46067, - "right": 42.1875, - "bottom": 34.307144, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 158, - "y": 101, - "left": 42.1875, - "top": 35.46067, - "right": 43.59375, - "bottom": 34.307144, - "countries": [ - "iraq" - ] - }, - { - "x": 159, - "y": 101, - "left": 43.59375, - "top": 35.46067, - "right": 45.0, - "bottom": 34.307144, - "countries": [ - "iraq" - ] - }, - { - "x": 155, - "y": 102, - "left": 37.96875, - "top": 34.307144, - "right": 39.375, - "bottom": 33.137551, - "countries": [ - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 156, - "y": 102, - "left": 39.375, - "top": 34.307144, - "right": 40.78125, - "bottom": 33.137551, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 157, - "y": 102, - "left": 40.78125, - "top": 34.307144, - "right": 42.1875, - "bottom": 33.137551, - "countries": [ - "iraq" - ] - }, - { - "x": 158, - "y": 102, - "left": 42.1875, - "top": 34.307144, - "right": 43.59375, - "bottom": 33.137551, - "countries": [ - "iraq" - ] - }, - { - "x": 159, - "y": 102, - "left": 43.59375, - "top": 34.307144, - "right": 45.0, - "bottom": 33.137551, - "countries": [ - "iraq" - ] - }, - { - "x": 155, - "y": 103, - "left": 37.96875, - "top": 33.137551, - "right": 39.375, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 156, - "y": 103, - "left": 39.375, - "top": 33.137551, - "right": 40.78125, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 157, - "y": 103, - "left": 40.78125, - "top": 33.137551, - "right": 42.1875, - "bottom": 31.952162, - "countries": [ - "iraq" - ] - }, - { - "x": 158, - "y": 103, - "left": 42.1875, - "top": 33.137551, - "right": 43.59375, - "bottom": 31.952162, - "countries": [ - "iraq" - ] - }, - { - "x": 159, - "y": 103, - "left": 43.59375, - "top": 33.137551, - "right": 45.0, - "bottom": 31.952162, - "countries": [ - "iraq" - ] - }, - { - "x": 156, - "y": 104, - "left": 39.375, - "top": 31.952162, - "right": 40.78125, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 157, - "y": 104, - "left": 40.78125, - "top": 31.952162, - "right": 42.1875, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 158, - "y": 104, - "left": 42.1875, - "top": 31.952162, - "right": 43.59375, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 159, - "y": 104, - "left": 43.59375, - "top": 31.952162, - "right": 45.0, - "bottom": 30.751278, - "countries": [ - "iraq" - ] - }, - { - "x": 160, - "y": 104, - "left": 45.0, - "top": 31.952162, - "right": 46.40625, - "bottom": 30.751278, - "countries": [ - "iraq" - ] - }, - { - "x": 158, - "y": 105, - "left": 42.1875, - "top": 30.751278, - "right": 43.59375, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 159, - "y": 105, - "left": 43.59375, - "top": 30.751278, - "right": 45.0, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 160, - "y": 105, - "left": 45.0, - "top": 30.751278, - "right": 46.40625, - "bottom": 29.53523, - "countries": [ - "iraq" - ] - }, - { - "x": 161, - "y": 105, - "left": 46.40625, - "top": 30.751278, - "right": 47.8125, - "bottom": 29.53523, - "countries": [ - "iraq", - "kuwait" - ] - }, - { - "x": 159, - "y": 106, - "left": 43.59375, - "top": 29.53523, - "right": 45.0, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 160, - "y": 106, - "left": 45.0, - "top": 29.53523, - "right": 46.40625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 161, - "y": 106, - "left": 46.40625, - "top": 29.53523, - "right": 47.8125, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq", - "kuwait" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/israel.json b/wahoomc/resources/json/asia/israel.json deleted file mode 100644 index 3ee78eae..00000000 --- a/wahoomc/resources/json/asia/israel.json +++ /dev/null @@ -1,122 +0,0 @@ -[ - { - "x": 152, - "y": 104, - "left": 33.75, - "top": 31.952162, - "right": 35.15625, - "bottom": 30.751278, - "countries": [ - "egypt", - "israel", - "palestina" - ] - }, - { - "x": 152, - "y": 105, - "left": 33.75, - "top": 30.751278, - "right": 35.15625, - "bottom": 29.53523, - "countries": [ - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 152, - "y": 106, - "left": 33.75, - "top": 29.53523, - "right": 35.15625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 153, - "y": 102, - "left": 35.15625, - "top": 34.307144, - "right": 36.5625, - "bottom": 33.137551, - "countries": [ - "lebanon", - "syria", - "israel" - ] - }, - { - "x": 152, - "y": 103, - "left": 33.75, - "top": 33.137551, - "right": 35.15625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 103, - "left": 35.15625, - "top": 33.137551, - "right": 36.5625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "syria", - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 104, - "left": 35.15625, - "top": 31.952162, - "right": 36.5625, - "bottom": 30.751278, - "countries": [ - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 105, - "left": 35.15625, - "top": 30.751278, - "right": 36.5625, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan", - "israel" - ] - }, - { - "x": 158, - "y": 115, - "left": 42.1875, - "top": 17.978733, - "right": 43.59375, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "israel", - "yemen" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/japan.json b/wahoomc/resources/json/asia/japan.json deleted file mode 100644 index 5a064cbf..00000000 --- a/wahoomc/resources/json/asia/japan.json +++ /dev/null @@ -1,975 +0,0 @@ -[ - { - "x": 225, - "y": 98, - "left": 136.40625, - "top": 38.822591, - "right": 137.8125, - "bottom": 37.71859, - "countries": [ - "japan" - ] - }, - { - "x": 226, - "y": 98, - "left": 137.8125, - "top": 38.822591, - "right": 139.21875, - "bottom": 37.71859, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 98, - "left": 139.21875, - "top": 38.822591, - "right": 140.625, - "bottom": 37.71859, - "countries": [ - "japan" - ] - }, - { - "x": 225, - "y": 99, - "left": 136.40625, - "top": 37.71859, - "right": 137.8125, - "bottom": 36.597889, - "countries": [ - "japan" - ] - }, - { - "x": 226, - "y": 99, - "left": 137.8125, - "top": 37.71859, - "right": 139.21875, - "bottom": 36.597889, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 99, - "left": 139.21875, - "top": 37.71859, - "right": 140.625, - "bottom": 36.597889, - "countries": [ - "japan" - ] - }, - { - "x": 224, - "y": 100, - "left": 135.0, - "top": 36.597889, - "right": 136.40625, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 225, - "y": 100, - "left": 136.40625, - "top": 36.597889, - "right": 137.8125, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 226, - "y": 100, - "left": 137.8125, - "top": 36.597889, - "right": 139.21875, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 224, - "y": 101, - "left": 135.0, - "top": 35.46067, - "right": 136.40625, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 225, - "y": 101, - "left": 136.40625, - "top": 35.46067, - "right": 137.8125, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 226, - "y": 101, - "left": 137.8125, - "top": 35.46067, - "right": 139.21875, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 222, - "y": 100, - "left": 132.1875, - "top": 36.597889, - "right": 133.59375, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 223, - "y": 100, - "left": 133.59375, - "top": 36.597889, - "right": 135.0, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 101, - "left": 130.78125, - "top": 35.46067, - "right": 132.1875, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 222, - "y": 101, - "left": 132.1875, - "top": 35.46067, - "right": 133.59375, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 223, - "y": 101, - "left": 133.59375, - "top": 35.46067, - "right": 135.0, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 102, - "left": 129.375, - "top": 34.307144, - "right": 130.78125, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 102, - "left": 130.78125, - "top": 34.307144, - "right": 132.1875, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 222, - "y": 102, - "left": 132.1875, - "top": 34.307144, - "right": 133.59375, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 91, - "left": 140.625, - "top": 46.073231, - "right": 142.03125, - "bottom": 45.089036, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 229, - "y": 91, - "left": 142.03125, - "top": 46.073231, - "right": 143.4375, - "bottom": 45.089036, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 228, - "y": 92, - "left": 140.625, - "top": 45.089036, - "right": 142.03125, - "bottom": 44.087585, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 92, - "left": 142.03125, - "top": 45.089036, - "right": 143.4375, - "bottom": 44.087585, - "countries": [ - "japan" - ] - }, - { - "x": 230, - "y": 92, - "left": 143.4375, - "top": 45.089036, - "right": 144.84375, - "bottom": 44.087585, - "countries": [ - "japan" - ] - }, - { - "x": 231, - "y": 92, - "left": 144.84375, - "top": 45.089036, - "right": 146.25, - "bottom": 44.087585, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 227, - "y": 93, - "left": 139.21875, - "top": 44.087585, - "right": 140.625, - "bottom": 43.068888, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 93, - "left": 140.625, - "top": 44.087585, - "right": 142.03125, - "bottom": 43.068888, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 93, - "left": 142.03125, - "top": 44.087585, - "right": 143.4375, - "bottom": 43.068888, - "countries": [ - "japan" - ] - }, - { - "x": 230, - "y": 93, - "left": 143.4375, - "top": 44.087585, - "right": 144.84375, - "bottom": 43.068888, - "countries": [ - "japan" - ] - }, - { - "x": 231, - "y": 93, - "left": 144.84375, - "top": 44.087585, - "right": 146.25, - "bottom": 43.068888, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 227, - "y": 94, - "left": 139.21875, - "top": 43.068888, - "right": 140.625, - "bottom": 42.032974, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 94, - "left": 140.625, - "top": 43.068888, - "right": 142.03125, - "bottom": 42.032974, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 94, - "left": 142.03125, - "top": 43.068888, - "right": 143.4375, - "bottom": 42.032974, - "countries": [ - "japan" - ] - }, - { - "x": 230, - "y": 94, - "left": 143.4375, - "top": 43.068888, - "right": 144.84375, - "bottom": 42.032974, - "countries": [ - "japan" - ] - }, - { - "x": 231, - "y": 94, - "left": 144.84375, - "top": 43.068888, - "right": 146.25, - "bottom": 42.032974, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 95, - "left": 139.21875, - "top": 42.032974, - "right": 140.625, - "bottom": 40.979898, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 95, - "left": 140.625, - "top": 42.032974, - "right": 142.03125, - "bottom": 40.979898, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 95, - "left": 142.03125, - "top": 42.032974, - "right": 143.4375, - "bottom": 40.979898, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 99, - "left": 140.625, - "top": 37.71859, - "right": 142.03125, - "bottom": 36.597889, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 100, - "left": 139.21875, - "top": 36.597889, - "right": 140.625, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 100, - "left": 140.625, - "top": 36.597889, - "right": 142.03125, - "bottom": 35.46067, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 101, - "left": 139.21875, - "top": 35.46067, - "right": 140.625, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 226, - "y": 102, - "left": 137.8125, - "top": 34.307144, - "right": 139.21875, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 102, - "left": 139.21875, - "top": 34.307144, - "right": 140.625, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 103, - "left": 139.21875, - "top": 33.137551, - "right": 140.625, - "bottom": 31.952162, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 104, - "left": 139.21875, - "top": 31.952162, - "right": 140.625, - "bottom": 30.751278, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 105, - "left": 139.21875, - "top": 30.751278, - "right": 140.625, - "bottom": 29.53523, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 107, - "left": 140.625, - "top": 28.304381, - "right": 142.03125, - "bottom": 27.059126, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 107, - "left": 142.03125, - "top": 28.304381, - "right": 143.4375, - "bottom": 27.059126, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 108, - "left": 142.03125, - "top": 27.059126, - "right": 143.4375, - "bottom": 25.799891, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 109, - "left": 140.625, - "top": 25.799891, - "right": 142.03125, - "bottom": 24.527135, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 110, - "left": 140.625, - "top": 24.527135, - "right": 142.03125, - "bottom": 23.241346, - "countries": [ - "japan" - ] - }, - { - "x": 237, - "y": 110, - "left": 153.28125, - "top": 24.527135, - "right": 154.6875, - "bottom": 23.241346, - "countries": [ - "japan" - ] - }, - { - "x": 224, - "y": 113, - "left": 135.0, - "top": 20.632784, - "right": 136.40625, - "bottom": 19.311143, - "countries": [ - "japan" - ] - }, - { - "x": 223, - "y": 102, - "left": 133.59375, - "top": 34.307144, - "right": 135.0, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 224, - "y": 102, - "left": 135.0, - "top": 34.307144, - "right": 136.40625, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 225, - "y": 102, - "left": 136.40625, - "top": 34.307144, - "right": 137.8125, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 101, - "left": 127.96875, - "top": 35.46067, - "right": 129.375, - "bottom": 34.307144, - "countries": [ - "japan", - "south_korea" - ] - }, - { - "x": 220, - "y": 101, - "left": 129.375, - "top": 35.46067, - "right": 130.78125, - "bottom": 34.307144, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 102, - "left": 127.96875, - "top": 34.307144, - "right": 129.375, - "bottom": 33.137551, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 103, - "left": 127.96875, - "top": 33.137551, - "right": 129.375, - "bottom": 31.952162, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 103, - "left": 129.375, - "top": 33.137551, - "right": 130.78125, - "bottom": 31.952162, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 103, - "left": 130.78125, - "top": 33.137551, - "right": 132.1875, - "bottom": 31.952162, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 104, - "left": 129.375, - "top": 31.952162, - "right": 130.78125, - "bottom": 30.751278, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 104, - "left": 130.78125, - "top": 31.952162, - "right": 132.1875, - "bottom": 30.751278, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 105, - "left": 129.375, - "top": 30.751278, - "right": 130.78125, - "bottom": 29.53523, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 105, - "left": 130.78125, - "top": 30.751278, - "right": 132.1875, - "bottom": 29.53523, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 106, - "left": 127.96875, - "top": 29.53523, - "right": 129.375, - "bottom": 28.304381, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 106, - "left": 129.375, - "top": 29.53523, - "right": 130.78125, - "bottom": 28.304381, - "countries": [ - "japan" - ] - }, - { - "x": 218, - "y": 107, - "left": 126.5625, - "top": 28.304381, - "right": 127.96875, - "bottom": 27.059126, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 107, - "left": 127.96875, - "top": 28.304381, - "right": 129.375, - "bottom": 27.059126, - "countries": [ - "japan" - ] - }, - { - "x": 220, - "y": 107, - "left": 129.375, - "top": 28.304381, - "right": 130.78125, - "bottom": 27.059126, - "countries": [ - "japan" - ] - }, - { - "x": 218, - "y": 108, - "left": 126.5625, - "top": 27.059126, - "right": 127.96875, - "bottom": 25.799891, - "countries": [ - "japan" - ] - }, - { - "x": 219, - "y": 108, - "left": 127.96875, - "top": 27.059126, - "right": 129.375, - "bottom": 25.799891, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 108, - "left": 130.78125, - "top": 27.059126, - "right": 132.1875, - "bottom": 25.799891, - "countries": [ - "japan" - ] - }, - { - "x": 216, - "y": 109, - "left": 123.75, - "top": 25.799891, - "right": 125.15625, - "bottom": 24.527135, - "countries": [ - "japan" - ] - }, - { - "x": 217, - "y": 109, - "left": 125.15625, - "top": 25.799891, - "right": 126.5625, - "bottom": 24.527135, - "countries": [ - "japan" - ] - }, - { - "x": 215, - "y": 110, - "left": 122.34375, - "top": 24.527135, - "right": 123.75, - "bottom": 23.241346, - "countries": [ - "japan" - ] - }, - { - "x": 216, - "y": 110, - "left": 123.75, - "top": 24.527135, - "right": 125.15625, - "bottom": 23.241346, - "countries": [ - "japan" - ] - }, - { - "x": 221, - "y": 110, - "left": 130.78125, - "top": 24.527135, - "right": 132.1875, - "bottom": 23.241346, - "countries": [ - "japan" - ] - }, - { - "x": 222, - "y": 103, - "left": 132.1875, - "top": 33.137551, - "right": 133.59375, - "bottom": 31.952162, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 96, - "left": 139.21875, - "top": 40.979898, - "right": 140.625, - "bottom": 39.909736, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 96, - "left": 140.625, - "top": 40.979898, - "right": 142.03125, - "bottom": 39.909736, - "countries": [ - "japan" - ] - }, - { - "x": 227, - "y": 97, - "left": 139.21875, - "top": 39.909736, - "right": 140.625, - "bottom": 38.822591, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 97, - "left": 140.625, - "top": 39.909736, - "right": 142.03125, - "bottom": 38.822591, - "countries": [ - "japan" - ] - }, - { - "x": 229, - "y": 97, - "left": 142.03125, - "top": 39.909736, - "right": 143.4375, - "bottom": 38.822591, - "countries": [ - "japan" - ] - }, - { - "x": 228, - "y": 98, - "left": 140.625, - "top": 38.822591, - "right": 142.03125, - "bottom": 37.71859, - "countries": [ - "japan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/jordan.json b/wahoomc/resources/json/asia/jordan.json deleted file mode 100644 index 6ceadcdc..00000000 --- a/wahoomc/resources/json/asia/jordan.json +++ /dev/null @@ -1,169 +0,0 @@ -[ - { - "x": 152, - "y": 105, - "left": 33.75, - "top": 30.751278, - "right": 35.15625, - "bottom": 29.53523, - "countries": [ - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 152, - "y": 106, - "left": 33.75, - "top": 29.53523, - "right": 35.15625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 155, - "y": 102, - "left": 37.96875, - "top": 34.307144, - "right": 39.375, - "bottom": 33.137551, - "countries": [ - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 155, - "y": 103, - "left": 37.96875, - "top": 33.137551, - "right": 39.375, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 153, - "y": 103, - "left": 35.15625, - "top": 33.137551, - "right": 36.5625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "syria", - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 104, - "left": 35.15625, - "top": 31.952162, - "right": 36.5625, - "bottom": 30.751278, - "countries": [ - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 105, - "left": 35.15625, - "top": 30.751278, - "right": 36.5625, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan", - "israel" - ] - }, - { - "x": 154, - "y": 103, - "left": 36.5625, - "top": 33.137551, - "right": 37.96875, - "bottom": 31.952162, - "countries": [ - "jordan", - "syria" - ] - }, - { - "x": 154, - "y": 104, - "left": 36.5625, - "top": 31.952162, - "right": 37.96875, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 155, - "y": 104, - "left": 37.96875, - "top": 31.952162, - "right": 39.375, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 154, - "y": 105, - "left": 36.5625, - "top": 30.751278, - "right": 37.96875, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 155, - "y": 105, - "left": 37.96875, - "top": 30.751278, - "right": 39.375, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 153, - "y": 106, - "left": 35.15625, - "top": 29.53523, - "right": 36.5625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/kazakhstan.json b/wahoomc/resources/json/asia/kazakhstan.json deleted file mode 100644 index 908c304a..00000000 --- a/wahoomc/resources/json/asia/kazakhstan.json +++ /dev/null @@ -1,3566 +0,0 @@ -[ - { - "x": 189, - "y": 87, - "left": 85.78125, - "top": 49.837982, - "right": 87.1875, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan", - "china" - ] - }, - { - "x": 190, - "y": 87, - "left": 87.1875, - "top": 49.837982, - "right": 88.59375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "kazakhstan", - "china" - ] - }, - { - "x": 188, - "y": 88, - "left": 84.375, - "top": 48.922499, - "right": 85.78125, - "bottom": 47.989922, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 189, - "y": 88, - "left": 85.78125, - "top": 48.922499, - "right": 87.1875, - "bottom": 47.989922, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 187, - "y": 89, - "left": 82.96875, - "top": 47.989922, - "right": 84.375, - "bottom": 47.040182, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 188, - "y": 89, - "left": 84.375, - "top": 47.989922, - "right": 85.78125, - "bottom": 47.040182, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 186, - "y": 90, - "left": 81.5625, - "top": 47.040182, - "right": 82.96875, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 187, - "y": 90, - "left": 82.96875, - "top": 47.040182, - "right": 84.375, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 188, - "y": 90, - "left": 84.375, - "top": 47.040182, - "right": 85.78125, - "bottom": 46.073231, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 185, - "y": 91, - "left": 80.15625, - "top": 46.073231, - "right": 81.5625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 186, - "y": 91, - "left": 81.5625, - "top": 46.073231, - "right": 82.96875, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 184, - "y": 92, - "left": 78.75, - "top": 45.089036, - "right": 80.15625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 185, - "y": 92, - "left": 80.15625, - "top": 45.089036, - "right": 81.5625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 185, - "y": 93, - "left": 80.15625, - "top": 44.087585, - "right": 81.5625, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "china" - ] - }, - { - "x": 184, - "y": 94, - "left": 78.75, - "top": 43.068888, - "right": 80.15625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 185, - "y": 94, - "left": 80.15625, - "top": 43.068888, - "right": 81.5625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 176, - "y": 80, - "left": 67.5, - "top": 55.776573, - "right": 68.90625, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 177, - "y": 80, - "left": 68.90625, - "top": 55.776573, - "right": 70.3125, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 178, - "y": 80, - "left": 70.3125, - "top": 55.776573, - "right": 71.71875, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 81, - "left": 61.875, - "top": 54.977614, - "right": 63.28125, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 173, - "y": 81, - "left": 63.28125, - "top": 54.977614, - "right": 64.6875, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 174, - "y": 81, - "left": 64.6875, - "top": 54.977614, - "right": 66.09375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 175, - "y": 81, - "left": 66.09375, - "top": 54.977614, - "right": 67.5, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 176, - "y": 81, - "left": 67.5, - "top": 54.977614, - "right": 68.90625, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 177, - "y": 81, - "left": 68.90625, - "top": 54.977614, - "right": 70.3125, - "bottom": 54.162434, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 81, - "left": 70.3125, - "top": 54.977614, - "right": 71.71875, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 179, - "y": 81, - "left": 71.71875, - "top": 54.977614, - "right": 73.125, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 181, - "y": 81, - "left": 74.53125, - "top": 54.977614, - "right": 75.9375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 182, - "y": 81, - "left": 75.9375, - "top": 54.977614, - "right": 77.34375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 82, - "left": 60.46875, - "top": 54.162434, - "right": 61.875, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 82, - "left": 61.875, - "top": 54.162434, - "right": 63.28125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 173, - "y": 82, - "left": 63.28125, - "top": 54.162434, - "right": 64.6875, - "bottom": 53.330873, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 82, - "left": 64.6875, - "top": 54.162434, - "right": 66.09375, - "bottom": 53.330873, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 82, - "left": 66.09375, - "top": 54.162434, - "right": 67.5, - "bottom": 53.330873, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 82, - "left": 67.5, - "top": 54.162434, - "right": 68.90625, - "bottom": 53.330873, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 82, - "left": 68.90625, - "top": 54.162434, - "right": 70.3125, - "bottom": 53.330873, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 82, - "left": 70.3125, - "top": 54.162434, - "right": 71.71875, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 179, - "y": 82, - "left": 71.71875, - "top": 54.162434, - "right": 73.125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 180, - "y": 82, - "left": 73.125, - "top": 54.162434, - "right": 74.53125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 181, - "y": 82, - "left": 74.53125, - "top": 54.162434, - "right": 75.9375, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 182, - "y": 82, - "left": 75.9375, - "top": 54.162434, - "right": 77.34375, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 183, - "y": 82, - "left": 77.34375, - "top": 54.162434, - "right": 78.75, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 83, - "left": 60.46875, - "top": 53.330873, - "right": 61.875, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 83, - "left": 61.875, - "top": 53.330873, - "right": 63.28125, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 173, - "y": 83, - "left": 63.28125, - "top": 53.330873, - "right": 64.6875, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 83, - "left": 64.6875, - "top": 53.330873, - "right": 66.09375, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 83, - "left": 66.09375, - "top": 53.330873, - "right": 67.5, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 83, - "left": 67.5, - "top": 53.330873, - "right": 68.90625, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 83, - "left": 68.90625, - "top": 53.330873, - "right": 70.3125, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 83, - "left": 70.3125, - "top": 53.330873, - "right": 71.71875, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 83, - "left": 71.71875, - "top": 53.330873, - "right": 73.125, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 83, - "left": 73.125, - "top": 53.330873, - "right": 74.53125, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 83, - "left": 74.53125, - "top": 53.330873, - "right": 75.9375, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 83, - "left": 75.9375, - "top": 53.330873, - "right": 77.34375, - "bottom": 52.48278, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 83, - "left": 77.34375, - "top": 53.330873, - "right": 78.75, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 84, - "left": 49.21875, - "top": 52.48278, - "right": 50.625, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 164, - "y": 84, - "left": 50.625, - "top": 52.48278, - "right": 52.03125, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 165, - "y": 84, - "left": 52.03125, - "top": 52.48278, - "right": 53.4375, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 84, - "left": 59.0625, - "top": 52.48278, - "right": 60.46875, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 84, - "left": 60.46875, - "top": 52.48278, - "right": 61.875, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 84, - "left": 61.875, - "top": 52.48278, - "right": 63.28125, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 84, - "left": 63.28125, - "top": 52.48278, - "right": 64.6875, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 84, - "left": 64.6875, - "top": 52.48278, - "right": 66.09375, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 84, - "left": 66.09375, - "top": 52.48278, - "right": 67.5, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 84, - "left": 67.5, - "top": 52.48278, - "right": 68.90625, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 84, - "left": 68.90625, - "top": 52.48278, - "right": 70.3125, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 84, - "left": 70.3125, - "top": 52.48278, - "right": 71.71875, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 84, - "left": 71.71875, - "top": 52.48278, - "right": 73.125, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 84, - "left": 73.125, - "top": 52.48278, - "right": 74.53125, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 84, - "left": 74.53125, - "top": 52.48278, - "right": 75.9375, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 84, - "left": 75.9375, - "top": 52.48278, - "right": 77.34375, - "bottom": 51.618017, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 84, - "left": 77.34375, - "top": 52.48278, - "right": 78.75, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 184, - "y": 84, - "left": 78.75, - "top": 52.48278, - "right": 80.15625, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 85, - "left": 47.8125, - "top": 51.618017, - "right": 49.21875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 85, - "left": 49.21875, - "top": 51.618017, - "right": 50.625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 164, - "y": 85, - "left": 50.625, - "top": 51.618017, - "right": 52.03125, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 165, - "y": 85, - "left": 52.03125, - "top": 51.618017, - "right": 53.4375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 85, - "left": 53.4375, - "top": 51.618017, - "right": 54.84375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 85, - "left": 54.84375, - "top": 51.618017, - "right": 56.25, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 168, - "y": 85, - "left": 56.25, - "top": 51.618017, - "right": 57.65625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 169, - "y": 85, - "left": 57.65625, - "top": 51.618017, - "right": 59.0625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 85, - "left": 59.0625, - "top": 51.618017, - "right": 60.46875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 85, - "left": 60.46875, - "top": 51.618017, - "right": 61.875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 85, - "left": 61.875, - "top": 51.618017, - "right": 63.28125, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 85, - "left": 63.28125, - "top": 51.618017, - "right": 64.6875, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 85, - "left": 64.6875, - "top": 51.618017, - "right": 66.09375, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 85, - "left": 66.09375, - "top": 51.618017, - "right": 67.5, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 85, - "left": 67.5, - "top": 51.618017, - "right": 68.90625, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 85, - "left": 68.90625, - "top": 51.618017, - "right": 70.3125, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 85, - "left": 70.3125, - "top": 51.618017, - "right": 71.71875, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 85, - "left": 71.71875, - "top": 51.618017, - "right": 73.125, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 85, - "left": 73.125, - "top": 51.618017, - "right": 74.53125, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 85, - "left": 74.53125, - "top": 51.618017, - "right": 75.9375, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 85, - "left": 75.9375, - "top": 51.618017, - "right": 77.34375, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 85, - "left": 77.34375, - "top": 51.618017, - "right": 78.75, - "bottom": 50.736455, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 85, - "left": 78.75, - "top": 51.618017, - "right": 80.15625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 185, - "y": 85, - "left": 80.15625, - "top": 51.618017, - "right": 81.5625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 186, - "y": 85, - "left": 81.5625, - "top": 51.618017, - "right": 82.96875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 187, - "y": 85, - "left": 82.96875, - "top": 51.618017, - "right": 84.375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 86, - "left": 46.40625, - "top": 50.736455, - "right": 47.8125, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 86, - "left": 47.8125, - "top": 50.736455, - "right": 49.21875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 86, - "left": 49.21875, - "top": 50.736455, - "right": 50.625, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 86, - "left": 50.625, - "top": 50.736455, - "right": 52.03125, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 86, - "left": 52.03125, - "top": 50.736455, - "right": 53.4375, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 86, - "left": 53.4375, - "top": 50.736455, - "right": 54.84375, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 86, - "left": 54.84375, - "top": 50.736455, - "right": 56.25, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 168, - "y": 86, - "left": 56.25, - "top": 50.736455, - "right": 57.65625, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 169, - "y": 86, - "left": 57.65625, - "top": 50.736455, - "right": 59.0625, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 86, - "left": 59.0625, - "top": 50.736455, - "right": 60.46875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 86, - "left": 60.46875, - "top": 50.736455, - "right": 61.875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 86, - "left": 61.875, - "top": 50.736455, - "right": 63.28125, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 86, - "left": 63.28125, - "top": 50.736455, - "right": 64.6875, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 86, - "left": 64.6875, - "top": 50.736455, - "right": 66.09375, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 86, - "left": 66.09375, - "top": 50.736455, - "right": 67.5, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 86, - "left": 67.5, - "top": 50.736455, - "right": 68.90625, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 86, - "left": 68.90625, - "top": 50.736455, - "right": 70.3125, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 86, - "left": 70.3125, - "top": 50.736455, - "right": 71.71875, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 86, - "left": 71.71875, - "top": 50.736455, - "right": 73.125, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 86, - "left": 73.125, - "top": 50.736455, - "right": 74.53125, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 86, - "left": 74.53125, - "top": 50.736455, - "right": 75.9375, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 86, - "left": 75.9375, - "top": 50.736455, - "right": 77.34375, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 86, - "left": 77.34375, - "top": 50.736455, - "right": 78.75, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 86, - "left": 78.75, - "top": 50.736455, - "right": 80.15625, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 185, - "y": 86, - "left": 80.15625, - "top": 50.736455, - "right": 81.5625, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 186, - "y": 86, - "left": 81.5625, - "top": 50.736455, - "right": 82.96875, - "bottom": 49.837982, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 187, - "y": 86, - "left": 82.96875, - "top": 50.736455, - "right": 84.375, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 188, - "y": 86, - "left": 84.375, - "top": 50.736455, - "right": 85.78125, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 87, - "left": 46.40625, - "top": 49.837982, - "right": 47.8125, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 87, - "left": 47.8125, - "top": 49.837982, - "right": 49.21875, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 87, - "left": 49.21875, - "top": 49.837982, - "right": 50.625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 87, - "left": 50.625, - "top": 49.837982, - "right": 52.03125, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 87, - "left": 52.03125, - "top": 49.837982, - "right": 53.4375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 87, - "left": 53.4375, - "top": 49.837982, - "right": 54.84375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 87, - "left": 54.84375, - "top": 49.837982, - "right": 56.25, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 168, - "y": 87, - "left": 56.25, - "top": 49.837982, - "right": 57.65625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 169, - "y": 87, - "left": 57.65625, - "top": 49.837982, - "right": 59.0625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 170, - "y": 87, - "left": 59.0625, - "top": 49.837982, - "right": 60.46875, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 171, - "y": 87, - "left": 60.46875, - "top": 49.837982, - "right": 61.875, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 172, - "y": 87, - "left": 61.875, - "top": 49.837982, - "right": 63.28125, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 87, - "left": 63.28125, - "top": 49.837982, - "right": 64.6875, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 87, - "left": 64.6875, - "top": 49.837982, - "right": 66.09375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 87, - "left": 66.09375, - "top": 49.837982, - "right": 67.5, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 87, - "left": 67.5, - "top": 49.837982, - "right": 68.90625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 87, - "left": 68.90625, - "top": 49.837982, - "right": 70.3125, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 87, - "left": 70.3125, - "top": 49.837982, - "right": 71.71875, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 87, - "left": 71.71875, - "top": 49.837982, - "right": 73.125, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 87, - "left": 73.125, - "top": 49.837982, - "right": 74.53125, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 87, - "left": 74.53125, - "top": 49.837982, - "right": 75.9375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 87, - "left": 75.9375, - "top": 49.837982, - "right": 77.34375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 87, - "left": 77.34375, - "top": 49.837982, - "right": 78.75, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 87, - "left": 78.75, - "top": 49.837982, - "right": 80.15625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 185, - "y": 87, - "left": 80.15625, - "top": 49.837982, - "right": 81.5625, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 186, - "y": 87, - "left": 81.5625, - "top": 49.837982, - "right": 82.96875, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 187, - "y": 87, - "left": 82.96875, - "top": 49.837982, - "right": 84.375, - "bottom": 48.922499, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 188, - "y": 87, - "left": 84.375, - "top": 49.837982, - "right": 85.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 88, - "left": 46.40625, - "top": 48.922499, - "right": 47.8125, - "bottom": 47.989922, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 88, - "left": 47.8125, - "top": 48.922499, - "right": 49.21875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 163, - "y": 88, - "left": 49.21875, - "top": 48.922499, - "right": 50.625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 88, - "left": 50.625, - "top": 48.922499, - "right": 52.03125, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 88, - "left": 52.03125, - "top": 48.922499, - "right": 53.4375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 88, - "left": 53.4375, - "top": 48.922499, - "right": 54.84375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 88, - "left": 54.84375, - "top": 48.922499, - "right": 56.25, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 168, - "y": 88, - "left": 56.25, - "top": 48.922499, - "right": 57.65625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 169, - "y": 88, - "left": 57.65625, - "top": 48.922499, - "right": 59.0625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 170, - "y": 88, - "left": 59.0625, - "top": 48.922499, - "right": 60.46875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 171, - "y": 88, - "left": 60.46875, - "top": 48.922499, - "right": 61.875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 172, - "y": 88, - "left": 61.875, - "top": 48.922499, - "right": 63.28125, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 88, - "left": 63.28125, - "top": 48.922499, - "right": 64.6875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 88, - "left": 64.6875, - "top": 48.922499, - "right": 66.09375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 88, - "left": 66.09375, - "top": 48.922499, - "right": 67.5, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 88, - "left": 67.5, - "top": 48.922499, - "right": 68.90625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 88, - "left": 68.90625, - "top": 48.922499, - "right": 70.3125, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 88, - "left": 70.3125, - "top": 48.922499, - "right": 71.71875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 88, - "left": 71.71875, - "top": 48.922499, - "right": 73.125, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 88, - "left": 73.125, - "top": 48.922499, - "right": 74.53125, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 88, - "left": 74.53125, - "top": 48.922499, - "right": 75.9375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 88, - "left": 75.9375, - "top": 48.922499, - "right": 77.34375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 88, - "left": 77.34375, - "top": 48.922499, - "right": 78.75, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 88, - "left": 78.75, - "top": 48.922499, - "right": 80.15625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 185, - "y": 88, - "left": 80.15625, - "top": 48.922499, - "right": 81.5625, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 186, - "y": 88, - "left": 81.5625, - "top": 48.922499, - "right": 82.96875, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 187, - "y": 88, - "left": 82.96875, - "top": 48.922499, - "right": 84.375, - "bottom": 47.989922, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 161, - "y": 89, - "left": 46.40625, - "top": 47.989922, - "right": 47.8125, - "bottom": 47.040182, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 89, - "left": 47.8125, - "top": 47.989922, - "right": 49.21875, - "bottom": 47.040182, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 89, - "left": 49.21875, - "top": 47.989922, - "right": 50.625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 89, - "left": 50.625, - "top": 47.989922, - "right": 52.03125, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 89, - "left": 52.03125, - "top": 47.989922, - "right": 53.4375, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 89, - "left": 53.4375, - "top": 47.989922, - "right": 54.84375, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 89, - "left": 54.84375, - "top": 47.989922, - "right": 56.25, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 168, - "y": 89, - "left": 56.25, - "top": 47.989922, - "right": 57.65625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 169, - "y": 89, - "left": 57.65625, - "top": 47.989922, - "right": 59.0625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 170, - "y": 89, - "left": 59.0625, - "top": 47.989922, - "right": 60.46875, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 171, - "y": 89, - "left": 60.46875, - "top": 47.989922, - "right": 61.875, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 172, - "y": 89, - "left": 61.875, - "top": 47.989922, - "right": 63.28125, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 89, - "left": 63.28125, - "top": 47.989922, - "right": 64.6875, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 89, - "left": 64.6875, - "top": 47.989922, - "right": 66.09375, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 89, - "left": 66.09375, - "top": 47.989922, - "right": 67.5, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 89, - "left": 67.5, - "top": 47.989922, - "right": 68.90625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 89, - "left": 68.90625, - "top": 47.989922, - "right": 70.3125, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 89, - "left": 70.3125, - "top": 47.989922, - "right": 71.71875, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 89, - "left": 71.71875, - "top": 47.989922, - "right": 73.125, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 89, - "left": 73.125, - "top": 47.989922, - "right": 74.53125, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 89, - "left": 74.53125, - "top": 47.989922, - "right": 75.9375, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 89, - "left": 75.9375, - "top": 47.989922, - "right": 77.34375, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 89, - "left": 77.34375, - "top": 47.989922, - "right": 78.75, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 89, - "left": 78.75, - "top": 47.989922, - "right": 80.15625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 185, - "y": 89, - "left": 80.15625, - "top": 47.989922, - "right": 81.5625, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 186, - "y": 89, - "left": 81.5625, - "top": 47.989922, - "right": 82.96875, - "bottom": 47.040182, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 162, - "y": 90, - "left": 47.8125, - "top": 47.040182, - "right": 49.21875, - "bottom": 46.073231, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 90, - "left": 49.21875, - "top": 47.040182, - "right": 50.625, - "bottom": 46.073231, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 164, - "y": 90, - "left": 50.625, - "top": 47.040182, - "right": 52.03125, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 90, - "left": 52.03125, - "top": 47.040182, - "right": 53.4375, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 90, - "left": 53.4375, - "top": 47.040182, - "right": 54.84375, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 90, - "left": 54.84375, - "top": 47.040182, - "right": 56.25, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 168, - "y": 90, - "left": 56.25, - "top": 47.040182, - "right": 57.65625, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 169, - "y": 90, - "left": 57.65625, - "top": 47.040182, - "right": 59.0625, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 170, - "y": 90, - "left": 59.0625, - "top": 47.040182, - "right": 60.46875, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 171, - "y": 90, - "left": 60.46875, - "top": 47.040182, - "right": 61.875, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 172, - "y": 90, - "left": 61.875, - "top": 47.040182, - "right": 63.28125, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 90, - "left": 63.28125, - "top": 47.040182, - "right": 64.6875, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 90, - "left": 64.6875, - "top": 47.040182, - "right": 66.09375, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 90, - "left": 66.09375, - "top": 47.040182, - "right": 67.5, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 90, - "left": 67.5, - "top": 47.040182, - "right": 68.90625, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 90, - "left": 68.90625, - "top": 47.040182, - "right": 70.3125, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 90, - "left": 70.3125, - "top": 47.040182, - "right": 71.71875, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 90, - "left": 71.71875, - "top": 47.040182, - "right": 73.125, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 90, - "left": 73.125, - "top": 47.040182, - "right": 74.53125, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 90, - "left": 74.53125, - "top": 47.040182, - "right": 75.9375, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 90, - "left": 75.9375, - "top": 47.040182, - "right": 77.34375, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 90, - "left": 77.34375, - "top": 47.040182, - "right": 78.75, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 90, - "left": 78.75, - "top": 47.040182, - "right": 80.15625, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 185, - "y": 90, - "left": 80.15625, - "top": 47.040182, - "right": 81.5625, - "bottom": 46.073231, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 91, - "left": 50.625, - "top": 46.073231, - "right": 52.03125, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 91, - "left": 52.03125, - "top": 46.073231, - "right": 53.4375, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 91, - "left": 53.4375, - "top": 46.073231, - "right": 54.84375, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 91, - "left": 54.84375, - "top": 46.073231, - "right": 56.25, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 168, - "y": 91, - "left": 56.25, - "top": 46.073231, - "right": 57.65625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 91, - "left": 57.65625, - "top": 46.073231, - "right": 59.0625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 170, - "y": 91, - "left": 59.0625, - "top": 46.073231, - "right": 60.46875, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 91, - "left": 60.46875, - "top": 46.073231, - "right": 61.875, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 172, - "y": 91, - "left": 61.875, - "top": 46.073231, - "right": 63.28125, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 91, - "left": 63.28125, - "top": 46.073231, - "right": 64.6875, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 91, - "left": 64.6875, - "top": 46.073231, - "right": 66.09375, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 91, - "left": 66.09375, - "top": 46.073231, - "right": 67.5, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 91, - "left": 67.5, - "top": 46.073231, - "right": 68.90625, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 91, - "left": 68.90625, - "top": 46.073231, - "right": 70.3125, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 91, - "left": 70.3125, - "top": 46.073231, - "right": 71.71875, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 91, - "left": 71.71875, - "top": 46.073231, - "right": 73.125, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 91, - "left": 73.125, - "top": 46.073231, - "right": 74.53125, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 91, - "left": 74.53125, - "top": 46.073231, - "right": 75.9375, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 91, - "left": 75.9375, - "top": 46.073231, - "right": 77.34375, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 91, - "left": 77.34375, - "top": 46.073231, - "right": 78.75, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 91, - "left": 78.75, - "top": 46.073231, - "right": 80.15625, - "bottom": 45.089036, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 163, - "y": 92, - "left": 49.21875, - "top": 45.089036, - "right": 50.625, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 92, - "left": 50.625, - "top": 45.089036, - "right": 52.03125, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 92, - "left": 52.03125, - "top": 45.089036, - "right": 53.4375, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 92, - "left": 53.4375, - "top": 45.089036, - "right": 54.84375, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 92, - "left": 54.84375, - "top": 45.089036, - "right": 56.25, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 92, - "left": 56.25, - "top": 45.089036, - "right": 57.65625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 92, - "left": 60.46875, - "top": 45.089036, - "right": 61.875, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 92, - "left": 61.875, - "top": 45.089036, - "right": 63.28125, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 173, - "y": 92, - "left": 63.28125, - "top": 45.089036, - "right": 64.6875, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 174, - "y": 92, - "left": 64.6875, - "top": 45.089036, - "right": 66.09375, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 175, - "y": 92, - "left": 66.09375, - "top": 45.089036, - "right": 67.5, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 92, - "left": 67.5, - "top": 45.089036, - "right": 68.90625, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 92, - "left": 68.90625, - "top": 45.089036, - "right": 70.3125, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 92, - "left": 70.3125, - "top": 45.089036, - "right": 71.71875, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 92, - "left": 71.71875, - "top": 45.089036, - "right": 73.125, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 92, - "left": 73.125, - "top": 45.089036, - "right": 74.53125, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 181, - "y": 92, - "left": 74.53125, - "top": 45.089036, - "right": 75.9375, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 182, - "y": 92, - "left": 75.9375, - "top": 45.089036, - "right": 77.34375, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 92, - "left": 77.34375, - "top": 45.089036, - "right": 78.75, - "bottom": 44.087585, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 93, - "left": 50.625, - "top": 44.087585, - "right": 52.03125, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 93, - "left": 52.03125, - "top": 44.087585, - "right": 53.4375, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 166, - "y": 93, - "left": 53.4375, - "top": 44.087585, - "right": 54.84375, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 167, - "y": 93, - "left": 54.84375, - "top": 44.087585, - "right": 56.25, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 93, - "left": 60.46875, - "top": 44.087585, - "right": 61.875, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 93, - "left": 61.875, - "top": 44.087585, - "right": 63.28125, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 173, - "y": 93, - "left": 63.28125, - "top": 44.087585, - "right": 64.6875, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 93, - "left": 64.6875, - "top": 44.087585, - "right": 66.09375, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 93, - "left": 66.09375, - "top": 44.087585, - "right": 67.5, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 176, - "y": 93, - "left": 67.5, - "top": 44.087585, - "right": 68.90625, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 93, - "left": 68.90625, - "top": 44.087585, - "right": 70.3125, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 93, - "left": 70.3125, - "top": 44.087585, - "right": 71.71875, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 179, - "y": 93, - "left": 71.71875, - "top": 44.087585, - "right": 73.125, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 180, - "y": 93, - "left": 73.125, - "top": 44.087585, - "right": 74.53125, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 93, - "left": 74.53125, - "top": 44.087585, - "right": 75.9375, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 93, - "left": 75.9375, - "top": 44.087585, - "right": 77.34375, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 183, - "y": 93, - "left": 77.34375, - "top": 44.087585, - "right": 78.75, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 184, - "y": 93, - "left": 78.75, - "top": 44.087585, - "right": 80.15625, - "bottom": 43.068888, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 164, - "y": 94, - "left": 50.625, - "top": 43.068888, - "right": 52.03125, - "bottom": 42.032974, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 165, - "y": 94, - "left": 52.03125, - "top": 43.068888, - "right": 53.4375, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 94, - "left": 53.4375, - "top": 43.068888, - "right": 54.84375, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 94, - "left": 54.84375, - "top": 43.068888, - "right": 56.25, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 94, - "left": 64.6875, - "top": 43.068888, - "right": 66.09375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 94, - "left": 66.09375, - "top": 43.068888, - "right": 67.5, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 94, - "left": 67.5, - "top": 43.068888, - "right": 68.90625, - "bottom": 42.032974, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 177, - "y": 94, - "left": 68.90625, - "top": 43.068888, - "right": 70.3125, - "bottom": 42.032974, - "countries": [ - "kazakhstan" - ] - }, - { - "x": 178, - "y": 94, - "left": 70.3125, - "top": 43.068888, - "right": 71.71875, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 94, - "left": 71.71875, - "top": 43.068888, - "right": 73.125, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 94, - "left": 73.125, - "top": 43.068888, - "right": 74.53125, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 94, - "left": 74.53125, - "top": 43.068888, - "right": 75.9375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 94, - "left": 75.9375, - "top": 43.068888, - "right": 77.34375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 183, - "y": 94, - "left": 77.34375, - "top": 43.068888, - "right": 78.75, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 165, - "y": 95, - "left": 52.03125, - "top": 42.032974, - "right": 53.4375, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 95, - "left": 53.4375, - "top": 42.032974, - "right": 54.84375, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 95, - "left": 54.84375, - "top": 42.032974, - "right": 56.25, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 95, - "left": 64.6875, - "top": 42.032974, - "right": 66.09375, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 95, - "left": 66.09375, - "top": 42.032974, - "right": 67.5, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 95, - "left": 67.5, - "top": 42.032974, - "right": 68.90625, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 177, - "y": 95, - "left": 68.90625, - "top": 42.032974, - "right": 70.3125, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 95, - "left": 70.3125, - "top": 42.032974, - "right": 71.71875, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 176, - "y": 96, - "left": 67.5, - "top": 40.979898, - "right": 68.90625, - "bottom": 39.909736, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/kuwait.json b/wahoomc/resources/json/asia/kuwait.json deleted file mode 100644 index 46ab2334..00000000 --- a/wahoomc/resources/json/asia/kuwait.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "x": 162, - "y": 105, - "left": 47.8125, - "top": 30.751278, - "right": 49.21875, - "bottom": 29.53523, - "countries": [ - "iran", - "iraq", - "kuwait" - ] - }, - { - "x": 161, - "y": 105, - "left": 46.40625, - "top": 30.751278, - "right": 47.8125, - "bottom": 29.53523, - "countries": [ - "iraq", - "kuwait" - ] - }, - { - "x": 161, - "y": 106, - "left": 46.40625, - "top": 29.53523, - "right": 47.8125, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq", - "kuwait" - ] - }, - { - "x": 162, - "y": 106, - "left": 47.8125, - "top": 29.53523, - "right": 49.21875, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "kuwait" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/kyrgyzstan.json b/wahoomc/resources/json/asia/kyrgyzstan.json deleted file mode 100644 index fe6c7234..00000000 --- a/wahoomc/resources/json/asia/kyrgyzstan.json +++ /dev/null @@ -1,348 +0,0 @@ -[ - { - "x": 184, - "y": 94, - "left": 78.75, - "top": 43.068888, - "right": 80.15625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 185, - "y": 94, - "left": 80.15625, - "top": 43.068888, - "right": 81.5625, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 95, - "left": 75.9375, - "top": 42.032974, - "right": 77.34375, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 183, - "y": 95, - "left": 77.34375, - "top": 42.032974, - "right": 78.75, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 184, - "y": 95, - "left": 78.75, - "top": 42.032974, - "right": 80.15625, - "bottom": 40.979898, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 96, - "left": 73.125, - "top": 40.979898, - "right": 74.53125, - "bottom": 39.909736, - "countries": [ - "uzbekistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 96, - "left": 74.53125, - "top": 40.979898, - "right": 75.9375, - "bottom": 39.909736, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 96, - "left": 75.9375, - "top": 40.979898, - "right": 77.34375, - "bottom": 39.909736, - "countries": [ - "china", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 97, - "left": 73.125, - "top": 39.909736, - "right": 74.53125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 93, - "left": 73.125, - "top": 44.087585, - "right": 74.53125, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 93, - "left": 74.53125, - "top": 44.087585, - "right": 75.9375, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 94, - "left": 70.3125, - "top": 43.068888, - "right": 71.71875, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 94, - "left": 71.71875, - "top": 43.068888, - "right": 73.125, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 94, - "left": 73.125, - "top": 43.068888, - "right": 74.53125, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 94, - "left": 74.53125, - "top": 43.068888, - "right": 75.9375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 182, - "y": 94, - "left": 75.9375, - "top": 43.068888, - "right": 77.34375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 183, - "y": 94, - "left": 77.34375, - "top": 43.068888, - "right": 78.75, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 95, - "left": 68.90625, - "top": 42.032974, - "right": 70.3125, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 95, - "left": 70.3125, - "top": 42.032974, - "right": 71.71875, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 95, - "left": 71.71875, - "top": 42.032974, - "right": 73.125, - "bottom": 40.979898, - "countries": [ - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 95, - "left": 73.125, - "top": 42.032974, - "right": 74.53125, - "bottom": 40.979898, - "countries": [ - "kyrgyzstan" - ] - }, - { - "x": 181, - "y": 95, - "left": 74.53125, - "top": 42.032974, - "right": 75.9375, - "bottom": 40.979898, - "countries": [ - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 96, - "left": 68.90625, - "top": 40.979898, - "right": 70.3125, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 96, - "left": 70.3125, - "top": 40.979898, - "right": 71.71875, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 96, - "left": 71.71875, - "top": 40.979898, - "right": 73.125, - "bottom": 39.909736, - "countries": [ - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 97, - "left": 68.90625, - "top": 39.909736, - "right": 70.3125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 97, - "left": 70.3125, - "top": 39.909736, - "right": 71.71875, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 97, - "left": 71.71875, - "top": 39.909736, - "right": 73.125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "kyrgyzstan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/laos.json b/wahoomc/resources/json/asia/laos.json deleted file mode 100644 index 75cc1084..00000000 --- a/wahoomc/resources/json/asia/laos.json +++ /dev/null @@ -1,324 +0,0 @@ -[ - { - "x": 202, - "y": 117, - "left": 104.0625, - "top": 15.284185, - "right": 105.46875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 117, - "left": 105.46875, - "top": 15.284185, - "right": 106.875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 204, - "y": 117, - "left": 106.875, - "top": 15.284185, - "right": 108.28125, - "bottom": 13.923404, - "countries": [ - "cambodia", - "vietnam", - "laos" - ] - }, - { - "x": 203, - "y": 118, - "left": 105.46875, - "top": 13.923404, - "right": 106.875, - "bottom": 12.554564, - "countries": [ - "cambodia", - "laos" - ] - }, - { - "x": 200, - "y": 111, - "left": 101.25, - "top": 23.241346, - "right": 102.65625, - "bottom": 21.943046, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 199, - "y": 112, - "left": 99.84375, - "top": 21.943046, - "right": 101.25, - "bottom": 20.632784, - "countries": [ - "myanmar", - "laos", - "china" - ] - }, - { - "x": 200, - "y": 112, - "left": 101.25, - "top": 21.943046, - "right": 102.65625, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 201, - "y": 112, - "left": 102.65625, - "top": 21.943046, - "right": 104.0625, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 202, - "y": 112, - "left": 104.0625, - "top": 21.943046, - "right": 105.46875, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 199, - "y": 113, - "left": 99.84375, - "top": 20.632784, - "right": 101.25, - "bottom": 19.311143, - "countries": [ - "thailand", - "laos", - "myanmar" - ] - }, - { - "x": 200, - "y": 113, - "left": 101.25, - "top": 20.632784, - "right": 102.65625, - "bottom": 19.311143, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 201, - "y": 113, - "left": 102.65625, - "top": 20.632784, - "right": 104.0625, - "bottom": 19.311143, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 202, - "y": 113, - "left": 104.0625, - "top": 20.632784, - "right": 105.46875, - "bottom": 19.311143, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 199, - "y": 114, - "left": 99.84375, - "top": 19.311143, - "right": 101.25, - "bottom": 17.978733, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 200, - "y": 114, - "left": 101.25, - "top": 19.311143, - "right": 102.65625, - "bottom": 17.978733, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 201, - "y": 114, - "left": 102.65625, - "top": 19.311143, - "right": 104.0625, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 114, - "left": 104.0625, - "top": 19.311143, - "right": 105.46875, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 114, - "left": 105.46875, - "top": 19.311143, - "right": 106.875, - "bottom": 17.978733, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 199, - "y": 115, - "left": 99.84375, - "top": 17.978733, - "right": 101.25, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 200, - "y": 115, - "left": 101.25, - "top": 17.978733, - "right": 102.65625, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 201, - "y": 115, - "left": 102.65625, - "top": 17.978733, - "right": 104.0625, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 115, - "left": 104.0625, - "top": 17.978733, - "right": 105.46875, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 115, - "left": 105.46875, - "top": 17.978733, - "right": 106.875, - "bottom": 16.636192, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 202, - "y": 116, - "left": 104.0625, - "top": 16.636192, - "right": 105.46875, - "bottom": 15.284185, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 116, - "left": 105.46875, - "top": 16.636192, - "right": 106.875, - "bottom": 15.284185, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 204, - "y": 116, - "left": 106.875, - "top": 16.636192, - "right": 108.28125, - "bottom": 15.284185, - "countries": [ - "vietnam", - "laos" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/lebanon.json b/wahoomc/resources/json/asia/lebanon.json deleted file mode 100644 index e6d2ca12..00000000 --- a/wahoomc/resources/json/asia/lebanon.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "x": 153, - "y": 102, - "left": 35.15625, - "top": 34.307144, - "right": 36.5625, - "bottom": 33.137551, - "countries": [ - "lebanon", - "syria", - "israel" - ] - }, - { - "x": 152, - "y": 103, - "left": 33.75, - "top": 33.137551, - "right": 35.15625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 103, - "left": 35.15625, - "top": 33.137551, - "right": 36.5625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "syria", - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 101, - "left": 35.15625, - "top": 35.46067, - "right": 36.5625, - "bottom": 34.307144, - "countries": [ - "lebanon", - "syria" - ] - }, - { - "x": 154, - "y": 101, - "left": 36.5625, - "top": 35.46067, - "right": 37.96875, - "bottom": 34.307144, - "countries": [ - "lebanon", - "syria" - ] - }, - { - "x": 154, - "y": 102, - "left": 36.5625, - "top": 34.307144, - "right": 37.96875, - "bottom": 33.137551, - "countries": [ - "lebanon", - "syria" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/macao.json b/wahoomc/resources/json/asia/macao.json deleted file mode 100644 index 4e4be863..00000000 --- a/wahoomc/resources/json/asia/macao.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 208, - "y": 111, - "left": 112.5, - "top": 23.241346, - "right": 113.90625, - "bottom": 21.943046, - "countries": [ - "hong_kong", - "macao", - "china" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/malaysia.json b/wahoomc/resources/json/asia/malaysia.json deleted file mode 100644 index 99fc6c81..00000000 --- a/wahoomc/resources/json/asia/malaysia.json +++ /dev/null @@ -1,452 +0,0 @@ -[ - { - "x": 209, - "y": 124, - "left": 113.90625, - "top": 5.615986, - "right": 115.3125, - "bottom": 4.214943, - "countries": [ - "brunei", - "malaysia" - ] - }, - { - "x": 210, - "y": 124, - "left": 115.3125, - "top": 5.615986, - "right": 116.71875, - "bottom": 4.214943, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - }, - { - "x": 209, - "y": 125, - "left": 113.90625, - "top": 4.214943, - "right": 115.3125, - "bottom": 2.811371, - "countries": [ - "brunei", - "malaysia", - "indonesia" - ] - }, - { - "x": 211, - "y": 124, - "left": 116.71875, - "top": 5.615986, - "right": 118.125, - "bottom": 4.214943, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 199, - "y": 125, - "left": 99.84375, - "top": 4.214943, - "right": 101.25, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 210, - "y": 125, - "left": 115.3125, - "top": 4.214943, - "right": 116.71875, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 211, - "y": 125, - "left": 116.71875, - "top": 4.214943, - "right": 118.125, - "bottom": 2.811371, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 200, - "y": 126, - "left": 101.25, - "top": 2.811371, - "right": 102.65625, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 205, - "y": 126, - "left": 108.28125, - "top": 2.811371, - "right": 109.6875, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 206, - "y": 126, - "left": 109.6875, - "top": 2.811371, - "right": 111.09375, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 207, - "y": 126, - "left": 111.09375, - "top": 2.811371, - "right": 112.5, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 208, - "y": 126, - "left": 112.5, - "top": 2.811371, - "right": 113.90625, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 209, - "y": 126, - "left": 113.90625, - "top": 2.811371, - "right": 115.3125, - "bottom": 1.406109, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 201, - "y": 127, - "left": 102.65625, - "top": 1.406109, - "right": 104.0625, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 202, - "y": 127, - "left": 104.0625, - "top": 1.406109, - "right": 105.46875, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 206, - "y": 127, - "left": 109.6875, - "top": 1.406109, - "right": 111.09375, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 207, - "y": 127, - "left": 111.09375, - "top": 1.406109, - "right": 112.5, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 208, - "y": 127, - "left": 112.5, - "top": 1.406109, - "right": 113.90625, - "bottom": 0.0, - "countries": [ - "indonesia", - "malaysia" - ] - }, - { - "x": 211, - "y": 122, - "left": 116.71875, - "top": 8.407168, - "right": 118.125, - "bottom": 7.013668, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 198, - "y": 123, - "left": 98.4375, - "top": 7.013668, - "right": 99.84375, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 199, - "y": 123, - "left": 99.84375, - "top": 7.013668, - "right": 101.25, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 200, - "y": 123, - "left": 101.25, - "top": 7.013668, - "right": 102.65625, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 201, - "y": 123, - "left": 102.65625, - "top": 7.013668, - "right": 104.0625, - "bottom": 5.615986, - "countries": [ - "malaysia" - ] - }, - { - "x": 210, - "y": 123, - "left": 115.3125, - "top": 7.013668, - "right": 116.71875, - "bottom": 5.615986, - "countries": [ - "malaysia" - ] - }, - { - "x": 211, - "y": 123, - "left": 116.71875, - "top": 7.013668, - "right": 118.125, - "bottom": 5.615986, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 212, - "y": 123, - "left": 118.125, - "top": 7.013668, - "right": 119.53125, - "bottom": 5.615986, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 199, - "y": 124, - "left": 99.84375, - "top": 5.615986, - "right": 101.25, - "bottom": 4.214943, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 200, - "y": 124, - "left": 101.25, - "top": 5.615986, - "right": 102.65625, - "bottom": 4.214943, - "countries": [ - "malaysia" - ] - }, - { - "x": 201, - "y": 124, - "left": 102.65625, - "top": 5.615986, - "right": 104.0625, - "bottom": 4.214943, - "countries": [ - "malaysia" - ] - }, - { - "x": 208, - "y": 124, - "left": 112.5, - "top": 5.615986, - "right": 113.90625, - "bottom": 4.214943, - "countries": [ - "malaysia" - ] - }, - { - "x": 212, - "y": 124, - "left": 118.125, - "top": 5.615986, - "right": 119.53125, - "bottom": 4.214943, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 200, - "y": 125, - "left": 101.25, - "top": 4.214943, - "right": 102.65625, - "bottom": 2.811371, - "countries": [ - "malaysia" - ] - }, - { - "x": 201, - "y": 125, - "left": 102.65625, - "top": 4.214943, - "right": 104.0625, - "bottom": 2.811371, - "countries": [ - "malaysia" - ] - }, - { - "x": 202, - "y": 125, - "left": 104.0625, - "top": 4.214943, - "right": 105.46875, - "bottom": 2.811371, - "countries": [ - "malaysia" - ] - }, - { - "x": 207, - "y": 125, - "left": 111.09375, - "top": 4.214943, - "right": 112.5, - "bottom": 2.811371, - "countries": [ - "malaysia" - ] - }, - { - "x": 208, - "y": 125, - "left": 112.5, - "top": 4.214943, - "right": 113.90625, - "bottom": 2.811371, - "countries": [ - "malaysia" - ] - }, - { - "x": 201, - "y": 126, - "left": 102.65625, - "top": 2.811371, - "right": 104.0625, - "bottom": 1.406109, - "countries": [ - "singapore", - "malaysia" - ] - }, - { - "x": 202, - "y": 126, - "left": 104.0625, - "top": 2.811371, - "right": 105.46875, - "bottom": 1.406109, - "countries": [ - "singapore", - "malaysia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/maldives.json b/wahoomc/resources/json/asia/maldives.json deleted file mode 100644 index 1503d5e9..00000000 --- a/wahoomc/resources/json/asia/maldives.json +++ /dev/null @@ -1,146 +0,0 @@ -[ - { - "x": 179, - "y": 122, - "left": 71.71875, - "top": 8.407168, - "right": 73.125, - "bottom": 7.013668, - "countries": [ - "maldives", - "india" - ] - }, - { - "x": 179, - "y": 123, - "left": 71.71875, - "top": 7.013668, - "right": 73.125, - "bottom": 5.615986, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 123, - "left": 73.125, - "top": 7.013668, - "right": 74.53125, - "bottom": 5.615986, - "countries": [ - "maldives" - ] - }, - { - "x": 179, - "y": 124, - "left": 71.71875, - "top": 5.615986, - "right": 73.125, - "bottom": 4.214943, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 124, - "left": 73.125, - "top": 5.615986, - "right": 74.53125, - "bottom": 4.214943, - "countries": [ - "maldives" - ] - }, - { - "x": 179, - "y": 125, - "left": 71.71875, - "top": 4.214943, - "right": 73.125, - "bottom": 2.811371, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 125, - "left": 73.125, - "top": 4.214943, - "right": 74.53125, - "bottom": 2.811371, - "countries": [ - "maldives" - ] - }, - { - "x": 179, - "y": 126, - "left": 71.71875, - "top": 2.811371, - "right": 73.125, - "bottom": 1.406109, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 126, - "left": 73.125, - "top": 2.811371, - "right": 74.53125, - "bottom": 1.406109, - "countries": [ - "maldives" - ] - }, - { - "x": 179, - "y": 127, - "left": 71.71875, - "top": 1.406109, - "right": 73.125, - "bottom": 0.0, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 127, - "left": 73.125, - "top": 1.406109, - "right": 74.53125, - "bottom": 0.0, - "countries": [ - "maldives" - ] - }, - { - "x": 179, - "y": 128, - "left": 71.71875, - "top": 0.0, - "right": 73.125, - "bottom": -1.406109, - "countries": [ - "maldives" - ] - }, - { - "x": 180, - "y": 128, - "left": 73.125, - "top": 0.0, - "right": 74.53125, - "bottom": -1.406109, - "countries": [ - "maldives" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/mongolia.json b/wahoomc/resources/json/asia/mongolia.json deleted file mode 100644 index 1c159eb2..00000000 --- a/wahoomc/resources/json/asia/mongolia.json +++ /dev/null @@ -1,2040 +0,0 @@ -[ - { - "x": 210, - "y": 86, - "left": 115.3125, - "top": 50.736455, - "right": 116.71875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 190, - "y": 87, - "left": 87.1875, - "top": 49.837982, - "right": 88.59375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "kazakhstan", - "china" - ] - }, - { - "x": 210, - "y": 87, - "left": 115.3125, - "top": 49.837982, - "right": 116.71875, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 190, - "y": 88, - "left": 87.1875, - "top": 48.922499, - "right": 88.59375, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 191, - "y": 88, - "left": 88.59375, - "top": 48.922499, - "right": 90.0, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 88, - "left": 115.3125, - "top": 48.922499, - "right": 116.71875, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 88, - "left": 116.71875, - "top": 48.922499, - "right": 118.125, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 88, - "left": 118.125, - "top": 48.922499, - "right": 119.53125, - "bottom": 47.989922, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 191, - "y": 89, - "left": 88.59375, - "top": 47.989922, - "right": 90.0, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 192, - "y": 89, - "left": 90.0, - "top": 47.989922, - "right": 91.40625, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 89, - "left": 115.3125, - "top": 47.989922, - "right": 116.71875, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 89, - "left": 116.71875, - "top": 47.989922, - "right": 118.125, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 89, - "left": 118.125, - "top": 47.989922, - "right": 119.53125, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 213, - "y": 89, - "left": 119.53125, - "top": 47.989922, - "right": 120.9375, - "bottom": 47.040182, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 192, - "y": 90, - "left": 90.0, - "top": 47.040182, - "right": 91.40625, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 90, - "left": 115.3125, - "top": 47.040182, - "right": 116.71875, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 90, - "left": 116.71875, - "top": 47.040182, - "right": 118.125, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 90, - "left": 118.125, - "top": 47.040182, - "right": 119.53125, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 213, - "y": 90, - "left": 119.53125, - "top": 47.040182, - "right": 120.9375, - "bottom": 46.073231, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 192, - "y": 91, - "left": 90.0, - "top": 46.073231, - "right": 91.40625, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 193, - "y": 91, - "left": 91.40625, - "top": 46.073231, - "right": 92.8125, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 91, - "left": 111.09375, - "top": 46.073231, - "right": 112.5, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 209, - "y": 91, - "left": 113.90625, - "top": 46.073231, - "right": 115.3125, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 210, - "y": 91, - "left": 115.3125, - "top": 46.073231, - "right": 116.71875, - "bottom": 45.089036, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 193, - "y": 92, - "left": 91.40625, - "top": 45.089036, - "right": 92.8125, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 194, - "y": 92, - "left": 92.8125, - "top": 45.089036, - "right": 94.21875, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 195, - "y": 92, - "left": 94.21875, - "top": 45.089036, - "right": 95.625, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 92, - "left": 111.09375, - "top": 45.089036, - "right": 112.5, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 208, - "y": 92, - "left": 112.5, - "top": 45.089036, - "right": 113.90625, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 209, - "y": 92, - "left": 113.90625, - "top": 45.089036, - "right": 115.3125, - "bottom": 44.087585, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 195, - "y": 93, - "left": 94.21875, - "top": 44.087585, - "right": 95.625, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 196, - "y": 93, - "left": 95.625, - "top": 44.087585, - "right": 97.03125, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 206, - "y": 93, - "left": 109.6875, - "top": 44.087585, - "right": 111.09375, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 207, - "y": 93, - "left": 111.09375, - "top": 44.087585, - "right": 112.5, - "bottom": 43.068888, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 196, - "y": 94, - "left": 95.625, - "top": 43.068888, - "right": 97.03125, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 197, - "y": 94, - "left": 97.03125, - "top": 43.068888, - "right": 98.4375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 198, - "y": 94, - "left": 98.4375, - "top": 43.068888, - "right": 99.84375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 199, - "y": 94, - "left": 99.84375, - "top": 43.068888, - "right": 101.25, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 200, - "y": 94, - "left": 101.25, - "top": 43.068888, - "right": 102.65625, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 201, - "y": 94, - "left": 102.65625, - "top": 43.068888, - "right": 104.0625, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 203, - "y": 94, - "left": 105.46875, - "top": 43.068888, - "right": 106.875, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 204, - "y": 94, - "left": 106.875, - "top": 43.068888, - "right": 108.28125, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 205, - "y": 94, - "left": 108.28125, - "top": 43.068888, - "right": 109.6875, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 206, - "y": 94, - "left": 109.6875, - "top": 43.068888, - "right": 111.09375, - "bottom": 42.032974, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 201, - "y": 95, - "left": 102.65625, - "top": 42.032974, - "right": 104.0625, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 202, - "y": 95, - "left": 104.0625, - "top": 42.032974, - "right": 105.46875, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 203, - "y": 95, - "left": 105.46875, - "top": 42.032974, - "right": 106.875, - "bottom": 40.979898, - "countries": [ - "mongolia", - "china" - ] - }, - { - "x": 197, - "y": 84, - "left": 97.03125, - "top": 52.48278, - "right": 98.4375, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 198, - "y": 84, - "left": 98.4375, - "top": 52.48278, - "right": 99.84375, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 199, - "y": 84, - "left": 99.84375, - "top": 52.48278, - "right": 101.25, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 193, - "y": 85, - "left": 91.40625, - "top": 51.618017, - "right": 92.8125, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 194, - "y": 85, - "left": 92.8125, - "top": 51.618017, - "right": 94.21875, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 197, - "y": 85, - "left": 97.03125, - "top": 51.618017, - "right": 98.4375, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 198, - "y": 85, - "left": 98.4375, - "top": 51.618017, - "right": 99.84375, - "bottom": 50.736455, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 85, - "left": 99.84375, - "top": 51.618017, - "right": 101.25, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 200, - "y": 85, - "left": 101.25, - "top": 51.618017, - "right": 102.65625, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 191, - "y": 86, - "left": 88.59375, - "top": 50.736455, - "right": 90.0, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 192, - "y": 86, - "left": 90.0, - "top": 50.736455, - "right": 91.40625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 193, - "y": 86, - "left": 91.40625, - "top": 50.736455, - "right": 92.8125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 194, - "y": 86, - "left": 92.8125, - "top": 50.736455, - "right": 94.21875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 195, - "y": 86, - "left": 94.21875, - "top": 50.736455, - "right": 95.625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 196, - "y": 86, - "left": 95.625, - "top": 50.736455, - "right": 97.03125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 197, - "y": 86, - "left": 97.03125, - "top": 50.736455, - "right": 98.4375, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 198, - "y": 86, - "left": 98.4375, - "top": 50.736455, - "right": 99.84375, - "bottom": 49.837982, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 86, - "left": 99.84375, - "top": 50.736455, - "right": 101.25, - "bottom": 49.837982, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 86, - "left": 101.25, - "top": 50.736455, - "right": 102.65625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 201, - "y": 86, - "left": 102.65625, - "top": 50.736455, - "right": 104.0625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 202, - "y": 86, - "left": 104.0625, - "top": 50.736455, - "right": 105.46875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 203, - "y": 86, - "left": 105.46875, - "top": 50.736455, - "right": 106.875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 204, - "y": 86, - "left": 106.875, - "top": 50.736455, - "right": 108.28125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 208, - "y": 86, - "left": 112.5, - "top": 50.736455, - "right": 113.90625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 209, - "y": 86, - "left": 113.90625, - "top": 50.736455, - "right": 115.3125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 191, - "y": 87, - "left": 88.59375, - "top": 49.837982, - "right": 90.0, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 192, - "y": 87, - "left": 90.0, - "top": 49.837982, - "right": 91.40625, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 193, - "y": 87, - "left": 91.40625, - "top": 49.837982, - "right": 92.8125, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 194, - "y": 87, - "left": 92.8125, - "top": 49.837982, - "right": 94.21875, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 195, - "y": 87, - "left": 94.21875, - "top": 49.837982, - "right": 95.625, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 87, - "left": 95.625, - "top": 49.837982, - "right": 97.03125, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 87, - "left": 97.03125, - "top": 49.837982, - "right": 98.4375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 198, - "y": 87, - "left": 98.4375, - "top": 49.837982, - "right": 99.84375, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 87, - "left": 99.84375, - "top": 49.837982, - "right": 101.25, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 87, - "left": 101.25, - "top": 49.837982, - "right": 102.65625, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 87, - "left": 102.65625, - "top": 49.837982, - "right": 104.0625, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 87, - "left": 104.0625, - "top": 49.837982, - "right": 105.46875, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 87, - "left": 105.46875, - "top": 49.837982, - "right": 106.875, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 87, - "left": 106.875, - "top": 49.837982, - "right": 108.28125, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 205, - "y": 87, - "left": 108.28125, - "top": 49.837982, - "right": 109.6875, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 206, - "y": 87, - "left": 109.6875, - "top": 49.837982, - "right": 111.09375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 207, - "y": 87, - "left": 111.09375, - "top": 49.837982, - "right": 112.5, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 208, - "y": 87, - "left": 112.5, - "top": 49.837982, - "right": 113.90625, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 209, - "y": 87, - "left": 113.90625, - "top": 49.837982, - "right": 115.3125, - "bottom": 48.922499, - "countries": [ - "mongolia" - ] - }, - { - "x": 192, - "y": 88, - "left": 90.0, - "top": 48.922499, - "right": 91.40625, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 193, - "y": 88, - "left": 91.40625, - "top": 48.922499, - "right": 92.8125, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 194, - "y": 88, - "left": 92.8125, - "top": 48.922499, - "right": 94.21875, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 195, - "y": 88, - "left": 94.21875, - "top": 48.922499, - "right": 95.625, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 88, - "left": 95.625, - "top": 48.922499, - "right": 97.03125, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 88, - "left": 97.03125, - "top": 48.922499, - "right": 98.4375, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 88, - "left": 98.4375, - "top": 48.922499, - "right": 99.84375, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 88, - "left": 99.84375, - "top": 48.922499, - "right": 101.25, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 88, - "left": 101.25, - "top": 48.922499, - "right": 102.65625, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 88, - "left": 102.65625, - "top": 48.922499, - "right": 104.0625, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 88, - "left": 104.0625, - "top": 48.922499, - "right": 105.46875, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 88, - "left": 105.46875, - "top": 48.922499, - "right": 106.875, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 88, - "left": 106.875, - "top": 48.922499, - "right": 108.28125, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 88, - "left": 108.28125, - "top": 48.922499, - "right": 109.6875, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 206, - "y": 88, - "left": 109.6875, - "top": 48.922499, - "right": 111.09375, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 207, - "y": 88, - "left": 111.09375, - "top": 48.922499, - "right": 112.5, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 208, - "y": 88, - "left": 112.5, - "top": 48.922499, - "right": 113.90625, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 209, - "y": 88, - "left": 113.90625, - "top": 48.922499, - "right": 115.3125, - "bottom": 47.989922, - "countries": [ - "mongolia" - ] - }, - { - "x": 193, - "y": 89, - "left": 91.40625, - "top": 47.989922, - "right": 92.8125, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 194, - "y": 89, - "left": 92.8125, - "top": 47.989922, - "right": 94.21875, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 195, - "y": 89, - "left": 94.21875, - "top": 47.989922, - "right": 95.625, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 89, - "left": 95.625, - "top": 47.989922, - "right": 97.03125, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 89, - "left": 97.03125, - "top": 47.989922, - "right": 98.4375, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 89, - "left": 98.4375, - "top": 47.989922, - "right": 99.84375, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 89, - "left": 99.84375, - "top": 47.989922, - "right": 101.25, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 89, - "left": 101.25, - "top": 47.989922, - "right": 102.65625, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 89, - "left": 102.65625, - "top": 47.989922, - "right": 104.0625, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 89, - "left": 104.0625, - "top": 47.989922, - "right": 105.46875, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 89, - "left": 105.46875, - "top": 47.989922, - "right": 106.875, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 89, - "left": 106.875, - "top": 47.989922, - "right": 108.28125, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 89, - "left": 108.28125, - "top": 47.989922, - "right": 109.6875, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 206, - "y": 89, - "left": 109.6875, - "top": 47.989922, - "right": 111.09375, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 207, - "y": 89, - "left": 111.09375, - "top": 47.989922, - "right": 112.5, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 208, - "y": 89, - "left": 112.5, - "top": 47.989922, - "right": 113.90625, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 209, - "y": 89, - "left": 113.90625, - "top": 47.989922, - "right": 115.3125, - "bottom": 47.040182, - "countries": [ - "mongolia" - ] - }, - { - "x": 193, - "y": 90, - "left": 91.40625, - "top": 47.040182, - "right": 92.8125, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 194, - "y": 90, - "left": 92.8125, - "top": 47.040182, - "right": 94.21875, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 195, - "y": 90, - "left": 94.21875, - "top": 47.040182, - "right": 95.625, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 90, - "left": 95.625, - "top": 47.040182, - "right": 97.03125, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 90, - "left": 97.03125, - "top": 47.040182, - "right": 98.4375, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 90, - "left": 98.4375, - "top": 47.040182, - "right": 99.84375, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 90, - "left": 99.84375, - "top": 47.040182, - "right": 101.25, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 90, - "left": 101.25, - "top": 47.040182, - "right": 102.65625, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 90, - "left": 102.65625, - "top": 47.040182, - "right": 104.0625, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 90, - "left": 104.0625, - "top": 47.040182, - "right": 105.46875, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 90, - "left": 105.46875, - "top": 47.040182, - "right": 106.875, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 90, - "left": 106.875, - "top": 47.040182, - "right": 108.28125, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 90, - "left": 108.28125, - "top": 47.040182, - "right": 109.6875, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 206, - "y": 90, - "left": 109.6875, - "top": 47.040182, - "right": 111.09375, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 207, - "y": 90, - "left": 111.09375, - "top": 47.040182, - "right": 112.5, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 208, - "y": 90, - "left": 112.5, - "top": 47.040182, - "right": 113.90625, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 209, - "y": 90, - "left": 113.90625, - "top": 47.040182, - "right": 115.3125, - "bottom": 46.073231, - "countries": [ - "mongolia" - ] - }, - { - "x": 194, - "y": 91, - "left": 92.8125, - "top": 46.073231, - "right": 94.21875, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 195, - "y": 91, - "left": 94.21875, - "top": 46.073231, - "right": 95.625, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 91, - "left": 95.625, - "top": 46.073231, - "right": 97.03125, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 91, - "left": 97.03125, - "top": 46.073231, - "right": 98.4375, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 91, - "left": 98.4375, - "top": 46.073231, - "right": 99.84375, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 91, - "left": 99.84375, - "top": 46.073231, - "right": 101.25, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 91, - "left": 101.25, - "top": 46.073231, - "right": 102.65625, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 91, - "left": 102.65625, - "top": 46.073231, - "right": 104.0625, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 91, - "left": 104.0625, - "top": 46.073231, - "right": 105.46875, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 91, - "left": 105.46875, - "top": 46.073231, - "right": 106.875, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 91, - "left": 106.875, - "top": 46.073231, - "right": 108.28125, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 91, - "left": 108.28125, - "top": 46.073231, - "right": 109.6875, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 206, - "y": 91, - "left": 109.6875, - "top": 46.073231, - "right": 111.09375, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 208, - "y": 91, - "left": 112.5, - "top": 46.073231, - "right": 113.90625, - "bottom": 45.089036, - "countries": [ - "mongolia" - ] - }, - { - "x": 196, - "y": 92, - "left": 95.625, - "top": 45.089036, - "right": 97.03125, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 92, - "left": 97.03125, - "top": 45.089036, - "right": 98.4375, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 92, - "left": 98.4375, - "top": 45.089036, - "right": 99.84375, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 92, - "left": 99.84375, - "top": 45.089036, - "right": 101.25, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 92, - "left": 101.25, - "top": 45.089036, - "right": 102.65625, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 92, - "left": 102.65625, - "top": 45.089036, - "right": 104.0625, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 92, - "left": 104.0625, - "top": 45.089036, - "right": 105.46875, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 92, - "left": 105.46875, - "top": 45.089036, - "right": 106.875, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 92, - "left": 106.875, - "top": 45.089036, - "right": 108.28125, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 92, - "left": 108.28125, - "top": 45.089036, - "right": 109.6875, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 206, - "y": 92, - "left": 109.6875, - "top": 45.089036, - "right": 111.09375, - "bottom": 44.087585, - "countries": [ - "mongolia" - ] - }, - { - "x": 197, - "y": 93, - "left": 97.03125, - "top": 44.087585, - "right": 98.4375, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 198, - "y": 93, - "left": 98.4375, - "top": 44.087585, - "right": 99.84375, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 199, - "y": 93, - "left": 99.84375, - "top": 44.087585, - "right": 101.25, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 200, - "y": 93, - "left": 101.25, - "top": 44.087585, - "right": 102.65625, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 201, - "y": 93, - "left": 102.65625, - "top": 44.087585, - "right": 104.0625, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 93, - "left": 104.0625, - "top": 44.087585, - "right": 105.46875, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 203, - "y": 93, - "left": 105.46875, - "top": 44.087585, - "right": 106.875, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 204, - "y": 93, - "left": 106.875, - "top": 44.087585, - "right": 108.28125, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 205, - "y": 93, - "left": 108.28125, - "top": 44.087585, - "right": 109.6875, - "bottom": 43.068888, - "countries": [ - "mongolia" - ] - }, - { - "x": 202, - "y": 94, - "left": 104.0625, - "top": 43.068888, - "right": 105.46875, - "bottom": 42.032974, - "countries": [ - "mongolia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/myanmar.json b/wahoomc/resources/json/asia/myanmar.json deleted file mode 100644 index a886940a..00000000 --- a/wahoomc/resources/json/asia/myanmar.json +++ /dev/null @@ -1,714 +0,0 @@ -[ - { - "x": 193, - "y": 111, - "left": 91.40625, - "top": 23.241346, - "right": 92.8125, - "bottom": 21.943046, - "countries": [ - "bangladesh", - "myanmar", - "india" - ] - }, - { - "x": 193, - "y": 112, - "left": 91.40625, - "top": 21.943046, - "right": 92.8125, - "bottom": 20.632784, - "countries": [ - "bangladesh", - "myanmar" - ] - }, - { - "x": 193, - "y": 113, - "left": 91.40625, - "top": 20.632784, - "right": 92.8125, - "bottom": 19.311143, - "countries": [ - "bangladesh", - "myanmar" - ] - }, - { - "x": 197, - "y": 106, - "left": 97.03125, - "top": 29.53523, - "right": 98.4375, - "bottom": 28.304381, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 197, - "y": 107, - "left": 97.03125, - "top": 28.304381, - "right": 98.4375, - "bottom": 27.059126, - "countries": [ - "myanmar", - "china", - "india" - ] - }, - { - "x": 198, - "y": 107, - "left": 98.4375, - "top": 28.304381, - "right": 99.84375, - "bottom": 27.059126, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 108, - "left": 98.4375, - "top": 27.059126, - "right": 99.84375, - "bottom": 25.799891, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 197, - "y": 109, - "left": 97.03125, - "top": 25.799891, - "right": 98.4375, - "bottom": 24.527135, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 109, - "left": 98.4375, - "top": 25.799891, - "right": 99.84375, - "bottom": 24.527135, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 197, - "y": 110, - "left": 97.03125, - "top": 24.527135, - "right": 98.4375, - "bottom": 23.241346, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 110, - "left": 98.4375, - "top": 24.527135, - "right": 99.84375, - "bottom": 23.241346, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 198, - "y": 111, - "left": 98.4375, - "top": 23.241346, - "right": 99.84375, - "bottom": 21.943046, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 111, - "left": 99.84375, - "top": 23.241346, - "right": 101.25, - "bottom": 21.943046, - "countries": [ - "myanmar", - "china" - ] - }, - { - "x": 199, - "y": 112, - "left": 99.84375, - "top": 21.943046, - "right": 101.25, - "bottom": 20.632784, - "countries": [ - "myanmar", - "laos", - "china" - ] - }, - { - "x": 196, - "y": 107, - "left": 95.625, - "top": 28.304381, - "right": 97.03125, - "bottom": 27.059126, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 195, - "y": 108, - "left": 94.21875, - "top": 27.059126, - "right": 95.625, - "bottom": 25.799891, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 196, - "y": 108, - "left": 95.625, - "top": 27.059126, - "right": 97.03125, - "bottom": 25.799891, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 195, - "y": 109, - "left": 94.21875, - "top": 25.799891, - "right": 95.625, - "bottom": 24.527135, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 194, - "y": 110, - "left": 92.8125, - "top": 24.527135, - "right": 94.21875, - "bottom": 23.241346, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 195, - "y": 110, - "left": 94.21875, - "top": 24.527135, - "right": 95.625, - "bottom": 23.241346, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 194, - "y": 111, - "left": 92.8125, - "top": 23.241346, - "right": 94.21875, - "bottom": 21.943046, - "countries": [ - "myanmar", - "india" - ] - }, - { - "x": 199, - "y": 113, - "left": 99.84375, - "top": 20.632784, - "right": 101.25, - "bottom": 19.311143, - "countries": [ - "thailand", - "laos", - "myanmar" - ] - }, - { - "x": 197, - "y": 108, - "left": 97.03125, - "top": 27.059126, - "right": 98.4375, - "bottom": 25.799891, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 109, - "left": 95.625, - "top": 25.799891, - "right": 97.03125, - "bottom": 24.527135, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 110, - "left": 95.625, - "top": 24.527135, - "right": 97.03125, - "bottom": 23.241346, - "countries": [ - "myanmar" - ] - }, - { - "x": 195, - "y": 111, - "left": 94.21875, - "top": 23.241346, - "right": 95.625, - "bottom": 21.943046, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 111, - "left": 95.625, - "top": 23.241346, - "right": 97.03125, - "bottom": 21.943046, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 111, - "left": 97.03125, - "top": 23.241346, - "right": 98.4375, - "bottom": 21.943046, - "countries": [ - "myanmar" - ] - }, - { - "x": 194, - "y": 112, - "left": 92.8125, - "top": 21.943046, - "right": 94.21875, - "bottom": 20.632784, - "countries": [ - "myanmar" - ] - }, - { - "x": 195, - "y": 112, - "left": 94.21875, - "top": 21.943046, - "right": 95.625, - "bottom": 20.632784, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 112, - "left": 95.625, - "top": 21.943046, - "right": 97.03125, - "bottom": 20.632784, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 112, - "left": 97.03125, - "top": 21.943046, - "right": 98.4375, - "bottom": 20.632784, - "countries": [ - "myanmar" - ] - }, - { - "x": 198, - "y": 112, - "left": 98.4375, - "top": 21.943046, - "right": 99.84375, - "bottom": 20.632784, - "countries": [ - "myanmar" - ] - }, - { - "x": 194, - "y": 113, - "left": 92.8125, - "top": 20.632784, - "right": 94.21875, - "bottom": 19.311143, - "countries": [ - "myanmar" - ] - }, - { - "x": 195, - "y": 113, - "left": 94.21875, - "top": 20.632784, - "right": 95.625, - "bottom": 19.311143, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 113, - "left": 95.625, - "top": 20.632784, - "right": 97.03125, - "bottom": 19.311143, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 113, - "left": 97.03125, - "top": 20.632784, - "right": 98.4375, - "bottom": 19.311143, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 113, - "left": 98.4375, - "top": 20.632784, - "right": 99.84375, - "bottom": 19.311143, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 194, - "y": 114, - "left": 92.8125, - "top": 19.311143, - "right": 94.21875, - "bottom": 17.978733, - "countries": [ - "myanmar" - ] - }, - { - "x": 195, - "y": 114, - "left": 94.21875, - "top": 19.311143, - "right": 95.625, - "bottom": 17.978733, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 114, - "left": 95.625, - "top": 19.311143, - "right": 97.03125, - "bottom": 17.978733, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 114, - "left": 97.03125, - "top": 19.311143, - "right": 98.4375, - "bottom": 17.978733, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 195, - "y": 115, - "left": 94.21875, - "top": 17.978733, - "right": 95.625, - "bottom": 16.636192, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 115, - "left": 95.625, - "top": 17.978733, - "right": 97.03125, - "bottom": 16.636192, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 115, - "left": 97.03125, - "top": 17.978733, - "right": 98.4375, - "bottom": 16.636192, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 115, - "left": 98.4375, - "top": 17.978733, - "right": 99.84375, - "bottom": 16.636192, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 194, - "y": 116, - "left": 92.8125, - "top": 16.636192, - "right": 94.21875, - "bottom": 15.284185, - "countries": [ - "myanmar" - ] - }, - { - "x": 195, - "y": 116, - "left": 94.21875, - "top": 16.636192, - "right": 95.625, - "bottom": 15.284185, - "countries": [ - "myanmar" - ] - }, - { - "x": 196, - "y": 116, - "left": 95.625, - "top": 16.636192, - "right": 97.03125, - "bottom": 15.284185, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 116, - "left": 97.03125, - "top": 16.636192, - "right": 98.4375, - "bottom": 15.284185, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 116, - "left": 98.4375, - "top": 16.636192, - "right": 99.84375, - "bottom": 15.284185, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 194, - "y": 117, - "left": 92.8125, - "top": 15.284185, - "right": 94.21875, - "bottom": 13.923404, - "countries": [ - "myanmar" - ] - }, - { - "x": 197, - "y": 117, - "left": 97.03125, - "top": 15.284185, - "right": 98.4375, - "bottom": 13.923404, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 117, - "left": 98.4375, - "top": 15.284185, - "right": 99.84375, - "bottom": 13.923404, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 118, - "left": 97.03125, - "top": 13.923404, - "right": 98.4375, - "bottom": 12.554564, - "countries": [ - "myanmar" - ] - }, - { - "x": 198, - "y": 118, - "left": 98.4375, - "top": 13.923404, - "right": 99.84375, - "bottom": 12.554564, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 119, - "left": 97.03125, - "top": 12.554564, - "right": 98.4375, - "bottom": 11.178402, - "countries": [ - "myanmar" - ] - }, - { - "x": 198, - "y": 119, - "left": 98.4375, - "top": 12.554564, - "right": 99.84375, - "bottom": 11.178402, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 120, - "left": 97.03125, - "top": 11.178402, - "right": 98.4375, - "bottom": 9.795678, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 120, - "left": 98.4375, - "top": 11.178402, - "right": 99.84375, - "bottom": 9.795678, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 121, - "left": 97.03125, - "top": 9.795678, - "right": 98.4375, - "bottom": 8.407168, - "countries": [ - "thailand", - "myanmar" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/nepal.json b/wahoomc/resources/json/asia/nepal.json deleted file mode 100644 index 00245cac..00000000 --- a/wahoomc/resources/json/asia/nepal.json +++ /dev/null @@ -1,209 +0,0 @@ -[ - { - "x": 190, - "y": 108, - "left": 87.1875, - "top": 27.059126, - "right": 88.59375, - "bottom": 25.799891, - "countries": [ - "nepal", - "bangladesh", - "india" - ] - }, - { - "x": 185, - "y": 105, - "left": 80.15625, - "top": 30.751278, - "right": 81.5625, - "bottom": 29.53523, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 186, - "y": 105, - "left": 81.5625, - "top": 30.751278, - "right": 82.96875, - "bottom": 29.53523, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 187, - "y": 105, - "left": 82.96875, - "top": 30.751278, - "right": 84.375, - "bottom": 29.53523, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 187, - "y": 106, - "left": 82.96875, - "top": 29.53523, - "right": 84.375, - "bottom": 28.304381, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 188, - "y": 106, - "left": 84.375, - "top": 29.53523, - "right": 85.78125, - "bottom": 28.304381, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 188, - "y": 107, - "left": 84.375, - "top": 28.304381, - "right": 85.78125, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 189, - "y": 107, - "left": 85.78125, - "top": 28.304381, - "right": 87.1875, - "bottom": 27.059126, - "countries": [ - "nepal", - "china" - ] - }, - { - "x": 190, - "y": 107, - "left": 87.1875, - "top": 28.304381, - "right": 88.59375, - "bottom": 27.059126, - "countries": [ - "nepal", - "china", - "india" - ] - }, - { - "x": 184, - "y": 106, - "left": 78.75, - "top": 29.53523, - "right": 80.15625, - "bottom": 28.304381, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 185, - "y": 106, - "left": 80.15625, - "top": 29.53523, - "right": 81.5625, - "bottom": 28.304381, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 185, - "y": 107, - "left": 80.15625, - "top": 28.304381, - "right": 81.5625, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 186, - "y": 107, - "left": 81.5625, - "top": 28.304381, - "right": 82.96875, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 187, - "y": 107, - "left": 82.96875, - "top": 28.304381, - "right": 84.375, - "bottom": 27.059126, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 188, - "y": 108, - "left": 84.375, - "top": 27.059126, - "right": 85.78125, - "bottom": 25.799891, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 189, - "y": 108, - "left": 85.78125, - "top": 27.059126, - "right": 87.1875, - "bottom": 25.799891, - "countries": [ - "nepal", - "india" - ] - }, - { - "x": 186, - "y": 106, - "left": 81.5625, - "top": 29.53523, - "right": 82.96875, - "bottom": 28.304381, - "countries": [ - "nepal" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/north_korea.json b/wahoomc/resources/json/asia/north_korea.json deleted file mode 100644 index dc820212..00000000 --- a/wahoomc/resources/json/asia/north_korea.json +++ /dev/null @@ -1,247 +0,0 @@ -[ - { - "x": 219, - "y": 94, - "left": 127.96875, - "top": 43.068888, - "right": 129.375, - "bottom": 42.032974, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 220, - "y": 94, - "left": 129.375, - "top": 43.068888, - "right": 130.78125, - "bottom": 42.032974, - "countries": [ - "russia", - "north_korea", - "china" - ] - }, - { - "x": 217, - "y": 95, - "left": 125.15625, - "top": 42.032974, - "right": 126.5625, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 218, - "y": 95, - "left": 126.5625, - "top": 42.032974, - "right": 127.96875, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 219, - "y": 95, - "left": 127.96875, - "top": 42.032974, - "right": 129.375, - "bottom": 40.979898, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 216, - "y": 96, - "left": 123.75, - "top": 40.979898, - "right": 125.15625, - "bottom": 39.909736, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 217, - "y": 96, - "left": 125.15625, - "top": 40.979898, - "right": 126.5625, - "bottom": 39.909736, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 216, - "y": 97, - "left": 123.75, - "top": 39.909736, - "right": 125.15625, - "bottom": 38.822591, - "countries": [ - "north_korea", - "china" - ] - }, - { - "x": 220, - "y": 95, - "left": 129.375, - "top": 42.032974, - "right": 130.78125, - "bottom": 40.979898, - "countries": [ - "north_korea" - ] - }, - { - "x": 218, - "y": 96, - "left": 126.5625, - "top": 40.979898, - "right": 127.96875, - "bottom": 39.909736, - "countries": [ - "north_korea" - ] - }, - { - "x": 219, - "y": 96, - "left": 127.96875, - "top": 40.979898, - "right": 129.375, - "bottom": 39.909736, - "countries": [ - "north_korea" - ] - }, - { - "x": 220, - "y": 96, - "left": 129.375, - "top": 40.979898, - "right": 130.78125, - "bottom": 39.909736, - "countries": [ - "north_korea" - ] - }, - { - "x": 217, - "y": 97, - "left": 125.15625, - "top": 39.909736, - "right": 126.5625, - "bottom": 38.822591, - "countries": [ - "north_korea" - ] - }, - { - "x": 218, - "y": 97, - "left": 126.5625, - "top": 39.909736, - "right": 127.96875, - "bottom": 38.822591, - "countries": [ - "north_korea" - ] - }, - { - "x": 219, - "y": 97, - "left": 127.96875, - "top": 39.909736, - "right": 129.375, - "bottom": 38.822591, - "countries": [ - "north_korea" - ] - }, - { - "x": 216, - "y": 98, - "left": 123.75, - "top": 38.822591, - "right": 125.15625, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 217, - "y": 98, - "left": 125.15625, - "top": 38.822591, - "right": 126.5625, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 218, - "y": 98, - "left": 126.5625, - "top": 38.822591, - "right": 127.96875, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 219, - "y": 98, - "left": 127.96875, - "top": 38.822591, - "right": 129.375, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 216, - "y": 99, - "left": 123.75, - "top": 37.71859, - "right": 125.15625, - "bottom": 36.597889, - "countries": [ - "north_korea" - ] - }, - { - "x": 217, - "y": 99, - "left": 125.15625, - "top": 37.71859, - "right": 126.5625, - "bottom": 36.597889, - "countries": [ - "north_korea", - "south_korea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/oman.json b/wahoomc/resources/json/asia/oman.json deleted file mode 100644 index 1015ed6a..00000000 --- a/wahoomc/resources/json/asia/oman.json +++ /dev/null @@ -1,350 +0,0 @@ -[ - { - "x": 167, - "y": 108, - "left": 54.84375, - "top": 27.059126, - "right": 56.25, - "bottom": 25.799891, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 168, - "y": 108, - "left": 56.25, - "top": 27.059126, - "right": 57.65625, - "bottom": 25.799891, - "countries": [ - "iran", - "oman" - ] - }, - { - "x": 168, - "y": 109, - "left": 56.25, - "top": 25.799891, - "right": 57.65625, - "bottom": 24.527135, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 167, - "y": 109, - "left": 54.84375, - "top": 25.799891, - "right": 56.25, - "bottom": 24.527135, - "countries": [ - "united_arab_emirates", - "oman" - ] - }, - { - "x": 167, - "y": 110, - "left": 54.84375, - "top": 24.527135, - "right": 56.25, - "bottom": 23.241346, - "countries": [ - "united_arab_emirates", - "oman" - ] - }, - { - "x": 168, - "y": 110, - "left": 56.25, - "top": 24.527135, - "right": 57.65625, - "bottom": 23.241346, - "countries": [ - "oman" - ] - }, - { - "x": 169, - "y": 110, - "left": 57.65625, - "top": 24.527135, - "right": 59.0625, - "bottom": 23.241346, - "countries": [ - "oman" - ] - }, - { - "x": 167, - "y": 111, - "left": 54.84375, - "top": 23.241346, - "right": 56.25, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 168, - "y": 111, - "left": 56.25, - "top": 23.241346, - "right": 57.65625, - "bottom": 21.943046, - "countries": [ - "oman" - ] - }, - { - "x": 169, - "y": 111, - "left": 57.65625, - "top": 23.241346, - "right": 59.0625, - "bottom": 21.943046, - "countries": [ - "oman" - ] - }, - { - "x": 170, - "y": 111, - "left": 59.0625, - "top": 23.241346, - "right": 60.46875, - "bottom": 21.943046, - "countries": [ - "oman" - ] - }, - { - "x": 167, - "y": 112, - "left": 54.84375, - "top": 21.943046, - "right": 56.25, - "bottom": 20.632784, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 168, - "y": 112, - "left": 56.25, - "top": 21.943046, - "right": 57.65625, - "bottom": 20.632784, - "countries": [ - "oman" - ] - }, - { - "x": 169, - "y": 112, - "left": 57.65625, - "top": 21.943046, - "right": 59.0625, - "bottom": 20.632784, - "countries": [ - "oman" - ] - }, - { - "x": 170, - "y": 112, - "left": 59.0625, - "top": 21.943046, - "right": 60.46875, - "bottom": 20.632784, - "countries": [ - "oman" - ] - }, - { - "x": 165, - "y": 113, - "left": 52.03125, - "top": 20.632784, - "right": 53.4375, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 166, - "y": 113, - "left": 53.4375, - "top": 20.632784, - "right": 54.84375, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 167, - "y": 113, - "left": 54.84375, - "top": 20.632784, - "right": 56.25, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 168, - "y": 113, - "left": 56.25, - "top": 20.632784, - "right": 57.65625, - "bottom": 19.311143, - "countries": [ - "oman" - ] - }, - { - "x": 169, - "y": 113, - "left": 57.65625, - "top": 20.632784, - "right": 59.0625, - "bottom": 19.311143, - "countries": [ - "oman" - ] - }, - { - "x": 164, - "y": 114, - "left": 50.625, - "top": 19.311143, - "right": 52.03125, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 165, - "y": 114, - "left": 52.03125, - "top": 19.311143, - "right": 53.4375, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 166, - "y": 114, - "left": 53.4375, - "top": 19.311143, - "right": 54.84375, - "bottom": 17.978733, - "countries": [ - "oman" - ] - }, - { - "x": 167, - "y": 114, - "left": 54.84375, - "top": 19.311143, - "right": 56.25, - "bottom": 17.978733, - "countries": [ - "oman" - ] - }, - { - "x": 168, - "y": 114, - "left": 56.25, - "top": 19.311143, - "right": 57.65625, - "bottom": 17.978733, - "countries": [ - "oman" - ] - }, - { - "x": 169, - "y": 114, - "left": 57.65625, - "top": 19.311143, - "right": 59.0625, - "bottom": 17.978733, - "countries": [ - "oman" - ] - }, - { - "x": 165, - "y": 115, - "left": 52.03125, - "top": 17.978733, - "right": 53.4375, - "bottom": 16.636192, - "countries": [ - "yemen", - "oman" - ] - }, - { - "x": 166, - "y": 115, - "left": 53.4375, - "top": 17.978733, - "right": 54.84375, - "bottom": 16.636192, - "countries": [ - "oman" - ] - }, - { - "x": 167, - "y": 115, - "left": 54.84375, - "top": 17.978733, - "right": 56.25, - "bottom": 16.636192, - "countries": [ - "oman" - ] - }, - { - "x": 168, - "y": 115, - "left": 56.25, - "top": 17.978733, - "right": 57.65625, - "bottom": 16.636192, - "countries": [ - "oman" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/pakistan.json b/wahoomc/resources/json/asia/pakistan.json deleted file mode 100644 index a4ca729f..00000000 --- a/wahoomc/resources/json/asia/pakistan.json +++ /dev/null @@ -1,920 +0,0 @@ -[ - { - "x": 179, - "y": 99, - "left": 71.71875, - "top": 37.71859, - "right": 73.125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "pakistan" - ] - }, - { - "x": 180, - "y": 99, - "left": 73.125, - "top": 37.71859, - "right": 74.53125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 181, - "y": 99, - "left": 74.53125, - "top": 37.71859, - "right": 75.9375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 178, - "y": 100, - "left": 70.3125, - "top": 36.597889, - "right": 71.71875, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 179, - "y": 100, - "left": 71.71875, - "top": 36.597889, - "right": 73.125, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 178, - "y": 101, - "left": 70.3125, - "top": 35.46067, - "right": 71.71875, - "bottom": 34.307144, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 177, - "y": 102, - "left": 68.90625, - "top": 34.307144, - "right": 70.3125, - "bottom": 33.137551, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 178, - "y": 102, - "left": 70.3125, - "top": 34.307144, - "right": 71.71875, - "bottom": 33.137551, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 177, - "y": 103, - "left": 68.90625, - "top": 33.137551, - "right": 70.3125, - "bottom": 31.952162, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 175, - "y": 104, - "left": 66.09375, - "top": 31.952162, - "right": 67.5, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 176, - "y": 104, - "left": 67.5, - "top": 31.952162, - "right": 68.90625, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 177, - "y": 104, - "left": 68.90625, - "top": 31.952162, - "right": 70.3125, - "bottom": 30.751278, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 171, - "y": 105, - "left": 60.46875, - "top": 30.751278, - "right": 61.875, - "bottom": 29.53523, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 172, - "y": 105, - "left": 61.875, - "top": 30.751278, - "right": 63.28125, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 173, - "y": 105, - "left": 63.28125, - "top": 30.751278, - "right": 64.6875, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 174, - "y": 105, - "left": 64.6875, - "top": 30.751278, - "right": 66.09375, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 175, - "y": 105, - "left": 66.09375, - "top": 30.751278, - "right": 67.5, - "bottom": 29.53523, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 172, - "y": 106, - "left": 61.875, - "top": 29.53523, - "right": 63.28125, - "bottom": 28.304381, - "countries": [ - "iran", - "afghanistan", - "pakistan" - ] - }, - { - "x": 173, - "y": 106, - "left": 63.28125, - "top": 29.53523, - "right": 64.6875, - "bottom": 28.304381, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 174, - "y": 106, - "left": 64.6875, - "top": 29.53523, - "right": 66.09375, - "bottom": 28.304381, - "countries": [ - "afghanistan", - "pakistan" - ] - }, - { - "x": 181, - "y": 100, - "left": 74.53125, - "top": 36.597889, - "right": 75.9375, - "bottom": 35.46067, - "countries": [ - "china", - "pakistan" - ] - }, - { - "x": 182, - "y": 100, - "left": 75.9375, - "top": 36.597889, - "right": 77.34375, - "bottom": 35.46067, - "countries": [ - "china", - "pakistan" - ] - }, - { - "x": 183, - "y": 100, - "left": 77.34375, - "top": 36.597889, - "right": 78.75, - "bottom": 35.46067, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 183, - "y": 101, - "left": 77.34375, - "top": 35.46067, - "right": 78.75, - "bottom": 34.307144, - "countries": [ - "pakistan", - "china", - "india" - ] - }, - { - "x": 180, - "y": 101, - "left": 73.125, - "top": 35.46067, - "right": 74.53125, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 101, - "left": 74.53125, - "top": 35.46067, - "right": 75.9375, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 182, - "y": 101, - "left": 75.9375, - "top": 35.46067, - "right": 77.34375, - "bottom": 34.307144, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 102, - "left": 73.125, - "top": 34.307144, - "right": 74.53125, - "bottom": 33.137551, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 103, - "left": 73.125, - "top": 33.137551, - "right": 74.53125, - "bottom": 31.952162, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 103, - "left": 74.53125, - "top": 33.137551, - "right": 75.9375, - "bottom": 31.952162, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 104, - "left": 73.125, - "top": 31.952162, - "right": 74.53125, - "bottom": 30.751278, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 181, - "y": 104, - "left": 74.53125, - "top": 31.952162, - "right": 75.9375, - "bottom": 30.751278, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 105, - "left": 73.125, - "top": 30.751278, - "right": 74.53125, - "bottom": 29.53523, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 179, - "y": 106, - "left": 71.71875, - "top": 29.53523, - "right": 73.125, - "bottom": 28.304381, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 180, - "y": 106, - "left": 73.125, - "top": 29.53523, - "right": 74.53125, - "bottom": 28.304381, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 177, - "y": 107, - "left": 68.90625, - "top": 28.304381, - "right": 70.3125, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 107, - "left": 70.3125, - "top": 28.304381, - "right": 71.71875, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 179, - "y": 107, - "left": 71.71875, - "top": 28.304381, - "right": 73.125, - "bottom": 27.059126, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 177, - "y": 108, - "left": 68.90625, - "top": 27.059126, - "right": 70.3125, - "bottom": 25.799891, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 177, - "y": 109, - "left": 68.90625, - "top": 25.799891, - "right": 70.3125, - "bottom": 24.527135, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 109, - "left": 70.3125, - "top": 25.799891, - "right": 71.71875, - "bottom": 24.527135, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 176, - "y": 110, - "left": 67.5, - "top": 24.527135, - "right": 68.90625, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 177, - "y": 110, - "left": 68.90625, - "top": 24.527135, - "right": 70.3125, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 178, - "y": 110, - "left": 70.3125, - "top": 24.527135, - "right": 71.71875, - "bottom": 23.241346, - "countries": [ - "pakistan", - "india" - ] - }, - { - "x": 171, - "y": 106, - "left": 60.46875, - "top": 29.53523, - "right": 61.875, - "bottom": 28.304381, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 172, - "y": 107, - "left": 61.875, - "top": 28.304381, - "right": 63.28125, - "bottom": 27.059126, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 173, - "y": 107, - "left": 63.28125, - "top": 28.304381, - "right": 64.6875, - "bottom": 27.059126, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 171, - "y": 108, - "left": 60.46875, - "top": 27.059126, - "right": 61.875, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 172, - "y": 108, - "left": 61.875, - "top": 27.059126, - "right": 63.28125, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 173, - "y": 108, - "left": 63.28125, - "top": 27.059126, - "right": 64.6875, - "bottom": 25.799891, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 171, - "y": 109, - "left": 60.46875, - "top": 25.799891, - "right": 61.875, - "bottom": 24.527135, - "countries": [ - "iran", - "pakistan" - ] - }, - { - "x": 180, - "y": 100, - "left": 73.125, - "top": 36.597889, - "right": 74.53125, - "bottom": 35.46067, - "countries": [ - "pakistan" - ] - }, - { - "x": 179, - "y": 101, - "left": 71.71875, - "top": 35.46067, - "right": 73.125, - "bottom": 34.307144, - "countries": [ - "pakistan" - ] - }, - { - "x": 179, - "y": 102, - "left": 71.71875, - "top": 34.307144, - "right": 73.125, - "bottom": 33.137551, - "countries": [ - "pakistan" - ] - }, - { - "x": 178, - "y": 103, - "left": 70.3125, - "top": 33.137551, - "right": 71.71875, - "bottom": 31.952162, - "countries": [ - "pakistan" - ] - }, - { - "x": 179, - "y": 103, - "left": 71.71875, - "top": 33.137551, - "right": 73.125, - "bottom": 31.952162, - "countries": [ - "pakistan" - ] - }, - { - "x": 178, - "y": 104, - "left": 70.3125, - "top": 31.952162, - "right": 71.71875, - "bottom": 30.751278, - "countries": [ - "pakistan" - ] - }, - { - "x": 179, - "y": 104, - "left": 71.71875, - "top": 31.952162, - "right": 73.125, - "bottom": 30.751278, - "countries": [ - "pakistan" - ] - }, - { - "x": 176, - "y": 105, - "left": 67.5, - "top": 30.751278, - "right": 68.90625, - "bottom": 29.53523, - "countries": [ - "pakistan" - ] - }, - { - "x": 177, - "y": 105, - "left": 68.90625, - "top": 30.751278, - "right": 70.3125, - "bottom": 29.53523, - "countries": [ - "pakistan" - ] - }, - { - "x": 178, - "y": 105, - "left": 70.3125, - "top": 30.751278, - "right": 71.71875, - "bottom": 29.53523, - "countries": [ - "pakistan" - ] - }, - { - "x": 179, - "y": 105, - "left": 71.71875, - "top": 30.751278, - "right": 73.125, - "bottom": 29.53523, - "countries": [ - "pakistan" - ] - }, - { - "x": 175, - "y": 106, - "left": 66.09375, - "top": 29.53523, - "right": 67.5, - "bottom": 28.304381, - "countries": [ - "pakistan" - ] - }, - { - "x": 176, - "y": 106, - "left": 67.5, - "top": 29.53523, - "right": 68.90625, - "bottom": 28.304381, - "countries": [ - "pakistan" - ] - }, - { - "x": 177, - "y": 106, - "left": 68.90625, - "top": 29.53523, - "right": 70.3125, - "bottom": 28.304381, - "countries": [ - "pakistan" - ] - }, - { - "x": 178, - "y": 106, - "left": 70.3125, - "top": 29.53523, - "right": 71.71875, - "bottom": 28.304381, - "countries": [ - "pakistan" - ] - }, - { - "x": 174, - "y": 107, - "left": 64.6875, - "top": 28.304381, - "right": 66.09375, - "bottom": 27.059126, - "countries": [ - "pakistan" - ] - }, - { - "x": 175, - "y": 107, - "left": 66.09375, - "top": 28.304381, - "right": 67.5, - "bottom": 27.059126, - "countries": [ - "pakistan" - ] - }, - { - "x": 176, - "y": 107, - "left": 67.5, - "top": 28.304381, - "right": 68.90625, - "bottom": 27.059126, - "countries": [ - "pakistan" - ] - }, - { - "x": 174, - "y": 108, - "left": 64.6875, - "top": 27.059126, - "right": 66.09375, - "bottom": 25.799891, - "countries": [ - "pakistan" - ] - }, - { - "x": 175, - "y": 108, - "left": 66.09375, - "top": 27.059126, - "right": 67.5, - "bottom": 25.799891, - "countries": [ - "pakistan" - ] - }, - { - "x": 176, - "y": 108, - "left": 67.5, - "top": 27.059126, - "right": 68.90625, - "bottom": 25.799891, - "countries": [ - "pakistan" - ] - }, - { - "x": 172, - "y": 109, - "left": 61.875, - "top": 25.799891, - "right": 63.28125, - "bottom": 24.527135, - "countries": [ - "pakistan" - ] - }, - { - "x": 173, - "y": 109, - "left": 63.28125, - "top": 25.799891, - "right": 64.6875, - "bottom": 24.527135, - "countries": [ - "pakistan" - ] - }, - { - "x": 174, - "y": 109, - "left": 64.6875, - "top": 25.799891, - "right": 66.09375, - "bottom": 24.527135, - "countries": [ - "pakistan" - ] - }, - { - "x": 175, - "y": 109, - "left": 66.09375, - "top": 25.799891, - "right": 67.5, - "bottom": 24.527135, - "countries": [ - "pakistan" - ] - }, - { - "x": 176, - "y": 109, - "left": 67.5, - "top": 25.799891, - "right": 68.90625, - "bottom": 24.527135, - "countries": [ - "pakistan" - ] - }, - { - "x": 175, - "y": 110, - "left": 66.09375, - "top": 24.527135, - "right": 67.5, - "bottom": 23.241346, - "countries": [ - "pakistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/palestina.json b/wahoomc/resources/json/asia/palestina.json deleted file mode 100644 index ce24fc37..00000000 --- a/wahoomc/resources/json/asia/palestina.json +++ /dev/null @@ -1,56 +0,0 @@ -[ - { - "x": 152, - "y": 104, - "left": 33.75, - "top": 31.952162, - "right": 35.15625, - "bottom": 30.751278, - "countries": [ - "egypt", - "israel", - "palestina" - ] - }, - { - "x": 152, - "y": 103, - "left": 33.75, - "top": 33.137551, - "right": 35.15625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 103, - "left": 35.15625, - "top": 33.137551, - "right": 36.5625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "syria", - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 153, - "y": 104, - "left": 35.15625, - "top": 31.952162, - "right": 36.5625, - "bottom": 30.751278, - "countries": [ - "jordan", - "israel", - "palestina" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/paracel_islands.json b/wahoomc/resources/json/asia/paracel_islands.json deleted file mode 100644 index 3123c48b..00000000 --- a/wahoomc/resources/json/asia/paracel_islands.json +++ /dev/null @@ -1,35 +0,0 @@ -[ - { - "x": 207, - "y": 115, - "left": 111.09375, - "top": 17.978733, - "right": 112.5, - "bottom": 16.636192, - "countries": [ - "paracel_islands" - ] - }, - { - "x": 208, - "y": 115, - "left": 112.5, - "top": 17.978733, - "right": 113.90625, - "bottom": 16.636192, - "countries": [ - "paracel_islands" - ] - }, - { - "x": 207, - "y": 116, - "left": 111.09375, - "top": 16.636192, - "right": 112.5, - "bottom": 15.284185, - "countries": [ - "paracel_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/philippines.json b/wahoomc/resources/json/asia/philippines.json deleted file mode 100644 index 33d67e5f..00000000 --- a/wahoomc/resources/json/asia/philippines.json +++ /dev/null @@ -1,635 +0,0 @@ -[ - { - "x": 217, - "y": 124, - "left": 125.15625, - "top": 5.615986, - "right": 126.5625, - "bottom": 4.214943, - "countries": [ - "indonesia", - "philippines" - ] - }, - { - "x": 218, - "y": 124, - "left": 126.5625, - "top": 5.615986, - "right": 127.96875, - "bottom": 4.214943, - "countries": [ - "indonesia", - "philippines" - ] - }, - { - "x": 211, - "y": 122, - "left": 116.71875, - "top": 8.407168, - "right": 118.125, - "bottom": 7.013668, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 211, - "y": 123, - "left": 116.71875, - "top": 7.013668, - "right": 118.125, - "bottom": 5.615986, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 212, - "y": 123, - "left": 118.125, - "top": 7.013668, - "right": 119.53125, - "bottom": 5.615986, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 212, - "y": 124, - "left": 118.125, - "top": 5.615986, - "right": 119.53125, - "bottom": 4.214943, - "countries": [ - "philippines", - "malaysia" - ] - }, - { - "x": 214, - "y": 112, - "left": 120.9375, - "top": 21.943046, - "right": 122.34375, - "bottom": 20.632784, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 113, - "left": 120.9375, - "top": 20.632784, - "right": 122.34375, - "bottom": 19.311143, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 114, - "left": 119.53125, - "top": 19.311143, - "right": 120.9375, - "bottom": 17.978733, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 114, - "left": 120.9375, - "top": 19.311143, - "right": 122.34375, - "bottom": 17.978733, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 115, - "left": 119.53125, - "top": 17.978733, - "right": 120.9375, - "bottom": 16.636192, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 115, - "left": 120.9375, - "top": 17.978733, - "right": 122.34375, - "bottom": 16.636192, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 115, - "left": 122.34375, - "top": 17.978733, - "right": 123.75, - "bottom": 16.636192, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 116, - "left": 119.53125, - "top": 16.636192, - "right": 120.9375, - "bottom": 15.284185, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 116, - "left": 120.9375, - "top": 16.636192, - "right": 122.34375, - "bottom": 15.284185, - "countries": [ - "philippines" - ] - }, - { - "x": 211, - "y": 117, - "left": 116.71875, - "top": 15.284185, - "right": 118.125, - "bottom": 13.923404, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 117, - "left": 119.53125, - "top": 15.284185, - "right": 120.9375, - "bottom": 13.923404, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 117, - "left": 120.9375, - "top": 15.284185, - "right": 122.34375, - "bottom": 13.923404, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 117, - "left": 122.34375, - "top": 15.284185, - "right": 123.75, - "bottom": 13.923404, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 117, - "left": 123.75, - "top": 15.284185, - "right": 125.15625, - "bottom": 13.923404, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 118, - "left": 119.53125, - "top": 13.923404, - "right": 120.9375, - "bottom": 12.554564, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 118, - "left": 120.9375, - "top": 13.923404, - "right": 122.34375, - "bottom": 12.554564, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 118, - "left": 122.34375, - "top": 13.923404, - "right": 123.75, - "bottom": 12.554564, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 118, - "left": 123.75, - "top": 13.923404, - "right": 125.15625, - "bottom": 12.554564, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 118, - "left": 125.15625, - "top": 13.923404, - "right": 126.5625, - "bottom": 12.554564, - "countries": [ - "philippines" - ] - }, - { - "x": 212, - "y": 119, - "left": 118.125, - "top": 12.554564, - "right": 119.53125, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 119, - "left": 119.53125, - "top": 12.554564, - "right": 120.9375, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 119, - "left": 120.9375, - "top": 12.554564, - "right": 122.34375, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 119, - "left": 122.34375, - "top": 12.554564, - "right": 123.75, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 119, - "left": 123.75, - "top": 12.554564, - "right": 125.15625, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 119, - "left": 125.15625, - "top": 12.554564, - "right": 126.5625, - "bottom": 11.178402, - "countries": [ - "philippines" - ] - }, - { - "x": 212, - "y": 120, - "left": 118.125, - "top": 11.178402, - "right": 119.53125, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 120, - "left": 119.53125, - "top": 11.178402, - "right": 120.9375, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 120, - "left": 120.9375, - "top": 11.178402, - "right": 122.34375, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 120, - "left": 122.34375, - "top": 11.178402, - "right": 123.75, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 120, - "left": 123.75, - "top": 11.178402, - "right": 125.15625, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 120, - "left": 125.15625, - "top": 11.178402, - "right": 126.5625, - "bottom": 9.795678, - "countries": [ - "philippines" - ] - }, - { - "x": 211, - "y": 121, - "left": 116.71875, - "top": 9.795678, - "right": 118.125, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 212, - "y": 121, - "left": 118.125, - "top": 9.795678, - "right": 119.53125, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 121, - "left": 119.53125, - "top": 9.795678, - "right": 120.9375, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 121, - "left": 120.9375, - "top": 9.795678, - "right": 122.34375, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 121, - "left": 122.34375, - "top": 9.795678, - "right": 123.75, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 121, - "left": 123.75, - "top": 9.795678, - "right": 125.15625, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 121, - "left": 125.15625, - "top": 9.795678, - "right": 126.5625, - "bottom": 8.407168, - "countries": [ - "philippines" - ] - }, - { - "x": 212, - "y": 122, - "left": 118.125, - "top": 8.407168, - "right": 119.53125, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 122, - "left": 120.9375, - "top": 8.407168, - "right": 122.34375, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 122, - "left": 122.34375, - "top": 8.407168, - "right": 123.75, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 122, - "left": 123.75, - "top": 8.407168, - "right": 125.15625, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 122, - "left": 125.15625, - "top": 8.407168, - "right": 126.5625, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 218, - "y": 122, - "left": 126.5625, - "top": 8.407168, - "right": 127.96875, - "bottom": 7.013668, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 123, - "left": 119.53125, - "top": 7.013668, - "right": 120.9375, - "bottom": 5.615986, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 123, - "left": 120.9375, - "top": 7.013668, - "right": 122.34375, - "bottom": 5.615986, - "countries": [ - "philippines" - ] - }, - { - "x": 215, - "y": 123, - "left": 122.34375, - "top": 7.013668, - "right": 123.75, - "bottom": 5.615986, - "countries": [ - "philippines" - ] - }, - { - "x": 216, - "y": 123, - "left": 123.75, - "top": 7.013668, - "right": 125.15625, - "bottom": 5.615986, - "countries": [ - "philippines" - ] - }, - { - "x": 217, - "y": 123, - "left": 125.15625, - "top": 7.013668, - "right": 126.5625, - "bottom": 5.615986, - "countries": [ - "philippines" - ] - }, - { - "x": 213, - "y": 124, - "left": 119.53125, - "top": 5.615986, - "right": 120.9375, - "bottom": 4.214943, - "countries": [ - "philippines" - ] - }, - { - "x": 214, - "y": 124, - "left": 120.9375, - "top": 5.615986, - "right": 122.34375, - "bottom": 4.214943, - "countries": [ - "philippines" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/qatar.json b/wahoomc/resources/json/asia/qatar.json deleted file mode 100644 index c237c1da..00000000 --- a/wahoomc/resources/json/asia/qatar.json +++ /dev/null @@ -1,53 +0,0 @@ -[ - { - "x": 164, - "y": 108, - "left": 50.625, - "top": 27.059126, - "right": 52.03125, - "bottom": 25.799891, - "countries": [ - "qatar", - "bahrain" - ] - }, - { - "x": 164, - "y": 109, - "left": 50.625, - "top": 25.799891, - "right": 52.03125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates", - "bahrain" - ] - }, - { - "x": 165, - "y": 109, - "left": 52.03125, - "top": 25.799891, - "right": 53.4375, - "bottom": 24.527135, - "countries": [ - "united_arab_emirates", - "qatar" - ] - }, - { - "x": 164, - "y": 110, - "left": 50.625, - "top": 24.527135, - "right": 52.03125, - "bottom": 23.241346, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/saudi_arabia.json b/wahoomc/resources/json/asia/saudi_arabia.json deleted file mode 100644 index 76a52bdb..00000000 --- a/wahoomc/resources/json/asia/saudi_arabia.json +++ /dev/null @@ -1,1480 +0,0 @@ -[ - { - "x": 152, - "y": 106, - "left": 33.75, - "top": 29.53523, - "right": 35.15625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan", - "egypt", - "israel" - ] - }, - { - "x": 152, - "y": 107, - "left": 33.75, - "top": 28.304381, - "right": 35.15625, - "bottom": 27.059126, - "countries": [ - "saudi_arabia", - "egypt" - ] - }, - { - "x": 153, - "y": 109, - "left": 35.15625, - "top": 25.799891, - "right": 36.5625, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "egypt" - ] - }, - { - "x": 157, - "y": 116, - "left": 40.78125, - "top": 16.636192, - "right": 42.1875, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen", - "eritrea" - ] - }, - { - "x": 163, - "y": 108, - "left": 49.21875, - "top": 27.059126, - "right": 50.625, - "bottom": 25.799891, - "countries": [ - "saudi_arabia", - "bahrain" - ] - }, - { - "x": 163, - "y": 109, - "left": 49.21875, - "top": 25.799891, - "right": 50.625, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "bahrain" - ] - }, - { - "x": 164, - "y": 109, - "left": 50.625, - "top": 25.799891, - "right": 52.03125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates", - "bahrain" - ] - }, - { - "x": 155, - "y": 103, - "left": 37.96875, - "top": 33.137551, - "right": 39.375, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 156, - "y": 103, - "left": 39.375, - "top": 33.137551, - "right": 40.78125, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 156, - "y": 104, - "left": 39.375, - "top": 31.952162, - "right": 40.78125, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 157, - "y": 104, - "left": 40.78125, - "top": 31.952162, - "right": 42.1875, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 158, - "y": 104, - "left": 42.1875, - "top": 31.952162, - "right": 43.59375, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 158, - "y": 105, - "left": 42.1875, - "top": 30.751278, - "right": 43.59375, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 159, - "y": 105, - "left": 43.59375, - "top": 30.751278, - "right": 45.0, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 159, - "y": 106, - "left": 43.59375, - "top": 29.53523, - "right": 45.0, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 160, - "y": 106, - "left": 45.0, - "top": 29.53523, - "right": 46.40625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq" - ] - }, - { - "x": 161, - "y": 106, - "left": 46.40625, - "top": 29.53523, - "right": 47.8125, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "iraq", - "kuwait" - ] - }, - { - "x": 153, - "y": 105, - "left": 35.15625, - "top": 30.751278, - "right": 36.5625, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan", - "israel" - ] - }, - { - "x": 158, - "y": 115, - "left": 42.1875, - "top": 17.978733, - "right": 43.59375, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "israel", - "yemen" - ] - }, - { - "x": 154, - "y": 104, - "left": 36.5625, - "top": 31.952162, - "right": 37.96875, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 155, - "y": 104, - "left": 37.96875, - "top": 31.952162, - "right": 39.375, - "bottom": 30.751278, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 154, - "y": 105, - "left": 36.5625, - "top": 30.751278, - "right": 37.96875, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 155, - "y": 105, - "left": 37.96875, - "top": 30.751278, - "right": 39.375, - "bottom": 29.53523, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 153, - "y": 106, - "left": 35.15625, - "top": 29.53523, - "right": 36.5625, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "jordan" - ] - }, - { - "x": 162, - "y": 106, - "left": 47.8125, - "top": 29.53523, - "right": 49.21875, - "bottom": 28.304381, - "countries": [ - "saudi_arabia", - "kuwait" - ] - }, - { - "x": 167, - "y": 111, - "left": 54.84375, - "top": 23.241346, - "right": 56.25, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 167, - "y": 112, - "left": 54.84375, - "top": 21.943046, - "right": 56.25, - "bottom": 20.632784, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 165, - "y": 113, - "left": 52.03125, - "top": 20.632784, - "right": 53.4375, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 166, - "y": 113, - "left": 53.4375, - "top": 20.632784, - "right": 54.84375, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 167, - "y": 113, - "left": 54.84375, - "top": 20.632784, - "right": 56.25, - "bottom": 19.311143, - "countries": [ - "saudi_arabia", - "oman" - ] - }, - { - "x": 164, - "y": 114, - "left": 50.625, - "top": 19.311143, - "right": 52.03125, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 165, - "y": 114, - "left": 52.03125, - "top": 19.311143, - "right": 53.4375, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 164, - "y": 110, - "left": 50.625, - "top": 24.527135, - "right": 52.03125, - "bottom": 23.241346, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates" - ] - }, - { - "x": 156, - "y": 105, - "left": 39.375, - "top": 30.751278, - "right": 40.78125, - "bottom": 29.53523, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 105, - "left": 40.78125, - "top": 30.751278, - "right": 42.1875, - "bottom": 29.53523, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 154, - "y": 106, - "left": 36.5625, - "top": 29.53523, - "right": 37.96875, - "bottom": 28.304381, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 155, - "y": 106, - "left": 37.96875, - "top": 29.53523, - "right": 39.375, - "bottom": 28.304381, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 106, - "left": 39.375, - "top": 29.53523, - "right": 40.78125, - "bottom": 28.304381, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 106, - "left": 40.78125, - "top": 29.53523, - "right": 42.1875, - "bottom": 28.304381, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 106, - "left": 42.1875, - "top": 29.53523, - "right": 43.59375, - "bottom": 28.304381, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 153, - "y": 107, - "left": 35.15625, - "top": 28.304381, - "right": 36.5625, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 154, - "y": 107, - "left": 36.5625, - "top": 28.304381, - "right": 37.96875, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 155, - "y": 107, - "left": 37.96875, - "top": 28.304381, - "right": 39.375, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 107, - "left": 39.375, - "top": 28.304381, - "right": 40.78125, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 107, - "left": 40.78125, - "top": 28.304381, - "right": 42.1875, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 107, - "left": 42.1875, - "top": 28.304381, - "right": 43.59375, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 107, - "left": 43.59375, - "top": 28.304381, - "right": 45.0, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 107, - "left": 45.0, - "top": 28.304381, - "right": 46.40625, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 107, - "left": 46.40625, - "top": 28.304381, - "right": 47.8125, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 107, - "left": 47.8125, - "top": 28.304381, - "right": 49.21875, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 163, - "y": 107, - "left": 49.21875, - "top": 28.304381, - "right": 50.625, - "bottom": 27.059126, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 153, - "y": 108, - "left": 35.15625, - "top": 27.059126, - "right": 36.5625, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 154, - "y": 108, - "left": 36.5625, - "top": 27.059126, - "right": 37.96875, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 155, - "y": 108, - "left": 37.96875, - "top": 27.059126, - "right": 39.375, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 108, - "left": 39.375, - "top": 27.059126, - "right": 40.78125, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 108, - "left": 40.78125, - "top": 27.059126, - "right": 42.1875, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 108, - "left": 42.1875, - "top": 27.059126, - "right": 43.59375, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 108, - "left": 43.59375, - "top": 27.059126, - "right": 45.0, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 108, - "left": 45.0, - "top": 27.059126, - "right": 46.40625, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 108, - "left": 46.40625, - "top": 27.059126, - "right": 47.8125, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 108, - "left": 47.8125, - "top": 27.059126, - "right": 49.21875, - "bottom": 25.799891, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 154, - "y": 109, - "left": 36.5625, - "top": 25.799891, - "right": 37.96875, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 155, - "y": 109, - "left": 37.96875, - "top": 25.799891, - "right": 39.375, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 109, - "left": 39.375, - "top": 25.799891, - "right": 40.78125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 109, - "left": 40.78125, - "top": 25.799891, - "right": 42.1875, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 109, - "left": 42.1875, - "top": 25.799891, - "right": 43.59375, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 109, - "left": 43.59375, - "top": 25.799891, - "right": 45.0, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 109, - "left": 45.0, - "top": 25.799891, - "right": 46.40625, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 109, - "left": 46.40625, - "top": 25.799891, - "right": 47.8125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 109, - "left": 47.8125, - "top": 25.799891, - "right": 49.21875, - "bottom": 24.527135, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 154, - "y": 110, - "left": 36.5625, - "top": 24.527135, - "right": 37.96875, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 155, - "y": 110, - "left": 37.96875, - "top": 24.527135, - "right": 39.375, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 110, - "left": 39.375, - "top": 24.527135, - "right": 40.78125, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 110, - "left": 40.78125, - "top": 24.527135, - "right": 42.1875, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 110, - "left": 42.1875, - "top": 24.527135, - "right": 43.59375, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 110, - "left": 43.59375, - "top": 24.527135, - "right": 45.0, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 110, - "left": 45.0, - "top": 24.527135, - "right": 46.40625, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 110, - "left": 46.40625, - "top": 24.527135, - "right": 47.8125, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 110, - "left": 47.8125, - "top": 24.527135, - "right": 49.21875, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 163, - "y": 110, - "left": 49.21875, - "top": 24.527135, - "right": 50.625, - "bottom": 23.241346, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 165, - "y": 110, - "left": 52.03125, - "top": 24.527135, - "right": 53.4375, - "bottom": 23.241346, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 155, - "y": 111, - "left": 37.96875, - "top": 23.241346, - "right": 39.375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 111, - "left": 39.375, - "top": 23.241346, - "right": 40.78125, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 111, - "left": 40.78125, - "top": 23.241346, - "right": 42.1875, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 111, - "left": 42.1875, - "top": 23.241346, - "right": 43.59375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 111, - "left": 43.59375, - "top": 23.241346, - "right": 45.0, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 111, - "left": 45.0, - "top": 23.241346, - "right": 46.40625, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 111, - "left": 46.40625, - "top": 23.241346, - "right": 47.8125, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 111, - "left": 47.8125, - "top": 23.241346, - "right": 49.21875, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 163, - "y": 111, - "left": 49.21875, - "top": 23.241346, - "right": 50.625, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 164, - "y": 111, - "left": 50.625, - "top": 23.241346, - "right": 52.03125, - "bottom": 21.943046, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 165, - "y": 111, - "left": 52.03125, - "top": 23.241346, - "right": 53.4375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 166, - "y": 111, - "left": 53.4375, - "top": 23.241346, - "right": 54.84375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 155, - "y": 112, - "left": 37.96875, - "top": 21.943046, - "right": 39.375, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 112, - "left": 39.375, - "top": 21.943046, - "right": 40.78125, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 112, - "left": 40.78125, - "top": 21.943046, - "right": 42.1875, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 112, - "left": 42.1875, - "top": 21.943046, - "right": 43.59375, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 112, - "left": 43.59375, - "top": 21.943046, - "right": 45.0, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 112, - "left": 45.0, - "top": 21.943046, - "right": 46.40625, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 112, - "left": 46.40625, - "top": 21.943046, - "right": 47.8125, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 112, - "left": 47.8125, - "top": 21.943046, - "right": 49.21875, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 163, - "y": 112, - "left": 49.21875, - "top": 21.943046, - "right": 50.625, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 164, - "y": 112, - "left": 50.625, - "top": 21.943046, - "right": 52.03125, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 165, - "y": 112, - "left": 52.03125, - "top": 21.943046, - "right": 53.4375, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 166, - "y": 112, - "left": 53.4375, - "top": 21.943046, - "right": 54.84375, - "bottom": 20.632784, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 156, - "y": 113, - "left": 39.375, - "top": 20.632784, - "right": 40.78125, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 113, - "left": 40.78125, - "top": 20.632784, - "right": 42.1875, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 113, - "left": 42.1875, - "top": 20.632784, - "right": 43.59375, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 113, - "left": 43.59375, - "top": 20.632784, - "right": 45.0, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 113, - "left": 45.0, - "top": 20.632784, - "right": 46.40625, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 113, - "left": 46.40625, - "top": 20.632784, - "right": 47.8125, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 113, - "left": 47.8125, - "top": 20.632784, - "right": 49.21875, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 163, - "y": 113, - "left": 49.21875, - "top": 20.632784, - "right": 50.625, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 164, - "y": 113, - "left": 50.625, - "top": 20.632784, - "right": 52.03125, - "bottom": 19.311143, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 157, - "y": 114, - "left": 40.78125, - "top": 19.311143, - "right": 42.1875, - "bottom": 17.978733, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 158, - "y": 114, - "left": 42.1875, - "top": 19.311143, - "right": 43.59375, - "bottom": 17.978733, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 114, - "left": 43.59375, - "top": 19.311143, - "right": 45.0, - "bottom": 17.978733, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 160, - "y": 114, - "left": 45.0, - "top": 19.311143, - "right": 46.40625, - "bottom": 17.978733, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 161, - "y": 114, - "left": 46.40625, - "top": 19.311143, - "right": 47.8125, - "bottom": 17.978733, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 162, - "y": 114, - "left": 47.8125, - "top": 19.311143, - "right": 49.21875, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 163, - "y": 114, - "left": 49.21875, - "top": 19.311143, - "right": 50.625, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 157, - "y": 115, - "left": 40.78125, - "top": 17.978733, - "right": 42.1875, - "bottom": 16.636192, - "countries": [ - "saudi_arabia" - ] - }, - { - "x": 159, - "y": 115, - "left": 43.59375, - "top": 17.978733, - "right": 45.0, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 160, - "y": 115, - "left": 45.0, - "top": 17.978733, - "right": 46.40625, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 161, - "y": 115, - "left": 46.40625, - "top": 17.978733, - "right": 47.8125, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 162, - "y": 115, - "left": 47.8125, - "top": 17.978733, - "right": 49.21875, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 158, - "y": 116, - "left": 42.1875, - "top": 16.636192, - "right": 43.59375, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 160, - "y": 116, - "left": 45.0, - "top": 16.636192, - "right": 46.40625, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 161, - "y": 116, - "left": 46.40625, - "top": 16.636192, - "right": 47.8125, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/singapore.json b/wahoomc/resources/json/asia/singapore.json deleted file mode 100644 index 988be857..00000000 --- a/wahoomc/resources/json/asia/singapore.json +++ /dev/null @@ -1,52 +0,0 @@ -[ - { - "x": 201, - "y": 127, - "left": 102.65625, - "top": 1.406109, - "right": 104.0625, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 202, - "y": 127, - "left": 104.0625, - "top": 1.406109, - "right": 105.46875, - "bottom": 0.0, - "countries": [ - "indonesia", - "singapore", - "malaysia" - ] - }, - { - "x": 201, - "y": 126, - "left": 102.65625, - "top": 2.811371, - "right": 104.0625, - "bottom": 1.406109, - "countries": [ - "singapore", - "malaysia" - ] - }, - { - "x": 202, - "y": 126, - "left": 104.0625, - "top": 2.811371, - "right": 105.46875, - "bottom": 1.406109, - "countries": [ - "singapore", - "malaysia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/south_korea.json b/wahoomc/resources/json/asia/south_korea.json deleted file mode 100644 index 5c64892d..00000000 --- a/wahoomc/resources/json/asia/south_korea.json +++ /dev/null @@ -1,228 +0,0 @@ -[ - { - "x": 219, - "y": 101, - "left": 127.96875, - "top": 35.46067, - "right": 129.375, - "bottom": 34.307144, - "countries": [ - "japan", - "south_korea" - ] - }, - { - "x": 216, - "y": 98, - "left": 123.75, - "top": 38.822591, - "right": 125.15625, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 217, - "y": 98, - "left": 125.15625, - "top": 38.822591, - "right": 126.5625, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 218, - "y": 98, - "left": 126.5625, - "top": 38.822591, - "right": 127.96875, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 219, - "y": 98, - "left": 127.96875, - "top": 38.822591, - "right": 129.375, - "bottom": 37.71859, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 217, - "y": 99, - "left": 125.15625, - "top": 37.71859, - "right": 126.5625, - "bottom": 36.597889, - "countries": [ - "north_korea", - "south_korea" - ] - }, - { - "x": 218, - "y": 99, - "left": 126.5625, - "top": 37.71859, - "right": 127.96875, - "bottom": 36.597889, - "countries": [ - "south_korea" - ] - }, - { - "x": 219, - "y": 99, - "left": 127.96875, - "top": 37.71859, - "right": 129.375, - "bottom": 36.597889, - "countries": [ - "south_korea" - ] - }, - { - "x": 220, - "y": 99, - "left": 129.375, - "top": 37.71859, - "right": 130.78125, - "bottom": 36.597889, - "countries": [ - "south_korea" - ] - }, - { - "x": 221, - "y": 99, - "left": 130.78125, - "top": 37.71859, - "right": 132.1875, - "bottom": 36.597889, - "countries": [ - "south_korea" - ] - }, - { - "x": 217, - "y": 100, - "left": 125.15625, - "top": 36.597889, - "right": 126.5625, - "bottom": 35.46067, - "countries": [ - "south_korea" - ] - }, - { - "x": 218, - "y": 100, - "left": 126.5625, - "top": 36.597889, - "right": 127.96875, - "bottom": 35.46067, - "countries": [ - "south_korea" - ] - }, - { - "x": 219, - "y": 100, - "left": 127.96875, - "top": 36.597889, - "right": 129.375, - "bottom": 35.46067, - "countries": [ - "south_korea" - ] - }, - { - "x": 220, - "y": 100, - "left": 129.375, - "top": 36.597889, - "right": 130.78125, - "bottom": 35.46067, - "countries": [ - "south_korea" - ] - }, - { - "x": 217, - "y": 101, - "left": 125.15625, - "top": 35.46067, - "right": 126.5625, - "bottom": 34.307144, - "countries": [ - "south_korea" - ] - }, - { - "x": 218, - "y": 101, - "left": 126.5625, - "top": 35.46067, - "right": 127.96875, - "bottom": 34.307144, - "countries": [ - "south_korea" - ] - }, - { - "x": 216, - "y": 102, - "left": 123.75, - "top": 34.307144, - "right": 125.15625, - "bottom": 33.137551, - "countries": [ - "south_korea" - ] - }, - { - "x": 217, - "y": 102, - "left": 125.15625, - "top": 34.307144, - "right": 126.5625, - "bottom": 33.137551, - "countries": [ - "south_korea" - ] - }, - { - "x": 218, - "y": 102, - "left": 126.5625, - "top": 34.307144, - "right": 127.96875, - "bottom": 33.137551, - "countries": [ - "south_korea" - ] - }, - { - "x": 217, - "y": 103, - "left": 125.15625, - "top": 33.137551, - "right": 126.5625, - "bottom": 31.952162, - "countries": [ - "south_korea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/spratly_islands.json b/wahoomc/resources/json/asia/spratly_islands.json deleted file mode 100644 index e53f5ec2..00000000 --- a/wahoomc/resources/json/asia/spratly_islands.json +++ /dev/null @@ -1,35 +0,0 @@ -[ - { - "x": 209, - "y": 120, - "left": 113.90625, - "top": 11.178402, - "right": 115.3125, - "bottom": 9.795678, - "countries": [ - "spratly_islands" - ] - }, - { - "x": 210, - "y": 120, - "left": 115.3125, - "top": 11.178402, - "right": 116.71875, - "bottom": 9.795678, - "countries": [ - "spratly_islands" - ] - }, - { - "x": 209, - "y": 121, - "left": 113.90625, - "top": 9.795678, - "right": 115.3125, - "bottom": 8.407168, - "countries": [ - "spratly_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/sri_lanka.json b/wahoomc/resources/json/asia/sri_lanka.json deleted file mode 100644 index cbcd16a1..00000000 --- a/wahoomc/resources/json/asia/sri_lanka.json +++ /dev/null @@ -1,114 +0,0 @@ -[ - { - "x": 184, - "y": 120, - "left": 78.75, - "top": 11.178402, - "right": 80.15625, - "bottom": 9.795678, - "countries": [ - "sri_lanka", - "india" - ] - }, - { - "x": 184, - "y": 121, - "left": 78.75, - "top": 9.795678, - "right": 80.15625, - "bottom": 8.407168, - "countries": [ - "sri_lanka", - "india" - ] - }, - { - "x": 185, - "y": 120, - "left": 80.15625, - "top": 11.178402, - "right": 81.5625, - "bottom": 9.795678, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 185, - "y": 121, - "left": 80.15625, - "top": 9.795678, - "right": 81.5625, - "bottom": 8.407168, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 184, - "y": 122, - "left": 78.75, - "top": 8.407168, - "right": 80.15625, - "bottom": 7.013668, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 185, - "y": 122, - "left": 80.15625, - "top": 8.407168, - "right": 81.5625, - "bottom": 7.013668, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 186, - "y": 122, - "left": 81.5625, - "top": 8.407168, - "right": 82.96875, - "bottom": 7.013668, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 184, - "y": 123, - "left": 78.75, - "top": 7.013668, - "right": 80.15625, - "bottom": 5.615986, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 185, - "y": 123, - "left": 80.15625, - "top": 7.013668, - "right": 81.5625, - "bottom": 5.615986, - "countries": [ - "sri_lanka" - ] - }, - { - "x": 186, - "y": 123, - "left": 81.5625, - "top": 7.013668, - "right": 82.96875, - "bottom": 5.615986, - "countries": [ - "sri_lanka" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/syria.json b/wahoomc/resources/json/asia/syria.json deleted file mode 100644 index 1eb8e441..00000000 --- a/wahoomc/resources/json/asia/syria.json +++ /dev/null @@ -1,272 +0,0 @@ -[ - { - "x": 157, - "y": 99, - "left": 40.78125, - "top": 37.71859, - "right": 42.1875, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 158, - "y": 99, - "left": 42.1875, - "top": 37.71859, - "right": 43.59375, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 157, - "y": 100, - "left": 40.78125, - "top": 36.597889, - "right": 42.1875, - "bottom": 35.46067, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 156, - "y": 101, - "left": 39.375, - "top": 35.46067, - "right": 40.78125, - "bottom": 34.307144, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 157, - "y": 101, - "left": 40.78125, - "top": 35.46067, - "right": 42.1875, - "bottom": 34.307144, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 155, - "y": 102, - "left": 37.96875, - "top": 34.307144, - "right": 39.375, - "bottom": 33.137551, - "countries": [ - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 156, - "y": 102, - "left": 39.375, - "top": 34.307144, - "right": 40.78125, - "bottom": 33.137551, - "countries": [ - "syria", - "iraq" - ] - }, - { - "x": 155, - "y": 103, - "left": 37.96875, - "top": 33.137551, - "right": 39.375, - "bottom": 31.952162, - "countries": [ - "saudi_arabia", - "jordan", - "syria", - "iraq" - ] - }, - { - "x": 153, - "y": 102, - "left": 35.15625, - "top": 34.307144, - "right": 36.5625, - "bottom": 33.137551, - "countries": [ - "lebanon", - "syria", - "israel" - ] - }, - { - "x": 153, - "y": 103, - "left": 35.15625, - "top": 33.137551, - "right": 36.5625, - "bottom": 31.952162, - "countries": [ - "lebanon", - "syria", - "jordan", - "israel", - "palestina" - ] - }, - { - "x": 154, - "y": 103, - "left": 36.5625, - "top": 33.137551, - "right": 37.96875, - "bottom": 31.952162, - "countries": [ - "jordan", - "syria" - ] - }, - { - "x": 153, - "y": 101, - "left": 35.15625, - "top": 35.46067, - "right": 36.5625, - "bottom": 34.307144, - "countries": [ - "lebanon", - "syria" - ] - }, - { - "x": 154, - "y": 101, - "left": 36.5625, - "top": 35.46067, - "right": 37.96875, - "bottom": 34.307144, - "countries": [ - "lebanon", - "syria" - ] - }, - { - "x": 154, - "y": 102, - "left": 36.5625, - "top": 34.307144, - "right": 37.96875, - "bottom": 33.137551, - "countries": [ - "lebanon", - "syria" - ] - }, - { - "x": 154, - "y": 99, - "left": 36.5625, - "top": 37.71859, - "right": 37.96875, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 155, - "y": 99, - "left": 37.96875, - "top": 37.71859, - "right": 39.375, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 156, - "y": 99, - "left": 39.375, - "top": 37.71859, - "right": 40.78125, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 153, - "y": 100, - "left": 35.15625, - "top": 36.597889, - "right": 36.5625, - "bottom": 35.46067, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 154, - "y": 100, - "left": 36.5625, - "top": 36.597889, - "right": 37.96875, - "bottom": 35.46067, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 155, - "y": 100, - "left": 37.96875, - "top": 36.597889, - "right": 39.375, - "bottom": 35.46067, - "countries": [ - "syria" - ] - }, - { - "x": 156, - "y": 100, - "left": 39.375, - "top": 36.597889, - "right": 40.78125, - "bottom": 35.46067, - "countries": [ - "syria" - ] - }, - { - "x": 155, - "y": 101, - "left": 37.96875, - "top": 35.46067, - "right": 39.375, - "bottom": 34.307144, - "countries": [ - "syria" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/taiwan.json b/wahoomc/resources/json/asia/taiwan.json deleted file mode 100644 index 8ede0f32..00000000 --- a/wahoomc/resources/json/asia/taiwan.json +++ /dev/null @@ -1,149 +0,0 @@ -[ - { - "x": 213, - "y": 108, - "left": 119.53125, - "top": 27.059126, - "right": 120.9375, - "bottom": 25.799891, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 212, - "y": 109, - "left": 118.125, - "top": 25.799891, - "right": 119.53125, - "bottom": 24.527135, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 213, - "y": 109, - "left": 119.53125, - "top": 25.799891, - "right": 120.9375, - "bottom": 24.527135, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 212, - "y": 110, - "left": 118.125, - "top": 24.527135, - "right": 119.53125, - "bottom": 23.241346, - "countries": [ - "taiwan", - "china" - ] - }, - { - "x": 214, - "y": 109, - "left": 120.9375, - "top": 25.799891, - "right": 122.34375, - "bottom": 24.527135, - "countries": [ - "taiwan" - ] - }, - { - "x": 213, - "y": 110, - "left": 119.53125, - "top": 24.527135, - "right": 120.9375, - "bottom": 23.241346, - "countries": [ - "taiwan" - ] - }, - { - "x": 214, - "y": 110, - "left": 120.9375, - "top": 24.527135, - "right": 122.34375, - "bottom": 23.241346, - "countries": [ - "taiwan" - ] - }, - { - "x": 212, - "y": 111, - "left": 118.125, - "top": 23.241346, - "right": 119.53125, - "bottom": 21.943046, - "countries": [ - "taiwan" - ] - }, - { - "x": 213, - "y": 111, - "left": 119.53125, - "top": 23.241346, - "right": 120.9375, - "bottom": 21.943046, - "countries": [ - "taiwan" - ] - }, - { - "x": 214, - "y": 111, - "left": 120.9375, - "top": 23.241346, - "right": 122.34375, - "bottom": 21.943046, - "countries": [ - "taiwan" - ] - }, - { - "x": 210, - "y": 112, - "left": 115.3125, - "top": 21.943046, - "right": 116.71875, - "bottom": 20.632784, - "countries": [ - "taiwan" - ] - }, - { - "x": 211, - "y": 112, - "left": 116.71875, - "top": 21.943046, - "right": 118.125, - "bottom": 20.632784, - "countries": [ - "taiwan" - ] - }, - { - "x": 213, - "y": 112, - "left": 119.53125, - "top": 21.943046, - "right": 120.9375, - "bottom": 20.632784, - "countries": [ - "taiwan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/tajikistan.json b/wahoomc/resources/json/asia/tajikistan.json deleted file mode 100644 index 996d5251..00000000 --- a/wahoomc/resources/json/asia/tajikistan.json +++ /dev/null @@ -1,279 +0,0 @@ -[ - { - "x": 177, - "y": 98, - "left": 68.90625, - "top": 38.822591, - "right": 70.3125, - "bottom": 37.71859, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 178, - "y": 98, - "left": 70.3125, - "top": 38.822591, - "right": 71.71875, - "bottom": 37.71859, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 176, - "y": 99, - "left": 67.5, - "top": 37.71859, - "right": 68.90625, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 177, - "y": 99, - "left": 68.90625, - "top": 37.71859, - "right": 70.3125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 178, - "y": 99, - "left": 70.3125, - "top": 37.71859, - "right": 71.71875, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan" - ] - }, - { - "x": 179, - "y": 99, - "left": 71.71875, - "top": 37.71859, - "right": 73.125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "pakistan" - ] - }, - { - "x": 180, - "y": 99, - "left": 73.125, - "top": 37.71859, - "right": 74.53125, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 181, - "y": 99, - "left": 74.53125, - "top": 37.71859, - "right": 75.9375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "china", - "pakistan" - ] - }, - { - "x": 180, - "y": 97, - "left": 73.125, - "top": 39.909736, - "right": 74.53125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 180, - "y": 98, - "left": 73.125, - "top": 38.822591, - "right": 74.53125, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "china" - ] - }, - { - "x": 181, - "y": 98, - "left": 74.53125, - "top": 38.822591, - "right": 75.9375, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "china" - ] - }, - { - "x": 178, - "y": 95, - "left": 70.3125, - "top": 42.032974, - "right": 71.71875, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 176, - "y": 96, - "left": 67.5, - "top": 40.979898, - "right": 68.90625, - "bottom": 39.909736, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 177, - "y": 96, - "left": 68.90625, - "top": 40.979898, - "right": 70.3125, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 96, - "left": 70.3125, - "top": 40.979898, - "right": 71.71875, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 97, - "left": 68.90625, - "top": 39.909736, - "right": 70.3125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 97, - "left": 70.3125, - "top": 39.909736, - "right": 71.71875, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 97, - "left": 71.71875, - "top": 39.909736, - "right": 73.125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "kyrgyzstan" - ] - }, - { - "x": 175, - "y": 97, - "left": 66.09375, - "top": 39.909736, - "right": 67.5, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 97, - "left": 67.5, - "top": 39.909736, - "right": 68.90625, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 98, - "left": 67.5, - "top": 38.822591, - "right": 68.90625, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 179, - "y": 98, - "left": 71.71875, - "top": 38.822591, - "right": 73.125, - "bottom": 37.71859, - "countries": [ - "tajikistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/thailand.json b/wahoomc/resources/json/asia/thailand.json deleted file mode 100644 index 7c614b27..00000000 --- a/wahoomc/resources/json/asia/thailand.json +++ /dev/null @@ -1,605 +0,0 @@ -[ - { - "x": 201, - "y": 117, - "left": 102.65625, - "top": 15.284185, - "right": 104.0625, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 202, - "y": 117, - "left": 104.0625, - "top": 15.284185, - "right": 105.46875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 117, - "left": 105.46875, - "top": 15.284185, - "right": 106.875, - "bottom": 13.923404, - "countries": [ - "cambodia", - "thailand", - "laos" - ] - }, - { - "x": 200, - "y": 118, - "left": 101.25, - "top": 13.923404, - "right": 102.65625, - "bottom": 12.554564, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 201, - "y": 118, - "left": 102.65625, - "top": 13.923404, - "right": 104.0625, - "bottom": 12.554564, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 201, - "y": 119, - "left": 102.65625, - "top": 12.554564, - "right": 104.0625, - "bottom": 11.178402, - "countries": [ - "cambodia", - "thailand" - ] - }, - { - "x": 199, - "y": 113, - "left": 99.84375, - "top": 20.632784, - "right": 101.25, - "bottom": 19.311143, - "countries": [ - "thailand", - "laos", - "myanmar" - ] - }, - { - "x": 200, - "y": 113, - "left": 101.25, - "top": 20.632784, - "right": 102.65625, - "bottom": 19.311143, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 199, - "y": 114, - "left": 99.84375, - "top": 19.311143, - "right": 101.25, - "bottom": 17.978733, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 200, - "y": 114, - "left": 101.25, - "top": 19.311143, - "right": 102.65625, - "bottom": 17.978733, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 201, - "y": 114, - "left": 102.65625, - "top": 19.311143, - "right": 104.0625, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 114, - "left": 104.0625, - "top": 19.311143, - "right": 105.46875, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 199, - "y": 115, - "left": 99.84375, - "top": 17.978733, - "right": 101.25, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 200, - "y": 115, - "left": 101.25, - "top": 17.978733, - "right": 102.65625, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 201, - "y": 115, - "left": 102.65625, - "top": 17.978733, - "right": 104.0625, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 115, - "left": 104.0625, - "top": 17.978733, - "right": 105.46875, - "bottom": 16.636192, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 116, - "left": 104.0625, - "top": 16.636192, - "right": 105.46875, - "bottom": 15.284185, - "countries": [ - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 116, - "left": 105.46875, - "top": 16.636192, - "right": 106.875, - "bottom": 15.284185, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 198, - "y": 123, - "left": 98.4375, - "top": 7.013668, - "right": 99.84375, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 199, - "y": 123, - "left": 99.84375, - "top": 7.013668, - "right": 101.25, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 200, - "y": 123, - "left": 101.25, - "top": 7.013668, - "right": 102.65625, - "bottom": 5.615986, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 199, - "y": 124, - "left": 99.84375, - "top": 5.615986, - "right": 101.25, - "bottom": 4.214943, - "countries": [ - "thailand", - "malaysia" - ] - }, - { - "x": 197, - "y": 113, - "left": 97.03125, - "top": 20.632784, - "right": 98.4375, - "bottom": 19.311143, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 113, - "left": 98.4375, - "top": 20.632784, - "right": 99.84375, - "bottom": 19.311143, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 114, - "left": 97.03125, - "top": 19.311143, - "right": 98.4375, - "bottom": 17.978733, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 115, - "left": 97.03125, - "top": 17.978733, - "right": 98.4375, - "bottom": 16.636192, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 115, - "left": 98.4375, - "top": 17.978733, - "right": 99.84375, - "bottom": 16.636192, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 116, - "left": 97.03125, - "top": 16.636192, - "right": 98.4375, - "bottom": 15.284185, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 116, - "left": 98.4375, - "top": 16.636192, - "right": 99.84375, - "bottom": 15.284185, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 117, - "left": 97.03125, - "top": 15.284185, - "right": 98.4375, - "bottom": 13.923404, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 117, - "left": 98.4375, - "top": 15.284185, - "right": 99.84375, - "bottom": 13.923404, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 118, - "left": 98.4375, - "top": 13.923404, - "right": 99.84375, - "bottom": 12.554564, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 119, - "left": 98.4375, - "top": 12.554564, - "right": 99.84375, - "bottom": 11.178402, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 120, - "left": 97.03125, - "top": 11.178402, - "right": 98.4375, - "bottom": 9.795678, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 120, - "left": 98.4375, - "top": 11.178402, - "right": 99.84375, - "bottom": 9.795678, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 197, - "y": 121, - "left": 97.03125, - "top": 9.795678, - "right": 98.4375, - "bottom": 8.407168, - "countries": [ - "thailand", - "myanmar" - ] - }, - { - "x": 198, - "y": 114, - "left": 98.4375, - "top": 19.311143, - "right": 99.84375, - "bottom": 17.978733, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 116, - "left": 99.84375, - "top": 16.636192, - "right": 101.25, - "bottom": 15.284185, - "countries": [ - "thailand" - ] - }, - { - "x": 200, - "y": 116, - "left": 101.25, - "top": 16.636192, - "right": 102.65625, - "bottom": 15.284185, - "countries": [ - "thailand" - ] - }, - { - "x": 201, - "y": 116, - "left": 102.65625, - "top": 16.636192, - "right": 104.0625, - "bottom": 15.284185, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 117, - "left": 99.84375, - "top": 15.284185, - "right": 101.25, - "bottom": 13.923404, - "countries": [ - "thailand" - ] - }, - { - "x": 200, - "y": 117, - "left": 101.25, - "top": 15.284185, - "right": 102.65625, - "bottom": 13.923404, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 118, - "left": 99.84375, - "top": 13.923404, - "right": 101.25, - "bottom": 12.554564, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 119, - "left": 99.84375, - "top": 12.554564, - "right": 101.25, - "bottom": 11.178402, - "countries": [ - "thailand" - ] - }, - { - "x": 200, - "y": 119, - "left": 101.25, - "top": 12.554564, - "right": 102.65625, - "bottom": 11.178402, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 120, - "left": 99.84375, - "top": 11.178402, - "right": 101.25, - "bottom": 9.795678, - "countries": [ - "thailand" - ] - }, - { - "x": 198, - "y": 121, - "left": 98.4375, - "top": 9.795678, - "right": 99.84375, - "bottom": 8.407168, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 121, - "left": 99.84375, - "top": 9.795678, - "right": 101.25, - "bottom": 8.407168, - "countries": [ - "thailand" - ] - }, - { - "x": 197, - "y": 122, - "left": 97.03125, - "top": 8.407168, - "right": 98.4375, - "bottom": 7.013668, - "countries": [ - "thailand" - ] - }, - { - "x": 198, - "y": 122, - "left": 98.4375, - "top": 8.407168, - "right": 99.84375, - "bottom": 7.013668, - "countries": [ - "thailand" - ] - }, - { - "x": 199, - "y": 122, - "left": 99.84375, - "top": 8.407168, - "right": 101.25, - "bottom": 7.013668, - "countries": [ - "thailand" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/turkey.json b/wahoomc/resources/json/asia/turkey.json deleted file mode 100644 index f90c6398..00000000 --- a/wahoomc/resources/json/asia/turkey.json +++ /dev/null @@ -1,918 +0,0 @@ -[ - { - "x": 158, - "y": 95, - "left": 42.1875, - "top": 42.032974, - "right": 43.59375, - "bottom": 40.979898, - "countries": [ - "georgia", - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 95, - "left": 43.59375, - "top": 42.032974, - "right": 45.0, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 158, - "y": 96, - "left": 42.1875, - "top": 40.979898, - "right": 43.59375, - "bottom": 39.909736, - "countries": [ - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 96, - "left": 43.59375, - "top": 40.979898, - "right": 45.0, - "bottom": 39.909736, - "countries": [ - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 97, - "left": 43.59375, - "top": 39.909736, - "right": 45.0, - "bottom": 38.822591, - "countries": [ - "iran", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 152, - "y": 100, - "left": 33.75, - "top": 36.597889, - "right": 35.15625, - "bottom": 35.46067, - "countries": [ - "turkey", - "cyprus" - ] - }, - { - "x": 157, - "y": 95, - "left": 40.78125, - "top": 42.032974, - "right": 42.1875, - "bottom": 40.979898, - "countries": [ - "georgia", - "turkey" - ] - }, - { - "x": 159, - "y": 98, - "left": 43.59375, - "top": 38.822591, - "right": 45.0, - "bottom": 37.71859, - "countries": [ - "iran", - "turkey" - ] - }, - { - "x": 159, - "y": 99, - "left": 43.59375, - "top": 37.71859, - "right": 45.0, - "bottom": 36.597889, - "countries": [ - "iran", - "turkey", - "iraq" - ] - }, - { - "x": 157, - "y": 99, - "left": 40.78125, - "top": 37.71859, - "right": 42.1875, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 158, - "y": 99, - "left": 42.1875, - "top": 37.71859, - "right": 43.59375, - "bottom": 36.597889, - "countries": [ - "turkey", - "syria", - "iraq" - ] - }, - { - "x": 154, - "y": 99, - "left": 36.5625, - "top": 37.71859, - "right": 37.96875, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 155, - "y": 99, - "left": 37.96875, - "top": 37.71859, - "right": 39.375, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 156, - "y": 99, - "left": 39.375, - "top": 37.71859, - "right": 40.78125, - "bottom": 36.597889, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 153, - "y": 100, - "left": 35.15625, - "top": 36.597889, - "right": 36.5625, - "bottom": 35.46067, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 154, - "y": 100, - "left": 36.5625, - "top": 36.597889, - "right": 37.96875, - "bottom": 35.46067, - "countries": [ - "syria", - "turkey" - ] - }, - { - "x": 147, - "y": 94, - "left": 26.71875, - "top": 43.068888, - "right": 28.125, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "turkey" - ] - }, - { - "x": 152, - "y": 94, - "left": 33.75, - "top": 43.068888, - "right": 35.15625, - "bottom": 42.032974, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 94, - "left": 35.15625, - "top": 43.068888, - "right": 36.5625, - "bottom": 42.032974, - "countries": [ - "turkey" - ] - }, - { - "x": 146, - "y": 95, - "left": 25.3125, - "top": 42.032974, - "right": 26.71875, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 95, - "left": 26.71875, - "top": 42.032974, - "right": 28.125, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "turkey" - ] - }, - { - "x": 148, - "y": 95, - "left": 28.125, - "top": 42.032974, - "right": 29.53125, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 149, - "y": 95, - "left": 29.53125, - "top": 42.032974, - "right": 30.9375, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 150, - "y": 95, - "left": 30.9375, - "top": 42.032974, - "right": 32.34375, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 95, - "left": 32.34375, - "top": 42.032974, - "right": 33.75, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 152, - "y": 95, - "left": 33.75, - "top": 42.032974, - "right": 35.15625, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 95, - "left": 35.15625, - "top": 42.032974, - "right": 36.5625, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 154, - "y": 95, - "left": 36.5625, - "top": 42.032974, - "right": 37.96875, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 155, - "y": 95, - "left": 37.96875, - "top": 42.032974, - "right": 39.375, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 156, - "y": 95, - "left": 39.375, - "top": 42.032974, - "right": 40.78125, - "bottom": 40.979898, - "countries": [ - "turkey" - ] - }, - { - "x": 146, - "y": 96, - "left": 25.3125, - "top": 40.979898, - "right": 26.71875, - "bottom": 39.909736, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 96, - "left": 26.71875, - "top": 40.979898, - "right": 28.125, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 148, - "y": 96, - "left": 28.125, - "top": 40.979898, - "right": 29.53125, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 149, - "y": 96, - "left": 29.53125, - "top": 40.979898, - "right": 30.9375, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 150, - "y": 96, - "left": 30.9375, - "top": 40.979898, - "right": 32.34375, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 96, - "left": 32.34375, - "top": 40.979898, - "right": 33.75, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 152, - "y": 96, - "left": 33.75, - "top": 40.979898, - "right": 35.15625, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 96, - "left": 35.15625, - "top": 40.979898, - "right": 36.5625, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 154, - "y": 96, - "left": 36.5625, - "top": 40.979898, - "right": 37.96875, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 155, - "y": 96, - "left": 37.96875, - "top": 40.979898, - "right": 39.375, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 156, - "y": 96, - "left": 39.375, - "top": 40.979898, - "right": 40.78125, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 157, - "y": 96, - "left": 40.78125, - "top": 40.979898, - "right": 42.1875, - "bottom": 39.909736, - "countries": [ - "turkey" - ] - }, - { - "x": 146, - "y": 97, - "left": 25.3125, - "top": 39.909736, - "right": 26.71875, - "bottom": 38.822591, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 97, - "left": 26.71875, - "top": 39.909736, - "right": 28.125, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 148, - "y": 97, - "left": 28.125, - "top": 39.909736, - "right": 29.53125, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 149, - "y": 97, - "left": 29.53125, - "top": 39.909736, - "right": 30.9375, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 150, - "y": 97, - "left": 30.9375, - "top": 39.909736, - "right": 32.34375, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 97, - "left": 32.34375, - "top": 39.909736, - "right": 33.75, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 152, - "y": 97, - "left": 33.75, - "top": 39.909736, - "right": 35.15625, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 97, - "left": 35.15625, - "top": 39.909736, - "right": 36.5625, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 154, - "y": 97, - "left": 36.5625, - "top": 39.909736, - "right": 37.96875, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 155, - "y": 97, - "left": 37.96875, - "top": 39.909736, - "right": 39.375, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 156, - "y": 97, - "left": 39.375, - "top": 39.909736, - "right": 40.78125, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 157, - "y": 97, - "left": 40.78125, - "top": 39.909736, - "right": 42.1875, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 158, - "y": 97, - "left": 42.1875, - "top": 39.909736, - "right": 43.59375, - "bottom": 38.822591, - "countries": [ - "turkey" - ] - }, - { - "x": 146, - "y": 98, - "left": 25.3125, - "top": 38.822591, - "right": 26.71875, - "bottom": 37.71859, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 98, - "left": 26.71875, - "top": 38.822591, - "right": 28.125, - "bottom": 37.71859, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 148, - "y": 98, - "left": 28.125, - "top": 38.822591, - "right": 29.53125, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 149, - "y": 98, - "left": 29.53125, - "top": 38.822591, - "right": 30.9375, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 150, - "y": 98, - "left": 30.9375, - "top": 38.822591, - "right": 32.34375, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 98, - "left": 32.34375, - "top": 38.822591, - "right": 33.75, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 152, - "y": 98, - "left": 33.75, - "top": 38.822591, - "right": 35.15625, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 98, - "left": 35.15625, - "top": 38.822591, - "right": 36.5625, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 154, - "y": 98, - "left": 36.5625, - "top": 38.822591, - "right": 37.96875, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 155, - "y": 98, - "left": 37.96875, - "top": 38.822591, - "right": 39.375, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 156, - "y": 98, - "left": 39.375, - "top": 38.822591, - "right": 40.78125, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 157, - "y": 98, - "left": 40.78125, - "top": 38.822591, - "right": 42.1875, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 158, - "y": 98, - "left": 42.1875, - "top": 38.822591, - "right": 43.59375, - "bottom": 37.71859, - "countries": [ - "turkey" - ] - }, - { - "x": 147, - "y": 99, - "left": 26.71875, - "top": 37.71859, - "right": 28.125, - "bottom": 36.597889, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 148, - "y": 99, - "left": 28.125, - "top": 37.71859, - "right": 29.53125, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 149, - "y": 99, - "left": 29.53125, - "top": 37.71859, - "right": 30.9375, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 150, - "y": 99, - "left": 30.9375, - "top": 37.71859, - "right": 32.34375, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 99, - "left": 32.34375, - "top": 37.71859, - "right": 33.75, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 152, - "y": 99, - "left": 33.75, - "top": 37.71859, - "right": 35.15625, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 153, - "y": 99, - "left": 35.15625, - "top": 37.71859, - "right": 36.5625, - "bottom": 36.597889, - "countries": [ - "turkey" - ] - }, - { - "x": 147, - "y": 100, - "left": 26.71875, - "top": 36.597889, - "right": 28.125, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 148, - "y": 100, - "left": 28.125, - "top": 36.597889, - "right": 29.53125, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 149, - "y": 100, - "left": 29.53125, - "top": 36.597889, - "right": 30.9375, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 150, - "y": 100, - "left": 30.9375, - "top": 36.597889, - "right": 32.34375, - "bottom": 35.46067, - "countries": [ - "turkey" - ] - }, - { - "x": 151, - "y": 100, - "left": 32.34375, - "top": 36.597889, - "right": 33.75, - "bottom": 35.46067, - "countries": [ - "turkey" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/turkmenistan.json b/wahoomc/resources/json/asia/turkmenistan.json deleted file mode 100644 index 353d155a..00000000 --- a/wahoomc/resources/json/asia/turkmenistan.json +++ /dev/null @@ -1,634 +0,0 @@ -[ - { - "x": 173, - "y": 99, - "left": 63.28125, - "top": 37.71859, - "right": 64.6875, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 174, - "y": 99, - "left": 64.6875, - "top": 37.71859, - "right": 66.09375, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 175, - "y": 99, - "left": 66.09375, - "top": 37.71859, - "right": 67.5, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 100, - "left": 60.46875, - "top": 36.597889, - "right": 61.875, - "bottom": 35.46067, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 172, - "y": 100, - "left": 61.875, - "top": 36.597889, - "right": 63.28125, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 173, - "y": 100, - "left": 63.28125, - "top": 36.597889, - "right": 64.6875, - "bottom": 35.46067, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 171, - "y": 101, - "left": 60.46875, - "top": 35.46067, - "right": 61.875, - "bottom": 34.307144, - "countries": [ - "iran", - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 172, - "y": 101, - "left": 61.875, - "top": 35.46067, - "right": 63.28125, - "bottom": 34.307144, - "countries": [ - "afghanistan", - "turkmenistan" - ] - }, - { - "x": 166, - "y": 98, - "left": 53.4375, - "top": 38.822591, - "right": 54.84375, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 167, - "y": 98, - "left": 54.84375, - "top": 38.822591, - "right": 56.25, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 168, - "y": 98, - "left": 56.25, - "top": 38.822591, - "right": 57.65625, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 169, - "y": 98, - "left": 57.65625, - "top": 38.822591, - "right": 59.0625, - "bottom": 37.71859, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 166, - "y": 99, - "left": 53.4375, - "top": 37.71859, - "right": 54.84375, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 169, - "y": 99, - "left": 57.65625, - "top": 37.71859, - "right": 59.0625, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 170, - "y": 99, - "left": 59.0625, - "top": 37.71859, - "right": 60.46875, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 171, - "y": 99, - "left": 60.46875, - "top": 37.71859, - "right": 61.875, - "bottom": 36.597889, - "countries": [ - "iran", - "turkmenistan" - ] - }, - { - "x": 165, - "y": 94, - "left": 52.03125, - "top": 43.068888, - "right": 53.4375, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 94, - "left": 53.4375, - "top": 43.068888, - "right": 54.84375, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 165, - "y": 95, - "left": 52.03125, - "top": 42.032974, - "right": 53.4375, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 95, - "left": 53.4375, - "top": 42.032974, - "right": 54.84375, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 95, - "left": 54.84375, - "top": 42.032974, - "right": 56.25, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 94, - "left": 56.25, - "top": 43.068888, - "right": 57.65625, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 94, - "left": 57.65625, - "top": 43.068888, - "right": 59.0625, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 170, - "y": 94, - "left": 59.0625, - "top": 43.068888, - "right": 60.46875, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 95, - "left": 56.25, - "top": 42.032974, - "right": 57.65625, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 95, - "left": 57.65625, - "top": 42.032974, - "right": 59.0625, - "bottom": 40.979898, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 170, - "y": 95, - "left": 59.0625, - "top": 42.032974, - "right": 60.46875, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 95, - "left": 60.46875, - "top": 42.032974, - "right": 61.875, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 95, - "left": 61.875, - "top": 42.032974, - "right": 63.28125, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 165, - "y": 96, - "left": 52.03125, - "top": 40.979898, - "right": 53.4375, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 166, - "y": 96, - "left": 53.4375, - "top": 40.979898, - "right": 54.84375, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 167, - "y": 96, - "left": 54.84375, - "top": 40.979898, - "right": 56.25, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 168, - "y": 96, - "left": 56.25, - "top": 40.979898, - "right": 57.65625, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 169, - "y": 96, - "left": 57.65625, - "top": 40.979898, - "right": 59.0625, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 170, - "y": 96, - "left": 59.0625, - "top": 40.979898, - "right": 60.46875, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 171, - "y": 96, - "left": 60.46875, - "top": 40.979898, - "right": 61.875, - "bottom": 39.909736, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 172, - "y": 96, - "left": 61.875, - "top": 40.979898, - "right": 63.28125, - "bottom": 39.909736, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 165, - "y": 97, - "left": 52.03125, - "top": 39.909736, - "right": 53.4375, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 166, - "y": 97, - "left": 53.4375, - "top": 39.909736, - "right": 54.84375, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 167, - "y": 97, - "left": 54.84375, - "top": 39.909736, - "right": 56.25, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 168, - "y": 97, - "left": 56.25, - "top": 39.909736, - "right": 57.65625, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 169, - "y": 97, - "left": 57.65625, - "top": 39.909736, - "right": 59.0625, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 170, - "y": 97, - "left": 59.0625, - "top": 39.909736, - "right": 60.46875, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 171, - "y": 97, - "left": 60.46875, - "top": 39.909736, - "right": 61.875, - "bottom": 38.822591, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 172, - "y": 97, - "left": 61.875, - "top": 39.909736, - "right": 63.28125, - "bottom": 38.822591, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 173, - "y": 97, - "left": 63.28125, - "top": 39.909736, - "right": 64.6875, - "bottom": 38.822591, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 165, - "y": 98, - "left": 52.03125, - "top": 38.822591, - "right": 53.4375, - "bottom": 37.71859, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 170, - "y": 98, - "left": 59.0625, - "top": 38.822591, - "right": 60.46875, - "bottom": 37.71859, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 171, - "y": 98, - "left": 60.46875, - "top": 38.822591, - "right": 61.875, - "bottom": 37.71859, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 172, - "y": 98, - "left": 61.875, - "top": 38.822591, - "right": 63.28125, - "bottom": 37.71859, - "countries": [ - "turkmenistan" - ] - }, - { - "x": 173, - "y": 98, - "left": 63.28125, - "top": 38.822591, - "right": 64.6875, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 98, - "left": 64.6875, - "top": 38.822591, - "right": 66.09375, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 98, - "left": 66.09375, - "top": 38.822591, - "right": 67.5, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 99, - "left": 61.875, - "top": 37.71859, - "right": 63.28125, - "bottom": 36.597889, - "countries": [ - "turkmenistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/united_arab_emirates.json b/wahoomc/resources/json/asia/united_arab_emirates.json deleted file mode 100644 index bf02d945..00000000 --- a/wahoomc/resources/json/asia/united_arab_emirates.json +++ /dev/null @@ -1,162 +0,0 @@ -[ - { - "x": 164, - "y": 109, - "left": 50.625, - "top": 25.799891, - "right": 52.03125, - "bottom": 24.527135, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates", - "bahrain" - ] - }, - { - "x": 167, - "y": 108, - "left": 54.84375, - "top": 27.059126, - "right": 56.25, - "bottom": 25.799891, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 168, - "y": 109, - "left": 56.25, - "top": 25.799891, - "right": 57.65625, - "bottom": 24.527135, - "countries": [ - "iran", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 167, - "y": 109, - "left": 54.84375, - "top": 25.799891, - "right": 56.25, - "bottom": 24.527135, - "countries": [ - "united_arab_emirates", - "oman" - ] - }, - { - "x": 167, - "y": 110, - "left": 54.84375, - "top": 24.527135, - "right": 56.25, - "bottom": 23.241346, - "countries": [ - "united_arab_emirates", - "oman" - ] - }, - { - "x": 167, - "y": 111, - "left": 54.84375, - "top": 23.241346, - "right": 56.25, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "oman", - "united_arab_emirates" - ] - }, - { - "x": 165, - "y": 109, - "left": 52.03125, - "top": 25.799891, - "right": 53.4375, - "bottom": 24.527135, - "countries": [ - "united_arab_emirates", - "qatar" - ] - }, - { - "x": 164, - "y": 110, - "left": 50.625, - "top": 24.527135, - "right": 52.03125, - "bottom": 23.241346, - "countries": [ - "saudi_arabia", - "qatar", - "united_arab_emirates" - ] - }, - { - "x": 165, - "y": 110, - "left": 52.03125, - "top": 24.527135, - "right": 53.4375, - "bottom": 23.241346, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 165, - "y": 111, - "left": 52.03125, - "top": 23.241346, - "right": 53.4375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 166, - "y": 111, - "left": 53.4375, - "top": 23.241346, - "right": 54.84375, - "bottom": 21.943046, - "countries": [ - "saudi_arabia", - "united_arab_emirates" - ] - }, - { - "x": 166, - "y": 109, - "left": 53.4375, - "top": 25.799891, - "right": 54.84375, - "bottom": 24.527135, - "countries": [ - "united_arab_emirates" - ] - }, - { - "x": 166, - "y": 110, - "left": 53.4375, - "top": 24.527135, - "right": 54.84375, - "bottom": 23.241346, - "countries": [ - "united_arab_emirates" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/uzbekistan.json b/wahoomc/resources/json/asia/uzbekistan.json deleted file mode 100644 index 39bf9e3d..00000000 --- a/wahoomc/resources/json/asia/uzbekistan.json +++ /dev/null @@ -1,722 +0,0 @@ -[ - { - "x": 175, - "y": 99, - "left": 66.09375, - "top": 37.71859, - "right": 67.5, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 99, - "left": 67.5, - "top": 37.71859, - "right": 68.90625, - "bottom": 36.597889, - "countries": [ - "afghanistan", - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 180, - "y": 96, - "left": 73.125, - "top": 40.979898, - "right": 74.53125, - "bottom": 39.909736, - "countries": [ - "uzbekistan", - "china", - "kyrgyzstan" - ] - }, - { - "x": 168, - "y": 91, - "left": 56.25, - "top": 46.073231, - "right": 57.65625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 91, - "left": 57.65625, - "top": 46.073231, - "right": 59.0625, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 170, - "y": 91, - "left": 59.0625, - "top": 46.073231, - "right": 60.46875, - "bottom": 45.089036, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 167, - "y": 92, - "left": 54.84375, - "top": 45.089036, - "right": 56.25, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 92, - "left": 56.25, - "top": 45.089036, - "right": 57.65625, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 92, - "left": 60.46875, - "top": 45.089036, - "right": 61.875, - "bottom": 44.087585, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 167, - "y": 93, - "left": 54.84375, - "top": 44.087585, - "right": 56.25, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 93, - "left": 60.46875, - "top": 44.087585, - "right": 61.875, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 93, - "left": 61.875, - "top": 44.087585, - "right": 63.28125, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 173, - "y": 93, - "left": 63.28125, - "top": 44.087585, - "right": 64.6875, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 93, - "left": 64.6875, - "top": 44.087585, - "right": 66.09375, - "bottom": 43.068888, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 167, - "y": 94, - "left": 54.84375, - "top": 43.068888, - "right": 56.25, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 94, - "left": 64.6875, - "top": 43.068888, - "right": 66.09375, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 94, - "left": 66.09375, - "top": 43.068888, - "right": 67.5, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 178, - "y": 94, - "left": 70.3125, - "top": 43.068888, - "right": 71.71875, - "bottom": 42.032974, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 167, - "y": 95, - "left": 54.84375, - "top": 42.032974, - "right": 56.25, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 95, - "left": 64.6875, - "top": 42.032974, - "right": 66.09375, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 95, - "left": 66.09375, - "top": 42.032974, - "right": 67.5, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 95, - "left": 67.5, - "top": 42.032974, - "right": 68.90625, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan" - ] - }, - { - "x": 177, - "y": 95, - "left": 68.90625, - "top": 42.032974, - "right": 70.3125, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 95, - "left": 70.3125, - "top": 42.032974, - "right": 71.71875, - "bottom": 40.979898, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 176, - "y": 96, - "left": 67.5, - "top": 40.979898, - "right": 68.90625, - "bottom": 39.909736, - "countries": [ - "kazakhstan", - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 179, - "y": 95, - "left": 71.71875, - "top": 42.032974, - "right": 73.125, - "bottom": 40.979898, - "countries": [ - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 96, - "left": 68.90625, - "top": 40.979898, - "right": 70.3125, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 96, - "left": 70.3125, - "top": 40.979898, - "right": 71.71875, - "bottom": 39.909736, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 179, - "y": 96, - "left": 71.71875, - "top": 40.979898, - "right": 73.125, - "bottom": 39.909736, - "countries": [ - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 177, - "y": 97, - "left": 68.90625, - "top": 39.909736, - "right": 70.3125, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 178, - "y": 97, - "left": 70.3125, - "top": 39.909736, - "right": 71.71875, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan", - "kyrgyzstan" - ] - }, - { - "x": 175, - "y": 97, - "left": 66.09375, - "top": 39.909736, - "right": 67.5, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 97, - "left": 67.5, - "top": 39.909736, - "right": 68.90625, - "bottom": 38.822591, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 176, - "y": 98, - "left": 67.5, - "top": 38.822591, - "right": 68.90625, - "bottom": 37.71859, - "countries": [ - "tajikistan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 94, - "left": 56.25, - "top": 43.068888, - "right": 57.65625, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 94, - "left": 57.65625, - "top": 43.068888, - "right": 59.0625, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 170, - "y": 94, - "left": 59.0625, - "top": 43.068888, - "right": 60.46875, - "bottom": 42.032974, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 168, - "y": 95, - "left": 56.25, - "top": 42.032974, - "right": 57.65625, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 170, - "y": 95, - "left": 59.0625, - "top": 42.032974, - "right": 60.46875, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 171, - "y": 95, - "left": 60.46875, - "top": 42.032974, - "right": 61.875, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 95, - "left": 61.875, - "top": 42.032974, - "right": 63.28125, - "bottom": 40.979898, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 96, - "left": 61.875, - "top": 40.979898, - "right": 63.28125, - "bottom": 39.909736, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 172, - "y": 97, - "left": 61.875, - "top": 39.909736, - "right": 63.28125, - "bottom": 38.822591, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 173, - "y": 97, - "left": 63.28125, - "top": 39.909736, - "right": 64.6875, - "bottom": 38.822591, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 173, - "y": 98, - "left": 63.28125, - "top": 38.822591, - "right": 64.6875, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 174, - "y": 98, - "left": 64.6875, - "top": 38.822591, - "right": 66.09375, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 175, - "y": 98, - "left": 66.09375, - "top": 38.822591, - "right": 67.5, - "bottom": 37.71859, - "countries": [ - "turkmenistan", - "uzbekistan" - ] - }, - { - "x": 169, - "y": 92, - "left": 57.65625, - "top": 45.089036, - "right": 59.0625, - "bottom": 44.087585, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 170, - "y": 92, - "left": 59.0625, - "top": 45.089036, - "right": 60.46875, - "bottom": 44.087585, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 168, - "y": 93, - "left": 56.25, - "top": 44.087585, - "right": 57.65625, - "bottom": 43.068888, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 169, - "y": 93, - "left": 57.65625, - "top": 44.087585, - "right": 59.0625, - "bottom": 43.068888, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 170, - "y": 93, - "left": 59.0625, - "top": 44.087585, - "right": 60.46875, - "bottom": 43.068888, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 171, - "y": 94, - "left": 60.46875, - "top": 43.068888, - "right": 61.875, - "bottom": 42.032974, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 172, - "y": 94, - "left": 61.875, - "top": 43.068888, - "right": 63.28125, - "bottom": 42.032974, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 173, - "y": 94, - "left": 63.28125, - "top": 43.068888, - "right": 64.6875, - "bottom": 42.032974, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 173, - "y": 95, - "left": 63.28125, - "top": 42.032974, - "right": 64.6875, - "bottom": 40.979898, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 173, - "y": 96, - "left": 63.28125, - "top": 40.979898, - "right": 64.6875, - "bottom": 39.909736, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 174, - "y": 96, - "left": 64.6875, - "top": 40.979898, - "right": 66.09375, - "bottom": 39.909736, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 175, - "y": 96, - "left": 66.09375, - "top": 40.979898, - "right": 67.5, - "bottom": 39.909736, - "countries": [ - "uzbekistan" - ] - }, - { - "x": 174, - "y": 97, - "left": 64.6875, - "top": 39.909736, - "right": 66.09375, - "bottom": 38.822591, - "countries": [ - "uzbekistan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/vietnam.json b/wahoomc/resources/json/asia/vietnam.json deleted file mode 100644 index 52d6e902..00000000 --- a/wahoomc/resources/json/asia/vietnam.json +++ /dev/null @@ -1,463 +0,0 @@ -[ - { - "x": 204, - "y": 117, - "left": 106.875, - "top": 15.284185, - "right": 108.28125, - "bottom": 13.923404, - "countries": [ - "cambodia", - "vietnam", - "laos" - ] - }, - { - "x": 204, - "y": 118, - "left": 106.875, - "top": 13.923404, - "right": 108.28125, - "bottom": 12.554564, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 203, - "y": 119, - "left": 105.46875, - "top": 12.554564, - "right": 106.875, - "bottom": 11.178402, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 204, - "y": 119, - "left": 106.875, - "top": 12.554564, - "right": 108.28125, - "bottom": 11.178402, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 201, - "y": 120, - "left": 102.65625, - "top": 11.178402, - "right": 104.0625, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 202, - "y": 120, - "left": 104.0625, - "top": 11.178402, - "right": 105.46875, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 203, - "y": 120, - "left": 105.46875, - "top": 11.178402, - "right": 106.875, - "bottom": 9.795678, - "countries": [ - "cambodia", - "vietnam" - ] - }, - { - "x": 202, - "y": 110, - "left": 104.0625, - "top": 24.527135, - "right": 105.46875, - "bottom": 23.241346, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 203, - "y": 110, - "left": 105.46875, - "top": 24.527135, - "right": 106.875, - "bottom": 23.241346, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 200, - "y": 111, - "left": 101.25, - "top": 23.241346, - "right": 102.65625, - "bottom": 21.943046, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 201, - "y": 111, - "left": 102.65625, - "top": 23.241346, - "right": 104.0625, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 202, - "y": 111, - "left": 104.0625, - "top": 23.241346, - "right": 105.46875, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 203, - "y": 111, - "left": 105.46875, - "top": 23.241346, - "right": 106.875, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 204, - "y": 111, - "left": 106.875, - "top": 23.241346, - "right": 108.28125, - "bottom": 21.943046, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 200, - "y": 112, - "left": 101.25, - "top": 21.943046, - "right": 102.65625, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos", - "china" - ] - }, - { - "x": 204, - "y": 112, - "left": 106.875, - "top": 21.943046, - "right": 108.28125, - "bottom": 20.632784, - "countries": [ - "vietnam", - "china" - ] - }, - { - "x": 201, - "y": 112, - "left": 102.65625, - "top": 21.943046, - "right": 104.0625, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 202, - "y": 112, - "left": 104.0625, - "top": 21.943046, - "right": 105.46875, - "bottom": 20.632784, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 201, - "y": 113, - "left": 102.65625, - "top": 20.632784, - "right": 104.0625, - "bottom": 19.311143, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 202, - "y": 113, - "left": 104.0625, - "top": 20.632784, - "right": 105.46875, - "bottom": 19.311143, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 201, - "y": 114, - "left": 102.65625, - "top": 19.311143, - "right": 104.0625, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 202, - "y": 114, - "left": 104.0625, - "top": 19.311143, - "right": 105.46875, - "bottom": 17.978733, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 203, - "y": 114, - "left": 105.46875, - "top": 19.311143, - "right": 106.875, - "bottom": 17.978733, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 203, - "y": 115, - "left": 105.46875, - "top": 17.978733, - "right": 106.875, - "bottom": 16.636192, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 203, - "y": 116, - "left": 105.46875, - "top": 16.636192, - "right": 106.875, - "bottom": 15.284185, - "countries": [ - "vietnam", - "thailand", - "laos" - ] - }, - { - "x": 204, - "y": 116, - "left": 106.875, - "top": 16.636192, - "right": 108.28125, - "bottom": 15.284185, - "countries": [ - "vietnam", - "laos" - ] - }, - { - "x": 203, - "y": 112, - "left": 105.46875, - "top": 21.943046, - "right": 106.875, - "bottom": 20.632784, - "countries": [ - "vietnam" - ] - }, - { - "x": 203, - "y": 113, - "left": 105.46875, - "top": 20.632784, - "right": 106.875, - "bottom": 19.311143, - "countries": [ - "vietnam" - ] - }, - { - "x": 204, - "y": 113, - "left": 106.875, - "top": 20.632784, - "right": 108.28125, - "bottom": 19.311143, - "countries": [ - "vietnam" - ] - }, - { - "x": 204, - "y": 115, - "left": 106.875, - "top": 17.978733, - "right": 108.28125, - "bottom": 16.636192, - "countries": [ - "vietnam" - ] - }, - { - "x": 205, - "y": 116, - "left": 108.28125, - "top": 16.636192, - "right": 109.6875, - "bottom": 15.284185, - "countries": [ - "vietnam" - ] - }, - { - "x": 205, - "y": 117, - "left": 108.28125, - "top": 15.284185, - "right": 109.6875, - "bottom": 13.923404, - "countries": [ - "vietnam" - ] - }, - { - "x": 205, - "y": 118, - "left": 108.28125, - "top": 13.923404, - "right": 109.6875, - "bottom": 12.554564, - "countries": [ - "vietnam" - ] - }, - { - "x": 205, - "y": 119, - "left": 108.28125, - "top": 12.554564, - "right": 109.6875, - "bottom": 11.178402, - "countries": [ - "vietnam" - ] - }, - { - "x": 204, - "y": 120, - "left": 106.875, - "top": 11.178402, - "right": 108.28125, - "bottom": 9.795678, - "countries": [ - "vietnam" - ] - }, - { - "x": 205, - "y": 120, - "left": 108.28125, - "top": 11.178402, - "right": 109.6875, - "bottom": 9.795678, - "countries": [ - "vietnam" - ] - }, - { - "x": 201, - "y": 121, - "left": 102.65625, - "top": 9.795678, - "right": 104.0625, - "bottom": 8.407168, - "countries": [ - "vietnam" - ] - }, - { - "x": 202, - "y": 121, - "left": 104.0625, - "top": 9.795678, - "right": 105.46875, - "bottom": 8.407168, - "countries": [ - "vietnam" - ] - }, - { - "x": 203, - "y": 121, - "left": 105.46875, - "top": 9.795678, - "right": 106.875, - "bottom": 8.407168, - "countries": [ - "vietnam" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/asia/yemen.json b/wahoomc/resources/json/asia/yemen.json deleted file mode 100644 index 21aef702..00000000 --- a/wahoomc/resources/json/asia/yemen.json +++ /dev/null @@ -1,432 +0,0 @@ -[ - { - "x": 158, - "y": 118, - "left": 42.1875, - "top": 13.923404, - "right": 43.59375, - "bottom": 12.554564, - "countries": [ - "yemen", - "ethiopia", - "djibouti", - "eritrea" - ] - }, - { - "x": 157, - "y": 116, - "left": 40.78125, - "top": 16.636192, - "right": 42.1875, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen", - "eritrea" - ] - }, - { - "x": 157, - "y": 117, - "left": 40.78125, - "top": 15.284185, - "right": 42.1875, - "bottom": 13.923404, - "countries": [ - "yemen", - "ethiopia", - "eritrea" - ] - }, - { - "x": 158, - "y": 115, - "left": 42.1875, - "top": 17.978733, - "right": 43.59375, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "israel", - "yemen" - ] - }, - { - "x": 164, - "y": 114, - "left": 50.625, - "top": 19.311143, - "right": 52.03125, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 165, - "y": 114, - "left": 52.03125, - "top": 19.311143, - "right": 53.4375, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "oman", - "yemen" - ] - }, - { - "x": 165, - "y": 115, - "left": 52.03125, - "top": 17.978733, - "right": 53.4375, - "bottom": 16.636192, - "countries": [ - "yemen", - "oman" - ] - }, - { - "x": 162, - "y": 114, - "left": 47.8125, - "top": 19.311143, - "right": 49.21875, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 163, - "y": 114, - "left": 49.21875, - "top": 19.311143, - "right": 50.625, - "bottom": 17.978733, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 159, - "y": 115, - "left": 43.59375, - "top": 17.978733, - "right": 45.0, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 160, - "y": 115, - "left": 45.0, - "top": 17.978733, - "right": 46.40625, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 161, - "y": 115, - "left": 46.40625, - "top": 17.978733, - "right": 47.8125, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 162, - "y": 115, - "left": 47.8125, - "top": 17.978733, - "right": 49.21875, - "bottom": 16.636192, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 158, - "y": 116, - "left": 42.1875, - "top": 16.636192, - "right": 43.59375, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 160, - "y": 116, - "left": 45.0, - "top": 16.636192, - "right": 46.40625, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 161, - "y": 116, - "left": 46.40625, - "top": 16.636192, - "right": 47.8125, - "bottom": 15.284185, - "countries": [ - "saudi_arabia", - "yemen" - ] - }, - { - "x": 163, - "y": 115, - "left": 49.21875, - "top": 17.978733, - "right": 50.625, - "bottom": 16.636192, - "countries": [ - "yemen" - ] - }, - { - "x": 164, - "y": 115, - "left": 50.625, - "top": 17.978733, - "right": 52.03125, - "bottom": 16.636192, - "countries": [ - "yemen" - ] - }, - { - "x": 159, - "y": 116, - "left": 43.59375, - "top": 16.636192, - "right": 45.0, - "bottom": 15.284185, - "countries": [ - "yemen" - ] - }, - { - "x": 162, - "y": 116, - "left": 47.8125, - "top": 16.636192, - "right": 49.21875, - "bottom": 15.284185, - "countries": [ - "yemen" - ] - }, - { - "x": 163, - "y": 116, - "left": 49.21875, - "top": 16.636192, - "right": 50.625, - "bottom": 15.284185, - "countries": [ - "yemen" - ] - }, - { - "x": 164, - "y": 116, - "left": 50.625, - "top": 16.636192, - "right": 52.03125, - "bottom": 15.284185, - "countries": [ - "yemen" - ] - }, - { - "x": 165, - "y": 116, - "left": 52.03125, - "top": 16.636192, - "right": 53.4375, - "bottom": 15.284185, - "countries": [ - "yemen" - ] - }, - { - "x": 158, - "y": 117, - "left": 42.1875, - "top": 15.284185, - "right": 43.59375, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 159, - "y": 117, - "left": 43.59375, - "top": 15.284185, - "right": 45.0, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 160, - "y": 117, - "left": 45.0, - "top": 15.284185, - "right": 46.40625, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 161, - "y": 117, - "left": 46.40625, - "top": 15.284185, - "right": 47.8125, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 162, - "y": 117, - "left": 47.8125, - "top": 15.284185, - "right": 49.21875, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 163, - "y": 117, - "left": 49.21875, - "top": 15.284185, - "right": 50.625, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 164, - "y": 117, - "left": 50.625, - "top": 15.284185, - "right": 52.03125, - "bottom": 13.923404, - "countries": [ - "yemen" - ] - }, - { - "x": 159, - "y": 118, - "left": 43.59375, - "top": 13.923404, - "right": 45.0, - "bottom": 12.554564, - "countries": [ - "yemen" - ] - }, - { - "x": 160, - "y": 118, - "left": 45.0, - "top": 13.923404, - "right": 46.40625, - "bottom": 12.554564, - "countries": [ - "yemen" - ] - }, - { - "x": 161, - "y": 118, - "left": 46.40625, - "top": 13.923404, - "right": 47.8125, - "bottom": 12.554564, - "countries": [ - "yemen" - ] - }, - { - "x": 165, - "y": 118, - "left": 52.03125, - "top": 13.923404, - "right": 53.4375, - "bottom": 12.554564, - "countries": [ - "yemen" - ] - }, - { - "x": 166, - "y": 118, - "left": 53.4375, - "top": 13.923404, - "right": 54.84375, - "bottom": 12.554564, - "countries": [ - "yemen" - ] - }, - { - "x": 165, - "y": 119, - "left": 52.03125, - "top": 12.554564, - "right": 53.4375, - "bottom": 11.178402, - "countries": [ - "yemen" - ] - }, - { - "x": 166, - "y": 119, - "left": 53.4375, - "top": 12.554564, - "right": 54.84375, - "bottom": 11.178402, - "countries": [ - "yemen" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/albania.json b/wahoomc/resources/json/europe/albania.json deleted file mode 100644 index 7c85c311..00000000 --- a/wahoomc/resources/json/europe/albania.json +++ /dev/null @@ -1,92 +0,0 @@ -[ - { - "x": 141, - "y": 94, - "left": 18.28125, - "top": 43.068888, - "right": 19.6875, - "bottom": 42.032974, - "countries": [ - "montenegro", - "bosnia_and_herzegovina", - "albania", - "croatia" - ] - }, - { - "x": 142, - "y": 94, - "left": 19.6875, - "top": 43.068888, - "right": 21.09375, - "bottom": 42.032974, - "countries": [ - "montenegro", - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 141, - "y": 95, - "left": 18.28125, - "top": 42.032974, - "right": 19.6875, - "bottom": 40.979898, - "countries": [ - "montenegro", - "albania" - ] - }, - { - "x": 142, - "y": 95, - "left": 19.6875, - "top": 42.032974, - "right": 21.09375, - "bottom": 40.979898, - "countries": [ - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 141, - "y": 96, - "left": 18.28125, - "top": 40.979898, - "right": 19.6875, - "bottom": 39.909736, - "countries": [ - "albania", - "italy" - ] - }, - { - "x": 142, - "y": 96, - "left": 19.6875, - "top": 40.979898, - "right": 21.09375, - "bottom": 39.909736, - "countries": [ - "macedonia", - "albania", - "greece" - ] - }, - { - "x": 142, - "y": 97, - "left": 19.6875, - "top": 39.909736, - "right": 21.09375, - "bottom": 38.822591, - "countries": [ - "albania", - "greece" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/andorra.json b/wahoomc/resources/json/europe/andorra.json deleted file mode 100644 index c7888f98..00000000 --- a/wahoomc/resources/json/europe/andorra.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 129, - "y": 94, - "left": 1.40625, - "top": 43.068888, - "right": 2.8125, - "bottom": 42.032974, - "countries": [ - "andorra", - "spain", - "france" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/austria.json b/wahoomc/resources/json/europe/austria.json deleted file mode 100644 index e8508fd0..00000000 --- a/wahoomc/resources/json/europe/austria.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "x": 138, - "y": 87, - "left": 14.0625, - "top": 49.837982, - "right": 15.46875, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 139, - "y": 87, - "left": 15.46875, - "top": 49.837982, - "right": 16.875, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 137, - "y": 88, - "left": 12.65625, - "top": 48.922499, - "right": 14.0625, - "bottom": 47.989922, - "countries": [ - "czech_republic", - "germany", - "austria" - ] - }, - { - "x": 138, - "y": 88, - "left": 14.0625, - "top": 48.922499, - "right": 15.46875, - "bottom": 47.989922, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 139, - "y": 88, - "left": 15.46875, - "top": 48.922499, - "right": 16.875, - "bottom": 47.989922, - "countries": [ - "slovakia", - "czech_republic", - "austria" - ] - }, - { - "x": 140, - "y": 88, - "left": 16.875, - "top": 48.922499, - "right": 18.28125, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary", - "czech_republic", - "austria" - ] - }, - { - "x": 134, - "y": 89, - "left": 8.4375, - "top": 47.989922, - "right": 9.84375, - "bottom": 47.040182, - "countries": [ - "liechtenstein", - "germany", - "austria", - "switzerland" - ] - }, - { - "x": 135, - "y": 89, - "left": 9.84375, - "top": 47.989922, - "right": 11.25, - "bottom": 47.040182, - "countries": [ - "germany", - "austria" - ] - }, - { - "x": 136, - "y": 89, - "left": 11.25, - "top": 47.989922, - "right": 12.65625, - "bottom": 47.040182, - "countries": [ - "italy", - "germany", - "austria" - ] - }, - { - "x": 137, - "y": 89, - "left": 12.65625, - "top": 47.989922, - "right": 14.0625, - "bottom": 47.040182, - "countries": [ - "germany", - "austria" - ] - }, - { - "x": 138, - "y": 89, - "left": 14.0625, - "top": 47.989922, - "right": 15.46875, - "bottom": 47.040182, - "countries": [ - "austria" - ] - }, - { - "x": 139, - "y": 89, - "left": 15.46875, - "top": 47.989922, - "right": 16.875, - "bottom": 47.040182, - "countries": [ - "hungary", - "austria" - ] - }, - { - "x": 140, - "y": 89, - "left": 16.875, - "top": 47.989922, - "right": 18.28125, - "bottom": 47.040182, - "countries": [ - "slovakia", - "hungary", - "austria" - ] - }, - { - "x": 134, - "y": 90, - "left": 8.4375, - "top": 47.040182, - "right": 9.84375, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 135, - "y": 90, - "left": 9.84375, - "top": 47.040182, - "right": 11.25, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 136, - "y": 90, - "left": 11.25, - "top": 47.040182, - "right": 12.65625, - "bottom": 46.073231, - "countries": [ - "italy", - "austria" - ] - }, - { - "x": 137, - "y": 90, - "left": 12.65625, - "top": 47.040182, - "right": 14.0625, - "bottom": 46.073231, - "countries": [ - "italy", - "slovenia", - "austria" - ] - }, - { - "x": 138, - "y": 90, - "left": 14.0625, - "top": 47.040182, - "right": 15.46875, - "bottom": 46.073231, - "countries": [ - "slovenia", - "austria" - ] - }, - { - "x": 139, - "y": 90, - "left": 15.46875, - "top": 47.040182, - "right": 16.875, - "bottom": 46.073231, - "countries": [ - "hungary", - "croatia", - "slovenia", - "austria" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/belarus.json b/wahoomc/resources/json/europe/belarus.json deleted file mode 100644 index 4a2ca71d..00000000 --- a/wahoomc/resources/json/europe/belarus.json +++ /dev/null @@ -1,506 +0,0 @@ -[ - { - "x": 147, - "y": 79, - "left": 26.71875, - "top": 56.559482, - "right": 28.125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 148, - "y": 79, - "left": 28.125, - "top": 56.559482, - "right": 29.53125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 149, - "y": 79, - "left": 29.53125, - "top": 56.559482, - "right": 30.9375, - "bottom": 55.776573, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 146, - "y": 80, - "left": 25.3125, - "top": 55.776573, - "right": 26.71875, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 147, - "y": 80, - "left": 26.71875, - "top": 55.776573, - "right": 28.125, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 148, - "y": 80, - "left": 28.125, - "top": 55.776573, - "right": 29.53125, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 149, - "y": 80, - "left": 29.53125, - "top": 55.776573, - "right": 30.9375, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 80, - "left": 30.9375, - "top": 55.776573, - "right": 32.34375, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 145, - "y": 81, - "left": 23.90625, - "top": 54.977614, - "right": 25.3125, - "bottom": 54.162434, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 146, - "y": 81, - "left": 25.3125, - "top": 54.977614, - "right": 26.71875, - "bottom": 54.162434, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 147, - "y": 81, - "left": 26.71875, - "top": 54.977614, - "right": 28.125, - "bottom": 54.162434, - "countries": [ - "belarus" - ] - }, - { - "x": 148, - "y": 81, - "left": 28.125, - "top": 54.977614, - "right": 29.53125, - "bottom": 54.162434, - "countries": [ - "belarus" - ] - }, - { - "x": 149, - "y": 81, - "left": 29.53125, - "top": 54.977614, - "right": 30.9375, - "bottom": 54.162434, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 81, - "left": 30.9375, - "top": 54.977614, - "right": 32.34375, - "bottom": 54.162434, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 144, - "y": 82, - "left": 22.5, - "top": 54.162434, - "right": 23.90625, - "bottom": 53.330873, - "countries": [ - "belarus", - "poland", - "lithuania" - ] - }, - { - "x": 145, - "y": 82, - "left": 23.90625, - "top": 54.162434, - "right": 25.3125, - "bottom": 53.330873, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 146, - "y": 82, - "left": 25.3125, - "top": 54.162434, - "right": 26.71875, - "bottom": 53.330873, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 147, - "y": 82, - "left": 26.71875, - "top": 54.162434, - "right": 28.125, - "bottom": 53.330873, - "countries": [ - "belarus" - ] - }, - { - "x": 148, - "y": 82, - "left": 28.125, - "top": 54.162434, - "right": 29.53125, - "bottom": 53.330873, - "countries": [ - "belarus" - ] - }, - { - "x": 149, - "y": 82, - "left": 29.53125, - "top": 54.162434, - "right": 30.9375, - "bottom": 53.330873, - "countries": [ - "belarus" - ] - }, - { - "x": 150, - "y": 82, - "left": 30.9375, - "top": 54.162434, - "right": 32.34375, - "bottom": 53.330873, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 151, - "y": 82, - "left": 32.34375, - "top": 54.162434, - "right": 33.75, - "bottom": 53.330873, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 144, - "y": 83, - "left": 22.5, - "top": 53.330873, - "right": 23.90625, - "bottom": 52.48278, - "countries": [ - "belarus", - "poland" - ] - }, - { - "x": 145, - "y": 83, - "left": 23.90625, - "top": 53.330873, - "right": 25.3125, - "bottom": 52.48278, - "countries": [ - "belarus", - "poland" - ] - }, - { - "x": 146, - "y": 83, - "left": 25.3125, - "top": 53.330873, - "right": 26.71875, - "bottom": 52.48278, - "countries": [ - "belarus" - ] - }, - { - "x": 147, - "y": 83, - "left": 26.71875, - "top": 53.330873, - "right": 28.125, - "bottom": 52.48278, - "countries": [ - "belarus" - ] - }, - { - "x": 148, - "y": 83, - "left": 28.125, - "top": 53.330873, - "right": 29.53125, - "bottom": 52.48278, - "countries": [ - "belarus" - ] - }, - { - "x": 149, - "y": 83, - "left": 29.53125, - "top": 53.330873, - "right": 30.9375, - "bottom": 52.48278, - "countries": [ - "belarus" - ] - }, - { - "x": 150, - "y": 83, - "left": 30.9375, - "top": 53.330873, - "right": 32.34375, - "bottom": 52.48278, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 151, - "y": 83, - "left": 32.34375, - "top": 53.330873, - "right": 33.75, - "bottom": 52.48278, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 144, - "y": 84, - "left": 22.5, - "top": 52.48278, - "right": 23.90625, - "bottom": 51.618017, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 84, - "left": 23.90625, - "top": 52.48278, - "right": 25.3125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 146, - "y": 84, - "left": 25.3125, - "top": 52.48278, - "right": 26.71875, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 147, - "y": 84, - "left": 26.71875, - "top": 52.48278, - "right": 28.125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 148, - "y": 84, - "left": 28.125, - "top": 52.48278, - "right": 29.53125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 149, - "y": 84, - "left": 29.53125, - "top": 52.48278, - "right": 30.9375, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 150, - "y": 84, - "left": 30.9375, - "top": 52.48278, - "right": 32.34375, - "bottom": 51.618017, - "countries": [ - "belarus", - "russia", - "ukraine" - ] - }, - { - "x": 144, - "y": 85, - "left": 22.5, - "top": 51.618017, - "right": 23.90625, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 85, - "left": 23.90625, - "top": 51.618017, - "right": 25.3125, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 147, - "y": 85, - "left": 26.71875, - "top": 51.618017, - "right": 28.125, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 148, - "y": 85, - "left": 28.125, - "top": 51.618017, - "right": 29.53125, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 149, - "y": 85, - "left": 29.53125, - "top": 51.618017, - "right": 30.9375, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/belgium.json b/wahoomc/resources/json/europe/belgium.json deleted file mode 100644 index bd3db06b..00000000 --- a/wahoomc/resources/json/europe/belgium.json +++ /dev/null @@ -1,128 +0,0 @@ -[ - { - "x": 129, - "y": 85, - "left": 1.40625, - "top": 51.618017, - "right": 2.8125, - "bottom": 50.736455, - "countries": [ - "united_kingdom", - "france", - "belgium" - ] - }, - { - "x": 130, - "y": 85, - "left": 2.8125, - "top": 51.618017, - "right": 4.21875, - "bottom": 50.736455, - "countries": [ - "france", - "belgium", - "netherlands" - ] - }, - { - "x": 131, - "y": 85, - "left": 4.21875, - "top": 51.618017, - "right": 5.625, - "bottom": 50.736455, - "countries": [ - "netherlands", - "belgium" - ] - }, - { - "x": 132, - "y": 85, - "left": 5.625, - "top": 51.618017, - "right": 7.03125, - "bottom": 50.736455, - "countries": [ - "netherlands", - "belgium", - "germany" - ] - }, - { - "x": 129, - "y": 86, - "left": 1.40625, - "top": 50.736455, - "right": 2.8125, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 130, - "y": 86, - "left": 2.8125, - "top": 50.736455, - "right": 4.21875, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 131, - "y": 86, - "left": 4.21875, - "top": 50.736455, - "right": 5.625, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 132, - "y": 86, - "left": 5.625, - "top": 50.736455, - "right": 7.03125, - "bottom": 49.837982, - "countries": [ - "luxembourg", - "belgium", - "germany" - ] - }, - { - "x": 131, - "y": 87, - "left": 4.21875, - "top": 49.837982, - "right": 5.625, - "bottom": 48.922499, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 132, - "y": 87, - "left": 5.625, - "top": 49.837982, - "right": 7.03125, - "bottom": 48.922499, - "countries": [ - "luxembourg", - "france", - "belgium", - "germany" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/bosnia_and_herzegovina.json b/wahoomc/resources/json/europe/bosnia_and_herzegovina.json deleted file mode 100644 index 3b2e33c7..00000000 --- a/wahoomc/resources/json/europe/bosnia_and_herzegovina.json +++ /dev/null @@ -1,142 +0,0 @@ -[ - { - "x": 141, - "y": 94, - "left": 18.28125, - "top": 43.068888, - "right": 19.6875, - "bottom": 42.032974, - "countries": [ - "montenegro", - "bosnia_and_herzegovina", - "albania", - "croatia" - ] - }, - { - "x": 139, - "y": 91, - "left": 15.46875, - "top": 46.073231, - "right": 16.875, - "bottom": 45.089036, - "countries": [ - "slovenia", - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 91, - "left": 16.875, - "top": 46.073231, - "right": 18.28125, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "hungary", - "croatia" - ] - }, - { - "x": 141, - "y": 91, - "left": 18.28125, - "top": 46.073231, - "right": 19.6875, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "hungary", - "croatia" - ] - }, - { - "x": 139, - "y": 92, - "left": 15.46875, - "top": 45.089036, - "right": 16.875, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 92, - "left": 16.875, - "top": 45.089036, - "right": 18.28125, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 141, - "y": 92, - "left": 18.28125, - "top": 45.089036, - "right": 19.6875, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "croatia" - ] - }, - { - "x": 139, - "y": 93, - "left": 15.46875, - "top": 44.087585, - "right": 16.875, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 93, - "left": 16.875, - "top": 44.087585, - "right": 18.28125, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 141, - "y": 93, - "left": 18.28125, - "top": 44.087585, - "right": 19.6875, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "montenegro", - "serbia" - ] - }, - { - "x": 140, - "y": 94, - "left": 16.875, - "top": 43.068888, - "right": 18.28125, - "bottom": 42.032974, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/bulgaria.json b/wahoomc/resources/json/europe/bulgaria.json deleted file mode 100644 index 38c72e6e..00000000 --- a/wahoomc/resources/json/europe/bulgaria.json +++ /dev/null @@ -1,210 +0,0 @@ -[ - { - "x": 147, - "y": 94, - "left": 26.71875, - "top": 43.068888, - "right": 28.125, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "turkey" - ] - }, - { - "x": 146, - "y": 95, - "left": 25.3125, - "top": 42.032974, - "right": 26.71875, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 95, - "left": 26.71875, - "top": 42.032974, - "right": 28.125, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "turkey" - ] - }, - { - "x": 144, - "y": 92, - "left": 22.5, - "top": 45.089036, - "right": 23.90625, - "bottom": 44.087585, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 147, - "y": 92, - "left": 26.71875, - "top": 45.089036, - "right": 28.125, - "bottom": 44.087585, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 143, - "y": 93, - "left": 21.09375, - "top": 44.087585, - "right": 22.5, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "serbia" - ] - }, - { - "x": 144, - "y": 93, - "left": 22.5, - "top": 44.087585, - "right": 23.90625, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 145, - "y": 93, - "left": 23.90625, - "top": 44.087585, - "right": 25.3125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 146, - "y": 93, - "left": 25.3125, - "top": 44.087585, - "right": 26.71875, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 147, - "y": 93, - "left": 26.71875, - "top": 44.087585, - "right": 28.125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 148, - "y": 93, - "left": 28.125, - "top": 44.087585, - "right": 29.53125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 143, - "y": 94, - "left": 21.09375, - "top": 43.068888, - "right": 22.5, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 144, - "y": 94, - "left": 22.5, - "top": 43.068888, - "right": 23.90625, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 145, - "y": 94, - "left": 23.90625, - "top": 43.068888, - "right": 25.3125, - "bottom": 42.032974, - "countries": [ - "bulgaria" - ] - }, - { - "x": 146, - "y": 94, - "left": 25.3125, - "top": 43.068888, - "right": 26.71875, - "bottom": 42.032974, - "countries": [ - "bulgaria" - ] - }, - { - "x": 144, - "y": 95, - "left": 22.5, - "top": 42.032974, - "right": 23.90625, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "macedonia", - "greece" - ] - }, - { - "x": 145, - "y": 95, - "left": 23.90625, - "top": 42.032974, - "right": 25.3125, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "greece" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/croatia.json b/wahoomc/resources/json/europe/croatia.json deleted file mode 100644 index 8bbba2cf..00000000 --- a/wahoomc/resources/json/europe/croatia.json +++ /dev/null @@ -1,225 +0,0 @@ -[ - { - "x": 141, - "y": 94, - "left": 18.28125, - "top": 43.068888, - "right": 19.6875, - "bottom": 42.032974, - "countries": [ - "montenegro", - "bosnia_and_herzegovina", - "albania", - "croatia" - ] - }, - { - "x": 139, - "y": 90, - "left": 15.46875, - "top": 47.040182, - "right": 16.875, - "bottom": 46.073231, - "countries": [ - "hungary", - "croatia", - "slovenia", - "austria" - ] - }, - { - "x": 139, - "y": 91, - "left": 15.46875, - "top": 46.073231, - "right": 16.875, - "bottom": 45.089036, - "countries": [ - "slovenia", - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 91, - "left": 16.875, - "top": 46.073231, - "right": 18.28125, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "hungary", - "croatia" - ] - }, - { - "x": 141, - "y": 91, - "left": 18.28125, - "top": 46.073231, - "right": 19.6875, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "hungary", - "croatia" - ] - }, - { - "x": 139, - "y": 92, - "left": 15.46875, - "top": 45.089036, - "right": 16.875, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 92, - "left": 16.875, - "top": 45.089036, - "right": 18.28125, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 141, - "y": 92, - "left": 18.28125, - "top": 45.089036, - "right": 19.6875, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "croatia" - ] - }, - { - "x": 139, - "y": 93, - "left": 15.46875, - "top": 44.087585, - "right": 16.875, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 93, - "left": 16.875, - "top": 44.087585, - "right": 18.28125, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 94, - "left": 16.875, - "top": 43.068888, - "right": 18.28125, - "bottom": 42.032974, - "countries": [ - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 140, - "y": 90, - "left": 16.875, - "top": 47.040182, - "right": 18.28125, - "bottom": 46.073231, - "countries": [ - "croatia", - "hungary" - ] - }, - { - "x": 137, - "y": 91, - "left": 12.65625, - "top": 46.073231, - "right": 14.0625, - "bottom": 45.089036, - "countries": [ - "slovenia", - "croatia", - "italy" - ] - }, - { - "x": 138, - "y": 91, - "left": 14.0625, - "top": 46.073231, - "right": 15.46875, - "bottom": 45.089036, - "countries": [ - "slovenia", - "croatia" - ] - }, - { - "x": 137, - "y": 92, - "left": 12.65625, - "top": 45.089036, - "right": 14.0625, - "bottom": 44.087585, - "countries": [ - "croatia" - ] - }, - { - "x": 138, - "y": 92, - "left": 14.0625, - "top": 45.089036, - "right": 15.46875, - "bottom": 44.087585, - "countries": [ - "croatia" - ] - }, - { - "x": 138, - "y": 93, - "left": 14.0625, - "top": 44.087585, - "right": 15.46875, - "bottom": 43.068888, - "countries": [ - "croatia" - ] - }, - { - "x": 139, - "y": 94, - "left": 15.46875, - "top": 43.068888, - "right": 16.875, - "bottom": 42.032974, - "countries": [ - "croatia", - "italy" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/czech_republic.json b/wahoomc/resources/json/europe/czech_republic.json deleted file mode 100644 index 82435f68..00000000 --- a/wahoomc/resources/json/europe/czech_republic.json +++ /dev/null @@ -1,235 +0,0 @@ -[ - { - "x": 138, - "y": 87, - "left": 14.0625, - "top": 49.837982, - "right": 15.46875, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 139, - "y": 87, - "left": 15.46875, - "top": 49.837982, - "right": 16.875, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 137, - "y": 88, - "left": 12.65625, - "top": 48.922499, - "right": 14.0625, - "bottom": 47.989922, - "countries": [ - "czech_republic", - "germany", - "austria" - ] - }, - { - "x": 138, - "y": 88, - "left": 14.0625, - "top": 48.922499, - "right": 15.46875, - "bottom": 47.989922, - "countries": [ - "czech_republic", - "austria" - ] - }, - { - "x": 139, - "y": 88, - "left": 15.46875, - "top": 48.922499, - "right": 16.875, - "bottom": 47.989922, - "countries": [ - "slovakia", - "czech_republic", - "austria" - ] - }, - { - "x": 140, - "y": 88, - "left": 16.875, - "top": 48.922499, - "right": 18.28125, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary", - "czech_republic", - "austria" - ] - }, - { - "x": 137, - "y": 85, - "left": 12.65625, - "top": 51.618017, - "right": 14.0625, - "bottom": 50.736455, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 138, - "y": 85, - "left": 14.0625, - "top": 51.618017, - "right": 15.46875, - "bottom": 50.736455, - "countries": [ - "poland", - "czech_republic", - "germany" - ] - }, - { - "x": 139, - "y": 85, - "left": 15.46875, - "top": 51.618017, - "right": 16.875, - "bottom": 50.736455, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 136, - "y": 86, - "left": 11.25, - "top": 50.736455, - "right": 12.65625, - "bottom": 49.837982, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 137, - "y": 86, - "left": 12.65625, - "top": 50.736455, - "right": 14.0625, - "bottom": 49.837982, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 138, - "y": 86, - "left": 14.0625, - "top": 50.736455, - "right": 15.46875, - "bottom": 49.837982, - "countries": [ - "czech_republic" - ] - }, - { - "x": 139, - "y": 86, - "left": 15.46875, - "top": 50.736455, - "right": 16.875, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 140, - "y": 86, - "left": 16.875, - "top": 50.736455, - "right": 18.28125, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 141, - "y": 86, - "left": 18.28125, - "top": 50.736455, - "right": 19.6875, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 136, - "y": 87, - "left": 11.25, - "top": 49.837982, - "right": 12.65625, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 137, - "y": 87, - "left": 12.65625, - "top": 49.837982, - "right": 14.0625, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 140, - "y": 87, - "left": 16.875, - "top": 49.837982, - "right": 18.28125, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "slovakia" - ] - }, - { - "x": 141, - "y": 87, - "left": 18.28125, - "top": 49.837982, - "right": 19.6875, - "bottom": 48.922499, - "countries": [ - "poland", - "czech_republic", - "slovakia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/denmark.json b/wahoomc/resources/json/europe/denmark.json deleted file mode 100644 index 44f508b3..00000000 --- a/wahoomc/resources/json/europe/denmark.json +++ /dev/null @@ -1,220 +0,0 @@ -[ - { - "x": 134, - "y": 77, - "left": 8.4375, - "top": 58.077876, - "right": 9.84375, - "bottom": 57.326521, - "countries": [ - "denmark" - ] - }, - { - "x": 135, - "y": 77, - "left": 9.84375, - "top": 58.077876, - "right": 11.25, - "bottom": 57.326521, - "countries": [ - "denmark" - ] - }, - { - "x": 133, - "y": 78, - "left": 7.03125, - "top": 57.326521, - "right": 8.4375, - "bottom": 56.559482, - "countries": [ - "denmark" - ] - }, - { - "x": 134, - "y": 78, - "left": 8.4375, - "top": 57.326521, - "right": 9.84375, - "bottom": 56.559482, - "countries": [ - "denmark" - ] - }, - { - "x": 135, - "y": 78, - "left": 9.84375, - "top": 57.326521, - "right": 11.25, - "bottom": 56.559482, - "countries": [ - "denmark" - ] - }, - { - "x": 136, - "y": 78, - "left": 11.25, - "top": 57.326521, - "right": 12.65625, - "bottom": 56.559482, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 133, - "y": 79, - "left": 7.03125, - "top": 56.559482, - "right": 8.4375, - "bottom": 55.776573, - "countries": [ - "denmark" - ] - }, - { - "x": 134, - "y": 79, - "left": 8.4375, - "top": 56.559482, - "right": 9.84375, - "bottom": 55.776573, - "countries": [ - "denmark" - ] - }, - { - "x": 135, - "y": 79, - "left": 9.84375, - "top": 56.559482, - "right": 11.25, - "bottom": 55.776573, - "countries": [ - "denmark" - ] - }, - { - "x": 136, - "y": 79, - "left": 11.25, - "top": 56.559482, - "right": 12.65625, - "bottom": 55.776573, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 133, - "y": 80, - "left": 7.03125, - "top": 55.776573, - "right": 8.4375, - "bottom": 54.977614, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 134, - "y": 80, - "left": 8.4375, - "top": 55.776573, - "right": 9.84375, - "bottom": 54.977614, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 135, - "y": 80, - "left": 9.84375, - "top": 55.776573, - "right": 11.25, - "bottom": 54.977614, - "countries": [ - "denmark" - ] - }, - { - "x": 136, - "y": 80, - "left": 11.25, - "top": 55.776573, - "right": 12.65625, - "bottom": 54.977614, - "countries": [ - "denmark" - ] - }, - { - "x": 137, - "y": 80, - "left": 12.65625, - "top": 55.776573, - "right": 14.0625, - "bottom": 54.977614, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 138, - "y": 80, - "left": 14.0625, - "top": 55.776573, - "right": 15.46875, - "bottom": 54.977614, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 134, - "y": 81, - "left": 8.4375, - "top": 54.977614, - "right": 9.84375, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 135, - "y": 81, - "left": 9.84375, - "top": 54.977614, - "right": 11.25, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 136, - "y": 81, - "left": 11.25, - "top": 54.977614, - "right": 12.65625, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/estonia.json b/wahoomc/resources/json/europe/estonia.json deleted file mode 100644 index 3a572136..00000000 --- a/wahoomc/resources/json/europe/estonia.json +++ /dev/null @@ -1,212 +0,0 @@ -[ - { - "x": 145, - "y": 74, - "left": 23.90625, - "top": 60.239811, - "right": 25.3125, - "bottom": 59.534318, - "countries": [ - "estonia", - "finland" - ] - }, - { - "x": 146, - "y": 74, - "left": 25.3125, - "top": 60.239811, - "right": 26.71875, - "bottom": 59.534318, - "countries": [ - "estonia", - "finland" - ] - }, - { - "x": 143, - "y": 75, - "left": 21.09375, - "top": 59.534318, - "right": 22.5, - "bottom": 58.813742, - "countries": [ - "estonia" - ] - }, - { - "x": 144, - "y": 75, - "left": 22.5, - "top": 59.534318, - "right": 23.90625, - "bottom": 58.813742, - "countries": [ - "estonia" - ] - }, - { - "x": 145, - "y": 75, - "left": 23.90625, - "top": 59.534318, - "right": 25.3125, - "bottom": 58.813742, - "countries": [ - "estonia" - ] - }, - { - "x": 146, - "y": 75, - "left": 25.3125, - "top": 59.534318, - "right": 26.71875, - "bottom": 58.813742, - "countries": [ - "estonia" - ] - }, - { - "x": 147, - "y": 75, - "left": 26.71875, - "top": 59.534318, - "right": 28.125, - "bottom": 58.813742, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 148, - "y": 75, - "left": 28.125, - "top": 59.534318, - "right": 29.53125, - "bottom": 58.813742, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 143, - "y": 76, - "left": 21.09375, - "top": 58.813742, - "right": 22.5, - "bottom": 58.077876, - "countries": [ - "estonia" - ] - }, - { - "x": 144, - "y": 76, - "left": 22.5, - "top": 58.813742, - "right": 23.90625, - "bottom": 58.077876, - "countries": [ - "estonia" - ] - }, - { - "x": 145, - "y": 76, - "left": 23.90625, - "top": 58.813742, - "right": 25.3125, - "bottom": 58.077876, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 146, - "y": 76, - "left": 25.3125, - "top": 58.813742, - "right": 26.71875, - "bottom": 58.077876, - "countries": [ - "estonia" - ] - }, - { - "x": 147, - "y": 76, - "left": 26.71875, - "top": 58.813742, - "right": 28.125, - "bottom": 58.077876, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 143, - "y": 77, - "left": 21.09375, - "top": 58.077876, - "right": 22.5, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 144, - "y": 77, - "left": 22.5, - "top": 58.077876, - "right": 23.90625, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 145, - "y": 77, - "left": 23.90625, - "top": 58.077876, - "right": 25.3125, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 146, - "y": 77, - "left": 25.3125, - "top": 58.077876, - "right": 26.71875, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 147, - "y": 77, - "left": 26.71875, - "top": 58.077876, - "right": 28.125, - "bottom": 57.326521, - "countries": [ - "russia", - "estonia", - "latvia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/faroe_islands.json b/wahoomc/resources/json/europe/faroe_islands.json deleted file mode 100644 index 89031d6a..00000000 --- a/wahoomc/resources/json/europe/faroe_islands.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "x": 122, - "y": 70, - "left": -8.4375, - "top": 62.915233, - "right": -7.03125, - "bottom": 62.267923, - "countries": [ - "faroe_islands" - ] - }, - { - "x": 123, - "y": 70, - "left": -7.03125, - "top": 62.915233, - "right": -5.625, - "bottom": 62.267923, - "countries": [ - "faroe_islands" - ] - }, - { - "x": 122, - "y": 71, - "left": -8.4375, - "top": 62.267923, - "right": -7.03125, - "bottom": 61.606396, - "countries": [ - "faroe_islands" - ] - }, - { - "x": 123, - "y": 71, - "left": -7.03125, - "top": 62.267923, - "right": -5.625, - "bottom": 61.606396, - "countries": [ - "faroe_islands" - ] - }, - { - "x": 123, - "y": 72, - "left": -7.03125, - "top": 61.606396, - "right": -5.625, - "bottom": 60.930432, - "countries": [ - "faroe_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/finland.json b/wahoomc/resources/json/europe/finland.json deleted file mode 100644 index bb2ad2fd..00000000 --- a/wahoomc/resources/json/europe/finland.json +++ /dev/null @@ -1,1267 +0,0 @@ -[ - { - "x": 145, - "y": 74, - "left": 23.90625, - "top": 60.239811, - "right": 25.3125, - "bottom": 59.534318, - "countries": [ - "estonia", - "finland" - ] - }, - { - "x": 146, - "y": 74, - "left": 25.3125, - "top": 60.239811, - "right": 26.71875, - "bottom": 59.534318, - "countries": [ - "estonia", - "finland" - ] - }, - { - "x": 146, - "y": 57, - "left": 25.3125, - "top": 70.140364, - "right": 26.71875, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 147, - "y": 57, - "left": 26.71875, - "top": 70.140364, - "right": 28.125, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 57, - "left": 28.125, - "top": 70.140364, - "right": 29.53125, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 142, - "y": 58, - "left": 19.6875, - "top": 69.657086, - "right": 21.09375, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 143, - "y": 58, - "left": 21.09375, - "top": 69.657086, - "right": 22.5, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 146, - "y": 58, - "left": 25.3125, - "top": 69.657086, - "right": 26.71875, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 147, - "y": 58, - "left": 26.71875, - "top": 69.657086, - "right": 28.125, - "bottom": 69.162558, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 58, - "left": 28.125, - "top": 69.657086, - "right": 29.53125, - "bottom": 69.162558, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 142, - "y": 59, - "left": 19.6875, - "top": 69.162558, - "right": 21.09375, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 143, - "y": 59, - "left": 21.09375, - "top": 69.162558, - "right": 22.5, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 59, - "left": 22.5, - "top": 69.162558, - "right": 23.90625, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 145, - "y": 59, - "left": 23.90625, - "top": 69.162558, - "right": 25.3125, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 146, - "y": 59, - "left": 25.3125, - "top": 69.162558, - "right": 26.71875, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 147, - "y": 59, - "left": 26.71875, - "top": 69.162558, - "right": 28.125, - "bottom": 68.656555, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 59, - "left": 28.125, - "top": 69.162558, - "right": 29.53125, - "bottom": 68.656555, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 143, - "y": 60, - "left": 21.09375, - "top": 68.656555, - "right": 22.5, - "bottom": 68.138852, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 60, - "left": 22.5, - "top": 68.656555, - "right": 23.90625, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 60, - "left": 23.90625, - "top": 68.656555, - "right": 25.3125, - "bottom": 68.138852, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 146, - "y": 60, - "left": 25.3125, - "top": 68.656555, - "right": 26.71875, - "bottom": 68.138852, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 60, - "left": 26.71875, - "top": 68.656555, - "right": 28.125, - "bottom": 68.138852, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 60, - "left": 28.125, - "top": 68.656555, - "right": 29.53125, - "bottom": 68.138852, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 144, - "y": 61, - "left": 22.5, - "top": 68.138852, - "right": 23.90625, - "bottom": 67.609221, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 61, - "left": 23.90625, - "top": 68.138852, - "right": 25.3125, - "bottom": 67.609221, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 61, - "left": 25.3125, - "top": 68.138852, - "right": 26.71875, - "bottom": 67.609221, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 61, - "left": 26.71875, - "top": 68.138852, - "right": 28.125, - "bottom": 67.609221, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 61, - "left": 28.125, - "top": 68.138852, - "right": 29.53125, - "bottom": 67.609221, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 61, - "left": 29.53125, - "top": 68.138852, - "right": 30.9375, - "bottom": 67.609221, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 144, - "y": 62, - "left": 22.5, - "top": 67.609221, - "right": 23.90625, - "bottom": 67.067433, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 62, - "left": 23.90625, - "top": 67.609221, - "right": 25.3125, - "bottom": 67.067433, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 62, - "left": 25.3125, - "top": 67.609221, - "right": 26.71875, - "bottom": 67.067433, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 62, - "left": 26.71875, - "top": 67.609221, - "right": 28.125, - "bottom": 67.067433, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 62, - "left": 28.125, - "top": 67.609221, - "right": 29.53125, - "bottom": 67.067433, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 62, - "left": 29.53125, - "top": 67.609221, - "right": 30.9375, - "bottom": 67.067433, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 144, - "y": 63, - "left": 22.5, - "top": 67.067433, - "right": 23.90625, - "bottom": 66.51326, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 63, - "left": 23.90625, - "top": 67.067433, - "right": 25.3125, - "bottom": 66.51326, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 146, - "y": 63, - "left": 25.3125, - "top": 67.067433, - "right": 26.71875, - "bottom": 66.51326, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 63, - "left": 26.71875, - "top": 67.067433, - "right": 28.125, - "bottom": 66.51326, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 63, - "left": 28.125, - "top": 67.067433, - "right": 29.53125, - "bottom": 66.51326, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 144, - "y": 64, - "left": 22.5, - "top": 66.51326, - "right": 23.90625, - "bottom": 65.946472, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 64, - "left": 23.90625, - "top": 66.51326, - "right": 25.3125, - "bottom": 65.946472, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 146, - "y": 64, - "left": 25.3125, - "top": 66.51326, - "right": 26.71875, - "bottom": 65.946472, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 64, - "left": 26.71875, - "top": 66.51326, - "right": 28.125, - "bottom": 65.946472, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 64, - "left": 28.125, - "top": 66.51326, - "right": 29.53125, - "bottom": 65.946472, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 64, - "left": 29.53125, - "top": 66.51326, - "right": 30.9375, - "bottom": 65.946472, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 145, - "y": 65, - "left": 23.90625, - "top": 65.946472, - "right": 25.3125, - "bottom": 65.366837, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 146, - "y": 65, - "left": 25.3125, - "top": 65.946472, - "right": 26.71875, - "bottom": 65.366837, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 65, - "left": 26.71875, - "top": 65.946472, - "right": 28.125, - "bottom": 65.366837, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 65, - "left": 28.125, - "top": 65.946472, - "right": 29.53125, - "bottom": 65.366837, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 65, - "left": 29.53125, - "top": 65.946472, - "right": 30.9375, - "bottom": 65.366837, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 145, - "y": 66, - "left": 23.90625, - "top": 65.366837, - "right": 25.3125, - "bottom": 64.774125, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 66, - "left": 25.3125, - "top": 65.366837, - "right": 26.71875, - "bottom": 64.774125, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 66, - "left": 26.71875, - "top": 65.366837, - "right": 28.125, - "bottom": 64.774125, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 66, - "left": 28.125, - "top": 65.366837, - "right": 29.53125, - "bottom": 64.774125, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 66, - "left": 29.53125, - "top": 65.366837, - "right": 30.9375, - "bottom": 64.774125, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 144, - "y": 67, - "left": 22.5, - "top": 64.774125, - "right": 23.90625, - "bottom": 64.168107, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 67, - "left": 23.90625, - "top": 64.774125, - "right": 25.3125, - "bottom": 64.168107, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 67, - "left": 25.3125, - "top": 64.774125, - "right": 26.71875, - "bottom": 64.168107, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 67, - "left": 26.71875, - "top": 64.774125, - "right": 28.125, - "bottom": 64.168107, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 67, - "left": 28.125, - "top": 64.774125, - "right": 29.53125, - "bottom": 64.168107, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 67, - "left": 29.53125, - "top": 64.774125, - "right": 30.9375, - "bottom": 64.168107, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 143, - "y": 68, - "left": 21.09375, - "top": 64.168107, - "right": 22.5, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 144, - "y": 68, - "left": 22.5, - "top": 64.168107, - "right": 23.90625, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 68, - "left": 23.90625, - "top": 64.168107, - "right": 25.3125, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 68, - "left": 25.3125, - "top": 64.168107, - "right": 26.71875, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 68, - "left": 26.71875, - "top": 64.168107, - "right": 28.125, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 68, - "left": 28.125, - "top": 64.168107, - "right": 29.53125, - "bottom": 63.548552, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 68, - "left": 29.53125, - "top": 64.168107, - "right": 30.9375, - "bottom": 63.548552, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 142, - "y": 69, - "left": 19.6875, - "top": 63.548552, - "right": 21.09375, - "bottom": 62.915233, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 143, - "y": 69, - "left": 21.09375, - "top": 63.548552, - "right": 22.5, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 144, - "y": 69, - "left": 22.5, - "top": 63.548552, - "right": 23.90625, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 69, - "left": 23.90625, - "top": 63.548552, - "right": 25.3125, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 69, - "left": 25.3125, - "top": 63.548552, - "right": 26.71875, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 69, - "left": 26.71875, - "top": 63.548552, - "right": 28.125, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 69, - "left": 28.125, - "top": 63.548552, - "right": 29.53125, - "bottom": 62.915233, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 69, - "left": 29.53125, - "top": 63.548552, - "right": 30.9375, - "bottom": 62.915233, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 150, - "y": 69, - "left": 30.9375, - "top": 63.548552, - "right": 32.34375, - "bottom": 62.915233, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 142, - "y": 70, - "left": 19.6875, - "top": 62.915233, - "right": 21.09375, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 143, - "y": 70, - "left": 21.09375, - "top": 62.915233, - "right": 22.5, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 144, - "y": 70, - "left": 22.5, - "top": 62.915233, - "right": 23.90625, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 70, - "left": 23.90625, - "top": 62.915233, - "right": 25.3125, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 70, - "left": 25.3125, - "top": 62.915233, - "right": 26.71875, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 70, - "left": 26.71875, - "top": 62.915233, - "right": 28.125, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 70, - "left": 28.125, - "top": 62.915233, - "right": 29.53125, - "bottom": 62.267923, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 70, - "left": 29.53125, - "top": 62.915233, - "right": 30.9375, - "bottom": 62.267923, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 150, - "y": 70, - "left": 30.9375, - "top": 62.915233, - "right": 32.34375, - "bottom": 62.267923, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 143, - "y": 71, - "left": 21.09375, - "top": 62.267923, - "right": 22.5, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 144, - "y": 71, - "left": 22.5, - "top": 62.267923, - "right": 23.90625, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 71, - "left": 23.90625, - "top": 62.267923, - "right": 25.3125, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 71, - "left": 25.3125, - "top": 62.267923, - "right": 26.71875, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 71, - "left": 26.71875, - "top": 62.267923, - "right": 28.125, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 71, - "left": 28.125, - "top": 62.267923, - "right": 29.53125, - "bottom": 61.606396, - "countries": [ - "finland" - ] - }, - { - "x": 149, - "y": 71, - "left": 29.53125, - "top": 62.267923, - "right": 30.9375, - "bottom": 61.606396, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 143, - "y": 72, - "left": 21.09375, - "top": 61.606396, - "right": 22.5, - "bottom": 60.930432, - "countries": [ - "finland" - ] - }, - { - "x": 144, - "y": 72, - "left": 22.5, - "top": 61.606396, - "right": 23.90625, - "bottom": 60.930432, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 72, - "left": 23.90625, - "top": 61.606396, - "right": 25.3125, - "bottom": 60.930432, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 72, - "left": 25.3125, - "top": 61.606396, - "right": 26.71875, - "bottom": 60.930432, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 72, - "left": 26.71875, - "top": 61.606396, - "right": 28.125, - "bottom": 60.930432, - "countries": [ - "finland" - ] - }, - { - "x": 148, - "y": 72, - "left": 28.125, - "top": 61.606396, - "right": 29.53125, - "bottom": 60.930432, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 72, - "left": 29.53125, - "top": 61.606396, - "right": 30.9375, - "bottom": 60.930432, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 142, - "y": 73, - "left": 19.6875, - "top": 60.930432, - "right": 21.09375, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 143, - "y": 73, - "left": 21.09375, - "top": 60.930432, - "right": 22.5, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 144, - "y": 73, - "left": 22.5, - "top": 60.930432, - "right": 23.90625, - "bottom": 60.239811, - "countries": [ - "finland" - ] - }, - { - "x": 145, - "y": 73, - "left": 23.90625, - "top": 60.930432, - "right": 25.3125, - "bottom": 60.239811, - "countries": [ - "finland" - ] - }, - { - "x": 146, - "y": 73, - "left": 25.3125, - "top": 60.930432, - "right": 26.71875, - "bottom": 60.239811, - "countries": [ - "finland" - ] - }, - { - "x": 147, - "y": 73, - "left": 26.71875, - "top": 60.930432, - "right": 28.125, - "bottom": 60.239811, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 73, - "left": 28.125, - "top": 60.930432, - "right": 29.53125, - "bottom": 60.239811, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 143, - "y": 74, - "left": 21.09375, - "top": 60.239811, - "right": 22.5, - "bottom": 59.534318, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 144, - "y": 74, - "left": 22.5, - "top": 60.239811, - "right": 23.90625, - "bottom": 59.534318, - "countries": [ - "finland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/france.json b/wahoomc/resources/json/europe/france.json deleted file mode 100644 index 2dc48851..00000000 --- a/wahoomc/resources/json/europe/france.json +++ /dev/null @@ -1,821 +0,0 @@ -[ - { - "x": 129, - "y": 94, - "left": 1.40625, - "top": 43.068888, - "right": 2.8125, - "bottom": 42.032974, - "countries": [ - "andorra", - "spain", - "france" - ] - }, - { - "x": 129, - "y": 85, - "left": 1.40625, - "top": 51.618017, - "right": 2.8125, - "bottom": 50.736455, - "countries": [ - "united_kingdom", - "france", - "belgium" - ] - }, - { - "x": 130, - "y": 85, - "left": 2.8125, - "top": 51.618017, - "right": 4.21875, - "bottom": 50.736455, - "countries": [ - "france", - "belgium", - "netherlands" - ] - }, - { - "x": 129, - "y": 86, - "left": 1.40625, - "top": 50.736455, - "right": 2.8125, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 130, - "y": 86, - "left": 2.8125, - "top": 50.736455, - "right": 4.21875, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 131, - "y": 86, - "left": 4.21875, - "top": 50.736455, - "right": 5.625, - "bottom": 49.837982, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 131, - "y": 87, - "left": 4.21875, - "top": 49.837982, - "right": 5.625, - "bottom": 48.922499, - "countries": [ - "france", - "belgium" - ] - }, - { - "x": 132, - "y": 87, - "left": 5.625, - "top": 49.837982, - "right": 7.03125, - "bottom": 48.922499, - "countries": [ - "luxembourg", - "france", - "belgium", - "germany" - ] - }, - { - "x": 129, - "y": 90, - "left": 1.40625, - "top": 47.040182, - "right": 2.8125, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 90, - "left": 2.8125, - "top": 47.040182, - "right": 4.21875, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 91, - "left": 1.40625, - "top": 46.073231, - "right": 2.8125, - "bottom": 45.089036, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 91, - "left": 2.8125, - "top": 46.073231, - "right": 4.21875, - "bottom": 45.089036, - "countries": [ - "france" - ] - }, - { - "x": 131, - "y": 91, - "left": 4.21875, - "top": 46.073231, - "right": 5.625, - "bottom": 45.089036, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 92, - "left": 2.8125, - "top": 45.089036, - "right": 4.21875, - "bottom": 44.087585, - "countries": [ - "france" - ] - }, - { - "x": 131, - "y": 92, - "left": 4.21875, - "top": 45.089036, - "right": 5.625, - "bottom": 44.087585, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 92, - "left": 1.40625, - "top": 45.089036, - "right": 2.8125, - "bottom": 44.087585, - "countries": [ - "france" - ] - }, - { - "x": 132, - "y": 91, - "left": 5.625, - "top": 46.073231, - "right": 7.03125, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 133, - "y": 91, - "left": 7.03125, - "top": 46.073231, - "right": 8.4375, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 132, - "y": 92, - "left": 5.625, - "top": 45.089036, - "right": 7.03125, - "bottom": 44.087585, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 132, - "y": 90, - "left": 5.625, - "top": 47.040182, - "right": 7.03125, - "bottom": 46.073231, - "countries": [ - "france", - "switzerland" - ] - }, - { - "x": 131, - "y": 90, - "left": 4.21875, - "top": 47.040182, - "right": 5.625, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 89, - "left": 2.8125, - "top": 47.989922, - "right": 4.21875, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 131, - "y": 89, - "left": 4.21875, - "top": 47.989922, - "right": 5.625, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 131, - "y": 88, - "left": 4.21875, - "top": 48.922499, - "right": 5.625, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 88, - "left": 2.8125, - "top": 48.922499, - "right": 4.21875, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 132, - "y": 89, - "left": 5.625, - "top": 47.989922, - "right": 7.03125, - "bottom": 47.040182, - "countries": [ - "france", - "switzerland" - ] - }, - { - "x": 133, - "y": 89, - "left": 7.03125, - "top": 47.989922, - "right": 8.4375, - "bottom": 47.040182, - "countries": [ - "france", - "germany", - "switzerland" - ] - }, - { - "x": 132, - "y": 88, - "left": 5.625, - "top": 48.922499, - "right": 7.03125, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 125, - "y": 88, - "left": -4.21875, - "top": 48.922499, - "right": -2.8125, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 126, - "y": 88, - "left": -2.8125, - "top": 48.922499, - "right": -1.40625, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 125, - "y": 89, - "left": -4.21875, - "top": 47.989922, - "right": -2.8125, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 126, - "y": 89, - "left": -2.8125, - "top": 47.989922, - "right": -1.40625, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 124, - "y": 88, - "left": -5.625, - "top": 48.922499, - "right": -4.21875, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 124, - "y": 89, - "left": -5.625, - "top": 47.989922, - "right": -4.21875, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 127, - "y": 88, - "left": -1.40625, - "top": 48.922499, - "right": 0.0, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 127, - "y": 89, - "left": -1.40625, - "top": 47.989922, - "right": 0.0, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 89, - "left": 0.0, - "top": 47.989922, - "right": 1.40625, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 90, - "left": 0.0, - "top": 47.040182, - "right": 1.40625, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 89, - "left": 1.40625, - "top": 47.989922, - "right": 2.8125, - "bottom": 47.040182, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 88, - "left": 0.0, - "top": 48.922499, - "right": 1.40625, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 88, - "left": 1.40625, - "top": 48.922499, - "right": 2.8125, - "bottom": 47.989922, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 87, - "left": 1.40625, - "top": 49.837982, - "right": 2.8125, - "bottom": 48.922499, - "countries": [ - "france" - ] - }, - { - "x": 134, - "y": 94, - "left": 8.4375, - "top": 43.068888, - "right": 9.84375, - "bottom": 42.032974, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 134, - "y": 95, - "left": 8.4375, - "top": 42.032974, - "right": 9.84375, - "bottom": 40.979898, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 133, - "y": 87, - "left": 7.03125, - "top": 49.837982, - "right": 8.4375, - "bottom": 48.922499, - "countries": [ - "france", - "germany" - ] - }, - { - "x": 133, - "y": 88, - "left": 7.03125, - "top": 48.922499, - "right": 8.4375, - "bottom": 47.989922, - "countries": [ - "france", - "germany" - ] - }, - { - "x": 130, - "y": 87, - "left": 2.8125, - "top": 49.837982, - "right": 4.21875, - "bottom": 48.922499, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 86, - "left": 0.0, - "top": 50.736455, - "right": 1.40625, - "bottom": 49.837982, - "countries": [ - "united_kingdom", - "france" - ] - }, - { - "x": 126, - "y": 87, - "left": -2.8125, - "top": 49.837982, - "right": -1.40625, - "bottom": 48.922499, - "countries": [ - "guernsey", - "jersey", - "france" - ] - }, - { - "x": 127, - "y": 87, - "left": -1.40625, - "top": 49.837982, - "right": 0.0, - "bottom": 48.922499, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 87, - "left": 0.0, - "top": 49.837982, - "right": 1.40625, - "bottom": 48.922499, - "countries": [ - "france" - ] - }, - { - "x": 126, - "y": 93, - "left": -2.8125, - "top": 44.087585, - "right": -1.40625, - "bottom": 43.068888, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 127, - "y": 93, - "left": -1.40625, - "top": 44.087585, - "right": 0.0, - "bottom": 43.068888, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 128, - "y": 93, - "left": 0.0, - "top": 44.087585, - "right": 1.40625, - "bottom": 43.068888, - "countries": [ - "france" - ] - }, - { - "x": 126, - "y": 94, - "left": -2.8125, - "top": 43.068888, - "right": -1.40625, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 127, - "y": 94, - "left": -1.40625, - "top": 43.068888, - "right": 0.0, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 127, - "y": 92, - "left": -1.40625, - "top": 45.089036, - "right": 0.0, - "bottom": 44.087585, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 92, - "left": 0.0, - "top": 45.089036, - "right": 1.40625, - "bottom": 44.087585, - "countries": [ - "france" - ] - }, - { - "x": 127, - "y": 91, - "left": -1.40625, - "top": 46.073231, - "right": 0.0, - "bottom": 45.089036, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 91, - "left": 0.0, - "top": 46.073231, - "right": 1.40625, - "bottom": 45.089036, - "countries": [ - "france" - ] - }, - { - "x": 126, - "y": 90, - "left": -2.8125, - "top": 47.040182, - "right": -1.40625, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 127, - "y": 90, - "left": -1.40625, - "top": 47.040182, - "right": 0.0, - "bottom": 46.073231, - "countries": [ - "france" - ] - }, - { - "x": 130, - "y": 94, - "left": 2.8125, - "top": 43.068888, - "right": 4.21875, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 130, - "y": 93, - "left": 2.8125, - "top": 44.087585, - "right": 4.21875, - "bottom": 43.068888, - "countries": [ - "france" - ] - }, - { - "x": 131, - "y": 93, - "left": 4.21875, - "top": 44.087585, - "right": 5.625, - "bottom": 43.068888, - "countries": [ - "france" - ] - }, - { - "x": 129, - "y": 93, - "left": 1.40625, - "top": 44.087585, - "right": 2.8125, - "bottom": 43.068888, - "countries": [ - "france" - ] - }, - { - "x": 128, - "y": 94, - "left": 0.0, - "top": 43.068888, - "right": 1.40625, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 133, - "y": 92, - "left": 7.03125, - "top": 45.089036, - "right": 8.4375, - "bottom": 44.087585, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 132, - "y": 93, - "left": 5.625, - "top": 44.087585, - "right": 7.03125, - "bottom": 43.068888, - "countries": [ - "france" - ] - }, - { - "x": 133, - "y": 93, - "left": 7.03125, - "top": 44.087585, - "right": 8.4375, - "bottom": 43.068888, - "countries": [ - "france", - "monaco", - "italy" - ] - }, - { - "x": 132, - "y": 94, - "left": 5.625, - "top": 43.068888, - "right": 7.03125, - "bottom": 42.032974, - "countries": [ - "france" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/germany.json b/wahoomc/resources/json/europe/germany.json deleted file mode 100644 index 37c68d39..00000000 --- a/wahoomc/resources/json/europe/germany.json +++ /dev/null @@ -1,669 +0,0 @@ -[ - { - "x": 137, - "y": 88, - "left": 12.65625, - "top": 48.922499, - "right": 14.0625, - "bottom": 47.989922, - "countries": [ - "czech_republic", - "germany", - "austria" - ] - }, - { - "x": 134, - "y": 89, - "left": 8.4375, - "top": 47.989922, - "right": 9.84375, - "bottom": 47.040182, - "countries": [ - "liechtenstein", - "germany", - "austria", - "switzerland" - ] - }, - { - "x": 135, - "y": 89, - "left": 9.84375, - "top": 47.989922, - "right": 11.25, - "bottom": 47.040182, - "countries": [ - "germany", - "austria" - ] - }, - { - "x": 136, - "y": 89, - "left": 11.25, - "top": 47.989922, - "right": 12.65625, - "bottom": 47.040182, - "countries": [ - "italy", - "germany", - "austria" - ] - }, - { - "x": 137, - "y": 89, - "left": 12.65625, - "top": 47.989922, - "right": 14.0625, - "bottom": 47.040182, - "countries": [ - "germany", - "austria" - ] - }, - { - "x": 132, - "y": 85, - "left": 5.625, - "top": 51.618017, - "right": 7.03125, - "bottom": 50.736455, - "countries": [ - "netherlands", - "belgium", - "germany" - ] - }, - { - "x": 132, - "y": 86, - "left": 5.625, - "top": 50.736455, - "right": 7.03125, - "bottom": 49.837982, - "countries": [ - "luxembourg", - "belgium", - "germany" - ] - }, - { - "x": 132, - "y": 87, - "left": 5.625, - "top": 49.837982, - "right": 7.03125, - "bottom": 48.922499, - "countries": [ - "luxembourg", - "france", - "belgium", - "germany" - ] - }, - { - "x": 137, - "y": 85, - "left": 12.65625, - "top": 51.618017, - "right": 14.0625, - "bottom": 50.736455, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 138, - "y": 85, - "left": 14.0625, - "top": 51.618017, - "right": 15.46875, - "bottom": 50.736455, - "countries": [ - "poland", - "czech_republic", - "germany" - ] - }, - { - "x": 136, - "y": 86, - "left": 11.25, - "top": 50.736455, - "right": 12.65625, - "bottom": 49.837982, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 137, - "y": 86, - "left": 12.65625, - "top": 50.736455, - "right": 14.0625, - "bottom": 49.837982, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 136, - "y": 87, - "left": 11.25, - "top": 49.837982, - "right": 12.65625, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 137, - "y": 87, - "left": 12.65625, - "top": 49.837982, - "right": 14.0625, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "germany" - ] - }, - { - "x": 133, - "y": 80, - "left": 7.03125, - "top": 55.776573, - "right": 8.4375, - "bottom": 54.977614, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 134, - "y": 80, - "left": 8.4375, - "top": 55.776573, - "right": 9.84375, - "bottom": 54.977614, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 134, - "y": 81, - "left": 8.4375, - "top": 54.977614, - "right": 9.84375, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 135, - "y": 81, - "left": 9.84375, - "top": 54.977614, - "right": 11.25, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 136, - "y": 81, - "left": 11.25, - "top": 54.977614, - "right": 12.65625, - "bottom": 54.162434, - "countries": [ - "denmark", - "germany" - ] - }, - { - "x": 133, - "y": 89, - "left": 7.03125, - "top": 47.989922, - "right": 8.4375, - "bottom": 47.040182, - "countries": [ - "france", - "germany", - "switzerland" - ] - }, - { - "x": 133, - "y": 87, - "left": 7.03125, - "top": 49.837982, - "right": 8.4375, - "bottom": 48.922499, - "countries": [ - "france", - "germany" - ] - }, - { - "x": 133, - "y": 88, - "left": 7.03125, - "top": 48.922499, - "right": 8.4375, - "bottom": 47.989922, - "countries": [ - "france", - "germany" - ] - }, - { - "x": 134, - "y": 87, - "left": 8.4375, - "top": 49.837982, - "right": 9.84375, - "bottom": 48.922499, - "countries": [ - "germany" - ] - }, - { - "x": 135, - "y": 87, - "left": 9.84375, - "top": 49.837982, - "right": 11.25, - "bottom": 48.922499, - "countries": [ - "germany" - ] - }, - { - "x": 134, - "y": 88, - "left": 8.4375, - "top": 48.922499, - "right": 9.84375, - "bottom": 47.989922, - "countries": [ - "germany" - ] - }, - { - "x": 135, - "y": 88, - "left": 9.84375, - "top": 48.922499, - "right": 11.25, - "bottom": 47.989922, - "countries": [ - "germany" - ] - }, - { - "x": 134, - "y": 86, - "left": 8.4375, - "top": 50.736455, - "right": 9.84375, - "bottom": 49.837982, - "countries": [ - "germany" - ] - }, - { - "x": 135, - "y": 86, - "left": 9.84375, - "top": 50.736455, - "right": 11.25, - "bottom": 49.837982, - "countries": [ - "germany" - ] - }, - { - "x": 136, - "y": 88, - "left": 11.25, - "top": 48.922499, - "right": 12.65625, - "bottom": 47.989922, - "countries": [ - "germany" - ] - }, - { - "x": 137, - "y": 83, - "left": 12.65625, - "top": 53.330873, - "right": 14.0625, - "bottom": 52.48278, - "countries": [ - "germany" - ] - }, - { - "x": 137, - "y": 84, - "left": 12.65625, - "top": 52.48278, - "right": 14.0625, - "bottom": 51.618017, - "countries": [ - "germany" - ] - }, - { - "x": 136, - "y": 82, - "left": 11.25, - "top": 54.162434, - "right": 12.65625, - "bottom": 53.330873, - "countries": [ - "germany" - ] - }, - { - "x": 137, - "y": 82, - "left": 12.65625, - "top": 54.162434, - "right": 14.0625, - "bottom": 53.330873, - "countries": [ - "germany" - ] - }, - { - "x": 138, - "y": 82, - "left": 14.0625, - "top": 54.162434, - "right": 15.46875, - "bottom": 53.330873, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 136, - "y": 83, - "left": 11.25, - "top": 53.330873, - "right": 12.65625, - "bottom": 52.48278, - "countries": [ - "germany" - ] - }, - { - "x": 138, - "y": 83, - "left": 14.0625, - "top": 53.330873, - "right": 15.46875, - "bottom": 52.48278, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 136, - "y": 84, - "left": 11.25, - "top": 52.48278, - "right": 12.65625, - "bottom": 51.618017, - "countries": [ - "germany" - ] - }, - { - "x": 138, - "y": 84, - "left": 14.0625, - "top": 52.48278, - "right": 15.46875, - "bottom": 51.618017, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 134, - "y": 82, - "left": 8.4375, - "top": 54.162434, - "right": 9.84375, - "bottom": 53.330873, - "countries": [ - "germany" - ] - }, - { - "x": 134, - "y": 83, - "left": 8.4375, - "top": 53.330873, - "right": 9.84375, - "bottom": 52.48278, - "countries": [ - "germany" - ] - }, - { - "x": 133, - "y": 82, - "left": 7.03125, - "top": 54.162434, - "right": 8.4375, - "bottom": 53.330873, - "countries": [ - "germany" - ] - }, - { - "x": 135, - "y": 82, - "left": 9.84375, - "top": 54.162434, - "right": 11.25, - "bottom": 53.330873, - "countries": [ - "germany" - ] - }, - { - "x": 134, - "y": 84, - "left": 8.4375, - "top": 52.48278, - "right": 9.84375, - "bottom": 51.618017, - "countries": [ - "germany" - ] - }, - { - "x": 133, - "y": 85, - "left": 7.03125, - "top": 51.618017, - "right": 8.4375, - "bottom": 50.736455, - "countries": [ - "germany" - ] - }, - { - "x": 134, - "y": 85, - "left": 8.4375, - "top": 51.618017, - "right": 9.84375, - "bottom": 50.736455, - "countries": [ - "germany" - ] - }, - { - "x": 135, - "y": 85, - "left": 9.84375, - "top": 51.618017, - "right": 11.25, - "bottom": 50.736455, - "countries": [ - "germany" - ] - }, - { - "x": 133, - "y": 86, - "left": 7.03125, - "top": 50.736455, - "right": 8.4375, - "bottom": 49.837982, - "countries": [ - "germany" - ] - }, - { - "x": 132, - "y": 82, - "left": 5.625, - "top": 54.162434, - "right": 7.03125, - "bottom": 53.330873, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 132, - "y": 83, - "left": 5.625, - "top": 53.330873, - "right": 7.03125, - "bottom": 52.48278, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 133, - "y": 83, - "left": 7.03125, - "top": 53.330873, - "right": 8.4375, - "bottom": 52.48278, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 135, - "y": 83, - "left": 9.84375, - "top": 53.330873, - "right": 11.25, - "bottom": 52.48278, - "countries": [ - "germany" - ] - }, - { - "x": 132, - "y": 84, - "left": 5.625, - "top": 52.48278, - "right": 7.03125, - "bottom": 51.618017, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 133, - "y": 84, - "left": 7.03125, - "top": 52.48278, - "right": 8.4375, - "bottom": 51.618017, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 135, - "y": 84, - "left": 9.84375, - "top": 52.48278, - "right": 11.25, - "bottom": 51.618017, - "countries": [ - "germany" - ] - }, - { - "x": 137, - "y": 81, - "left": 12.65625, - "top": 54.977614, - "right": 14.0625, - "bottom": 54.162434, - "countries": [ - "germany" - ] - }, - { - "x": 136, - "y": 85, - "left": 11.25, - "top": 51.618017, - "right": 12.65625, - "bottom": 50.736455, - "countries": [ - "germany" - ] - }, - { - "x": 133, - "y": 81, - "left": 7.03125, - "top": 54.977614, - "right": 8.4375, - "bottom": 54.162434, - "countries": [ - "germany" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/gibraltar.json b/wahoomc/resources/json/europe/gibraltar.json deleted file mode 100644 index cba6f562..00000000 --- a/wahoomc/resources/json/europe/gibraltar.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 124, - "y": 100, - "left": -5.625, - "top": 36.597889, - "right": -4.21875, - "bottom": 35.46067, - "countries": [ - "gibraltar", - "spain", - "morocco" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/greece.json b/wahoomc/resources/json/europe/greece.json deleted file mode 100644 index 5fd9f106..00000000 --- a/wahoomc/resources/json/europe/greece.json +++ /dev/null @@ -1,439 +0,0 @@ -[ - { - "x": 146, - "y": 95, - "left": 25.3125, - "top": 42.032974, - "right": 26.71875, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "turkey", - "greece" - ] - }, - { - "x": 146, - "y": 96, - "left": 25.3125, - "top": 40.979898, - "right": 26.71875, - "bottom": 39.909736, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 146, - "y": 97, - "left": 25.3125, - "top": 39.909736, - "right": 26.71875, - "bottom": 38.822591, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 146, - "y": 98, - "left": 25.3125, - "top": 38.822591, - "right": 26.71875, - "bottom": 37.71859, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 98, - "left": 26.71875, - "top": 38.822591, - "right": 28.125, - "bottom": 37.71859, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 99, - "left": 26.71875, - "top": 37.71859, - "right": 28.125, - "bottom": 36.597889, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 147, - "y": 100, - "left": 26.71875, - "top": 36.597889, - "right": 28.125, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 148, - "y": 100, - "left": 28.125, - "top": 36.597889, - "right": 29.53125, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 149, - "y": 100, - "left": 29.53125, - "top": 36.597889, - "right": 30.9375, - "bottom": 35.46067, - "countries": [ - "turkey", - "greece" - ] - }, - { - "x": 142, - "y": 96, - "left": 19.6875, - "top": 40.979898, - "right": 21.09375, - "bottom": 39.909736, - "countries": [ - "macedonia", - "albania", - "greece" - ] - }, - { - "x": 142, - "y": 97, - "left": 19.6875, - "top": 39.909736, - "right": 21.09375, - "bottom": 38.822591, - "countries": [ - "albania", - "greece" - ] - }, - { - "x": 144, - "y": 95, - "left": 22.5, - "top": 42.032974, - "right": 23.90625, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "macedonia", - "greece" - ] - }, - { - "x": 145, - "y": 95, - "left": 23.90625, - "top": 42.032974, - "right": 25.3125, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "greece" - ] - }, - { - "x": 143, - "y": 95, - "left": 21.09375, - "top": 42.032974, - "right": 22.5, - "bottom": 40.979898, - "countries": [ - "macedonia", - "greece" - ] - }, - { - "x": 143, - "y": 96, - "left": 21.09375, - "top": 40.979898, - "right": 22.5, - "bottom": 39.909736, - "countries": [ - "macedonia", - "greece" - ] - }, - { - "x": 144, - "y": 96, - "left": 22.5, - "top": 40.979898, - "right": 23.90625, - "bottom": 39.909736, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 96, - "left": 23.90625, - "top": 40.979898, - "right": 25.3125, - "bottom": 39.909736, - "countries": [ - "greece" - ] - }, - { - "x": 141, - "y": 97, - "left": 18.28125, - "top": 39.909736, - "right": 19.6875, - "bottom": 38.822591, - "countries": [ - "greece", - "italy" - ] - }, - { - "x": 143, - "y": 97, - "left": 21.09375, - "top": 39.909736, - "right": 22.5, - "bottom": 38.822591, - "countries": [ - "greece" - ] - }, - { - "x": 144, - "y": 97, - "left": 22.5, - "top": 39.909736, - "right": 23.90625, - "bottom": 38.822591, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 97, - "left": 23.90625, - "top": 39.909736, - "right": 25.3125, - "bottom": 38.822591, - "countries": [ - "greece" - ] - }, - { - "x": 142, - "y": 98, - "left": 19.6875, - "top": 38.822591, - "right": 21.09375, - "bottom": 37.71859, - "countries": [ - "greece" - ] - }, - { - "x": 143, - "y": 98, - "left": 21.09375, - "top": 38.822591, - "right": 22.5, - "bottom": 37.71859, - "countries": [ - "greece" - ] - }, - { - "x": 144, - "y": 98, - "left": 22.5, - "top": 38.822591, - "right": 23.90625, - "bottom": 37.71859, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 98, - "left": 23.90625, - "top": 38.822591, - "right": 25.3125, - "bottom": 37.71859, - "countries": [ - "greece" - ] - }, - { - "x": 142, - "y": 99, - "left": 19.6875, - "top": 37.71859, - "right": 21.09375, - "bottom": 36.597889, - "countries": [ - "greece" - ] - }, - { - "x": 143, - "y": 99, - "left": 21.09375, - "top": 37.71859, - "right": 22.5, - "bottom": 36.597889, - "countries": [ - "greece" - ] - }, - { - "x": 144, - "y": 99, - "left": 22.5, - "top": 37.71859, - "right": 23.90625, - "bottom": 36.597889, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 99, - "left": 23.90625, - "top": 37.71859, - "right": 25.3125, - "bottom": 36.597889, - "countries": [ - "greece" - ] - }, - { - "x": 146, - "y": 99, - "left": 25.3125, - "top": 37.71859, - "right": 26.71875, - "bottom": 36.597889, - "countries": [ - "greece" - ] - }, - { - "x": 143, - "y": 100, - "left": 21.09375, - "top": 36.597889, - "right": 22.5, - "bottom": 35.46067, - "countries": [ - "greece" - ] - }, - { - "x": 144, - "y": 100, - "left": 22.5, - "top": 36.597889, - "right": 23.90625, - "bottom": 35.46067, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 100, - "left": 23.90625, - "top": 36.597889, - "right": 25.3125, - "bottom": 35.46067, - "countries": [ - "greece" - ] - }, - { - "x": 146, - "y": 100, - "left": 25.3125, - "top": 36.597889, - "right": 26.71875, - "bottom": 35.46067, - "countries": [ - "greece" - ] - }, - { - "x": 144, - "y": 101, - "left": 22.5, - "top": 35.46067, - "right": 23.90625, - "bottom": 34.307144, - "countries": [ - "greece" - ] - }, - { - "x": 145, - "y": 101, - "left": 23.90625, - "top": 35.46067, - "right": 25.3125, - "bottom": 34.307144, - "countries": [ - "greece" - ] - }, - { - "x": 146, - "y": 101, - "left": 25.3125, - "top": 35.46067, - "right": 26.71875, - "bottom": 34.307144, - "countries": [ - "greece" - ] - }, - { - "x": 147, - "y": 101, - "left": 26.71875, - "top": 35.46067, - "right": 28.125, - "bottom": 34.307144, - "countries": [ - "greece" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/guernsey.json b/wahoomc/resources/json/europe/guernsey.json deleted file mode 100644 index 2ae0348b..00000000 --- a/wahoomc/resources/json/europe/guernsey.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 126, - "y": 87, - "left": -2.8125, - "top": 49.837982, - "right": -1.40625, - "bottom": 48.922499, - "countries": [ - "guernsey", - "jersey", - "france" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/hungary.json b/wahoomc/resources/json/europe/hungary.json deleted file mode 100644 index 1e92a953..00000000 --- a/wahoomc/resources/json/europe/hungary.json +++ /dev/null @@ -1,229 +0,0 @@ -[ - { - "x": 140, - "y": 88, - "left": 16.875, - "top": 48.922499, - "right": 18.28125, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary", - "czech_republic", - "austria" - ] - }, - { - "x": 139, - "y": 89, - "left": 15.46875, - "top": 47.989922, - "right": 16.875, - "bottom": 47.040182, - "countries": [ - "hungary", - "austria" - ] - }, - { - "x": 140, - "y": 89, - "left": 16.875, - "top": 47.989922, - "right": 18.28125, - "bottom": 47.040182, - "countries": [ - "slovakia", - "hungary", - "austria" - ] - }, - { - "x": 139, - "y": 90, - "left": 15.46875, - "top": 47.040182, - "right": 16.875, - "bottom": 46.073231, - "countries": [ - "hungary", - "croatia", - "slovenia", - "austria" - ] - }, - { - "x": 140, - "y": 91, - "left": 16.875, - "top": 46.073231, - "right": 18.28125, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "hungary", - "croatia" - ] - }, - { - "x": 141, - "y": 91, - "left": 18.28125, - "top": 46.073231, - "right": 19.6875, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "hungary", - "croatia" - ] - }, - { - "x": 140, - "y": 90, - "left": 16.875, - "top": 47.040182, - "right": 18.28125, - "bottom": 46.073231, - "countries": [ - "croatia", - "hungary" - ] - }, - { - "x": 141, - "y": 88, - "left": 18.28125, - "top": 48.922499, - "right": 19.6875, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 142, - "y": 88, - "left": 19.6875, - "top": 48.922499, - "right": 21.09375, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 143, - "y": 88, - "left": 21.09375, - "top": 48.922499, - "right": 22.5, - "bottom": 47.989922, - "countries": [ - "slovakia", - "ukraine", - "hungary" - ] - }, - { - "x": 144, - "y": 88, - "left": 22.5, - "top": 48.922499, - "right": 23.90625, - "bottom": 47.989922, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 141, - "y": 89, - "left": 18.28125, - "top": 47.989922, - "right": 19.6875, - "bottom": 47.040182, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 142, - "y": 89, - "left": 19.6875, - "top": 47.989922, - "right": 21.09375, - "bottom": 47.040182, - "countries": [ - "hungary" - ] - }, - { - "x": 143, - "y": 89, - "left": 21.09375, - "top": 47.989922, - "right": 22.5, - "bottom": 47.040182, - "countries": [ - "romania", - "hungary" - ] - }, - { - "x": 144, - "y": 89, - "left": 22.5, - "top": 47.989922, - "right": 23.90625, - "bottom": 47.040182, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 141, - "y": 90, - "left": 18.28125, - "top": 47.040182, - "right": 19.6875, - "bottom": 46.073231, - "countries": [ - "serbia", - "hungary" - ] - }, - { - "x": 142, - "y": 90, - "left": 19.6875, - "top": 47.040182, - "right": 21.09375, - "bottom": 46.073231, - "countries": [ - "romania", - "serbia", - "hungary" - ] - }, - { - "x": 143, - "y": 90, - "left": 21.09375, - "top": 47.040182, - "right": 22.5, - "bottom": 46.073231, - "countries": [ - "romania", - "hungary" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/iceland.json b/wahoomc/resources/json/europe/iceland.json deleted file mode 100644 index 76790d81..00000000 --- a/wahoomc/resources/json/europe/iceland.json +++ /dev/null @@ -1,497 +0,0 @@ -[ - { - "x": 115, - "y": 63, - "left": -18.28125, - "top": 67.067433, - "right": -16.875, - "bottom": 66.51326, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 63, - "left": -16.875, - "top": 67.067433, - "right": -15.46875, - "bottom": 66.51326, - "countries": [ - "iceland" - ] - }, - { - "x": 111, - "y": 64, - "left": -23.90625, - "top": 66.51326, - "right": -22.5, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 112, - "y": 64, - "left": -22.5, - "top": 66.51326, - "right": -21.09375, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 64, - "left": -21.09375, - "top": 66.51326, - "right": -19.6875, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 64, - "left": -19.6875, - "top": 66.51326, - "right": -18.28125, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 64, - "left": -18.28125, - "top": 66.51326, - "right": -16.875, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 64, - "left": -16.875, - "top": 66.51326, - "right": -15.46875, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 117, - "y": 64, - "left": -15.46875, - "top": 66.51326, - "right": -14.0625, - "bottom": 65.946472, - "countries": [ - "iceland" - ] - }, - { - "x": 110, - "y": 65, - "left": -25.3125, - "top": 65.946472, - "right": -23.90625, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 111, - "y": 65, - "left": -23.90625, - "top": 65.946472, - "right": -22.5, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 112, - "y": 65, - "left": -22.5, - "top": 65.946472, - "right": -21.09375, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 65, - "left": -21.09375, - "top": 65.946472, - "right": -19.6875, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 65, - "left": -19.6875, - "top": 65.946472, - "right": -18.28125, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 65, - "left": -18.28125, - "top": 65.946472, - "right": -16.875, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 65, - "left": -16.875, - "top": 65.946472, - "right": -15.46875, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 117, - "y": 65, - "left": -15.46875, - "top": 65.946472, - "right": -14.0625, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 118, - "y": 65, - "left": -14.0625, - "top": 65.946472, - "right": -12.65625, - "bottom": 65.366837, - "countries": [ - "iceland" - ] - }, - { - "x": 110, - "y": 66, - "left": -25.3125, - "top": 65.366837, - "right": -23.90625, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 111, - "y": 66, - "left": -23.90625, - "top": 65.366837, - "right": -22.5, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 112, - "y": 66, - "left": -22.5, - "top": 65.366837, - "right": -21.09375, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 66, - "left": -21.09375, - "top": 65.366837, - "right": -19.6875, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 66, - "left": -19.6875, - "top": 65.366837, - "right": -18.28125, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 66, - "left": -18.28125, - "top": 65.366837, - "right": -16.875, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 66, - "left": -16.875, - "top": 65.366837, - "right": -15.46875, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 117, - "y": 66, - "left": -15.46875, - "top": 65.366837, - "right": -14.0625, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 118, - "y": 66, - "left": -14.0625, - "top": 65.366837, - "right": -12.65625, - "bottom": 64.774125, - "countries": [ - "iceland" - ] - }, - { - "x": 110, - "y": 67, - "left": -25.3125, - "top": 64.774125, - "right": -23.90625, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 111, - "y": 67, - "left": -23.90625, - "top": 64.774125, - "right": -22.5, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 112, - "y": 67, - "left": -22.5, - "top": 64.774125, - "right": -21.09375, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 67, - "left": -21.09375, - "top": 64.774125, - "right": -19.6875, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 67, - "left": -19.6875, - "top": 64.774125, - "right": -18.28125, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 67, - "left": -18.28125, - "top": 64.774125, - "right": -16.875, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 67, - "left": -16.875, - "top": 64.774125, - "right": -15.46875, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 117, - "y": 67, - "left": -15.46875, - "top": 64.774125, - "right": -14.0625, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 118, - "y": 67, - "left": -14.0625, - "top": 64.774125, - "right": -12.65625, - "bottom": 64.168107, - "countries": [ - "iceland" - ] - }, - { - "x": 111, - "y": 68, - "left": -23.90625, - "top": 64.168107, - "right": -22.5, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 112, - "y": 68, - "left": -22.5, - "top": 64.168107, - "right": -21.09375, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 68, - "left": -21.09375, - "top": 64.168107, - "right": -19.6875, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 68, - "left": -19.6875, - "top": 64.168107, - "right": -18.28125, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 68, - "left": -18.28125, - "top": 64.168107, - "right": -16.875, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 116, - "y": 68, - "left": -16.875, - "top": 64.168107, - "right": -15.46875, - "bottom": 63.548552, - "countries": [ - "iceland" - ] - }, - { - "x": 113, - "y": 69, - "left": -21.09375, - "top": 63.548552, - "right": -19.6875, - "bottom": 62.915233, - "countries": [ - "iceland" - ] - }, - { - "x": 114, - "y": 69, - "left": -19.6875, - "top": 63.548552, - "right": -18.28125, - "bottom": 62.915233, - "countries": [ - "iceland" - ] - }, - { - "x": 115, - "y": 69, - "left": -18.28125, - "top": 63.548552, - "right": -16.875, - "bottom": 62.915233, - "countries": [ - "iceland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/ireland.json b/wahoomc/resources/json/europe/ireland.json deleted file mode 100644 index e66ba712..00000000 --- a/wahoomc/resources/json/europe/ireland.json +++ /dev/null @@ -1,240 +0,0 @@ -[ - { - "x": 121, - "y": 80, - "left": -9.84375, - "top": 55.776573, - "right": -8.4375, - "bottom": 54.977614, - "countries": [ - "ireland" - ] - }, - { - "x": 122, - "y": 80, - "left": -8.4375, - "top": 55.776573, - "right": -7.03125, - "bottom": 54.977614, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 80, - "left": -7.03125, - "top": 55.776573, - "right": -5.625, - "bottom": 54.977614, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 120, - "y": 81, - "left": -11.25, - "top": 54.977614, - "right": -9.84375, - "bottom": 54.162434, - "countries": [ - "ireland" - ] - }, - { - "x": 121, - "y": 81, - "left": -9.84375, - "top": 54.977614, - "right": -8.4375, - "bottom": 54.162434, - "countries": [ - "ireland" - ] - }, - { - "x": 122, - "y": 81, - "left": -8.4375, - "top": 54.977614, - "right": -7.03125, - "bottom": 54.162434, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 81, - "left": -7.03125, - "top": 54.977614, - "right": -5.625, - "bottom": 54.162434, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 120, - "y": 82, - "left": -11.25, - "top": 54.162434, - "right": -9.84375, - "bottom": 53.330873, - "countries": [ - "ireland" - ] - }, - { - "x": 121, - "y": 82, - "left": -9.84375, - "top": 54.162434, - "right": -8.4375, - "bottom": 53.330873, - "countries": [ - "ireland" - ] - }, - { - "x": 122, - "y": 82, - "left": -8.4375, - "top": 54.162434, - "right": -7.03125, - "bottom": 53.330873, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 82, - "left": -7.03125, - "top": 54.162434, - "right": -5.625, - "bottom": 53.330873, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 120, - "y": 83, - "left": -11.25, - "top": 53.330873, - "right": -9.84375, - "bottom": 52.48278, - "countries": [ - "ireland" - ] - }, - { - "x": 121, - "y": 83, - "left": -9.84375, - "top": 53.330873, - "right": -8.4375, - "bottom": 52.48278, - "countries": [ - "ireland" - ] - }, - { - "x": 122, - "y": 83, - "left": -8.4375, - "top": 53.330873, - "right": -7.03125, - "bottom": 52.48278, - "countries": [ - "ireland" - ] - }, - { - "x": 123, - "y": 83, - "left": -7.03125, - "top": 53.330873, - "right": -5.625, - "bottom": 52.48278, - "countries": [ - "ireland" - ] - }, - { - "x": 120, - "y": 84, - "left": -11.25, - "top": 52.48278, - "right": -9.84375, - "bottom": 51.618017, - "countries": [ - "ireland" - ] - }, - { - "x": 121, - "y": 84, - "left": -9.84375, - "top": 52.48278, - "right": -8.4375, - "bottom": 51.618017, - "countries": [ - "ireland" - ] - }, - { - "x": 122, - "y": 84, - "left": -8.4375, - "top": 52.48278, - "right": -7.03125, - "bottom": 51.618017, - "countries": [ - "ireland" - ] - }, - { - "x": 123, - "y": 84, - "left": -7.03125, - "top": 52.48278, - "right": -5.625, - "bottom": 51.618017, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 120, - "y": 85, - "left": -11.25, - "top": 51.618017, - "right": -9.84375, - "bottom": 50.736455, - "countries": [ - "ireland" - ] - }, - { - "x": 121, - "y": 85, - "left": -9.84375, - "top": 51.618017, - "right": -8.4375, - "bottom": 50.736455, - "countries": [ - "ireland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/isle_of_man.json b/wahoomc/resources/json/europe/isle_of_man.json deleted file mode 100644 index 3c599343..00000000 --- a/wahoomc/resources/json/europe/isle_of_man.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "x": 124, - "y": 81, - "left": -5.625, - "top": 54.977614, - "right": -4.21875, - "bottom": 54.162434, - "countries": [ - "isle_of_man", - "united_kingdom" - ] - }, - { - "x": 124, - "y": 82, - "left": -5.625, - "top": 54.162434, - "right": -4.21875, - "bottom": 53.330873, - "countries": [ - "isle_of_man", - "united_kingdom" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/italy.json b/wahoomc/resources/json/europe/italy.json deleted file mode 100644 index 16196c69..00000000 --- a/wahoomc/resources/json/europe/italy.json +++ /dev/null @@ -1,646 +0,0 @@ -[ - { - "x": 141, - "y": 96, - "left": 18.28125, - "top": 40.979898, - "right": 19.6875, - "bottom": 39.909736, - "countries": [ - "albania", - "italy" - ] - }, - { - "x": 136, - "y": 89, - "left": 11.25, - "top": 47.989922, - "right": 12.65625, - "bottom": 47.040182, - "countries": [ - "italy", - "germany", - "austria" - ] - }, - { - "x": 134, - "y": 90, - "left": 8.4375, - "top": 47.040182, - "right": 9.84375, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 135, - "y": 90, - "left": 9.84375, - "top": 47.040182, - "right": 11.25, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 136, - "y": 90, - "left": 11.25, - "top": 47.040182, - "right": 12.65625, - "bottom": 46.073231, - "countries": [ - "italy", - "austria" - ] - }, - { - "x": 137, - "y": 90, - "left": 12.65625, - "top": 47.040182, - "right": 14.0625, - "bottom": 46.073231, - "countries": [ - "italy", - "slovenia", - "austria" - ] - }, - { - "x": 137, - "y": 91, - "left": 12.65625, - "top": 46.073231, - "right": 14.0625, - "bottom": 45.089036, - "countries": [ - "slovenia", - "croatia", - "italy" - ] - }, - { - "x": 139, - "y": 94, - "left": 15.46875, - "top": 43.068888, - "right": 16.875, - "bottom": 42.032974, - "countries": [ - "croatia", - "italy" - ] - }, - { - "x": 132, - "y": 91, - "left": 5.625, - "top": 46.073231, - "right": 7.03125, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 133, - "y": 91, - "left": 7.03125, - "top": 46.073231, - "right": 8.4375, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 132, - "y": 92, - "left": 5.625, - "top": 45.089036, - "right": 7.03125, - "bottom": 44.087585, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 134, - "y": 94, - "left": 8.4375, - "top": 43.068888, - "right": 9.84375, - "bottom": 42.032974, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 134, - "y": 95, - "left": 8.4375, - "top": 42.032974, - "right": 9.84375, - "bottom": 40.979898, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 133, - "y": 92, - "left": 7.03125, - "top": 45.089036, - "right": 8.4375, - "bottom": 44.087585, - "countries": [ - "france", - "italy" - ] - }, - { - "x": 133, - "y": 93, - "left": 7.03125, - "top": 44.087585, - "right": 8.4375, - "bottom": 43.068888, - "countries": [ - "france", - "monaco", - "italy" - ] - }, - { - "x": 141, - "y": 97, - "left": 18.28125, - "top": 39.909736, - "right": 19.6875, - "bottom": 38.822591, - "countries": [ - "greece", - "italy" - ] - }, - { - "x": 133, - "y": 90, - "left": 7.03125, - "top": 47.040182, - "right": 8.4375, - "bottom": 46.073231, - "countries": [ - "switzerland", - "italy" - ] - }, - { - "x": 134, - "y": 91, - "left": 8.4375, - "top": 46.073231, - "right": 9.84375, - "bottom": 45.089036, - "countries": [ - "switzerland", - "italy" - ] - }, - { - "x": 135, - "y": 91, - "left": 9.84375, - "top": 46.073231, - "right": 11.25, - "bottom": 45.089036, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 91, - "left": 11.25, - "top": 46.073231, - "right": 12.65625, - "bottom": 45.089036, - "countries": [ - "italy" - ] - }, - { - "x": 134, - "y": 92, - "left": 8.4375, - "top": 45.089036, - "right": 9.84375, - "bottom": 44.087585, - "countries": [ - "italy" - ] - }, - { - "x": 135, - "y": 92, - "left": 9.84375, - "top": 45.089036, - "right": 11.25, - "bottom": 44.087585, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 92, - "left": 11.25, - "top": 45.089036, - "right": 12.65625, - "bottom": 44.087585, - "countries": [ - "italy" - ] - }, - { - "x": 134, - "y": 93, - "left": 8.4375, - "top": 44.087585, - "right": 9.84375, - "bottom": 43.068888, - "countries": [ - "italy" - ] - }, - { - "x": 135, - "y": 93, - "left": 9.84375, - "top": 44.087585, - "right": 11.25, - "bottom": 43.068888, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 93, - "left": 11.25, - "top": 44.087585, - "right": 12.65625, - "bottom": 43.068888, - "countries": [ - "san_marino", - "italy" - ] - }, - { - "x": 137, - "y": 93, - "left": 12.65625, - "top": 44.087585, - "right": 14.0625, - "bottom": 43.068888, - "countries": [ - "italy" - ] - }, - { - "x": 135, - "y": 94, - "left": 9.84375, - "top": 43.068888, - "right": 11.25, - "bottom": 42.032974, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 94, - "left": 11.25, - "top": 43.068888, - "right": 12.65625, - "bottom": 42.032974, - "countries": [ - "italy" - ] - }, - { - "x": 137, - "y": 94, - "left": 12.65625, - "top": 43.068888, - "right": 14.0625, - "bottom": 42.032974, - "countries": [ - "italy" - ] - }, - { - "x": 138, - "y": 94, - "left": 14.0625, - "top": 43.068888, - "right": 15.46875, - "bottom": 42.032974, - "countries": [ - "italy" - ] - }, - { - "x": 133, - "y": 95, - "left": 7.03125, - "top": 42.032974, - "right": 8.4375, - "bottom": 40.979898, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 95, - "left": 11.25, - "top": 42.032974, - "right": 12.65625, - "bottom": 40.979898, - "countries": [ - "vatican_city", - "italy" - ] - }, - { - "x": 137, - "y": 95, - "left": 12.65625, - "top": 42.032974, - "right": 14.0625, - "bottom": 40.979898, - "countries": [ - "italy" - ] - }, - { - "x": 138, - "y": 95, - "left": 14.0625, - "top": 42.032974, - "right": 15.46875, - "bottom": 40.979898, - "countries": [ - "italy" - ] - }, - { - "x": 139, - "y": 95, - "left": 15.46875, - "top": 42.032974, - "right": 16.875, - "bottom": 40.979898, - "countries": [ - "italy" - ] - }, - { - "x": 140, - "y": 95, - "left": 16.875, - "top": 42.032974, - "right": 18.28125, - "bottom": 40.979898, - "countries": [ - "italy" - ] - }, - { - "x": 133, - "y": 96, - "left": 7.03125, - "top": 40.979898, - "right": 8.4375, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 134, - "y": 96, - "left": 8.4375, - "top": 40.979898, - "right": 9.84375, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 137, - "y": 96, - "left": 12.65625, - "top": 40.979898, - "right": 14.0625, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 138, - "y": 96, - "left": 14.0625, - "top": 40.979898, - "right": 15.46875, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 139, - "y": 96, - "left": 15.46875, - "top": 40.979898, - "right": 16.875, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 140, - "y": 96, - "left": 16.875, - "top": 40.979898, - "right": 18.28125, - "bottom": 39.909736, - "countries": [ - "italy" - ] - }, - { - "x": 133, - "y": 97, - "left": 7.03125, - "top": 39.909736, - "right": 8.4375, - "bottom": 38.822591, - "countries": [ - "italy" - ] - }, - { - "x": 134, - "y": 97, - "left": 8.4375, - "top": 39.909736, - "right": 9.84375, - "bottom": 38.822591, - "countries": [ - "italy" - ] - }, - { - "x": 139, - "y": 97, - "left": 15.46875, - "top": 39.909736, - "right": 16.875, - "bottom": 38.822591, - "countries": [ - "italy" - ] - }, - { - "x": 140, - "y": 97, - "left": 16.875, - "top": 39.909736, - "right": 18.28125, - "bottom": 38.822591, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 98, - "left": 11.25, - "top": 38.822591, - "right": 12.65625, - "bottom": 37.71859, - "countries": [ - "italy" - ] - }, - { - "x": 137, - "y": 98, - "left": 12.65625, - "top": 38.822591, - "right": 14.0625, - "bottom": 37.71859, - "countries": [ - "italy" - ] - }, - { - "x": 138, - "y": 98, - "left": 14.0625, - "top": 38.822591, - "right": 15.46875, - "bottom": 37.71859, - "countries": [ - "italy" - ] - }, - { - "x": 139, - "y": 98, - "left": 15.46875, - "top": 38.822591, - "right": 16.875, - "bottom": 37.71859, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 99, - "left": 11.25, - "top": 37.71859, - "right": 12.65625, - "bottom": 36.597889, - "countries": [ - "italy" - ] - }, - { - "x": 137, - "y": 99, - "left": 12.65625, - "top": 37.71859, - "right": 14.0625, - "bottom": 36.597889, - "countries": [ - "italy" - ] - }, - { - "x": 138, - "y": 99, - "left": 14.0625, - "top": 37.71859, - "right": 15.46875, - "bottom": 36.597889, - "countries": [ - "italy" - ] - }, - { - "x": 136, - "y": 100, - "left": 11.25, - "top": 36.597889, - "right": 12.65625, - "bottom": 35.46067, - "countries": [ - "italy" - ] - }, - { - "x": 137, - "y": 100, - "left": 12.65625, - "top": 36.597889, - "right": 14.0625, - "bottom": 35.46067, - "countries": [ - "italy" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/jersey.json b/wahoomc/resources/json/europe/jersey.json deleted file mode 100644 index 2ae0348b..00000000 --- a/wahoomc/resources/json/europe/jersey.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 126, - "y": 87, - "left": -2.8125, - "top": 49.837982, - "right": -1.40625, - "bottom": 48.922499, - "countries": [ - "guernsey", - "jersey", - "france" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/latvia.json b/wahoomc/resources/json/europe/latvia.json deleted file mode 100644 index 37693e61..00000000 --- a/wahoomc/resources/json/europe/latvia.json +++ /dev/null @@ -1,266 +0,0 @@ -[ - { - "x": 147, - "y": 79, - "left": 26.71875, - "top": 56.559482, - "right": 28.125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 148, - "y": 79, - "left": 28.125, - "top": 56.559482, - "right": 29.53125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 146, - "y": 80, - "left": 25.3125, - "top": 55.776573, - "right": 26.71875, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 147, - "y": 80, - "left": 26.71875, - "top": 55.776573, - "right": 28.125, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 145, - "y": 76, - "left": 23.90625, - "top": 58.813742, - "right": 25.3125, - "bottom": 58.077876, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 143, - "y": 77, - "left": 21.09375, - "top": 58.077876, - "right": 22.5, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 144, - "y": 77, - "left": 22.5, - "top": 58.077876, - "right": 23.90625, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 145, - "y": 77, - "left": 23.90625, - "top": 58.077876, - "right": 25.3125, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 146, - "y": 77, - "left": 25.3125, - "top": 58.077876, - "right": 26.71875, - "bottom": 57.326521, - "countries": [ - "estonia", - "latvia" - ] - }, - { - "x": 147, - "y": 77, - "left": 26.71875, - "top": 58.077876, - "right": 28.125, - "bottom": 57.326521, - "countries": [ - "russia", - "estonia", - "latvia" - ] - }, - { - "x": 142, - "y": 78, - "left": 19.6875, - "top": 57.326521, - "right": 21.09375, - "bottom": 56.559482, - "countries": [ - "latvia" - ] - }, - { - "x": 143, - "y": 78, - "left": 21.09375, - "top": 57.326521, - "right": 22.5, - "bottom": 56.559482, - "countries": [ - "latvia" - ] - }, - { - "x": 144, - "y": 78, - "left": 22.5, - "top": 57.326521, - "right": 23.90625, - "bottom": 56.559482, - "countries": [ - "latvia" - ] - }, - { - "x": 145, - "y": 78, - "left": 23.90625, - "top": 57.326521, - "right": 25.3125, - "bottom": 56.559482, - "countries": [ - "latvia" - ] - }, - { - "x": 146, - "y": 78, - "left": 25.3125, - "top": 57.326521, - "right": 26.71875, - "bottom": 56.559482, - "countries": [ - "latvia" - ] - }, - { - "x": 147, - "y": 78, - "left": 26.71875, - "top": 57.326521, - "right": 28.125, - "bottom": 56.559482, - "countries": [ - "russia", - "latvia" - ] - }, - { - "x": 148, - "y": 78, - "left": 28.125, - "top": 57.326521, - "right": 29.53125, - "bottom": 56.559482, - "countries": [ - "russia", - "latvia" - ] - }, - { - "x": 142, - "y": 79, - "left": 19.6875, - "top": 56.559482, - "right": 21.09375, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 143, - "y": 79, - "left": 21.09375, - "top": 56.559482, - "right": 22.5, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 144, - "y": 79, - "left": 22.5, - "top": 56.559482, - "right": 23.90625, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 145, - "y": 79, - "left": 23.90625, - "top": 56.559482, - "right": 25.3125, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 146, - "y": 79, - "left": 25.3125, - "top": 56.559482, - "right": 26.71875, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/liechtenstein.json b/wahoomc/resources/json/europe/liechtenstein.json deleted file mode 100644 index e0f5f9fd..00000000 --- a/wahoomc/resources/json/europe/liechtenstein.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - { - "x": 134, - "y": 89, - "left": 8.4375, - "top": 47.989922, - "right": 9.84375, - "bottom": 47.040182, - "countries": [ - "liechtenstein", - "germany", - "austria", - "switzerland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/lithuania.json b/wahoomc/resources/json/europe/lithuania.json deleted file mode 100644 index 1de53da0..00000000 --- a/wahoomc/resources/json/europe/lithuania.json +++ /dev/null @@ -1,209 +0,0 @@ -[ - { - "x": 146, - "y": 80, - "left": 25.3125, - "top": 55.776573, - "right": 26.71875, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 147, - "y": 80, - "left": 26.71875, - "top": 55.776573, - "right": 28.125, - "bottom": 54.977614, - "countries": [ - "belarus", - "latvia", - "lithuania" - ] - }, - { - "x": 145, - "y": 81, - "left": 23.90625, - "top": 54.977614, - "right": 25.3125, - "bottom": 54.162434, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 146, - "y": 81, - "left": 25.3125, - "top": 54.977614, - "right": 26.71875, - "bottom": 54.162434, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 144, - "y": 82, - "left": 22.5, - "top": 54.162434, - "right": 23.90625, - "bottom": 53.330873, - "countries": [ - "belarus", - "poland", - "lithuania" - ] - }, - { - "x": 145, - "y": 82, - "left": 23.90625, - "top": 54.162434, - "right": 25.3125, - "bottom": 53.330873, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 146, - "y": 82, - "left": 25.3125, - "top": 54.162434, - "right": 26.71875, - "bottom": 53.330873, - "countries": [ - "belarus", - "lithuania" - ] - }, - { - "x": 142, - "y": 79, - "left": 19.6875, - "top": 56.559482, - "right": 21.09375, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 143, - "y": 79, - "left": 21.09375, - "top": 56.559482, - "right": 22.5, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 144, - "y": 79, - "left": 22.5, - "top": 56.559482, - "right": 23.90625, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 145, - "y": 79, - "left": 23.90625, - "top": 56.559482, - "right": 25.3125, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 146, - "y": 79, - "left": 25.3125, - "top": 56.559482, - "right": 26.71875, - "bottom": 55.776573, - "countries": [ - "latvia", - "lithuania" - ] - }, - { - "x": 142, - "y": 80, - "left": 19.6875, - "top": 55.776573, - "right": 21.09375, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 143, - "y": 80, - "left": 21.09375, - "top": 55.776573, - "right": 22.5, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 144, - "y": 80, - "left": 22.5, - "top": 55.776573, - "right": 23.90625, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 145, - "y": 80, - "left": 23.90625, - "top": 55.776573, - "right": 25.3125, - "bottom": 54.977614, - "countries": [ - "lithuania" - ] - }, - { - "x": 144, - "y": 81, - "left": 22.5, - "top": 54.977614, - "right": 23.90625, - "bottom": 54.162434, - "countries": [ - "russia", - "poland", - "lithuania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/luxembourg.json b/wahoomc/resources/json/europe/luxembourg.json deleted file mode 100644 index 0cba593c..00000000 --- a/wahoomc/resources/json/europe/luxembourg.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "x": 132, - "y": 86, - "left": 5.625, - "top": 50.736455, - "right": 7.03125, - "bottom": 49.837982, - "countries": [ - "luxembourg", - "belgium", - "germany" - ] - }, - { - "x": 132, - "y": 87, - "left": 5.625, - "top": 49.837982, - "right": 7.03125, - "bottom": 48.922499, - "countries": [ - "luxembourg", - "france", - "belgium", - "germany" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/macedonia.json b/wahoomc/resources/json/europe/macedonia.json deleted file mode 100644 index 476633e3..00000000 --- a/wahoomc/resources/json/europe/macedonia.json +++ /dev/null @@ -1,105 +0,0 @@ -[ - { - "x": 142, - "y": 94, - "left": 19.6875, - "top": 43.068888, - "right": 21.09375, - "bottom": 42.032974, - "countries": [ - "montenegro", - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 142, - "y": 95, - "left": 19.6875, - "top": 42.032974, - "right": 21.09375, - "bottom": 40.979898, - "countries": [ - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 142, - "y": 96, - "left": 19.6875, - "top": 40.979898, - "right": 21.09375, - "bottom": 39.909736, - "countries": [ - "macedonia", - "albania", - "greece" - ] - }, - { - "x": 143, - "y": 94, - "left": 21.09375, - "top": 43.068888, - "right": 22.5, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 144, - "y": 94, - "left": 22.5, - "top": 43.068888, - "right": 23.90625, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 144, - "y": 95, - "left": 22.5, - "top": 42.032974, - "right": 23.90625, - "bottom": 40.979898, - "countries": [ - "bulgaria", - "macedonia", - "greece" - ] - }, - { - "x": 143, - "y": 95, - "left": 21.09375, - "top": 42.032974, - "right": 22.5, - "bottom": 40.979898, - "countries": [ - "macedonia", - "greece" - ] - }, - { - "x": 143, - "y": 96, - "left": 21.09375, - "top": 40.979898, - "right": 22.5, - "bottom": 39.909736, - "countries": [ - "macedonia", - "greece" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/malta.json b/wahoomc/resources/json/europe/malta.json deleted file mode 100644 index 3639da2a..00000000 --- a/wahoomc/resources/json/europe/malta.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 138, - "y": 100, - "left": 14.0625, - "top": 36.597889, - "right": 15.46875, - "bottom": 35.46067, - "countries": [ - "malta" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/moldova.json b/wahoomc/resources/json/europe/moldova.json deleted file mode 100644 index b6bb0b89..00000000 --- a/wahoomc/resources/json/europe/moldova.json +++ /dev/null @@ -1,138 +0,0 @@ -[ - { - "x": 146, - "y": 88, - "left": 25.3125, - "top": 48.922499, - "right": 26.71875, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 147, - "y": 88, - "left": 26.71875, - "top": 48.922499, - "right": 28.125, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 148, - "y": 88, - "left": 28.125, - "top": 48.922499, - "right": 29.53125, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 147, - "y": 89, - "left": 26.71875, - "top": 47.989922, - "right": 28.125, - "bottom": 47.040182, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 148, - "y": 89, - "left": 28.125, - "top": 47.989922, - "right": 29.53125, - "bottom": 47.040182, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 149, - "y": 89, - "left": 29.53125, - "top": 47.989922, - "right": 30.9375, - "bottom": 47.040182, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 147, - "y": 90, - "left": 26.71875, - "top": 47.040182, - "right": 28.125, - "bottom": 46.073231, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 148, - "y": 90, - "left": 28.125, - "top": 47.040182, - "right": 29.53125, - "bottom": 46.073231, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 149, - "y": 90, - "left": 29.53125, - "top": 47.040182, - "right": 30.9375, - "bottom": 46.073231, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 147, - "y": 91, - "left": 26.71875, - "top": 46.073231, - "right": 28.125, - "bottom": 45.089036, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 148, - "y": 91, - "left": 28.125, - "top": 46.073231, - "right": 29.53125, - "bottom": 45.089036, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/monaco.json b/wahoomc/resources/json/europe/monaco.json deleted file mode 100644 index ae0c80f6..00000000 --- a/wahoomc/resources/json/europe/monaco.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 133, - "y": 93, - "left": 7.03125, - "top": 44.087585, - "right": 8.4375, - "bottom": 43.068888, - "countries": [ - "france", - "monaco", - "italy" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/montenegro.json b/wahoomc/resources/json/europe/montenegro.json deleted file mode 100644 index 39938ce5..00000000 --- a/wahoomc/resources/json/europe/montenegro.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "x": 141, - "y": 94, - "left": 18.28125, - "top": 43.068888, - "right": 19.6875, - "bottom": 42.032974, - "countries": [ - "montenegro", - "bosnia_and_herzegovina", - "albania", - "croatia" - ] - }, - { - "x": 142, - "y": 94, - "left": 19.6875, - "top": 43.068888, - "right": 21.09375, - "bottom": 42.032974, - "countries": [ - "montenegro", - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 141, - "y": 95, - "left": 18.28125, - "top": 42.032974, - "right": 19.6875, - "bottom": 40.979898, - "countries": [ - "montenegro", - "albania" - ] - }, - { - "x": 141, - "y": 93, - "left": 18.28125, - "top": 44.087585, - "right": 19.6875, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "montenegro", - "serbia" - ] - }, - { - "x": 142, - "y": 93, - "left": 19.6875, - "top": 44.087585, - "right": 21.09375, - "bottom": 43.068888, - "countries": [ - "serbia", - "montenegro" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/netherlands.json b/wahoomc/resources/json/europe/netherlands.json deleted file mode 100644 index 301b4432..00000000 --- a/wahoomc/resources/json/europe/netherlands.json +++ /dev/null @@ -1,144 +0,0 @@ -[ - { - "x": 130, - "y": 85, - "left": 2.8125, - "top": 51.618017, - "right": 4.21875, - "bottom": 50.736455, - "countries": [ - "france", - "belgium", - "netherlands" - ] - }, - { - "x": 131, - "y": 85, - "left": 4.21875, - "top": 51.618017, - "right": 5.625, - "bottom": 50.736455, - "countries": [ - "netherlands", - "belgium" - ] - }, - { - "x": 132, - "y": 85, - "left": 5.625, - "top": 51.618017, - "right": 7.03125, - "bottom": 50.736455, - "countries": [ - "netherlands", - "belgium", - "germany" - ] - }, - { - "x": 132, - "y": 82, - "left": 5.625, - "top": 54.162434, - "right": 7.03125, - "bottom": 53.330873, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 132, - "y": 83, - "left": 5.625, - "top": 53.330873, - "right": 7.03125, - "bottom": 52.48278, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 133, - "y": 83, - "left": 7.03125, - "top": 53.330873, - "right": 8.4375, - "bottom": 52.48278, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 132, - "y": 84, - "left": 5.625, - "top": 52.48278, - "right": 7.03125, - "bottom": 51.618017, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 133, - "y": 84, - "left": 7.03125, - "top": 52.48278, - "right": 8.4375, - "bottom": 51.618017, - "countries": [ - "netherlands", - "germany" - ] - }, - { - "x": 131, - "y": 82, - "left": 4.21875, - "top": 54.162434, - "right": 5.625, - "bottom": 53.330873, - "countries": [ - "netherlands" - ] - }, - { - "x": 131, - "y": 83, - "left": 4.21875, - "top": 53.330873, - "right": 5.625, - "bottom": 52.48278, - "countries": [ - "netherlands" - ] - }, - { - "x": 130, - "y": 84, - "left": 2.8125, - "top": 52.48278, - "right": 4.21875, - "bottom": 51.618017, - "countries": [ - "netherlands" - ] - }, - { - "x": 131, - "y": 84, - "left": 4.21875, - "top": 52.48278, - "right": 5.625, - "bottom": 51.618017, - "countries": [ - "netherlands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/norway.json b/wahoomc/resources/json/europe/norway.json deleted file mode 100644 index b0e15a99..00000000 --- a/wahoomc/resources/json/europe/norway.json +++ /dev/null @@ -1,1782 +0,0 @@ -[ - { - "x": 146, - "y": 57, - "left": 25.3125, - "top": 70.140364, - "right": 26.71875, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 147, - "y": 57, - "left": 26.71875, - "top": 70.140364, - "right": 28.125, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 57, - "left": 28.125, - "top": 70.140364, - "right": 29.53125, - "bottom": 69.657086, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 142, - "y": 58, - "left": 19.6875, - "top": 69.657086, - "right": 21.09375, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 143, - "y": 58, - "left": 21.09375, - "top": 69.657086, - "right": 22.5, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 146, - "y": 58, - "left": 25.3125, - "top": 69.657086, - "right": 26.71875, - "bottom": 69.162558, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 58, - "left": 28.125, - "top": 69.657086, - "right": 29.53125, - "bottom": 69.162558, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 142, - "y": 59, - "left": 19.6875, - "top": 69.162558, - "right": 21.09375, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 143, - "y": 59, - "left": 21.09375, - "top": 69.162558, - "right": 22.5, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 59, - "left": 22.5, - "top": 69.162558, - "right": 23.90625, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 145, - "y": 59, - "left": 23.90625, - "top": 69.162558, - "right": 25.3125, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 146, - "y": 59, - "left": 25.3125, - "top": 69.162558, - "right": 26.71875, - "bottom": 68.656555, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 59, - "left": 28.125, - "top": 69.162558, - "right": 29.53125, - "bottom": 68.656555, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 144, - "y": 60, - "left": 22.5, - "top": 68.656555, - "right": 23.90625, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 60, - "left": 23.90625, - "top": 68.656555, - "right": 25.3125, - "bottom": 68.138852, - "countries": [ - "norway", - "finland" - ] - }, - { - "x": 141, - "y": 29, - "left": 18.28125, - "top": 79.935918, - "right": 19.6875, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 29, - "left": 19.6875, - "top": 79.935918, - "right": 21.09375, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 141, - "y": 30, - "left": 18.28125, - "top": 79.687184, - "right": 19.6875, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 30, - "left": 19.6875, - "top": 79.687184, - "right": 21.09375, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 31, - "left": 21.09375, - "top": 79.432371, - "right": 22.5, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 32, - "left": 21.09375, - "top": 79.171335, - "right": 22.5, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 148, - "y": 33, - "left": 28.125, - "top": 78.903929, - "right": 29.53125, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 35, - "left": 19.6875, - "top": 78.349411, - "right": 21.09375, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 35, - "left": 21.09375, - "top": 78.349411, - "right": 22.5, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 145, - "y": 36, - "left": 23.90625, - "top": 78.061989, - "right": 25.3125, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 145, - "y": 37, - "left": 23.90625, - "top": 77.767582, - "right": 25.3125, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 38, - "left": 21.09375, - "top": 77.466028, - "right": 22.5, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 144, - "y": 38, - "left": 22.5, - "top": 77.466028, - "right": 23.90625, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 39, - "left": 21.09375, - "top": 77.157163, - "right": 22.5, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 145, - "y": 54, - "left": 23.90625, - "top": 71.524909, - "right": 25.3125, - "bottom": 71.074056, - "countries": [ - "norway" - ] - }, - { - "x": 146, - "y": 54, - "left": 25.3125, - "top": 71.524909, - "right": 26.71875, - "bottom": 71.074056, - "countries": [ - "norway" - ] - }, - { - "x": 147, - "y": 54, - "left": 26.71875, - "top": 71.524909, - "right": 28.125, - "bottom": 71.074056, - "countries": [ - "norway" - ] - }, - { - "x": 148, - "y": 54, - "left": 28.125, - "top": 71.524909, - "right": 29.53125, - "bottom": 71.074056, - "countries": [ - "norway" - ] - }, - { - "x": 143, - "y": 55, - "left": 21.09375, - "top": 71.074056, - "right": 22.5, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 144, - "y": 55, - "left": 22.5, - "top": 71.074056, - "right": 23.90625, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 145, - "y": 55, - "left": 23.90625, - "top": 71.074056, - "right": 25.3125, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 146, - "y": 55, - "left": 25.3125, - "top": 71.074056, - "right": 26.71875, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 147, - "y": 55, - "left": 26.71875, - "top": 71.074056, - "right": 28.125, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 148, - "y": 55, - "left": 28.125, - "top": 71.074056, - "right": 29.53125, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 149, - "y": 55, - "left": 29.53125, - "top": 71.074056, - "right": 30.9375, - "bottom": 70.612614, - "countries": [ - "norway" - ] - }, - { - "x": 141, - "y": 56, - "left": 18.28125, - "top": 70.612614, - "right": 19.6875, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 142, - "y": 56, - "left": 19.6875, - "top": 70.612614, - "right": 21.09375, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 143, - "y": 56, - "left": 21.09375, - "top": 70.612614, - "right": 22.5, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 144, - "y": 56, - "left": 22.5, - "top": 70.612614, - "right": 23.90625, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 145, - "y": 56, - "left": 23.90625, - "top": 70.612614, - "right": 25.3125, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 146, - "y": 56, - "left": 25.3125, - "top": 70.612614, - "right": 26.71875, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 147, - "y": 56, - "left": 26.71875, - "top": 70.612614, - "right": 28.125, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 148, - "y": 56, - "left": 28.125, - "top": 70.612614, - "right": 29.53125, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 149, - "y": 56, - "left": 29.53125, - "top": 70.612614, - "right": 30.9375, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 150, - "y": 56, - "left": 30.9375, - "top": 70.612614, - "right": 32.34375, - "bottom": 70.140364, - "countries": [ - "norway" - ] - }, - { - "x": 140, - "y": 57, - "left": 16.875, - "top": 70.140364, - "right": 18.28125, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 141, - "y": 57, - "left": 18.28125, - "top": 70.140364, - "right": 19.6875, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 142, - "y": 57, - "left": 19.6875, - "top": 70.140364, - "right": 21.09375, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 143, - "y": 57, - "left": 21.09375, - "top": 70.140364, - "right": 22.5, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 144, - "y": 57, - "left": 22.5, - "top": 70.140364, - "right": 23.90625, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 145, - "y": 57, - "left": 23.90625, - "top": 70.140364, - "right": 25.3125, - "bottom": 69.657086, - "countries": [ - "norway" - ] - }, - { - "x": 149, - "y": 57, - "left": 29.53125, - "top": 70.140364, - "right": 30.9375, - "bottom": 69.657086, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 139, - "y": 58, - "left": 15.46875, - "top": 69.657086, - "right": 16.875, - "bottom": 69.162558, - "countries": [ - "norway" - ] - }, - { - "x": 140, - "y": 58, - "left": 16.875, - "top": 69.657086, - "right": 18.28125, - "bottom": 69.162558, - "countries": [ - "norway" - ] - }, - { - "x": 141, - "y": 58, - "left": 18.28125, - "top": 69.657086, - "right": 19.6875, - "bottom": 69.162558, - "countries": [ - "norway" - ] - }, - { - "x": 144, - "y": 58, - "left": 22.5, - "top": 69.657086, - "right": 23.90625, - "bottom": 69.162558, - "countries": [ - "norway" - ] - }, - { - "x": 145, - "y": 58, - "left": 23.90625, - "top": 69.657086, - "right": 25.3125, - "bottom": 69.162558, - "countries": [ - "norway" - ] - }, - { - "x": 149, - "y": 58, - "left": 29.53125, - "top": 69.657086, - "right": 30.9375, - "bottom": 69.162558, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 150, - "y": 58, - "left": 30.9375, - "top": 69.657086, - "right": 32.34375, - "bottom": 69.162558, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 138, - "y": 59, - "left": 14.0625, - "top": 69.162558, - "right": 15.46875, - "bottom": 68.656555, - "countries": [ - "norway" - ] - }, - { - "x": 139, - "y": 59, - "left": 15.46875, - "top": 69.162558, - "right": 16.875, - "bottom": 68.656555, - "countries": [ - "norway" - ] - }, - { - "x": 140, - "y": 59, - "left": 16.875, - "top": 69.162558, - "right": 18.28125, - "bottom": 68.656555, - "countries": [ - "norway" - ] - }, - { - "x": 141, - "y": 59, - "left": 18.28125, - "top": 69.162558, - "right": 19.6875, - "bottom": 68.656555, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 60, - "left": 12.65625, - "top": 68.656555, - "right": 14.0625, - "bottom": 68.138852, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 60, - "left": 14.0625, - "top": 68.656555, - "right": 15.46875, - "bottom": 68.138852, - "countries": [ - "norway" - ] - }, - { - "x": 139, - "y": 60, - "left": 15.46875, - "top": 68.656555, - "right": 16.875, - "bottom": 68.138852, - "countries": [ - "norway" - ] - }, - { - "x": 140, - "y": 60, - "left": 16.875, - "top": 68.656555, - "right": 18.28125, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 141, - "y": 60, - "left": 18.28125, - "top": 68.656555, - "right": 19.6875, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 142, - "y": 60, - "left": 19.6875, - "top": 68.656555, - "right": 21.09375, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 61, - "left": 11.25, - "top": 68.138852, - "right": 12.65625, - "bottom": 67.609221, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 61, - "left": 12.65625, - "top": 68.138852, - "right": 14.0625, - "bottom": 67.609221, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 61, - "left": 14.0625, - "top": 68.138852, - "right": 15.46875, - "bottom": 67.609221, - "countries": [ - "norway" - ] - }, - { - "x": 139, - "y": 61, - "left": 15.46875, - "top": 68.138852, - "right": 16.875, - "bottom": 67.609221, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 140, - "y": 61, - "left": 16.875, - "top": 68.138852, - "right": 18.28125, - "bottom": 67.609221, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 62, - "left": 11.25, - "top": 67.609221, - "right": 12.65625, - "bottom": 67.067433, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 62, - "left": 12.65625, - "top": 67.609221, - "right": 14.0625, - "bottom": 67.067433, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 62, - "left": 14.0625, - "top": 67.609221, - "right": 15.46875, - "bottom": 67.067433, - "countries": [ - "norway" - ] - }, - { - "x": 139, - "y": 62, - "left": 15.46875, - "top": 67.609221, - "right": 16.875, - "bottom": 67.067433, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 63, - "left": 11.25, - "top": 67.067433, - "right": 12.65625, - "bottom": 66.51326, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 63, - "left": 12.65625, - "top": 67.067433, - "right": 14.0625, - "bottom": 66.51326, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 63, - "left": 14.0625, - "top": 67.067433, - "right": 15.46875, - "bottom": 66.51326, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 63, - "left": 15.46875, - "top": 67.067433, - "right": 16.875, - "bottom": 66.51326, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 64, - "left": 11.25, - "top": 66.51326, - "right": 12.65625, - "bottom": 65.946472, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 64, - "left": 12.65625, - "top": 66.51326, - "right": 14.0625, - "bottom": 65.946472, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 64, - "left": 14.0625, - "top": 66.51326, - "right": 15.46875, - "bottom": 65.946472, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 64, - "left": 15.46875, - "top": 66.51326, - "right": 16.875, - "bottom": 65.946472, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 65, - "left": 11.25, - "top": 65.946472, - "right": 12.65625, - "bottom": 65.366837, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 65, - "left": 12.65625, - "top": 65.946472, - "right": 14.0625, - "bottom": 65.366837, - "countries": [ - "norway" - ] - }, - { - "x": 138, - "y": 65, - "left": 14.0625, - "top": 65.946472, - "right": 15.46875, - "bottom": 65.366837, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 135, - "y": 66, - "left": 9.84375, - "top": 65.366837, - "right": 11.25, - "bottom": 64.774125, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 66, - "left": 11.25, - "top": 65.366837, - "right": 12.65625, - "bottom": 64.774125, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 66, - "left": 12.65625, - "top": 65.366837, - "right": 14.0625, - "bottom": 64.774125, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 66, - "left": 14.0625, - "top": 65.366837, - "right": 15.46875, - "bottom": 64.774125, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 135, - "y": 67, - "left": 9.84375, - "top": 64.774125, - "right": 11.25, - "bottom": 64.168107, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 67, - "left": 11.25, - "top": 64.774125, - "right": 12.65625, - "bottom": 64.168107, - "countries": [ - "norway" - ] - }, - { - "x": 137, - "y": 67, - "left": 12.65625, - "top": 64.774125, - "right": 14.0625, - "bottom": 64.168107, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 67, - "left": 14.0625, - "top": 64.774125, - "right": 15.46875, - "bottom": 64.168107, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 133, - "y": 68, - "left": 7.03125, - "top": 64.168107, - "right": 8.4375, - "bottom": 63.548552, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 68, - "left": 8.4375, - "top": 64.168107, - "right": 9.84375, - "bottom": 63.548552, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 68, - "left": 9.84375, - "top": 64.168107, - "right": 11.25, - "bottom": 63.548552, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 68, - "left": 11.25, - "top": 64.168107, - "right": 12.65625, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 68, - "left": 12.65625, - "top": 64.168107, - "right": 14.0625, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 68, - "left": 14.0625, - "top": 64.168107, - "right": 15.46875, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 132, - "y": 69, - "left": 5.625, - "top": 63.548552, - "right": 7.03125, - "bottom": 62.915233, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 69, - "left": 7.03125, - "top": 63.548552, - "right": 8.4375, - "bottom": 62.915233, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 69, - "left": 8.4375, - "top": 63.548552, - "right": 9.84375, - "bottom": 62.915233, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 69, - "left": 9.84375, - "top": 63.548552, - "right": 11.25, - "bottom": 62.915233, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 69, - "left": 11.25, - "top": 63.548552, - "right": 12.65625, - "bottom": 62.915233, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 70, - "left": 4.21875, - "top": 62.915233, - "right": 5.625, - "bottom": 62.267923, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 70, - "left": 5.625, - "top": 62.915233, - "right": 7.03125, - "bottom": 62.267923, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 70, - "left": 7.03125, - "top": 62.915233, - "right": 8.4375, - "bottom": 62.267923, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 70, - "left": 8.4375, - "top": 62.915233, - "right": 9.84375, - "bottom": 62.267923, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 70, - "left": 9.84375, - "top": 62.915233, - "right": 11.25, - "bottom": 62.267923, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 70, - "left": 11.25, - "top": 62.915233, - "right": 12.65625, - "bottom": 62.267923, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 71, - "left": 4.21875, - "top": 62.267923, - "right": 5.625, - "bottom": 61.606396, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 71, - "left": 5.625, - "top": 62.267923, - "right": 7.03125, - "bottom": 61.606396, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 71, - "left": 7.03125, - "top": 62.267923, - "right": 8.4375, - "bottom": 61.606396, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 71, - "left": 8.4375, - "top": 62.267923, - "right": 9.84375, - "bottom": 61.606396, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 71, - "left": 9.84375, - "top": 62.267923, - "right": 11.25, - "bottom": 61.606396, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 71, - "left": 11.25, - "top": 62.267923, - "right": 12.65625, - "bottom": 61.606396, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 72, - "left": 4.21875, - "top": 61.606396, - "right": 5.625, - "bottom": 60.930432, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 72, - "left": 5.625, - "top": 61.606396, - "right": 7.03125, - "bottom": 60.930432, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 72, - "left": 7.03125, - "top": 61.606396, - "right": 8.4375, - "bottom": 60.930432, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 72, - "left": 8.4375, - "top": 61.606396, - "right": 9.84375, - "bottom": 60.930432, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 72, - "left": 9.84375, - "top": 61.606396, - "right": 11.25, - "bottom": 60.930432, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 72, - "left": 11.25, - "top": 61.606396, - "right": 12.65625, - "bottom": 60.930432, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 72, - "left": 12.65625, - "top": 61.606396, - "right": 14.0625, - "bottom": 60.930432, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 73, - "left": 4.21875, - "top": 60.930432, - "right": 5.625, - "bottom": 60.239811, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 73, - "left": 5.625, - "top": 60.930432, - "right": 7.03125, - "bottom": 60.239811, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 73, - "left": 7.03125, - "top": 60.930432, - "right": 8.4375, - "bottom": 60.239811, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 73, - "left": 8.4375, - "top": 60.930432, - "right": 9.84375, - "bottom": 60.239811, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 73, - "left": 9.84375, - "top": 60.930432, - "right": 11.25, - "bottom": 60.239811, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 73, - "left": 11.25, - "top": 60.930432, - "right": 12.65625, - "bottom": 60.239811, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 74, - "left": 4.21875, - "top": 60.239811, - "right": 5.625, - "bottom": 59.534318, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 74, - "left": 5.625, - "top": 60.239811, - "right": 7.03125, - "bottom": 59.534318, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 74, - "left": 7.03125, - "top": 60.239811, - "right": 8.4375, - "bottom": 59.534318, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 74, - "left": 8.4375, - "top": 60.239811, - "right": 9.84375, - "bottom": 59.534318, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 74, - "left": 9.84375, - "top": 60.239811, - "right": 11.25, - "bottom": 59.534318, - "countries": [ - "norway" - ] - }, - { - "x": 136, - "y": 74, - "left": 11.25, - "top": 60.239811, - "right": 12.65625, - "bottom": 59.534318, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 75, - "left": 4.21875, - "top": 59.534318, - "right": 5.625, - "bottom": 58.813742, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 75, - "left": 5.625, - "top": 59.534318, - "right": 7.03125, - "bottom": 58.813742, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 75, - "left": 7.03125, - "top": 59.534318, - "right": 8.4375, - "bottom": 58.813742, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 75, - "left": 8.4375, - "top": 59.534318, - "right": 9.84375, - "bottom": 58.813742, - "countries": [ - "norway" - ] - }, - { - "x": 135, - "y": 75, - "left": 9.84375, - "top": 59.534318, - "right": 11.25, - "bottom": 58.813742, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 75, - "left": 11.25, - "top": 59.534318, - "right": 12.65625, - "bottom": 58.813742, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 131, - "y": 76, - "left": 4.21875, - "top": 58.813742, - "right": 5.625, - "bottom": 58.077876, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 76, - "left": 5.625, - "top": 58.813742, - "right": 7.03125, - "bottom": 58.077876, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 76, - "left": 7.03125, - "top": 58.813742, - "right": 8.4375, - "bottom": 58.077876, - "countries": [ - "norway" - ] - }, - { - "x": 134, - "y": 76, - "left": 8.4375, - "top": 58.813742, - "right": 9.84375, - "bottom": 58.077876, - "countries": [ - "norway" - ] - }, - { - "x": 132, - "y": 77, - "left": 5.625, - "top": 58.077876, - "right": 7.03125, - "bottom": 57.326521, - "countries": [ - "norway" - ] - }, - { - "x": 133, - "y": 77, - "left": 7.03125, - "top": 58.077876, - "right": 8.4375, - "bottom": 57.326521, - "countries": [ - "norway" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/poland.json b/wahoomc/resources/json/europe/poland.json deleted file mode 100644 index a9b7c36d..00000000 --- a/wahoomc/resources/json/europe/poland.json +++ /dev/null @@ -1,563 +0,0 @@ -[ - { - "x": 144, - "y": 82, - "left": 22.5, - "top": 54.162434, - "right": 23.90625, - "bottom": 53.330873, - "countries": [ - "belarus", - "poland", - "lithuania" - ] - }, - { - "x": 144, - "y": 83, - "left": 22.5, - "top": 53.330873, - "right": 23.90625, - "bottom": 52.48278, - "countries": [ - "belarus", - "poland" - ] - }, - { - "x": 145, - "y": 83, - "left": 23.90625, - "top": 53.330873, - "right": 25.3125, - "bottom": 52.48278, - "countries": [ - "belarus", - "poland" - ] - }, - { - "x": 144, - "y": 84, - "left": 22.5, - "top": 52.48278, - "right": 23.90625, - "bottom": 51.618017, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 144, - "y": 85, - "left": 22.5, - "top": 51.618017, - "right": 23.90625, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 85, - "left": 23.90625, - "top": 51.618017, - "right": 25.3125, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 138, - "y": 85, - "left": 14.0625, - "top": 51.618017, - "right": 15.46875, - "bottom": 50.736455, - "countries": [ - "poland", - "czech_republic", - "germany" - ] - }, - { - "x": 139, - "y": 85, - "left": 15.46875, - "top": 51.618017, - "right": 16.875, - "bottom": 50.736455, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 139, - "y": 86, - "left": 15.46875, - "top": 50.736455, - "right": 16.875, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 140, - "y": 86, - "left": 16.875, - "top": 50.736455, - "right": 18.28125, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 141, - "y": 86, - "left": 18.28125, - "top": 50.736455, - "right": 19.6875, - "bottom": 49.837982, - "countries": [ - "poland", - "czech_republic" - ] - }, - { - "x": 141, - "y": 87, - "left": 18.28125, - "top": 49.837982, - "right": 19.6875, - "bottom": 48.922499, - "countries": [ - "poland", - "czech_republic", - "slovakia" - ] - }, - { - "x": 138, - "y": 82, - "left": 14.0625, - "top": 54.162434, - "right": 15.46875, - "bottom": 53.330873, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 138, - "y": 83, - "left": 14.0625, - "top": 53.330873, - "right": 15.46875, - "bottom": 52.48278, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 138, - "y": 84, - "left": 14.0625, - "top": 52.48278, - "right": 15.46875, - "bottom": 51.618017, - "countries": [ - "poland", - "germany" - ] - }, - { - "x": 144, - "y": 81, - "left": 22.5, - "top": 54.977614, - "right": 23.90625, - "bottom": 54.162434, - "countries": [ - "russia", - "poland", - "lithuania" - ] - }, - { - "x": 138, - "y": 81, - "left": 14.0625, - "top": 54.977614, - "right": 15.46875, - "bottom": 54.162434, - "countries": [ - "poland" - ] - }, - { - "x": 139, - "y": 81, - "left": 15.46875, - "top": 54.977614, - "right": 16.875, - "bottom": 54.162434, - "countries": [ - "poland" - ] - }, - { - "x": 140, - "y": 81, - "left": 16.875, - "top": 54.977614, - "right": 18.28125, - "bottom": 54.162434, - "countries": [ - "poland" - ] - }, - { - "x": 141, - "y": 81, - "left": 18.28125, - "top": 54.977614, - "right": 19.6875, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 142, - "y": 81, - "left": 19.6875, - "top": 54.977614, - "right": 21.09375, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 143, - "y": 81, - "left": 21.09375, - "top": 54.977614, - "right": 22.5, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 139, - "y": 82, - "left": 15.46875, - "top": 54.162434, - "right": 16.875, - "bottom": 53.330873, - "countries": [ - "poland" - ] - }, - { - "x": 140, - "y": 82, - "left": 16.875, - "top": 54.162434, - "right": 18.28125, - "bottom": 53.330873, - "countries": [ - "poland" - ] - }, - { - "x": 141, - "y": 82, - "left": 18.28125, - "top": 54.162434, - "right": 19.6875, - "bottom": 53.330873, - "countries": [ - "poland" - ] - }, - { - "x": 142, - "y": 82, - "left": 19.6875, - "top": 54.162434, - "right": 21.09375, - "bottom": 53.330873, - "countries": [ - "poland" - ] - }, - { - "x": 143, - "y": 82, - "left": 21.09375, - "top": 54.162434, - "right": 22.5, - "bottom": 53.330873, - "countries": [ - "poland" - ] - }, - { - "x": 139, - "y": 83, - "left": 15.46875, - "top": 53.330873, - "right": 16.875, - "bottom": 52.48278, - "countries": [ - "poland" - ] - }, - { - "x": 140, - "y": 83, - "left": 16.875, - "top": 53.330873, - "right": 18.28125, - "bottom": 52.48278, - "countries": [ - "poland" - ] - }, - { - "x": 141, - "y": 83, - "left": 18.28125, - "top": 53.330873, - "right": 19.6875, - "bottom": 52.48278, - "countries": [ - "poland" - ] - }, - { - "x": 142, - "y": 83, - "left": 19.6875, - "top": 53.330873, - "right": 21.09375, - "bottom": 52.48278, - "countries": [ - "poland" - ] - }, - { - "x": 143, - "y": 83, - "left": 21.09375, - "top": 53.330873, - "right": 22.5, - "bottom": 52.48278, - "countries": [ - "poland" - ] - }, - { - "x": 139, - "y": 84, - "left": 15.46875, - "top": 52.48278, - "right": 16.875, - "bottom": 51.618017, - "countries": [ - "poland" - ] - }, - { - "x": 140, - "y": 84, - "left": 16.875, - "top": 52.48278, - "right": 18.28125, - "bottom": 51.618017, - "countries": [ - "poland" - ] - }, - { - "x": 141, - "y": 84, - "left": 18.28125, - "top": 52.48278, - "right": 19.6875, - "bottom": 51.618017, - "countries": [ - "poland" - ] - }, - { - "x": 142, - "y": 84, - "left": 19.6875, - "top": 52.48278, - "right": 21.09375, - "bottom": 51.618017, - "countries": [ - "poland" - ] - }, - { - "x": 143, - "y": 84, - "left": 21.09375, - "top": 52.48278, - "right": 22.5, - "bottom": 51.618017, - "countries": [ - "poland" - ] - }, - { - "x": 140, - "y": 85, - "left": 16.875, - "top": 51.618017, - "right": 18.28125, - "bottom": 50.736455, - "countries": [ - "poland" - ] - }, - { - "x": 141, - "y": 85, - "left": 18.28125, - "top": 51.618017, - "right": 19.6875, - "bottom": 50.736455, - "countries": [ - "poland" - ] - }, - { - "x": 142, - "y": 85, - "left": 19.6875, - "top": 51.618017, - "right": 21.09375, - "bottom": 50.736455, - "countries": [ - "poland" - ] - }, - { - "x": 143, - "y": 85, - "left": 21.09375, - "top": 51.618017, - "right": 22.5, - "bottom": 50.736455, - "countries": [ - "poland" - ] - }, - { - "x": 142, - "y": 86, - "left": 19.6875, - "top": 50.736455, - "right": 21.09375, - "bottom": 49.837982, - "countries": [ - "poland" - ] - }, - { - "x": 143, - "y": 86, - "left": 21.09375, - "top": 50.736455, - "right": 22.5, - "bottom": 49.837982, - "countries": [ - "poland" - ] - }, - { - "x": 144, - "y": 86, - "left": 22.5, - "top": 50.736455, - "right": 23.90625, - "bottom": 49.837982, - "countries": [ - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 86, - "left": 23.90625, - "top": 50.736455, - "right": 25.3125, - "bottom": 49.837982, - "countries": [ - "poland", - "ukraine" - ] - }, - { - "x": 142, - "y": 87, - "left": 19.6875, - "top": 49.837982, - "right": 21.09375, - "bottom": 48.922499, - "countries": [ - "poland", - "slovakia" - ] - }, - { - "x": 143, - "y": 87, - "left": 21.09375, - "top": 49.837982, - "right": 22.5, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - }, - { - "x": 144, - "y": 87, - "left": 22.5, - "top": 49.837982, - "right": 23.90625, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/portugal.json b/wahoomc/resources/json/europe/portugal.json deleted file mode 100644 index 273fbe76..00000000 --- a/wahoomc/resources/json/europe/portugal.json +++ /dev/null @@ -1,310 +0,0 @@ -[ - { - "x": 121, - "y": 94, - "left": -9.84375, - "top": 43.068888, - "right": -8.4375, - "bottom": 42.032974, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 94, - "left": -8.4375, - "top": 43.068888, - "right": -7.03125, - "bottom": 42.032974, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 121, - "y": 95, - "left": -9.84375, - "top": 42.032974, - "right": -8.4375, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 95, - "left": -8.4375, - "top": 42.032974, - "right": -7.03125, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 95, - "left": -7.03125, - "top": 42.032974, - "right": -5.625, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 121, - "y": 96, - "left": -9.84375, - "top": 40.979898, - "right": -8.4375, - "bottom": 39.909736, - "countries": [ - "portugal" - ] - }, - { - "x": 122, - "y": 96, - "left": -8.4375, - "top": 40.979898, - "right": -7.03125, - "bottom": 39.909736, - "countries": [ - "portugal" - ] - }, - { - "x": 123, - "y": 96, - "left": -7.03125, - "top": 40.979898, - "right": -5.625, - "bottom": 39.909736, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 105, - "y": 97, - "left": -32.34375, - "top": 39.909736, - "right": -30.9375, - "bottom": 38.822591, - "countries": [ - "portugal" - ] - }, - { - "x": 108, - "y": 97, - "left": -28.125, - "top": 39.909736, - "right": -26.71875, - "bottom": 38.822591, - "countries": [ - "portugal" - ] - }, - { - "x": 121, - "y": 97, - "left": -9.84375, - "top": 39.909736, - "right": -8.4375, - "bottom": 38.822591, - "countries": [ - "portugal" - ] - }, - { - "x": 122, - "y": 97, - "left": -8.4375, - "top": 39.909736, - "right": -7.03125, - "bottom": 38.822591, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 97, - "left": -7.03125, - "top": 39.909736, - "right": -5.625, - "bottom": 38.822591, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 107, - "y": 98, - "left": -29.53125, - "top": 38.822591, - "right": -28.125, - "bottom": 37.71859, - "countries": [ - "portugal" - ] - }, - { - "x": 108, - "y": 98, - "left": -28.125, - "top": 38.822591, - "right": -26.71875, - "bottom": 37.71859, - "countries": [ - "portugal" - ] - }, - { - "x": 109, - "y": 98, - "left": -26.71875, - "top": 38.822591, - "right": -25.3125, - "bottom": 37.71859, - "countries": [ - "portugal" - ] - }, - { - "x": 110, - "y": 98, - "left": -25.3125, - "top": 38.822591, - "right": -23.90625, - "bottom": 37.71859, - "countries": [ - "portugal" - ] - }, - { - "x": 121, - "y": 98, - "left": -9.84375, - "top": 38.822591, - "right": -8.4375, - "bottom": 37.71859, - "countries": [ - "portugal" - ] - }, - { - "x": 122, - "y": 98, - "left": -8.4375, - "top": 38.822591, - "right": -7.03125, - "bottom": 37.71859, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 98, - "left": -7.03125, - "top": 38.822591, - "right": -5.625, - "bottom": 37.71859, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 109, - "y": 99, - "left": -26.71875, - "top": 37.71859, - "right": -25.3125, - "bottom": 36.597889, - "countries": [ - "portugal" - ] - }, - { - "x": 110, - "y": 99, - "left": -25.3125, - "top": 37.71859, - "right": -23.90625, - "bottom": 36.597889, - "countries": [ - "portugal" - ] - }, - { - "x": 121, - "y": 99, - "left": -9.84375, - "top": 37.71859, - "right": -8.4375, - "bottom": 36.597889, - "countries": [ - "portugal" - ] - }, - { - "x": 122, - "y": 99, - "left": -8.4375, - "top": 37.71859, - "right": -7.03125, - "bottom": 36.597889, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 115, - "y": 103, - "left": -18.28125, - "top": 33.137551, - "right": -16.875, - "bottom": 31.952162, - "countries": [ - "portugal" - ] - }, - { - "x": 116, - "y": 103, - "left": -16.875, - "top": 33.137551, - "right": -15.46875, - "bottom": 31.952162, - "countries": [ - "portugal" - ] - }, - { - "x": 116, - "y": 105, - "left": -16.875, - "top": 30.751278, - "right": -15.46875, - "bottom": 29.53523, - "countries": [ - "portugal" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/romania.json b/wahoomc/resources/json/europe/romania.json deleted file mode 100644 index 4e8b5085..00000000 --- a/wahoomc/resources/json/europe/romania.json +++ /dev/null @@ -1,421 +0,0 @@ -[ - { - "x": 144, - "y": 92, - "left": 22.5, - "top": 45.089036, - "right": 23.90625, - "bottom": 44.087585, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 147, - "y": 92, - "left": 26.71875, - "top": 45.089036, - "right": 28.125, - "bottom": 44.087585, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 144, - "y": 93, - "left": 22.5, - "top": 44.087585, - "right": 23.90625, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 145, - "y": 93, - "left": 23.90625, - "top": 44.087585, - "right": 25.3125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 146, - "y": 93, - "left": 25.3125, - "top": 44.087585, - "right": 26.71875, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 147, - "y": 93, - "left": 26.71875, - "top": 44.087585, - "right": 28.125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 148, - "y": 93, - "left": 28.125, - "top": 44.087585, - "right": 29.53125, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "romania" - ] - }, - { - "x": 144, - "y": 88, - "left": 22.5, - "top": 48.922499, - "right": 23.90625, - "bottom": 47.989922, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 143, - "y": 89, - "left": 21.09375, - "top": 47.989922, - "right": 22.5, - "bottom": 47.040182, - "countries": [ - "romania", - "hungary" - ] - }, - { - "x": 144, - "y": 89, - "left": 22.5, - "top": 47.989922, - "right": 23.90625, - "bottom": 47.040182, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 142, - "y": 90, - "left": 19.6875, - "top": 47.040182, - "right": 21.09375, - "bottom": 46.073231, - "countries": [ - "romania", - "serbia", - "hungary" - ] - }, - { - "x": 143, - "y": 90, - "left": 21.09375, - "top": 47.040182, - "right": 22.5, - "bottom": 46.073231, - "countries": [ - "romania", - "hungary" - ] - }, - { - "x": 146, - "y": 88, - "left": 25.3125, - "top": 48.922499, - "right": 26.71875, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 147, - "y": 88, - "left": 26.71875, - "top": 48.922499, - "right": 28.125, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 147, - "y": 89, - "left": 26.71875, - "top": 47.989922, - "right": 28.125, - "bottom": 47.040182, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 147, - "y": 90, - "left": 26.71875, - "top": 47.040182, - "right": 28.125, - "bottom": 46.073231, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 148, - "y": 90, - "left": 28.125, - "top": 47.040182, - "right": 29.53125, - "bottom": 46.073231, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 147, - "y": 91, - "left": 26.71875, - "top": 46.073231, - "right": 28.125, - "bottom": 45.089036, - "countries": [ - "moldova", - "romania" - ] - }, - { - "x": 148, - "y": 91, - "left": 28.125, - "top": 46.073231, - "right": 29.53125, - "bottom": 45.089036, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 145, - "y": 89, - "left": 23.90625, - "top": 47.989922, - "right": 25.3125, - "bottom": 47.040182, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 146, - "y": 89, - "left": 25.3125, - "top": 47.989922, - "right": 26.71875, - "bottom": 47.040182, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 144, - "y": 90, - "left": 22.5, - "top": 47.040182, - "right": 23.90625, - "bottom": 46.073231, - "countries": [ - "romania" - ] - }, - { - "x": 145, - "y": 90, - "left": 23.90625, - "top": 47.040182, - "right": 25.3125, - "bottom": 46.073231, - "countries": [ - "romania" - ] - }, - { - "x": 146, - "y": 90, - "left": 25.3125, - "top": 47.040182, - "right": 26.71875, - "bottom": 46.073231, - "countries": [ - "romania" - ] - }, - { - "x": 142, - "y": 91, - "left": 19.6875, - "top": 46.073231, - "right": 21.09375, - "bottom": 45.089036, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 143, - "y": 91, - "left": 21.09375, - "top": 46.073231, - "right": 22.5, - "bottom": 45.089036, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 144, - "y": 91, - "left": 22.5, - "top": 46.073231, - "right": 23.90625, - "bottom": 45.089036, - "countries": [ - "romania" - ] - }, - { - "x": 145, - "y": 91, - "left": 23.90625, - "top": 46.073231, - "right": 25.3125, - "bottom": 45.089036, - "countries": [ - "romania" - ] - }, - { - "x": 146, - "y": 91, - "left": 25.3125, - "top": 46.073231, - "right": 26.71875, - "bottom": 45.089036, - "countries": [ - "romania" - ] - }, - { - "x": 149, - "y": 91, - "left": 29.53125, - "top": 46.073231, - "right": 30.9375, - "bottom": 45.089036, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 143, - "y": 92, - "left": 21.09375, - "top": 45.089036, - "right": 22.5, - "bottom": 44.087585, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 145, - "y": 92, - "left": 23.90625, - "top": 45.089036, - "right": 25.3125, - "bottom": 44.087585, - "countries": [ - "romania" - ] - }, - { - "x": 146, - "y": 92, - "left": 25.3125, - "top": 45.089036, - "right": 26.71875, - "bottom": 44.087585, - "countries": [ - "romania" - ] - }, - { - "x": 148, - "y": 92, - "left": 28.125, - "top": 45.089036, - "right": 29.53125, - "bottom": 44.087585, - "countries": [ - "romania" - ] - }, - { - "x": 149, - "y": 92, - "left": 29.53125, - "top": 45.089036, - "right": 30.9375, - "bottom": 44.087585, - "countries": [ - "romania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/russia.json b/wahoomc/resources/json/europe/russia.json deleted file mode 100644 index 90483c13..00000000 --- a/wahoomc/resources/json/europe/russia.json +++ /dev/null @@ -1,44649 +0,0 @@ -[ - { - "x": 160, - "y": 95, - "left": 45.0, - "top": 42.032974, - "right": 46.40625, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "russia" - ] - }, - { - "x": 161, - "y": 95, - "left": 46.40625, - "top": 42.032974, - "right": 47.8125, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "russia" - ] - }, - { - "x": 162, - "y": 95, - "left": 47.8125, - "top": 42.032974, - "right": 49.21875, - "bottom": 40.979898, - "countries": [ - "russia", - "azerbaijan" - ] - }, - { - "x": 214, - "y": 82, - "left": 120.9375, - "top": 54.162434, - "right": 122.34375, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 215, - "y": 82, - "left": 122.34375, - "top": 54.162434, - "right": 123.75, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 216, - "y": 82, - "left": 123.75, - "top": 54.162434, - "right": 125.15625, - "bottom": 53.330873, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 83, - "left": 119.53125, - "top": 53.330873, - "right": 120.9375, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 214, - "y": 83, - "left": 120.9375, - "top": 53.330873, - "right": 122.34375, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 216, - "y": 83, - "left": 123.75, - "top": 53.330873, - "right": 125.15625, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 217, - "y": 83, - "left": 125.15625, - "top": 53.330873, - "right": 126.5625, - "bottom": 52.48278, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 84, - "left": 119.53125, - "top": 52.48278, - "right": 120.9375, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 217, - "y": 84, - "left": 125.15625, - "top": 52.48278, - "right": 126.5625, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 218, - "y": 84, - "left": 126.5625, - "top": 52.48278, - "right": 127.96875, - "bottom": 51.618017, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 212, - "y": 85, - "left": 118.125, - "top": 51.618017, - "right": 119.53125, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 213, - "y": 85, - "left": 119.53125, - "top": 51.618017, - "right": 120.9375, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 218, - "y": 85, - "left": 126.5625, - "top": 51.618017, - "right": 127.96875, - "bottom": 50.736455, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 210, - "y": 86, - "left": 115.3125, - "top": 50.736455, - "right": 116.71875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 212, - "y": 86, - "left": 118.125, - "top": 50.736455, - "right": 119.53125, - "bottom": 49.837982, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 218, - "y": 86, - "left": 126.5625, - "top": 50.736455, - "right": 127.96875, - "bottom": 49.837982, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 189, - "y": 87, - "left": 85.78125, - "top": 49.837982, - "right": 87.1875, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan", - "china" - ] - }, - { - "x": 190, - "y": 87, - "left": 87.1875, - "top": 49.837982, - "right": 88.59375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "kazakhstan", - "china" - ] - }, - { - "x": 210, - "y": 87, - "left": 115.3125, - "top": 49.837982, - "right": 116.71875, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia", - "china" - ] - }, - { - "x": 211, - "y": 87, - "left": 116.71875, - "top": 49.837982, - "right": 118.125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 212, - "y": 87, - "left": 118.125, - "top": 49.837982, - "right": 119.53125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 218, - "y": 87, - "left": 126.5625, - "top": 49.837982, - "right": 127.96875, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 219, - "y": 87, - "left": 127.96875, - "top": 49.837982, - "right": 129.375, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 220, - "y": 87, - "left": 129.375, - "top": 49.837982, - "right": 130.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 220, - "y": 88, - "left": 129.375, - "top": 48.922499, - "right": 130.78125, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 88, - "left": 130.78125, - "top": 48.922499, - "right": 132.1875, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 88, - "left": 132.1875, - "top": 48.922499, - "right": 133.59375, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 88, - "left": 133.59375, - "top": 48.922499, - "right": 135.0, - "bottom": 47.989922, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 220, - "y": 89, - "left": 129.375, - "top": 47.989922, - "right": 130.78125, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 89, - "left": 130.78125, - "top": 47.989922, - "right": 132.1875, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 89, - "left": 132.1875, - "top": 47.989922, - "right": 133.59375, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 89, - "left": 133.59375, - "top": 47.989922, - "right": 135.0, - "bottom": 47.040182, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 90, - "left": 133.59375, - "top": 47.040182, - "right": 135.0, - "bottom": 46.073231, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 91, - "left": 130.78125, - "top": 46.073231, - "right": 132.1875, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 91, - "left": 132.1875, - "top": 46.073231, - "right": 133.59375, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 223, - "y": 91, - "left": 133.59375, - "top": 46.073231, - "right": 135.0, - "bottom": 45.089036, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 92, - "left": 130.78125, - "top": 45.089036, - "right": 132.1875, - "bottom": 44.087585, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 222, - "y": 92, - "left": 132.1875, - "top": 45.089036, - "right": 133.59375, - "bottom": 44.087585, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 221, - "y": 93, - "left": 130.78125, - "top": 44.087585, - "right": 132.1875, - "bottom": 43.068888, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 220, - "y": 94, - "left": 129.375, - "top": 43.068888, - "right": 130.78125, - "bottom": 42.032974, - "countries": [ - "russia", - "north_korea", - "china" - ] - }, - { - "x": 221, - "y": 94, - "left": 130.78125, - "top": 43.068888, - "right": 132.1875, - "bottom": 42.032974, - "countries": [ - "russia", - "china" - ] - }, - { - "x": 156, - "y": 93, - "left": 39.375, - "top": 44.087585, - "right": 40.78125, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 157, - "y": 93, - "left": 40.78125, - "top": 44.087585, - "right": 42.1875, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 158, - "y": 93, - "left": 42.1875, - "top": 44.087585, - "right": 43.59375, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 158, - "y": 94, - "left": 42.1875, - "top": 43.068888, - "right": 43.59375, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 159, - "y": 94, - "left": 43.59375, - "top": 43.068888, - "right": 45.0, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 160, - "y": 94, - "left": 45.0, - "top": 43.068888, - "right": 46.40625, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 228, - "y": 91, - "left": 140.625, - "top": 46.073231, - "right": 142.03125, - "bottom": 45.089036, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 229, - "y": 91, - "left": 142.03125, - "top": 46.073231, - "right": 143.4375, - "bottom": 45.089036, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 231, - "y": 92, - "left": 144.84375, - "top": 45.089036, - "right": 146.25, - "bottom": 44.087585, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 231, - "y": 93, - "left": 144.84375, - "top": 44.087585, - "right": 146.25, - "bottom": 43.068888, - "countries": [ - "japan", - "russia" - ] - }, - { - "x": 176, - "y": 80, - "left": 67.5, - "top": 55.776573, - "right": 68.90625, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 177, - "y": 80, - "left": 68.90625, - "top": 55.776573, - "right": 70.3125, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 178, - "y": 80, - "left": 70.3125, - "top": 55.776573, - "right": 71.71875, - "bottom": 54.977614, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 81, - "left": 61.875, - "top": 54.977614, - "right": 63.28125, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 173, - "y": 81, - "left": 63.28125, - "top": 54.977614, - "right": 64.6875, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 174, - "y": 81, - "left": 64.6875, - "top": 54.977614, - "right": 66.09375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 175, - "y": 81, - "left": 66.09375, - "top": 54.977614, - "right": 67.5, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 176, - "y": 81, - "left": 67.5, - "top": 54.977614, - "right": 68.90625, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 178, - "y": 81, - "left": 70.3125, - "top": 54.977614, - "right": 71.71875, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 179, - "y": 81, - "left": 71.71875, - "top": 54.977614, - "right": 73.125, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 181, - "y": 81, - "left": 74.53125, - "top": 54.977614, - "right": 75.9375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 182, - "y": 81, - "left": 75.9375, - "top": 54.977614, - "right": 77.34375, - "bottom": 54.162434, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 82, - "left": 60.46875, - "top": 54.162434, - "right": 61.875, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 82, - "left": 61.875, - "top": 54.162434, - "right": 63.28125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 178, - "y": 82, - "left": 70.3125, - "top": 54.162434, - "right": 71.71875, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 179, - "y": 82, - "left": 71.71875, - "top": 54.162434, - "right": 73.125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 180, - "y": 82, - "left": 73.125, - "top": 54.162434, - "right": 74.53125, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 181, - "y": 82, - "left": 74.53125, - "top": 54.162434, - "right": 75.9375, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 182, - "y": 82, - "left": 75.9375, - "top": 54.162434, - "right": 77.34375, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 183, - "y": 82, - "left": 77.34375, - "top": 54.162434, - "right": 78.75, - "bottom": 53.330873, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 83, - "left": 60.46875, - "top": 53.330873, - "right": 61.875, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 172, - "y": 83, - "left": 61.875, - "top": 53.330873, - "right": 63.28125, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 183, - "y": 83, - "left": 77.34375, - "top": 53.330873, - "right": 78.75, - "bottom": 52.48278, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 84, - "left": 49.21875, - "top": 52.48278, - "right": 50.625, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 164, - "y": 84, - "left": 50.625, - "top": 52.48278, - "right": 52.03125, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 165, - "y": 84, - "left": 52.03125, - "top": 52.48278, - "right": 53.4375, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 84, - "left": 59.0625, - "top": 52.48278, - "right": 60.46875, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 84, - "left": 60.46875, - "top": 52.48278, - "right": 61.875, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 183, - "y": 84, - "left": 77.34375, - "top": 52.48278, - "right": 78.75, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 184, - "y": 84, - "left": 78.75, - "top": 52.48278, - "right": 80.15625, - "bottom": 51.618017, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 85, - "left": 47.8125, - "top": 51.618017, - "right": 49.21875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 85, - "left": 49.21875, - "top": 51.618017, - "right": 50.625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 164, - "y": 85, - "left": 50.625, - "top": 51.618017, - "right": 52.03125, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 165, - "y": 85, - "left": 52.03125, - "top": 51.618017, - "right": 53.4375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 85, - "left": 53.4375, - "top": 51.618017, - "right": 54.84375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 85, - "left": 54.84375, - "top": 51.618017, - "right": 56.25, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 168, - "y": 85, - "left": 56.25, - "top": 51.618017, - "right": 57.65625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 169, - "y": 85, - "left": 57.65625, - "top": 51.618017, - "right": 59.0625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 85, - "left": 59.0625, - "top": 51.618017, - "right": 60.46875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 85, - "left": 60.46875, - "top": 51.618017, - "right": 61.875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 184, - "y": 85, - "left": 78.75, - "top": 51.618017, - "right": 80.15625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 185, - "y": 85, - "left": 80.15625, - "top": 51.618017, - "right": 81.5625, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 186, - "y": 85, - "left": 81.5625, - "top": 51.618017, - "right": 82.96875, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 187, - "y": 85, - "left": 82.96875, - "top": 51.618017, - "right": 84.375, - "bottom": 50.736455, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 86, - "left": 46.40625, - "top": 50.736455, - "right": 47.8125, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 86, - "left": 47.8125, - "top": 50.736455, - "right": 49.21875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 166, - "y": 86, - "left": 53.4375, - "top": 50.736455, - "right": 54.84375, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 167, - "y": 86, - "left": 54.84375, - "top": 50.736455, - "right": 56.25, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 169, - "y": 86, - "left": 57.65625, - "top": 50.736455, - "right": 59.0625, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 170, - "y": 86, - "left": 59.0625, - "top": 50.736455, - "right": 60.46875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 171, - "y": 86, - "left": 60.46875, - "top": 50.736455, - "right": 61.875, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 187, - "y": 86, - "left": 82.96875, - "top": 50.736455, - "right": 84.375, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 188, - "y": 86, - "left": 84.375, - "top": 50.736455, - "right": 85.78125, - "bottom": 49.837982, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 87, - "left": 46.40625, - "top": 49.837982, - "right": 47.8125, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 87, - "left": 47.8125, - "top": 49.837982, - "right": 49.21875, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 188, - "y": 87, - "left": 84.375, - "top": 49.837982, - "right": 85.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 88, - "left": 46.40625, - "top": 48.922499, - "right": 47.8125, - "bottom": 47.989922, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 161, - "y": 89, - "left": 46.40625, - "top": 47.989922, - "right": 47.8125, - "bottom": 47.040182, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 89, - "left": 47.8125, - "top": 47.989922, - "right": 49.21875, - "bottom": 47.040182, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 162, - "y": 90, - "left": 47.8125, - "top": 47.040182, - "right": 49.21875, - "bottom": 46.073231, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 163, - "y": 90, - "left": 49.21875, - "top": 47.040182, - "right": 50.625, - "bottom": 46.073231, - "countries": [ - "russia", - "kazakhstan" - ] - }, - { - "x": 197, - "y": 84, - "left": 97.03125, - "top": 52.48278, - "right": 98.4375, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 198, - "y": 84, - "left": 98.4375, - "top": 52.48278, - "right": 99.84375, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 199, - "y": 84, - "left": 99.84375, - "top": 52.48278, - "right": 101.25, - "bottom": 51.618017, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 193, - "y": 85, - "left": 91.40625, - "top": 51.618017, - "right": 92.8125, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 194, - "y": 85, - "left": 92.8125, - "top": 51.618017, - "right": 94.21875, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 197, - "y": 85, - "left": 97.03125, - "top": 51.618017, - "right": 98.4375, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 199, - "y": 85, - "left": 99.84375, - "top": 51.618017, - "right": 101.25, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 200, - "y": 85, - "left": 101.25, - "top": 51.618017, - "right": 102.65625, - "bottom": 50.736455, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 191, - "y": 86, - "left": 88.59375, - "top": 50.736455, - "right": 90.0, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 192, - "y": 86, - "left": 90.0, - "top": 50.736455, - "right": 91.40625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 193, - "y": 86, - "left": 91.40625, - "top": 50.736455, - "right": 92.8125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 194, - "y": 86, - "left": 92.8125, - "top": 50.736455, - "right": 94.21875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 195, - "y": 86, - "left": 94.21875, - "top": 50.736455, - "right": 95.625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 196, - "y": 86, - "left": 95.625, - "top": 50.736455, - "right": 97.03125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 197, - "y": 86, - "left": 97.03125, - "top": 50.736455, - "right": 98.4375, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 200, - "y": 86, - "left": 101.25, - "top": 50.736455, - "right": 102.65625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 201, - "y": 86, - "left": 102.65625, - "top": 50.736455, - "right": 104.0625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 202, - "y": 86, - "left": 104.0625, - "top": 50.736455, - "right": 105.46875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 203, - "y": 86, - "left": 105.46875, - "top": 50.736455, - "right": 106.875, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 204, - "y": 86, - "left": 106.875, - "top": 50.736455, - "right": 108.28125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 208, - "y": 86, - "left": 112.5, - "top": 50.736455, - "right": 113.90625, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 209, - "y": 86, - "left": 113.90625, - "top": 50.736455, - "right": 115.3125, - "bottom": 49.837982, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 191, - "y": 87, - "left": 88.59375, - "top": 49.837982, - "right": 90.0, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 197, - "y": 87, - "left": 97.03125, - "top": 49.837982, - "right": 98.4375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 204, - "y": 87, - "left": 106.875, - "top": 49.837982, - "right": 108.28125, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 205, - "y": 87, - "left": 108.28125, - "top": 49.837982, - "right": 109.6875, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 206, - "y": 87, - "left": 109.6875, - "top": 49.837982, - "right": 111.09375, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 207, - "y": 87, - "left": 111.09375, - "top": 49.837982, - "right": 112.5, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 208, - "y": 87, - "left": 112.5, - "top": 49.837982, - "right": 113.90625, - "bottom": 48.922499, - "countries": [ - "russia", - "mongolia" - ] - }, - { - "x": 147, - "y": 79, - "left": 26.71875, - "top": 56.559482, - "right": 28.125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 148, - "y": 79, - "left": 28.125, - "top": 56.559482, - "right": 29.53125, - "bottom": 55.776573, - "countries": [ - "belarus", - "latvia", - "russia" - ] - }, - { - "x": 149, - "y": 79, - "left": 29.53125, - "top": 56.559482, - "right": 30.9375, - "bottom": 55.776573, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 148, - "y": 80, - "left": 28.125, - "top": 55.776573, - "right": 29.53125, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 149, - "y": 80, - "left": 29.53125, - "top": 55.776573, - "right": 30.9375, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 80, - "left": 30.9375, - "top": 55.776573, - "right": 32.34375, - "bottom": 54.977614, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 149, - "y": 81, - "left": 29.53125, - "top": 54.977614, - "right": 30.9375, - "bottom": 54.162434, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 81, - "left": 30.9375, - "top": 54.977614, - "right": 32.34375, - "bottom": 54.162434, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 82, - "left": 30.9375, - "top": 54.162434, - "right": 32.34375, - "bottom": 53.330873, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 151, - "y": 82, - "left": 32.34375, - "top": 54.162434, - "right": 33.75, - "bottom": 53.330873, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 83, - "left": 30.9375, - "top": 53.330873, - "right": 32.34375, - "bottom": 52.48278, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 151, - "y": 83, - "left": 32.34375, - "top": 53.330873, - "right": 33.75, - "bottom": 52.48278, - "countries": [ - "belarus", - "russia" - ] - }, - { - "x": 150, - "y": 84, - "left": 30.9375, - "top": 52.48278, - "right": 32.34375, - "bottom": 51.618017, - "countries": [ - "belarus", - "russia", - "ukraine" - ] - }, - { - "x": 147, - "y": 75, - "left": 26.71875, - "top": 59.534318, - "right": 28.125, - "bottom": 58.813742, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 148, - "y": 75, - "left": 28.125, - "top": 59.534318, - "right": 29.53125, - "bottom": 58.813742, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 147, - "y": 76, - "left": 26.71875, - "top": 58.813742, - "right": 28.125, - "bottom": 58.077876, - "countries": [ - "russia", - "estonia" - ] - }, - { - "x": 147, - "y": 77, - "left": 26.71875, - "top": 58.077876, - "right": 28.125, - "bottom": 57.326521, - "countries": [ - "russia", - "estonia", - "latvia" - ] - }, - { - "x": 148, - "y": 58, - "left": 28.125, - "top": 69.657086, - "right": 29.53125, - "bottom": 69.162558, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 59, - "left": 28.125, - "top": 69.162558, - "right": 29.53125, - "bottom": 68.656555, - "countries": [ - "russia", - "norway", - "finland" - ] - }, - { - "x": 148, - "y": 60, - "left": 28.125, - "top": 68.656555, - "right": 29.53125, - "bottom": 68.138852, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 61, - "left": 28.125, - "top": 68.138852, - "right": 29.53125, - "bottom": 67.609221, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 61, - "left": 29.53125, - "top": 68.138852, - "right": 30.9375, - "bottom": 67.609221, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 62, - "left": 28.125, - "top": 67.609221, - "right": 29.53125, - "bottom": 67.067433, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 62, - "left": 29.53125, - "top": 67.609221, - "right": 30.9375, - "bottom": 67.067433, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 63, - "left": 28.125, - "top": 67.067433, - "right": 29.53125, - "bottom": 66.51326, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 64, - "left": 28.125, - "top": 66.51326, - "right": 29.53125, - "bottom": 65.946472, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 64, - "left": 29.53125, - "top": 66.51326, - "right": 30.9375, - "bottom": 65.946472, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 65, - "left": 29.53125, - "top": 65.946472, - "right": 30.9375, - "bottom": 65.366837, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 66, - "left": 29.53125, - "top": 65.366837, - "right": 30.9375, - "bottom": 64.774125, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 67, - "left": 29.53125, - "top": 64.774125, - "right": 30.9375, - "bottom": 64.168107, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 68, - "left": 29.53125, - "top": 64.168107, - "right": 30.9375, - "bottom": 63.548552, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 69, - "left": 29.53125, - "top": 63.548552, - "right": 30.9375, - "bottom": 62.915233, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 150, - "y": 69, - "left": 30.9375, - "top": 63.548552, - "right": 32.34375, - "bottom": 62.915233, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 70, - "left": 29.53125, - "top": 62.915233, - "right": 30.9375, - "bottom": 62.267923, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 150, - "y": 70, - "left": 30.9375, - "top": 62.915233, - "right": 32.34375, - "bottom": 62.267923, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 71, - "left": 29.53125, - "top": 62.267923, - "right": 30.9375, - "bottom": 61.606396, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 72, - "left": 28.125, - "top": 61.606396, - "right": 29.53125, - "bottom": 60.930432, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 149, - "y": 72, - "left": 29.53125, - "top": 61.606396, - "right": 30.9375, - "bottom": 60.930432, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 147, - "y": 73, - "left": 26.71875, - "top": 60.930432, - "right": 28.125, - "bottom": 60.239811, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 148, - "y": 73, - "left": 28.125, - "top": 60.930432, - "right": 29.53125, - "bottom": 60.239811, - "countries": [ - "russia", - "finland" - ] - }, - { - "x": 147, - "y": 78, - "left": 26.71875, - "top": 57.326521, - "right": 28.125, - "bottom": 56.559482, - "countries": [ - "russia", - "latvia" - ] - }, - { - "x": 148, - "y": 78, - "left": 28.125, - "top": 57.326521, - "right": 29.53125, - "bottom": 56.559482, - "countries": [ - "russia", - "latvia" - ] - }, - { - "x": 142, - "y": 80, - "left": 19.6875, - "top": 55.776573, - "right": 21.09375, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 143, - "y": 80, - "left": 21.09375, - "top": 55.776573, - "right": 22.5, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 144, - "y": 80, - "left": 22.5, - "top": 55.776573, - "right": 23.90625, - "bottom": 54.977614, - "countries": [ - "russia", - "lithuania" - ] - }, - { - "x": 144, - "y": 81, - "left": 22.5, - "top": 54.977614, - "right": 23.90625, - "bottom": 54.162434, - "countries": [ - "russia", - "poland", - "lithuania" - ] - }, - { - "x": 149, - "y": 57, - "left": 29.53125, - "top": 70.140364, - "right": 30.9375, - "bottom": 69.657086, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 149, - "y": 58, - "left": 29.53125, - "top": 69.657086, - "right": 30.9375, - "bottom": 69.162558, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 150, - "y": 58, - "left": 30.9375, - "top": 69.657086, - "right": 32.34375, - "bottom": 69.162558, - "countries": [ - "russia", - "norway" - ] - }, - { - "x": 141, - "y": 81, - "left": 18.28125, - "top": 54.977614, - "right": 19.6875, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 142, - "y": 81, - "left": 19.6875, - "top": 54.977614, - "right": 21.09375, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 143, - "y": 81, - "left": 21.09375, - "top": 54.977614, - "right": 22.5, - "bottom": 54.162434, - "countries": [ - "russia", - "poland" - ] - }, - { - "x": 169, - "y": 20, - "left": 57.65625, - "top": 81.923186, - "right": 59.0625, - "bottom": 81.723188, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 20, - "left": 59.0625, - "top": 81.923186, - "right": 60.46875, - "bottom": 81.723188, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 21, - "left": 56.25, - "top": 81.723188, - "right": 57.65625, - "bottom": 81.518272, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 21, - "left": 57.65625, - "top": 81.723188, - "right": 59.0625, - "bottom": 81.518272, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 21, - "left": 60.46875, - "top": 81.723188, - "right": 61.875, - "bottom": 81.518272, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 21, - "left": 61.875, - "top": 81.723188, - "right": 63.28125, - "bottom": 81.518272, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 21, - "left": 63.28125, - "top": 81.723188, - "right": 64.6875, - "bottom": 81.518272, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 22, - "left": 53.4375, - "top": 81.518272, - "right": 54.84375, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 22, - "left": 54.84375, - "top": 81.518272, - "right": 56.25, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 22, - "left": 56.25, - "top": 81.518272, - "right": 57.65625, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 22, - "left": 57.65625, - "top": 81.518272, - "right": 59.0625, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 22, - "left": 59.0625, - "top": 81.518272, - "right": 60.46875, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 22, - "left": 61.875, - "top": 81.518272, - "right": 63.28125, - "bottom": 81.308321, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 23, - "left": 49.21875, - "top": 81.308321, - "right": 50.625, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 23, - "left": 50.625, - "top": 81.308321, - "right": 52.03125, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 23, - "left": 53.4375, - "top": 81.308321, - "right": 54.84375, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 23, - "left": 54.84375, - "top": 81.308321, - "right": 56.25, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 23, - "left": 56.25, - "top": 81.308321, - "right": 57.65625, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 23, - "left": 57.65625, - "top": 81.308321, - "right": 59.0625, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 23, - "left": 59.0625, - "top": 81.308321, - "right": 60.46875, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 23, - "left": 60.46875, - "top": 81.308321, - "right": 61.875, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 23, - "left": 63.28125, - "top": 81.308321, - "right": 64.6875, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 23, - "left": 64.6875, - "top": 81.308321, - "right": 66.09375, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 23, - "left": 90.0, - "top": 81.308321, - "right": 91.40625, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 23, - "left": 91.40625, - "top": 81.308321, - "right": 92.8125, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 23, - "left": 94.21875, - "top": 81.308321, - "right": 95.625, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 23, - "left": 95.625, - "top": 81.308321, - "right": 97.03125, - "bottom": 81.093214, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 24, - "left": 49.21875, - "top": 81.093214, - "right": 50.625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 24, - "left": 50.625, - "top": 81.093214, - "right": 52.03125, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 24, - "left": 53.4375, - "top": 81.093214, - "right": 54.84375, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 24, - "left": 54.84375, - "top": 81.093214, - "right": 56.25, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 24, - "left": 56.25, - "top": 81.093214, - "right": 57.65625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 24, - "left": 57.65625, - "top": 81.093214, - "right": 59.0625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 24, - "left": 59.0625, - "top": 81.093214, - "right": 60.46875, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 24, - "left": 60.46875, - "top": 81.093214, - "right": 61.875, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 24, - "left": 61.875, - "top": 81.093214, - "right": 63.28125, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 24, - "left": 63.28125, - "top": 81.093214, - "right": 64.6875, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 24, - "left": 64.6875, - "top": 81.093214, - "right": 66.09375, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 24, - "left": 77.34375, - "top": 81.093214, - "right": 78.75, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 24, - "left": 78.75, - "top": 81.093214, - "right": 80.15625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 24, - "left": 90.0, - "top": 81.093214, - "right": 91.40625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 24, - "left": 91.40625, - "top": 81.093214, - "right": 92.8125, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 24, - "left": 92.8125, - "top": 81.093214, - "right": 94.21875, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 24, - "left": 94.21875, - "top": 81.093214, - "right": 95.625, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 24, - "left": 95.625, - "top": 81.093214, - "right": 97.03125, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 24, - "left": 97.03125, - "top": 81.093214, - "right": 98.4375, - "bottom": 80.872827, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 25, - "left": 45.0, - "top": 80.872827, - "right": 46.40625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 25, - "left": 46.40625, - "top": 80.872827, - "right": 47.8125, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 25, - "left": 47.8125, - "top": 80.872827, - "right": 49.21875, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 25, - "left": 49.21875, - "top": 80.872827, - "right": 50.625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 25, - "left": 50.625, - "top": 80.872827, - "right": 52.03125, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 25, - "left": 53.4375, - "top": 80.872827, - "right": 54.84375, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 25, - "left": 54.84375, - "top": 80.872827, - "right": 56.25, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 25, - "left": 56.25, - "top": 80.872827, - "right": 57.65625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 25, - "left": 57.65625, - "top": 80.872827, - "right": 59.0625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 25, - "left": 59.0625, - "top": 80.872827, - "right": 60.46875, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 25, - "left": 60.46875, - "top": 80.872827, - "right": 61.875, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 25, - "left": 61.875, - "top": 80.872827, - "right": 63.28125, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 25, - "left": 63.28125, - "top": 80.872827, - "right": 64.6875, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 25, - "left": 64.6875, - "top": 80.872827, - "right": 66.09375, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 25, - "left": 77.34375, - "top": 80.872827, - "right": 78.75, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 25, - "left": 78.75, - "top": 80.872827, - "right": 80.15625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 25, - "left": 91.40625, - "top": 80.872827, - "right": 92.8125, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 25, - "left": 92.8125, - "top": 80.872827, - "right": 94.21875, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 25, - "left": 94.21875, - "top": 80.872827, - "right": 95.625, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 25, - "left": 95.625, - "top": 80.872827, - "right": 97.03125, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 25, - "left": 97.03125, - "top": 80.872827, - "right": 98.4375, - "bottom": 80.647035, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 26, - "left": 43.59375, - "top": 80.647035, - "right": 45.0, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 26, - "left": 45.0, - "top": 80.647035, - "right": 46.40625, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 26, - "left": 46.40625, - "top": 80.647035, - "right": 47.8125, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 26, - "left": 47.8125, - "top": 80.647035, - "right": 49.21875, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 26, - "left": 49.21875, - "top": 80.647035, - "right": 50.625, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 26, - "left": 50.625, - "top": 80.647035, - "right": 52.03125, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 26, - "left": 52.03125, - "top": 80.647035, - "right": 53.4375, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 26, - "left": 53.4375, - "top": 80.647035, - "right": 54.84375, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 26, - "left": 54.84375, - "top": 80.647035, - "right": 56.25, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 26, - "left": 56.25, - "top": 80.647035, - "right": 57.65625, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 26, - "left": 57.65625, - "top": 80.647035, - "right": 59.0625, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 26, - "left": 59.0625, - "top": 80.647035, - "right": 60.46875, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 26, - "left": 60.46875, - "top": 80.647035, - "right": 61.875, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 26, - "left": 61.875, - "top": 80.647035, - "right": 63.28125, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 26, - "left": 91.40625, - "top": 80.647035, - "right": 92.8125, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 26, - "left": 92.8125, - "top": 80.647035, - "right": 94.21875, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 26, - "left": 94.21875, - "top": 80.647035, - "right": 95.625, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 26, - "left": 95.625, - "top": 80.647035, - "right": 97.03125, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 26, - "left": 97.03125, - "top": 80.647035, - "right": 98.4375, - "bottom": 80.415707, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 27, - "left": 46.40625, - "top": 80.415707, - "right": 47.8125, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 27, - "left": 47.8125, - "top": 80.415707, - "right": 49.21875, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 27, - "left": 49.21875, - "top": 80.415707, - "right": 50.625, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 27, - "left": 50.625, - "top": 80.415707, - "right": 52.03125, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 27, - "left": 52.03125, - "top": 80.415707, - "right": 53.4375, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 27, - "left": 53.4375, - "top": 80.415707, - "right": 54.84375, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 27, - "left": 54.84375, - "top": 80.415707, - "right": 56.25, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 27, - "left": 56.25, - "top": 80.415707, - "right": 57.65625, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 27, - "left": 57.65625, - "top": 80.415707, - "right": 59.0625, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 27, - "left": 59.0625, - "top": 80.415707, - "right": 60.46875, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 27, - "left": 60.46875, - "top": 80.415707, - "right": 61.875, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 27, - "left": 91.40625, - "top": 80.415707, - "right": 92.8125, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 27, - "left": 92.8125, - "top": 80.415707, - "right": 94.21875, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 27, - "left": 94.21875, - "top": 80.415707, - "right": 95.625, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 27, - "left": 95.625, - "top": 80.415707, - "right": 97.03125, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 27, - "left": 97.03125, - "top": 80.415707, - "right": 98.4375, - "bottom": 80.178713, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 28, - "left": 46.40625, - "top": 80.178713, - "right": 47.8125, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 28, - "left": 47.8125, - "top": 80.178713, - "right": 49.21875, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 28, - "left": 49.21875, - "top": 80.178713, - "right": 50.625, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 28, - "left": 50.625, - "top": 80.178713, - "right": 52.03125, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 28, - "left": 52.03125, - "top": 80.178713, - "right": 53.4375, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 28, - "left": 53.4375, - "top": 80.178713, - "right": 54.84375, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 28, - "left": 54.84375, - "top": 80.178713, - "right": 56.25, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 28, - "left": 56.25, - "top": 80.178713, - "right": 57.65625, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 28, - "left": 57.65625, - "top": 80.178713, - "right": 59.0625, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 28, - "left": 59.0625, - "top": 80.178713, - "right": 60.46875, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 28, - "left": 90.0, - "top": 80.178713, - "right": 91.40625, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 28, - "left": 91.40625, - "top": 80.178713, - "right": 92.8125, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 28, - "left": 92.8125, - "top": 80.178713, - "right": 94.21875, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 28, - "left": 94.21875, - "top": 80.178713, - "right": 95.625, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 28, - "left": 95.625, - "top": 80.178713, - "right": 97.03125, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 28, - "left": 97.03125, - "top": 80.178713, - "right": 98.4375, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 28, - "left": 98.4375, - "top": 80.178713, - "right": 99.84375, - "bottom": 79.935918, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 29, - "left": 49.21875, - "top": 79.935918, - "right": 50.625, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 29, - "left": 50.625, - "top": 79.935918, - "right": 52.03125, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 29, - "left": 57.65625, - "top": 79.935918, - "right": 59.0625, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 29, - "left": 59.0625, - "top": 79.935918, - "right": 60.46875, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 29, - "left": 90.0, - "top": 79.935918, - "right": 91.40625, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 29, - "left": 91.40625, - "top": 79.935918, - "right": 92.8125, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 29, - "left": 92.8125, - "top": 79.935918, - "right": 94.21875, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 29, - "left": 94.21875, - "top": 79.935918, - "right": 95.625, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 29, - "left": 95.625, - "top": 79.935918, - "right": 97.03125, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 29, - "left": 97.03125, - "top": 79.935918, - "right": 98.4375, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 29, - "left": 98.4375, - "top": 79.935918, - "right": 99.84375, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 29, - "left": 99.84375, - "top": 79.935918, - "right": 101.25, - "bottom": 79.687184, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 30, - "left": 75.9375, - "top": 79.687184, - "right": 77.34375, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 30, - "left": 77.34375, - "top": 79.687184, - "right": 78.75, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 30, - "left": 90.0, - "top": 79.687184, - "right": 91.40625, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 30, - "left": 91.40625, - "top": 79.687184, - "right": 92.8125, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 30, - "left": 92.8125, - "top": 79.687184, - "right": 94.21875, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 30, - "left": 94.21875, - "top": 79.687184, - "right": 95.625, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 30, - "left": 95.625, - "top": 79.687184, - "right": 97.03125, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 30, - "left": 97.03125, - "top": 79.687184, - "right": 98.4375, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 30, - "left": 98.4375, - "top": 79.687184, - "right": 99.84375, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 30, - "left": 99.84375, - "top": 79.687184, - "right": 101.25, - "bottom": 79.432371, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 31, - "left": 91.40625, - "top": 79.432371, - "right": 92.8125, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 31, - "left": 92.8125, - "top": 79.432371, - "right": 94.21875, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 31, - "left": 94.21875, - "top": 79.432371, - "right": 95.625, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 31, - "left": 95.625, - "top": 79.432371, - "right": 97.03125, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 31, - "left": 97.03125, - "top": 79.432371, - "right": 98.4375, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 31, - "left": 98.4375, - "top": 79.432371, - "right": 99.84375, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 31, - "left": 99.84375, - "top": 79.432371, - "right": 101.25, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 31, - "left": 101.25, - "top": 79.432371, - "right": 102.65625, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 31, - "left": 102.65625, - "top": 79.432371, - "right": 104.0625, - "bottom": 79.171335, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 32, - "left": 91.40625, - "top": 79.171335, - "right": 92.8125, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 32, - "left": 92.8125, - "top": 79.171335, - "right": 94.21875, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 32, - "left": 94.21875, - "top": 79.171335, - "right": 95.625, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 32, - "left": 95.625, - "top": 79.171335, - "right": 97.03125, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 32, - "left": 97.03125, - "top": 79.171335, - "right": 98.4375, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 32, - "left": 98.4375, - "top": 79.171335, - "right": 99.84375, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 32, - "left": 99.84375, - "top": 79.171335, - "right": 101.25, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 32, - "left": 101.25, - "top": 79.171335, - "right": 102.65625, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 32, - "left": 102.65625, - "top": 79.171335, - "right": 104.0625, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 32, - "left": 104.0625, - "top": 79.171335, - "right": 105.46875, - "bottom": 78.903929, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 33, - "left": 97.03125, - "top": 78.903929, - "right": 98.4375, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 33, - "left": 98.4375, - "top": 78.903929, - "right": 99.84375, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 33, - "left": 99.84375, - "top": 78.903929, - "right": 101.25, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 33, - "left": 101.25, - "top": 78.903929, - "right": 102.65625, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 33, - "left": 102.65625, - "top": 78.903929, - "right": 104.0625, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 33, - "left": 104.0625, - "top": 78.903929, - "right": 105.46875, - "bottom": 78.630006, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 34, - "left": 98.4375, - "top": 78.630006, - "right": 99.84375, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 34, - "left": 99.84375, - "top": 78.630006, - "right": 101.25, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 34, - "left": 101.25, - "top": 78.630006, - "right": 102.65625, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 34, - "left": 102.65625, - "top": 78.630006, - "right": 104.0625, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 34, - "left": 104.0625, - "top": 78.630006, - "right": 105.46875, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 34, - "left": 105.46875, - "top": 78.630006, - "right": 106.875, - "bottom": 78.349411, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 35, - "left": 92.8125, - "top": 78.349411, - "right": 94.21875, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 35, - "left": 98.4375, - "top": 78.349411, - "right": 99.84375, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 35, - "left": 99.84375, - "top": 78.349411, - "right": 101.25, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 35, - "left": 101.25, - "top": 78.349411, - "right": 102.65625, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 35, - "left": 102.65625, - "top": 78.349411, - "right": 104.0625, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 35, - "left": 104.0625, - "top": 78.349411, - "right": 105.46875, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 35, - "left": 105.46875, - "top": 78.349411, - "right": 106.875, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 35, - "left": 106.875, - "top": 78.349411, - "right": 108.28125, - "bottom": 78.061989, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 36, - "left": 98.4375, - "top": 78.061989, - "right": 99.84375, - "bottom": 77.767582, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 36, - "left": 99.84375, - "top": 78.061989, - "right": 101.25, - "bottom": 77.767582, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 36, - "left": 106.875, - "top": 78.061989, - "right": 108.28125, - "bottom": 77.767582, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 37, - "left": 81.5625, - "top": 77.767582, - "right": 82.96875, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 37, - "left": 91.40625, - "top": 77.767582, - "right": 92.8125, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 37, - "left": 99.84375, - "top": 77.767582, - "right": 101.25, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 37, - "left": 101.25, - "top": 77.767582, - "right": 102.65625, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 37, - "left": 102.65625, - "top": 77.767582, - "right": 104.0625, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 37, - "left": 104.0625, - "top": 77.767582, - "right": 105.46875, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 37, - "left": 105.46875, - "top": 77.767582, - "right": 106.875, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 37, - "left": 106.875, - "top": 77.767582, - "right": 108.28125, - "bottom": 77.466028, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 38, - "left": 88.59375, - "top": 77.466028, - "right": 90.0, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 38, - "left": 90.0, - "top": 77.466028, - "right": 91.40625, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 38, - "left": 95.625, - "top": 77.466028, - "right": 97.03125, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 38, - "left": 99.84375, - "top": 77.466028, - "right": 101.25, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 38, - "left": 101.25, - "top": 77.466028, - "right": 102.65625, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 38, - "left": 102.65625, - "top": 77.466028, - "right": 104.0625, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 38, - "left": 104.0625, - "top": 77.466028, - "right": 105.46875, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 38, - "left": 105.46875, - "top": 77.466028, - "right": 106.875, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 38, - "left": 106.875, - "top": 77.466028, - "right": 108.28125, - "bottom": 77.157163, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 39, - "left": 66.09375, - "top": 77.157163, - "right": 67.5, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 39, - "left": 67.5, - "top": 77.157163, - "right": 68.90625, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 39, - "left": 88.59375, - "top": 77.157163, - "right": 90.0, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 39, - "left": 90.0, - "top": 77.157163, - "right": 91.40625, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 39, - "left": 94.21875, - "top": 77.157163, - "right": 95.625, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 39, - "left": 95.625, - "top": 77.157163, - "right": 97.03125, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 39, - "left": 97.03125, - "top": 77.157163, - "right": 98.4375, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 39, - "left": 99.84375, - "top": 77.157163, - "right": 101.25, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 39, - "left": 101.25, - "top": 77.157163, - "right": 102.65625, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 39, - "left": 102.65625, - "top": 77.157163, - "right": 104.0625, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 39, - "left": 104.0625, - "top": 77.157163, - "right": 105.46875, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 39, - "left": 105.46875, - "top": 77.157163, - "right": 106.875, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 39, - "left": 106.875, - "top": 77.157163, - "right": 108.28125, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 39, - "left": 156.09375, - "top": 77.157163, - "right": 157.5, - "bottom": 76.840816, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 40, - "left": 64.6875, - "top": 76.840816, - "right": 66.09375, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 40, - "left": 66.09375, - "top": 76.840816, - "right": 67.5, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 40, - "left": 67.5, - "top": 76.840816, - "right": 68.90625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 40, - "left": 68.90625, - "top": 76.840816, - "right": 70.3125, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 40, - "left": 92.8125, - "top": 76.840816, - "right": 94.21875, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 40, - "left": 94.21875, - "top": 76.840816, - "right": 95.625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 40, - "left": 95.625, - "top": 76.840816, - "right": 97.03125, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 40, - "left": 97.03125, - "top": 76.840816, - "right": 98.4375, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 40, - "left": 99.84375, - "top": 76.840816, - "right": 101.25, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 40, - "left": 101.25, - "top": 76.840816, - "right": 102.65625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 40, - "left": 102.65625, - "top": 76.840816, - "right": 104.0625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 40, - "left": 104.0625, - "top": 76.840816, - "right": 105.46875, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 40, - "left": 105.46875, - "top": 76.840816, - "right": 106.875, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 40, - "left": 106.875, - "top": 76.840816, - "right": 108.28125, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 40, - "left": 108.28125, - "top": 76.840816, - "right": 109.6875, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 40, - "left": 109.6875, - "top": 76.840816, - "right": 111.09375, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 40, - "left": 111.09375, - "top": 76.840816, - "right": 112.5, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 40, - "left": 112.5, - "top": 76.840816, - "right": 113.90625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 40, - "left": 147.65625, - "top": 76.840816, - "right": 149.0625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 40, - "left": 149.0625, - "top": 76.840816, - "right": 150.46875, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 40, - "left": 157.5, - "top": 76.840816, - "right": 158.90625, - "bottom": 76.516819, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 41, - "left": 60.46875, - "top": 76.516819, - "right": 61.875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 41, - "left": 61.875, - "top": 76.516819, - "right": 63.28125, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 41, - "left": 63.28125, - "top": 76.516819, - "right": 64.6875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 41, - "left": 64.6875, - "top": 76.516819, - "right": 66.09375, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 41, - "left": 66.09375, - "top": 76.516819, - "right": 67.5, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 41, - "left": 67.5, - "top": 76.516819, - "right": 68.90625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 41, - "left": 94.21875, - "top": 76.516819, - "right": 95.625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 41, - "left": 95.625, - "top": 76.516819, - "right": 97.03125, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 41, - "left": 97.03125, - "top": 76.516819, - "right": 98.4375, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 41, - "left": 98.4375, - "top": 76.516819, - "right": 99.84375, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 41, - "left": 99.84375, - "top": 76.516819, - "right": 101.25, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 41, - "left": 101.25, - "top": 76.516819, - "right": 102.65625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 41, - "left": 102.65625, - "top": 76.516819, - "right": 104.0625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 41, - "left": 104.0625, - "top": 76.516819, - "right": 105.46875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 41, - "left": 105.46875, - "top": 76.516819, - "right": 106.875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 41, - "left": 106.875, - "top": 76.516819, - "right": 108.28125, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 41, - "left": 108.28125, - "top": 76.516819, - "right": 109.6875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 41, - "left": 109.6875, - "top": 76.516819, - "right": 111.09375, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 41, - "left": 111.09375, - "top": 76.516819, - "right": 112.5, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 41, - "left": 112.5, - "top": 76.516819, - "right": 113.90625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 41, - "left": 137.8125, - "top": 76.516819, - "right": 139.21875, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 41, - "left": 139.21875, - "top": 76.516819, - "right": 140.625, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 41, - "left": 151.875, - "top": 76.516819, - "right": 153.28125, - "bottom": 76.184995, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 42, - "left": 57.65625, - "top": 76.184995, - "right": 59.0625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 42, - "left": 59.0625, - "top": 76.184995, - "right": 60.46875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 42, - "left": 60.46875, - "top": 76.184995, - "right": 61.875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 42, - "left": 61.875, - "top": 76.184995, - "right": 63.28125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 42, - "left": 63.28125, - "top": 76.184995, - "right": 64.6875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 42, - "left": 64.6875, - "top": 76.184995, - "right": 66.09375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 42, - "left": 66.09375, - "top": 76.184995, - "right": 67.5, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 42, - "left": 67.5, - "top": 76.184995, - "right": 68.90625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 42, - "left": 81.5625, - "top": 76.184995, - "right": 82.96875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 42, - "left": 82.96875, - "top": 76.184995, - "right": 84.375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 42, - "left": 91.40625, - "top": 76.184995, - "right": 92.8125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 42, - "left": 92.8125, - "top": 76.184995, - "right": 94.21875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 42, - "left": 94.21875, - "top": 76.184995, - "right": 95.625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 42, - "left": 95.625, - "top": 76.184995, - "right": 97.03125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 42, - "left": 97.03125, - "top": 76.184995, - "right": 98.4375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 42, - "left": 98.4375, - "top": 76.184995, - "right": 99.84375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 42, - "left": 99.84375, - "top": 76.184995, - "right": 101.25, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 42, - "left": 101.25, - "top": 76.184995, - "right": 102.65625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 42, - "left": 102.65625, - "top": 76.184995, - "right": 104.0625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 42, - "left": 104.0625, - "top": 76.184995, - "right": 105.46875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 42, - "left": 105.46875, - "top": 76.184995, - "right": 106.875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 42, - "left": 106.875, - "top": 76.184995, - "right": 108.28125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 42, - "left": 108.28125, - "top": 76.184995, - "right": 109.6875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 42, - "left": 109.6875, - "top": 76.184995, - "right": 111.09375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 42, - "left": 111.09375, - "top": 76.184995, - "right": 112.5, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 42, - "left": 112.5, - "top": 76.184995, - "right": 113.90625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 42, - "left": 113.90625, - "top": 76.184995, - "right": 115.3125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 42, - "left": 135.0, - "top": 76.184995, - "right": 136.40625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 42, - "left": 136.40625, - "top": 76.184995, - "right": 137.8125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 42, - "left": 137.8125, - "top": 76.184995, - "right": 139.21875, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 42, - "left": 139.21875, - "top": 76.184995, - "right": 140.625, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 42, - "left": 140.625, - "top": 76.184995, - "right": 142.03125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 42, - "left": 142.03125, - "top": 76.184995, - "right": 143.4375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 42, - "left": 143.4375, - "top": 76.184995, - "right": 144.84375, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 42, - "left": 151.875, - "top": 76.184995, - "right": 153.28125, - "bottom": 75.845169, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 43, - "left": 56.25, - "top": 75.845169, - "right": 57.65625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 43, - "left": 57.65625, - "top": 75.845169, - "right": 59.0625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 43, - "left": 59.0625, - "top": 75.845169, - "right": 60.46875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 43, - "left": 60.46875, - "top": 75.845169, - "right": 61.875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 43, - "left": 61.875, - "top": 75.845169, - "right": 63.28125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 43, - "left": 63.28125, - "top": 75.845169, - "right": 64.6875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 43, - "left": 64.6875, - "top": 75.845169, - "right": 66.09375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 43, - "left": 81.5625, - "top": 75.845169, - "right": 82.96875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 43, - "left": 87.1875, - "top": 75.845169, - "right": 88.59375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 43, - "left": 88.59375, - "top": 75.845169, - "right": 90.0, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 43, - "left": 90.0, - "top": 75.845169, - "right": 91.40625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 43, - "left": 91.40625, - "top": 75.845169, - "right": 92.8125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 43, - "left": 92.8125, - "top": 75.845169, - "right": 94.21875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 43, - "left": 94.21875, - "top": 75.845169, - "right": 95.625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 43, - "left": 95.625, - "top": 75.845169, - "right": 97.03125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 43, - "left": 97.03125, - "top": 75.845169, - "right": 98.4375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 43, - "left": 98.4375, - "top": 75.845169, - "right": 99.84375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 43, - "left": 99.84375, - "top": 75.845169, - "right": 101.25, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 43, - "left": 101.25, - "top": 75.845169, - "right": 102.65625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 43, - "left": 102.65625, - "top": 75.845169, - "right": 104.0625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 43, - "left": 104.0625, - "top": 75.845169, - "right": 105.46875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 43, - "left": 105.46875, - "top": 75.845169, - "right": 106.875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 43, - "left": 106.875, - "top": 75.845169, - "right": 108.28125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 43, - "left": 108.28125, - "top": 75.845169, - "right": 109.6875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 43, - "left": 109.6875, - "top": 75.845169, - "right": 111.09375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 43, - "left": 111.09375, - "top": 75.845169, - "right": 112.5, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 43, - "left": 112.5, - "top": 75.845169, - "right": 113.90625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 43, - "left": 113.90625, - "top": 75.845169, - "right": 115.3125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 43, - "left": 135.0, - "top": 75.845169, - "right": 136.40625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 43, - "left": 136.40625, - "top": 75.845169, - "right": 137.8125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 43, - "left": 137.8125, - "top": 75.845169, - "right": 139.21875, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 43, - "left": 139.21875, - "top": 75.845169, - "right": 140.625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 43, - "left": 140.625, - "top": 75.845169, - "right": 142.03125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 43, - "left": 142.03125, - "top": 75.845169, - "right": 143.4375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 43, - "left": 143.4375, - "top": 75.845169, - "right": 144.84375, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 43, - "left": 144.84375, - "top": 75.845169, - "right": 146.25, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 43, - "left": 146.25, - "top": 75.845169, - "right": 147.65625, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 43, - "left": 151.875, - "top": 75.845169, - "right": 153.28125, - "bottom": 75.497157, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 44, - "left": 54.84375, - "top": 75.497157, - "right": 56.25, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 44, - "left": 56.25, - "top": 75.497157, - "right": 57.65625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 44, - "left": 57.65625, - "top": 75.497157, - "right": 59.0625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 44, - "left": 59.0625, - "top": 75.497157, - "right": 60.46875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 44, - "left": 60.46875, - "top": 75.497157, - "right": 61.875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 44, - "left": 61.875, - "top": 75.497157, - "right": 63.28125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 44, - "left": 81.5625, - "top": 75.497157, - "right": 82.96875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 44, - "left": 85.78125, - "top": 75.497157, - "right": 87.1875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 44, - "left": 87.1875, - "top": 75.497157, - "right": 88.59375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 44, - "left": 88.59375, - "top": 75.497157, - "right": 90.0, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 44, - "left": 90.0, - "top": 75.497157, - "right": 91.40625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 44, - "left": 91.40625, - "top": 75.497157, - "right": 92.8125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 44, - "left": 92.8125, - "top": 75.497157, - "right": 94.21875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 44, - "left": 94.21875, - "top": 75.497157, - "right": 95.625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 44, - "left": 95.625, - "top": 75.497157, - "right": 97.03125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 44, - "left": 97.03125, - "top": 75.497157, - "right": 98.4375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 44, - "left": 98.4375, - "top": 75.497157, - "right": 99.84375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 44, - "left": 99.84375, - "top": 75.497157, - "right": 101.25, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 44, - "left": 101.25, - "top": 75.497157, - "right": 102.65625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 44, - "left": 102.65625, - "top": 75.497157, - "right": 104.0625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 44, - "left": 104.0625, - "top": 75.497157, - "right": 105.46875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 44, - "left": 105.46875, - "top": 75.497157, - "right": 106.875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 44, - "left": 106.875, - "top": 75.497157, - "right": 108.28125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 44, - "left": 108.28125, - "top": 75.497157, - "right": 109.6875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 44, - "left": 109.6875, - "top": 75.497157, - "right": 111.09375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 44, - "left": 111.09375, - "top": 75.497157, - "right": 112.5, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 44, - "left": 112.5, - "top": 75.497157, - "right": 113.90625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 44, - "left": 135.0, - "top": 75.497157, - "right": 136.40625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 44, - "left": 136.40625, - "top": 75.497157, - "right": 137.8125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 44, - "left": 137.8125, - "top": 75.497157, - "right": 139.21875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 44, - "left": 139.21875, - "top": 75.497157, - "right": 140.625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 44, - "left": 140.625, - "top": 75.497157, - "right": 142.03125, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 44, - "left": 142.03125, - "top": 75.497157, - "right": 143.4375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 44, - "left": 143.4375, - "top": 75.497157, - "right": 144.84375, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 44, - "left": 144.84375, - "top": 75.497157, - "right": 146.25, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 44, - "left": 146.25, - "top": 75.497157, - "right": 147.65625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 44, - "left": 147.65625, - "top": 75.497157, - "right": 149.0625, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 44, - "left": 149.0625, - "top": 75.497157, - "right": 150.46875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 44, - "left": 150.46875, - "top": 75.497157, - "right": 151.875, - "bottom": 75.140778, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 45, - "left": 54.84375, - "top": 75.140778, - "right": 56.25, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 45, - "left": 56.25, - "top": 75.140778, - "right": 57.65625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 45, - "left": 57.65625, - "top": 75.140778, - "right": 59.0625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 45, - "left": 59.0625, - "top": 75.140778, - "right": 60.46875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 45, - "left": 60.46875, - "top": 75.140778, - "right": 61.875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 45, - "left": 81.5625, - "top": 75.140778, - "right": 82.96875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 45, - "left": 84.375, - "top": 75.140778, - "right": 85.78125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 45, - "left": 85.78125, - "top": 75.140778, - "right": 87.1875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 45, - "left": 87.1875, - "top": 75.140778, - "right": 88.59375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 45, - "left": 88.59375, - "top": 75.140778, - "right": 90.0, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 45, - "left": 90.0, - "top": 75.140778, - "right": 91.40625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 45, - "left": 91.40625, - "top": 75.140778, - "right": 92.8125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 45, - "left": 92.8125, - "top": 75.140778, - "right": 94.21875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 45, - "left": 94.21875, - "top": 75.140778, - "right": 95.625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 45, - "left": 95.625, - "top": 75.140778, - "right": 97.03125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 45, - "left": 97.03125, - "top": 75.140778, - "right": 98.4375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 45, - "left": 98.4375, - "top": 75.140778, - "right": 99.84375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 45, - "left": 99.84375, - "top": 75.140778, - "right": 101.25, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 45, - "left": 101.25, - "top": 75.140778, - "right": 102.65625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 45, - "left": 102.65625, - "top": 75.140778, - "right": 104.0625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 45, - "left": 104.0625, - "top": 75.140778, - "right": 105.46875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 45, - "left": 105.46875, - "top": 75.140778, - "right": 106.875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 45, - "left": 106.875, - "top": 75.140778, - "right": 108.28125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 45, - "left": 108.28125, - "top": 75.140778, - "right": 109.6875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 45, - "left": 109.6875, - "top": 75.140778, - "right": 111.09375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 45, - "left": 111.09375, - "top": 75.140778, - "right": 112.5, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 45, - "left": 112.5, - "top": 75.140778, - "right": 113.90625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 45, - "left": 136.40625, - "top": 75.140778, - "right": 137.8125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 45, - "left": 137.8125, - "top": 75.140778, - "right": 139.21875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 45, - "left": 139.21875, - "top": 75.140778, - "right": 140.625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 45, - "left": 140.625, - "top": 75.140778, - "right": 142.03125, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 45, - "left": 142.03125, - "top": 75.140778, - "right": 143.4375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 45, - "left": 143.4375, - "top": 75.140778, - "right": 144.84375, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 45, - "left": 146.25, - "top": 75.140778, - "right": 147.65625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 45, - "left": 147.65625, - "top": 75.140778, - "right": 149.0625, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 45, - "left": 149.0625, - "top": 75.140778, - "right": 150.46875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 45, - "left": 150.46875, - "top": 75.140778, - "right": 151.875, - "bottom": 74.775843, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 46, - "left": 54.84375, - "top": 74.775843, - "right": 56.25, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 46, - "left": 56.25, - "top": 74.775843, - "right": 57.65625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 46, - "left": 57.65625, - "top": 74.775843, - "right": 59.0625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 46, - "left": 59.0625, - "top": 74.775843, - "right": 60.46875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 46, - "left": 78.75, - "top": 74.775843, - "right": 80.15625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 46, - "left": 82.96875, - "top": 74.775843, - "right": 84.375, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 46, - "left": 84.375, - "top": 74.775843, - "right": 85.78125, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 46, - "left": 85.78125, - "top": 74.775843, - "right": 87.1875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 46, - "left": 87.1875, - "top": 74.775843, - "right": 88.59375, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 46, - "left": 88.59375, - "top": 74.775843, - "right": 90.0, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 46, - "left": 90.0, - "top": 74.775843, - "right": 91.40625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 46, - "left": 91.40625, - "top": 74.775843, - "right": 92.8125, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 46, - "left": 92.8125, - "top": 74.775843, - "right": 94.21875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 46, - "left": 94.21875, - "top": 74.775843, - "right": 95.625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 46, - "left": 95.625, - "top": 74.775843, - "right": 97.03125, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 46, - "left": 97.03125, - "top": 74.775843, - "right": 98.4375, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 46, - "left": 98.4375, - "top": 74.775843, - "right": 99.84375, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 46, - "left": 99.84375, - "top": 74.775843, - "right": 101.25, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 46, - "left": 101.25, - "top": 74.775843, - "right": 102.65625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 46, - "left": 102.65625, - "top": 74.775843, - "right": 104.0625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 46, - "left": 104.0625, - "top": 74.775843, - "right": 105.46875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 46, - "left": 105.46875, - "top": 74.775843, - "right": 106.875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 46, - "left": 106.875, - "top": 74.775843, - "right": 108.28125, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 46, - "left": 108.28125, - "top": 74.775843, - "right": 109.6875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 46, - "left": 109.6875, - "top": 74.775843, - "right": 111.09375, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 46, - "left": 111.09375, - "top": 74.775843, - "right": 112.5, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 46, - "left": 112.5, - "top": 74.775843, - "right": 113.90625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 46, - "left": 137.8125, - "top": 74.775843, - "right": 139.21875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 46, - "left": 139.21875, - "top": 74.775843, - "right": 140.625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 46, - "left": 147.65625, - "top": 74.775843, - "right": 149.0625, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 46, - "left": 149.0625, - "top": 74.775843, - "right": 150.46875, - "bottom": 74.402163, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 47, - "left": 53.4375, - "top": 74.402163, - "right": 54.84375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 47, - "left": 54.84375, - "top": 74.402163, - "right": 56.25, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 47, - "left": 56.25, - "top": 74.402163, - "right": 57.65625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 47, - "left": 57.65625, - "top": 74.402163, - "right": 59.0625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 47, - "left": 59.0625, - "top": 74.402163, - "right": 60.46875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 47, - "left": 81.5625, - "top": 74.402163, - "right": 82.96875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 47, - "left": 82.96875, - "top": 74.402163, - "right": 84.375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 47, - "left": 84.375, - "top": 74.402163, - "right": 85.78125, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 47, - "left": 85.78125, - "top": 74.402163, - "right": 87.1875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 47, - "left": 87.1875, - "top": 74.402163, - "right": 88.59375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 47, - "left": 88.59375, - "top": 74.402163, - "right": 90.0, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 47, - "left": 90.0, - "top": 74.402163, - "right": 91.40625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 47, - "left": 91.40625, - "top": 74.402163, - "right": 92.8125, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 47, - "left": 92.8125, - "top": 74.402163, - "right": 94.21875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 47, - "left": 94.21875, - "top": 74.402163, - "right": 95.625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 47, - "left": 95.625, - "top": 74.402163, - "right": 97.03125, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 47, - "left": 97.03125, - "top": 74.402163, - "right": 98.4375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 47, - "left": 98.4375, - "top": 74.402163, - "right": 99.84375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 47, - "left": 99.84375, - "top": 74.402163, - "right": 101.25, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 47, - "left": 101.25, - "top": 74.402163, - "right": 102.65625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 47, - "left": 102.65625, - "top": 74.402163, - "right": 104.0625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 47, - "left": 104.0625, - "top": 74.402163, - "right": 105.46875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 47, - "left": 105.46875, - "top": 74.402163, - "right": 106.875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 47, - "left": 106.875, - "top": 74.402163, - "right": 108.28125, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 47, - "left": 108.28125, - "top": 74.402163, - "right": 109.6875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 47, - "left": 109.6875, - "top": 74.402163, - "right": 111.09375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 47, - "left": 111.09375, - "top": 74.402163, - "right": 112.5, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 47, - "left": 112.5, - "top": 74.402163, - "right": 113.90625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 47, - "left": 115.3125, - "top": 74.402163, - "right": 116.71875, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 47, - "left": 119.53125, - "top": 74.402163, - "right": 120.9375, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 47, - "left": 135.0, - "top": 74.402163, - "right": 136.40625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 47, - "left": 139.21875, - "top": 74.402163, - "right": 140.625, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 47, - "left": 140.625, - "top": 74.402163, - "right": 142.03125, - "bottom": 74.019543, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 48, - "left": 53.4375, - "top": 74.019543, - "right": 54.84375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 48, - "left": 54.84375, - "top": 74.019543, - "right": 56.25, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 48, - "left": 56.25, - "top": 74.019543, - "right": 57.65625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 48, - "left": 57.65625, - "top": 74.019543, - "right": 59.0625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 48, - "left": 81.5625, - "top": 74.019543, - "right": 82.96875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 48, - "left": 82.96875, - "top": 74.019543, - "right": 84.375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 48, - "left": 84.375, - "top": 74.019543, - "right": 85.78125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 48, - "left": 85.78125, - "top": 74.019543, - "right": 87.1875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 48, - "left": 87.1875, - "top": 74.019543, - "right": 88.59375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 48, - "left": 88.59375, - "top": 74.019543, - "right": 90.0, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 48, - "left": 90.0, - "top": 74.019543, - "right": 91.40625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 48, - "left": 91.40625, - "top": 74.019543, - "right": 92.8125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 48, - "left": 92.8125, - "top": 74.019543, - "right": 94.21875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 48, - "left": 94.21875, - "top": 74.019543, - "right": 95.625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 48, - "left": 95.625, - "top": 74.019543, - "right": 97.03125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 48, - "left": 97.03125, - "top": 74.019543, - "right": 98.4375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 48, - "left": 98.4375, - "top": 74.019543, - "right": 99.84375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 48, - "left": 99.84375, - "top": 74.019543, - "right": 101.25, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 48, - "left": 101.25, - "top": 74.019543, - "right": 102.65625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 48, - "left": 102.65625, - "top": 74.019543, - "right": 104.0625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 48, - "left": 104.0625, - "top": 74.019543, - "right": 105.46875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 48, - "left": 105.46875, - "top": 74.019543, - "right": 106.875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 48, - "left": 106.875, - "top": 74.019543, - "right": 108.28125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 48, - "left": 108.28125, - "top": 74.019543, - "right": 109.6875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 48, - "left": 109.6875, - "top": 74.019543, - "right": 111.09375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 48, - "left": 111.09375, - "top": 74.019543, - "right": 112.5, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 48, - "left": 112.5, - "top": 74.019543, - "right": 113.90625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 48, - "left": 113.90625, - "top": 74.019543, - "right": 115.3125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 48, - "left": 115.3125, - "top": 74.019543, - "right": 116.71875, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 48, - "left": 116.71875, - "top": 74.019543, - "right": 118.125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 48, - "left": 122.34375, - "top": 74.019543, - "right": 123.75, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 48, - "left": 123.75, - "top": 74.019543, - "right": 125.15625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 48, - "left": 125.15625, - "top": 74.019543, - "right": 126.5625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 48, - "left": 135.0, - "top": 74.019543, - "right": 136.40625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 48, - "left": 139.21875, - "top": 74.019543, - "right": 140.625, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 48, - "left": 140.625, - "top": 74.019543, - "right": 142.03125, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 48, - "left": 142.03125, - "top": 74.019543, - "right": 143.4375, - "bottom": 73.627789, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 49, - "left": 52.03125, - "top": 73.627789, - "right": 53.4375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 49, - "left": 53.4375, - "top": 73.627789, - "right": 54.84375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 49, - "left": 54.84375, - "top": 73.627789, - "right": 56.25, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 49, - "left": 56.25, - "top": 73.627789, - "right": 57.65625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 49, - "left": 68.90625, - "top": 73.627789, - "right": 70.3125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 49, - "left": 70.3125, - "top": 73.627789, - "right": 71.71875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 49, - "left": 74.53125, - "top": 73.627789, - "right": 75.9375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 49, - "left": 75.9375, - "top": 73.627789, - "right": 77.34375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 49, - "left": 78.75, - "top": 73.627789, - "right": 80.15625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 49, - "left": 80.15625, - "top": 73.627789, - "right": 81.5625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 49, - "left": 81.5625, - "top": 73.627789, - "right": 82.96875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 49, - "left": 82.96875, - "top": 73.627789, - "right": 84.375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 49, - "left": 84.375, - "top": 73.627789, - "right": 85.78125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 49, - "left": 85.78125, - "top": 73.627789, - "right": 87.1875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 49, - "left": 87.1875, - "top": 73.627789, - "right": 88.59375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 49, - "left": 88.59375, - "top": 73.627789, - "right": 90.0, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 49, - "left": 90.0, - "top": 73.627789, - "right": 91.40625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 49, - "left": 91.40625, - "top": 73.627789, - "right": 92.8125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 49, - "left": 92.8125, - "top": 73.627789, - "right": 94.21875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 49, - "left": 94.21875, - "top": 73.627789, - "right": 95.625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 49, - "left": 95.625, - "top": 73.627789, - "right": 97.03125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 49, - "left": 97.03125, - "top": 73.627789, - "right": 98.4375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 49, - "left": 98.4375, - "top": 73.627789, - "right": 99.84375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 49, - "left": 99.84375, - "top": 73.627789, - "right": 101.25, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 49, - "left": 101.25, - "top": 73.627789, - "right": 102.65625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 49, - "left": 102.65625, - "top": 73.627789, - "right": 104.0625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 49, - "left": 104.0625, - "top": 73.627789, - "right": 105.46875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 49, - "left": 105.46875, - "top": 73.627789, - "right": 106.875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 49, - "left": 106.875, - "top": 73.627789, - "right": 108.28125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 49, - "left": 108.28125, - "top": 73.627789, - "right": 109.6875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 49, - "left": 109.6875, - "top": 73.627789, - "right": 111.09375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 49, - "left": 111.09375, - "top": 73.627789, - "right": 112.5, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 49, - "left": 112.5, - "top": 73.627789, - "right": 113.90625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 49, - "left": 113.90625, - "top": 73.627789, - "right": 115.3125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 49, - "left": 115.3125, - "top": 73.627789, - "right": 116.71875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 49, - "left": 116.71875, - "top": 73.627789, - "right": 118.125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 49, - "left": 118.125, - "top": 73.627789, - "right": 119.53125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 49, - "left": 122.34375, - "top": 73.627789, - "right": 123.75, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 49, - "left": 123.75, - "top": 73.627789, - "right": 125.15625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 49, - "left": 125.15625, - "top": 73.627789, - "right": 126.5625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 49, - "left": 126.5625, - "top": 73.627789, - "right": 127.96875, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 49, - "left": 127.96875, - "top": 73.627789, - "right": 129.375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 49, - "left": 139.21875, - "top": 73.627789, - "right": 140.625, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 49, - "left": 140.625, - "top": 73.627789, - "right": 142.03125, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 49, - "left": 142.03125, - "top": 73.627789, - "right": 143.4375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 49, - "left": 143.4375, - "top": 73.627789, - "right": 144.84375, - "bottom": 73.2267, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 50, - "left": 52.03125, - "top": 73.2267, - "right": 53.4375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 50, - "left": 53.4375, - "top": 73.2267, - "right": 54.84375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 50, - "left": 54.84375, - "top": 73.2267, - "right": 56.25, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 50, - "left": 56.25, - "top": 73.2267, - "right": 57.65625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 50, - "left": 68.90625, - "top": 73.2267, - "right": 70.3125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 50, - "left": 70.3125, - "top": 73.2267, - "right": 71.71875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 50, - "left": 71.71875, - "top": 73.2267, - "right": 73.125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 50, - "left": 73.125, - "top": 73.2267, - "right": 74.53125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 50, - "left": 74.53125, - "top": 73.2267, - "right": 75.9375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 50, - "left": 75.9375, - "top": 73.2267, - "right": 77.34375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 50, - "left": 77.34375, - "top": 73.2267, - "right": 78.75, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 50, - "left": 78.75, - "top": 73.2267, - "right": 80.15625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 50, - "left": 80.15625, - "top": 73.2267, - "right": 81.5625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 50, - "left": 81.5625, - "top": 73.2267, - "right": 82.96875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 50, - "left": 82.96875, - "top": 73.2267, - "right": 84.375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 50, - "left": 84.375, - "top": 73.2267, - "right": 85.78125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 50, - "left": 85.78125, - "top": 73.2267, - "right": 87.1875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 50, - "left": 87.1875, - "top": 73.2267, - "right": 88.59375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 50, - "left": 88.59375, - "top": 73.2267, - "right": 90.0, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 50, - "left": 90.0, - "top": 73.2267, - "right": 91.40625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 50, - "left": 91.40625, - "top": 73.2267, - "right": 92.8125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 50, - "left": 92.8125, - "top": 73.2267, - "right": 94.21875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 50, - "left": 94.21875, - "top": 73.2267, - "right": 95.625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 50, - "left": 95.625, - "top": 73.2267, - "right": 97.03125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 50, - "left": 97.03125, - "top": 73.2267, - "right": 98.4375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 50, - "left": 98.4375, - "top": 73.2267, - "right": 99.84375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 50, - "left": 99.84375, - "top": 73.2267, - "right": 101.25, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 50, - "left": 101.25, - "top": 73.2267, - "right": 102.65625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 50, - "left": 102.65625, - "top": 73.2267, - "right": 104.0625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 50, - "left": 104.0625, - "top": 73.2267, - "right": 105.46875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 50, - "left": 105.46875, - "top": 73.2267, - "right": 106.875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 50, - "left": 106.875, - "top": 73.2267, - "right": 108.28125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 50, - "left": 108.28125, - "top": 73.2267, - "right": 109.6875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 50, - "left": 109.6875, - "top": 73.2267, - "right": 111.09375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 50, - "left": 111.09375, - "top": 73.2267, - "right": 112.5, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 50, - "left": 112.5, - "top": 73.2267, - "right": 113.90625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 50, - "left": 113.90625, - "top": 73.2267, - "right": 115.3125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 50, - "left": 115.3125, - "top": 73.2267, - "right": 116.71875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 50, - "left": 116.71875, - "top": 73.2267, - "right": 118.125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 50, - "left": 118.125, - "top": 73.2267, - "right": 119.53125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 50, - "left": 119.53125, - "top": 73.2267, - "right": 120.9375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 50, - "left": 120.9375, - "top": 73.2267, - "right": 122.34375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 50, - "left": 122.34375, - "top": 73.2267, - "right": 123.75, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 50, - "left": 123.75, - "top": 73.2267, - "right": 125.15625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 50, - "left": 125.15625, - "top": 73.2267, - "right": 126.5625, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 50, - "left": 126.5625, - "top": 73.2267, - "right": 127.96875, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 50, - "left": 127.96875, - "top": 73.2267, - "right": 129.375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 50, - "left": 129.375, - "top": 73.2267, - "right": 130.78125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 50, - "left": 140.625, - "top": 73.2267, - "right": 142.03125, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 50, - "left": 142.03125, - "top": 73.2267, - "right": 143.4375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 50, - "left": 143.4375, - "top": 73.2267, - "right": 144.84375, - "bottom": 72.816074, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 51, - "left": 52.03125, - "top": 72.816074, - "right": 53.4375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 51, - "left": 53.4375, - "top": 72.816074, - "right": 54.84375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 51, - "left": 54.84375, - "top": 72.816074, - "right": 56.25, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 51, - "left": 67.5, - "top": 72.816074, - "right": 68.90625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 51, - "left": 68.90625, - "top": 72.816074, - "right": 70.3125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 51, - "left": 70.3125, - "top": 72.816074, - "right": 71.71875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 51, - "left": 71.71875, - "top": 72.816074, - "right": 73.125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 51, - "left": 74.53125, - "top": 72.816074, - "right": 75.9375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 51, - "left": 75.9375, - "top": 72.816074, - "right": 77.34375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 51, - "left": 77.34375, - "top": 72.816074, - "right": 78.75, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 51, - "left": 78.75, - "top": 72.816074, - "right": 80.15625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 51, - "left": 80.15625, - "top": 72.816074, - "right": 81.5625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 51, - "left": 81.5625, - "top": 72.816074, - "right": 82.96875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 51, - "left": 82.96875, - "top": 72.816074, - "right": 84.375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 51, - "left": 84.375, - "top": 72.816074, - "right": 85.78125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 51, - "left": 85.78125, - "top": 72.816074, - "right": 87.1875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 51, - "left": 87.1875, - "top": 72.816074, - "right": 88.59375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 51, - "left": 88.59375, - "top": 72.816074, - "right": 90.0, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 51, - "left": 90.0, - "top": 72.816074, - "right": 91.40625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 51, - "left": 91.40625, - "top": 72.816074, - "right": 92.8125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 51, - "left": 92.8125, - "top": 72.816074, - "right": 94.21875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 51, - "left": 94.21875, - "top": 72.816074, - "right": 95.625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 51, - "left": 95.625, - "top": 72.816074, - "right": 97.03125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 51, - "left": 97.03125, - "top": 72.816074, - "right": 98.4375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 51, - "left": 98.4375, - "top": 72.816074, - "right": 99.84375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 51, - "left": 99.84375, - "top": 72.816074, - "right": 101.25, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 51, - "left": 101.25, - "top": 72.816074, - "right": 102.65625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 51, - "left": 102.65625, - "top": 72.816074, - "right": 104.0625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 51, - "left": 104.0625, - "top": 72.816074, - "right": 105.46875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 51, - "left": 105.46875, - "top": 72.816074, - "right": 106.875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 51, - "left": 106.875, - "top": 72.816074, - "right": 108.28125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 51, - "left": 108.28125, - "top": 72.816074, - "right": 109.6875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 51, - "left": 109.6875, - "top": 72.816074, - "right": 111.09375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 51, - "left": 111.09375, - "top": 72.816074, - "right": 112.5, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 51, - "left": 112.5, - "top": 72.816074, - "right": 113.90625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 51, - "left": 113.90625, - "top": 72.816074, - "right": 115.3125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 51, - "left": 115.3125, - "top": 72.816074, - "right": 116.71875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 51, - "left": 116.71875, - "top": 72.816074, - "right": 118.125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 51, - "left": 118.125, - "top": 72.816074, - "right": 119.53125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 51, - "left": 119.53125, - "top": 72.816074, - "right": 120.9375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 51, - "left": 120.9375, - "top": 72.816074, - "right": 122.34375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 51, - "left": 122.34375, - "top": 72.816074, - "right": 123.75, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 51, - "left": 123.75, - "top": 72.816074, - "right": 125.15625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 51, - "left": 125.15625, - "top": 72.816074, - "right": 126.5625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 51, - "left": 126.5625, - "top": 72.816074, - "right": 127.96875, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 51, - "left": 127.96875, - "top": 72.816074, - "right": 129.375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 51, - "left": 129.375, - "top": 72.816074, - "right": 130.78125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 51, - "left": 139.21875, - "top": 72.816074, - "right": 140.625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 51, - "left": 140.625, - "top": 72.816074, - "right": 142.03125, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 51, - "left": 142.03125, - "top": 72.816074, - "right": 143.4375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 51, - "left": 143.4375, - "top": 72.816074, - "right": 144.84375, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 51, - "left": 144.84375, - "top": 72.816074, - "right": 146.25, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 51, - "left": 146.25, - "top": 72.816074, - "right": 147.65625, - "bottom": 72.395706, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 52, - "left": 50.625, - "top": 72.395706, - "right": 52.03125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 52, - "left": 52.03125, - "top": 72.395706, - "right": 53.4375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 52, - "left": 53.4375, - "top": 72.395706, - "right": 54.84375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 52, - "left": 54.84375, - "top": 72.395706, - "right": 56.25, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 52, - "left": 67.5, - "top": 72.395706, - "right": 68.90625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 52, - "left": 68.90625, - "top": 72.395706, - "right": 70.3125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 52, - "left": 70.3125, - "top": 72.395706, - "right": 71.71875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 52, - "left": 71.71875, - "top": 72.395706, - "right": 73.125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 52, - "left": 73.125, - "top": 72.395706, - "right": 74.53125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 52, - "left": 74.53125, - "top": 72.395706, - "right": 75.9375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 52, - "left": 75.9375, - "top": 72.395706, - "right": 77.34375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 52, - "left": 77.34375, - "top": 72.395706, - "right": 78.75, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 52, - "left": 78.75, - "top": 72.395706, - "right": 80.15625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 52, - "left": 80.15625, - "top": 72.395706, - "right": 81.5625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 52, - "left": 81.5625, - "top": 72.395706, - "right": 82.96875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 52, - "left": 82.96875, - "top": 72.395706, - "right": 84.375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 52, - "left": 84.375, - "top": 72.395706, - "right": 85.78125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 52, - "left": 85.78125, - "top": 72.395706, - "right": 87.1875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 52, - "left": 87.1875, - "top": 72.395706, - "right": 88.59375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 52, - "left": 88.59375, - "top": 72.395706, - "right": 90.0, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 52, - "left": 90.0, - "top": 72.395706, - "right": 91.40625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 52, - "left": 91.40625, - "top": 72.395706, - "right": 92.8125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 52, - "left": 92.8125, - "top": 72.395706, - "right": 94.21875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 52, - "left": 94.21875, - "top": 72.395706, - "right": 95.625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 52, - "left": 95.625, - "top": 72.395706, - "right": 97.03125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 52, - "left": 97.03125, - "top": 72.395706, - "right": 98.4375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 52, - "left": 98.4375, - "top": 72.395706, - "right": 99.84375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 52, - "left": 99.84375, - "top": 72.395706, - "right": 101.25, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 52, - "left": 101.25, - "top": 72.395706, - "right": 102.65625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 52, - "left": 102.65625, - "top": 72.395706, - "right": 104.0625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 52, - "left": 104.0625, - "top": 72.395706, - "right": 105.46875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 52, - "left": 105.46875, - "top": 72.395706, - "right": 106.875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 52, - "left": 106.875, - "top": 72.395706, - "right": 108.28125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 52, - "left": 108.28125, - "top": 72.395706, - "right": 109.6875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 52, - "left": 109.6875, - "top": 72.395706, - "right": 111.09375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 52, - "left": 111.09375, - "top": 72.395706, - "right": 112.5, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 52, - "left": 112.5, - "top": 72.395706, - "right": 113.90625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 52, - "left": 113.90625, - "top": 72.395706, - "right": 115.3125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 52, - "left": 115.3125, - "top": 72.395706, - "right": 116.71875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 52, - "left": 116.71875, - "top": 72.395706, - "right": 118.125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 52, - "left": 118.125, - "top": 72.395706, - "right": 119.53125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 52, - "left": 119.53125, - "top": 72.395706, - "right": 120.9375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 52, - "left": 120.9375, - "top": 72.395706, - "right": 122.34375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 52, - "left": 122.34375, - "top": 72.395706, - "right": 123.75, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 52, - "left": 123.75, - "top": 72.395706, - "right": 125.15625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 52, - "left": 125.15625, - "top": 72.395706, - "right": 126.5625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 52, - "left": 126.5625, - "top": 72.395706, - "right": 127.96875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 52, - "left": 127.96875, - "top": 72.395706, - "right": 129.375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 52, - "left": 129.375, - "top": 72.395706, - "right": 130.78125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 52, - "left": 132.1875, - "top": 72.395706, - "right": 133.59375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 52, - "left": 137.8125, - "top": 72.395706, - "right": 139.21875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 52, - "left": 139.21875, - "top": 72.395706, - "right": 140.625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 52, - "left": 140.625, - "top": 72.395706, - "right": 142.03125, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 52, - "left": 142.03125, - "top": 72.395706, - "right": 143.4375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 52, - "left": 143.4375, - "top": 72.395706, - "right": 144.84375, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 52, - "left": 144.84375, - "top": 72.395706, - "right": 146.25, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 52, - "left": 146.25, - "top": 72.395706, - "right": 147.65625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 52, - "left": 147.65625, - "top": 72.395706, - "right": 149.0625, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 52, - "left": 149.0625, - "top": 72.395706, - "right": 150.46875, - "bottom": 71.965388, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 53, - "left": -180.0, - "top": 71.965388, - "right": -178.59375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 53, - "left": -178.59375, - "top": 71.965388, - "right": -177.1875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 53, - "left": 50.625, - "top": 71.965388, - "right": 52.03125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 53, - "left": 52.03125, - "top": 71.965388, - "right": 53.4375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 53, - "left": 53.4375, - "top": 71.965388, - "right": 54.84375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 53, - "left": 54.84375, - "top": 71.965388, - "right": 56.25, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 53, - "left": 67.5, - "top": 71.965388, - "right": 68.90625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 53, - "left": 68.90625, - "top": 71.965388, - "right": 70.3125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 53, - "left": 70.3125, - "top": 71.965388, - "right": 71.71875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 53, - "left": 71.71875, - "top": 71.965388, - "right": 73.125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 53, - "left": 73.125, - "top": 71.965388, - "right": 74.53125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 53, - "left": 74.53125, - "top": 71.965388, - "right": 75.9375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 53, - "left": 75.9375, - "top": 71.965388, - "right": 77.34375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 53, - "left": 77.34375, - "top": 71.965388, - "right": 78.75, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 53, - "left": 78.75, - "top": 71.965388, - "right": 80.15625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 53, - "left": 80.15625, - "top": 71.965388, - "right": 81.5625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 53, - "left": 81.5625, - "top": 71.965388, - "right": 82.96875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 53, - "left": 82.96875, - "top": 71.965388, - "right": 84.375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 53, - "left": 84.375, - "top": 71.965388, - "right": 85.78125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 53, - "left": 85.78125, - "top": 71.965388, - "right": 87.1875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 53, - "left": 87.1875, - "top": 71.965388, - "right": 88.59375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 53, - "left": 88.59375, - "top": 71.965388, - "right": 90.0, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 53, - "left": 90.0, - "top": 71.965388, - "right": 91.40625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 53, - "left": 91.40625, - "top": 71.965388, - "right": 92.8125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 53, - "left": 92.8125, - "top": 71.965388, - "right": 94.21875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 53, - "left": 94.21875, - "top": 71.965388, - "right": 95.625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 53, - "left": 95.625, - "top": 71.965388, - "right": 97.03125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 53, - "left": 97.03125, - "top": 71.965388, - "right": 98.4375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 53, - "left": 98.4375, - "top": 71.965388, - "right": 99.84375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 53, - "left": 99.84375, - "top": 71.965388, - "right": 101.25, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 53, - "left": 101.25, - "top": 71.965388, - "right": 102.65625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 53, - "left": 102.65625, - "top": 71.965388, - "right": 104.0625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 53, - "left": 104.0625, - "top": 71.965388, - "right": 105.46875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 53, - "left": 105.46875, - "top": 71.965388, - "right": 106.875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 53, - "left": 106.875, - "top": 71.965388, - "right": 108.28125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 53, - "left": 108.28125, - "top": 71.965388, - "right": 109.6875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 53, - "left": 109.6875, - "top": 71.965388, - "right": 111.09375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 53, - "left": 111.09375, - "top": 71.965388, - "right": 112.5, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 53, - "left": 112.5, - "top": 71.965388, - "right": 113.90625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 53, - "left": 113.90625, - "top": 71.965388, - "right": 115.3125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 53, - "left": 115.3125, - "top": 71.965388, - "right": 116.71875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 53, - "left": 116.71875, - "top": 71.965388, - "right": 118.125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 53, - "left": 118.125, - "top": 71.965388, - "right": 119.53125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 53, - "left": 119.53125, - "top": 71.965388, - "right": 120.9375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 53, - "left": 120.9375, - "top": 71.965388, - "right": 122.34375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 53, - "left": 122.34375, - "top": 71.965388, - "right": 123.75, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 53, - "left": 123.75, - "top": 71.965388, - "right": 125.15625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 53, - "left": 125.15625, - "top": 71.965388, - "right": 126.5625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 53, - "left": 126.5625, - "top": 71.965388, - "right": 127.96875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 53, - "left": 127.96875, - "top": 71.965388, - "right": 129.375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 53, - "left": 129.375, - "top": 71.965388, - "right": 130.78125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 53, - "left": 130.78125, - "top": 71.965388, - "right": 132.1875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 53, - "left": 132.1875, - "top": 71.965388, - "right": 133.59375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 53, - "left": 135.0, - "top": 71.965388, - "right": 136.40625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 53, - "left": 136.40625, - "top": 71.965388, - "right": 137.8125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 53, - "left": 137.8125, - "top": 71.965388, - "right": 139.21875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 53, - "left": 139.21875, - "top": 71.965388, - "right": 140.625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 53, - "left": 140.625, - "top": 71.965388, - "right": 142.03125, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 53, - "left": 142.03125, - "top": 71.965388, - "right": 143.4375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 53, - "left": 143.4375, - "top": 71.965388, - "right": 144.84375, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 53, - "left": 144.84375, - "top": 71.965388, - "right": 146.25, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 53, - "left": 146.25, - "top": 71.965388, - "right": 147.65625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 53, - "left": 147.65625, - "top": 71.965388, - "right": 149.0625, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 53, - "left": 149.0625, - "top": 71.965388, - "right": 150.46875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 53, - "left": 150.46875, - "top": 71.965388, - "right": 151.875, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 53, - "left": 178.59375, - "top": 71.965388, - "right": 180.0, - "bottom": 71.524909, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 54, - "left": -180.0, - "top": 71.524909, - "right": -178.59375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 54, - "left": -178.59375, - "top": 71.524909, - "right": -177.1875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 54, - "left": -175.78125, - "top": 71.524909, - "right": -174.375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 54, - "left": 50.625, - "top": 71.524909, - "right": 52.03125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 54, - "left": 52.03125, - "top": 71.524909, - "right": 53.4375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 54, - "left": 53.4375, - "top": 71.524909, - "right": 54.84375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 54, - "left": 54.84375, - "top": 71.524909, - "right": 56.25, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 54, - "left": 56.25, - "top": 71.524909, - "right": 57.65625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 54, - "left": 66.09375, - "top": 71.524909, - "right": 67.5, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 54, - "left": 67.5, - "top": 71.524909, - "right": 68.90625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 54, - "left": 68.90625, - "top": 71.524909, - "right": 70.3125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 54, - "left": 70.3125, - "top": 71.524909, - "right": 71.71875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 54, - "left": 71.71875, - "top": 71.524909, - "right": 73.125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 54, - "left": 73.125, - "top": 71.524909, - "right": 74.53125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 54, - "left": 74.53125, - "top": 71.524909, - "right": 75.9375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 54, - "left": 75.9375, - "top": 71.524909, - "right": 77.34375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 54, - "left": 77.34375, - "top": 71.524909, - "right": 78.75, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 54, - "left": 78.75, - "top": 71.524909, - "right": 80.15625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 54, - "left": 80.15625, - "top": 71.524909, - "right": 81.5625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 54, - "left": 81.5625, - "top": 71.524909, - "right": 82.96875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 54, - "left": 82.96875, - "top": 71.524909, - "right": 84.375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 54, - "left": 84.375, - "top": 71.524909, - "right": 85.78125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 54, - "left": 85.78125, - "top": 71.524909, - "right": 87.1875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 54, - "left": 87.1875, - "top": 71.524909, - "right": 88.59375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 54, - "left": 88.59375, - "top": 71.524909, - "right": 90.0, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 54, - "left": 90.0, - "top": 71.524909, - "right": 91.40625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 54, - "left": 91.40625, - "top": 71.524909, - "right": 92.8125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 54, - "left": 92.8125, - "top": 71.524909, - "right": 94.21875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 54, - "left": 94.21875, - "top": 71.524909, - "right": 95.625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 54, - "left": 95.625, - "top": 71.524909, - "right": 97.03125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 54, - "left": 97.03125, - "top": 71.524909, - "right": 98.4375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 54, - "left": 98.4375, - "top": 71.524909, - "right": 99.84375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 54, - "left": 99.84375, - "top": 71.524909, - "right": 101.25, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 54, - "left": 101.25, - "top": 71.524909, - "right": 102.65625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 54, - "left": 102.65625, - "top": 71.524909, - "right": 104.0625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 54, - "left": 104.0625, - "top": 71.524909, - "right": 105.46875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 54, - "left": 105.46875, - "top": 71.524909, - "right": 106.875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 54, - "left": 106.875, - "top": 71.524909, - "right": 108.28125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 54, - "left": 108.28125, - "top": 71.524909, - "right": 109.6875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 54, - "left": 109.6875, - "top": 71.524909, - "right": 111.09375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 54, - "left": 111.09375, - "top": 71.524909, - "right": 112.5, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 54, - "left": 112.5, - "top": 71.524909, - "right": 113.90625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 54, - "left": 113.90625, - "top": 71.524909, - "right": 115.3125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 54, - "left": 115.3125, - "top": 71.524909, - "right": 116.71875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 54, - "left": 116.71875, - "top": 71.524909, - "right": 118.125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 54, - "left": 118.125, - "top": 71.524909, - "right": 119.53125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 54, - "left": 119.53125, - "top": 71.524909, - "right": 120.9375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 54, - "left": 120.9375, - "top": 71.524909, - "right": 122.34375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 54, - "left": 122.34375, - "top": 71.524909, - "right": 123.75, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 54, - "left": 123.75, - "top": 71.524909, - "right": 125.15625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 54, - "left": 125.15625, - "top": 71.524909, - "right": 126.5625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 54, - "left": 126.5625, - "top": 71.524909, - "right": 127.96875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 54, - "left": 127.96875, - "top": 71.524909, - "right": 129.375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 54, - "left": 129.375, - "top": 71.524909, - "right": 130.78125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 54, - "left": 130.78125, - "top": 71.524909, - "right": 132.1875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 54, - "left": 132.1875, - "top": 71.524909, - "right": 133.59375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 54, - "left": 133.59375, - "top": 71.524909, - "right": 135.0, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 54, - "left": 135.0, - "top": 71.524909, - "right": 136.40625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 54, - "left": 136.40625, - "top": 71.524909, - "right": 137.8125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 54, - "left": 137.8125, - "top": 71.524909, - "right": 139.21875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 54, - "left": 139.21875, - "top": 71.524909, - "right": 140.625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 54, - "left": 140.625, - "top": 71.524909, - "right": 142.03125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 54, - "left": 142.03125, - "top": 71.524909, - "right": 143.4375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 54, - "left": 143.4375, - "top": 71.524909, - "right": 144.84375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 54, - "left": 144.84375, - "top": 71.524909, - "right": 146.25, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 54, - "left": 146.25, - "top": 71.524909, - "right": 147.65625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 54, - "left": 147.65625, - "top": 71.524909, - "right": 149.0625, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 54, - "left": 149.0625, - "top": 71.524909, - "right": 150.46875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 54, - "left": 150.46875, - "top": 71.524909, - "right": 151.875, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 54, - "left": 151.875, - "top": 71.524909, - "right": 153.28125, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 54, - "left": 154.6875, - "top": 71.524909, - "right": 156.09375, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 54, - "left": 156.09375, - "top": 71.524909, - "right": 157.5, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 54, - "left": 178.59375, - "top": 71.524909, - "right": 180.0, - "bottom": 71.074056, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 55, - "left": -180.0, - "top": 71.074056, - "right": -178.59375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 55, - "left": -178.59375, - "top": 71.074056, - "right": -177.1875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 55, - "left": 52.03125, - "top": 71.074056, - "right": 53.4375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 55, - "left": 53.4375, - "top": 71.074056, - "right": 54.84375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 55, - "left": 54.84375, - "top": 71.074056, - "right": 56.25, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 55, - "left": 56.25, - "top": 71.074056, - "right": 57.65625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 55, - "left": 66.09375, - "top": 71.074056, - "right": 67.5, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 55, - "left": 67.5, - "top": 71.074056, - "right": 68.90625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 55, - "left": 68.90625, - "top": 71.074056, - "right": 70.3125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 55, - "left": 70.3125, - "top": 71.074056, - "right": 71.71875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 55, - "left": 71.71875, - "top": 71.074056, - "right": 73.125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 55, - "left": 73.125, - "top": 71.074056, - "right": 74.53125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 55, - "left": 74.53125, - "top": 71.074056, - "right": 75.9375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 55, - "left": 75.9375, - "top": 71.074056, - "right": 77.34375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 55, - "left": 77.34375, - "top": 71.074056, - "right": 78.75, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 55, - "left": 78.75, - "top": 71.074056, - "right": 80.15625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 55, - "left": 80.15625, - "top": 71.074056, - "right": 81.5625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 55, - "left": 81.5625, - "top": 71.074056, - "right": 82.96875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 55, - "left": 82.96875, - "top": 71.074056, - "right": 84.375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 55, - "left": 84.375, - "top": 71.074056, - "right": 85.78125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 55, - "left": 85.78125, - "top": 71.074056, - "right": 87.1875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 55, - "left": 87.1875, - "top": 71.074056, - "right": 88.59375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 55, - "left": 88.59375, - "top": 71.074056, - "right": 90.0, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 55, - "left": 90.0, - "top": 71.074056, - "right": 91.40625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 55, - "left": 91.40625, - "top": 71.074056, - "right": 92.8125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 55, - "left": 92.8125, - "top": 71.074056, - "right": 94.21875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 55, - "left": 94.21875, - "top": 71.074056, - "right": 95.625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 55, - "left": 95.625, - "top": 71.074056, - "right": 97.03125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 55, - "left": 97.03125, - "top": 71.074056, - "right": 98.4375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 55, - "left": 98.4375, - "top": 71.074056, - "right": 99.84375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 55, - "left": 99.84375, - "top": 71.074056, - "right": 101.25, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 55, - "left": 101.25, - "top": 71.074056, - "right": 102.65625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 55, - "left": 102.65625, - "top": 71.074056, - "right": 104.0625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 55, - "left": 104.0625, - "top": 71.074056, - "right": 105.46875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 55, - "left": 105.46875, - "top": 71.074056, - "right": 106.875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 55, - "left": 106.875, - "top": 71.074056, - "right": 108.28125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 55, - "left": 108.28125, - "top": 71.074056, - "right": 109.6875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 55, - "left": 109.6875, - "top": 71.074056, - "right": 111.09375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 55, - "left": 111.09375, - "top": 71.074056, - "right": 112.5, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 55, - "left": 112.5, - "top": 71.074056, - "right": 113.90625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 55, - "left": 113.90625, - "top": 71.074056, - "right": 115.3125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 55, - "left": 115.3125, - "top": 71.074056, - "right": 116.71875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 55, - "left": 116.71875, - "top": 71.074056, - "right": 118.125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 55, - "left": 118.125, - "top": 71.074056, - "right": 119.53125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 55, - "left": 119.53125, - "top": 71.074056, - "right": 120.9375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 55, - "left": 120.9375, - "top": 71.074056, - "right": 122.34375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 55, - "left": 122.34375, - "top": 71.074056, - "right": 123.75, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 55, - "left": 123.75, - "top": 71.074056, - "right": 125.15625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 55, - "left": 125.15625, - "top": 71.074056, - "right": 126.5625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 55, - "left": 126.5625, - "top": 71.074056, - "right": 127.96875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 55, - "left": 127.96875, - "top": 71.074056, - "right": 129.375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 55, - "left": 129.375, - "top": 71.074056, - "right": 130.78125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 55, - "left": 130.78125, - "top": 71.074056, - "right": 132.1875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 55, - "left": 132.1875, - "top": 71.074056, - "right": 133.59375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 55, - "left": 133.59375, - "top": 71.074056, - "right": 135.0, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 55, - "left": 135.0, - "top": 71.074056, - "right": 136.40625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 55, - "left": 136.40625, - "top": 71.074056, - "right": 137.8125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 55, - "left": 137.8125, - "top": 71.074056, - "right": 139.21875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 55, - "left": 139.21875, - "top": 71.074056, - "right": 140.625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 55, - "left": 140.625, - "top": 71.074056, - "right": 142.03125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 55, - "left": 142.03125, - "top": 71.074056, - "right": 143.4375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 55, - "left": 143.4375, - "top": 71.074056, - "right": 144.84375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 55, - "left": 144.84375, - "top": 71.074056, - "right": 146.25, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 55, - "left": 146.25, - "top": 71.074056, - "right": 147.65625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 55, - "left": 147.65625, - "top": 71.074056, - "right": 149.0625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 55, - "left": 149.0625, - "top": 71.074056, - "right": 150.46875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 55, - "left": 150.46875, - "top": 71.074056, - "right": 151.875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 55, - "left": 151.875, - "top": 71.074056, - "right": 153.28125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 55, - "left": 153.28125, - "top": 71.074056, - "right": 154.6875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 55, - "left": 154.6875, - "top": 71.074056, - "right": 156.09375, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 55, - "left": 156.09375, - "top": 71.074056, - "right": 157.5, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 55, - "left": 157.5, - "top": 71.074056, - "right": 158.90625, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 55, - "left": 158.90625, - "top": 71.074056, - "right": 160.3125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 55, - "left": 160.3125, - "top": 71.074056, - "right": 161.71875, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 55, - "left": 161.71875, - "top": 71.074056, - "right": 163.125, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 55, - "left": 178.59375, - "top": 71.074056, - "right": 180.0, - "bottom": 70.612614, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 56, - "left": 54.84375, - "top": 70.612614, - "right": 56.25, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 56, - "left": 56.25, - "top": 70.612614, - "right": 57.65625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 56, - "left": 57.65625, - "top": 70.612614, - "right": 59.0625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 56, - "left": 59.0625, - "top": 70.612614, - "right": 60.46875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 56, - "left": 66.09375, - "top": 70.612614, - "right": 67.5, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 56, - "left": 67.5, - "top": 70.612614, - "right": 68.90625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 56, - "left": 68.90625, - "top": 70.612614, - "right": 70.3125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 56, - "left": 70.3125, - "top": 70.612614, - "right": 71.71875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 56, - "left": 71.71875, - "top": 70.612614, - "right": 73.125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 56, - "left": 73.125, - "top": 70.612614, - "right": 74.53125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 56, - "left": 74.53125, - "top": 70.612614, - "right": 75.9375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 56, - "left": 75.9375, - "top": 70.612614, - "right": 77.34375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 56, - "left": 77.34375, - "top": 70.612614, - "right": 78.75, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 56, - "left": 78.75, - "top": 70.612614, - "right": 80.15625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 56, - "left": 80.15625, - "top": 70.612614, - "right": 81.5625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 56, - "left": 81.5625, - "top": 70.612614, - "right": 82.96875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 56, - "left": 82.96875, - "top": 70.612614, - "right": 84.375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 56, - "left": 84.375, - "top": 70.612614, - "right": 85.78125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 56, - "left": 85.78125, - "top": 70.612614, - "right": 87.1875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 56, - "left": 87.1875, - "top": 70.612614, - "right": 88.59375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 56, - "left": 88.59375, - "top": 70.612614, - "right": 90.0, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 56, - "left": 90.0, - "top": 70.612614, - "right": 91.40625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 56, - "left": 91.40625, - "top": 70.612614, - "right": 92.8125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 56, - "left": 92.8125, - "top": 70.612614, - "right": 94.21875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 56, - "left": 94.21875, - "top": 70.612614, - "right": 95.625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 56, - "left": 95.625, - "top": 70.612614, - "right": 97.03125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 56, - "left": 97.03125, - "top": 70.612614, - "right": 98.4375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 56, - "left": 98.4375, - "top": 70.612614, - "right": 99.84375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 56, - "left": 99.84375, - "top": 70.612614, - "right": 101.25, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 56, - "left": 101.25, - "top": 70.612614, - "right": 102.65625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 56, - "left": 102.65625, - "top": 70.612614, - "right": 104.0625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 56, - "left": 104.0625, - "top": 70.612614, - "right": 105.46875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 56, - "left": 105.46875, - "top": 70.612614, - "right": 106.875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 56, - "left": 106.875, - "top": 70.612614, - "right": 108.28125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 56, - "left": 108.28125, - "top": 70.612614, - "right": 109.6875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 56, - "left": 109.6875, - "top": 70.612614, - "right": 111.09375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 56, - "left": 111.09375, - "top": 70.612614, - "right": 112.5, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 56, - "left": 112.5, - "top": 70.612614, - "right": 113.90625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 56, - "left": 113.90625, - "top": 70.612614, - "right": 115.3125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 56, - "left": 115.3125, - "top": 70.612614, - "right": 116.71875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 56, - "left": 116.71875, - "top": 70.612614, - "right": 118.125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 56, - "left": 118.125, - "top": 70.612614, - "right": 119.53125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 56, - "left": 119.53125, - "top": 70.612614, - "right": 120.9375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 56, - "left": 120.9375, - "top": 70.612614, - "right": 122.34375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 56, - "left": 122.34375, - "top": 70.612614, - "right": 123.75, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 56, - "left": 123.75, - "top": 70.612614, - "right": 125.15625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 56, - "left": 125.15625, - "top": 70.612614, - "right": 126.5625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 56, - "left": 126.5625, - "top": 70.612614, - "right": 127.96875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 56, - "left": 127.96875, - "top": 70.612614, - "right": 129.375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 56, - "left": 129.375, - "top": 70.612614, - "right": 130.78125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 56, - "left": 130.78125, - "top": 70.612614, - "right": 132.1875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 56, - "left": 132.1875, - "top": 70.612614, - "right": 133.59375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 56, - "left": 133.59375, - "top": 70.612614, - "right": 135.0, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 56, - "left": 135.0, - "top": 70.612614, - "right": 136.40625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 56, - "left": 136.40625, - "top": 70.612614, - "right": 137.8125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 56, - "left": 137.8125, - "top": 70.612614, - "right": 139.21875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 56, - "left": 139.21875, - "top": 70.612614, - "right": 140.625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 56, - "left": 140.625, - "top": 70.612614, - "right": 142.03125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 56, - "left": 142.03125, - "top": 70.612614, - "right": 143.4375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 56, - "left": 143.4375, - "top": 70.612614, - "right": 144.84375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 56, - "left": 144.84375, - "top": 70.612614, - "right": 146.25, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 56, - "left": 146.25, - "top": 70.612614, - "right": 147.65625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 56, - "left": 147.65625, - "top": 70.612614, - "right": 149.0625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 56, - "left": 149.0625, - "top": 70.612614, - "right": 150.46875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 56, - "left": 150.46875, - "top": 70.612614, - "right": 151.875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 56, - "left": 151.875, - "top": 70.612614, - "right": 153.28125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 56, - "left": 153.28125, - "top": 70.612614, - "right": 154.6875, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 56, - "left": 154.6875, - "top": 70.612614, - "right": 156.09375, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 56, - "left": 156.09375, - "top": 70.612614, - "right": 157.5, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 56, - "left": 157.5, - "top": 70.612614, - "right": 158.90625, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 56, - "left": 158.90625, - "top": 70.612614, - "right": 160.3125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 56, - "left": 161.71875, - "top": 70.612614, - "right": 163.125, - "bottom": 70.140364, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 57, - "left": 30.9375, - "top": 70.140364, - "right": 32.34375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 57, - "left": 32.34375, - "top": 70.140364, - "right": 33.75, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 57, - "left": 57.65625, - "top": 70.140364, - "right": 59.0625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 57, - "left": 59.0625, - "top": 70.140364, - "right": 60.46875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 57, - "left": 60.46875, - "top": 70.140364, - "right": 61.875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 57, - "left": 61.875, - "top": 70.140364, - "right": 63.28125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 57, - "left": 66.09375, - "top": 70.140364, - "right": 67.5, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 57, - "left": 67.5, - "top": 70.140364, - "right": 68.90625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 57, - "left": 68.90625, - "top": 70.140364, - "right": 70.3125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 57, - "left": 70.3125, - "top": 70.140364, - "right": 71.71875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 57, - "left": 71.71875, - "top": 70.140364, - "right": 73.125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 57, - "left": 73.125, - "top": 70.140364, - "right": 74.53125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 57, - "left": 74.53125, - "top": 70.140364, - "right": 75.9375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 57, - "left": 75.9375, - "top": 70.140364, - "right": 77.34375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 57, - "left": 77.34375, - "top": 70.140364, - "right": 78.75, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 57, - "left": 78.75, - "top": 70.140364, - "right": 80.15625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 57, - "left": 80.15625, - "top": 70.140364, - "right": 81.5625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 57, - "left": 81.5625, - "top": 70.140364, - "right": 82.96875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 57, - "left": 82.96875, - "top": 70.140364, - "right": 84.375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 57, - "left": 84.375, - "top": 70.140364, - "right": 85.78125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 57, - "left": 85.78125, - "top": 70.140364, - "right": 87.1875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 57, - "left": 87.1875, - "top": 70.140364, - "right": 88.59375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 57, - "left": 88.59375, - "top": 70.140364, - "right": 90.0, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 57, - "left": 90.0, - "top": 70.140364, - "right": 91.40625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 57, - "left": 91.40625, - "top": 70.140364, - "right": 92.8125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 57, - "left": 92.8125, - "top": 70.140364, - "right": 94.21875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 57, - "left": 94.21875, - "top": 70.140364, - "right": 95.625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 57, - "left": 95.625, - "top": 70.140364, - "right": 97.03125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 57, - "left": 97.03125, - "top": 70.140364, - "right": 98.4375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 57, - "left": 98.4375, - "top": 70.140364, - "right": 99.84375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 57, - "left": 99.84375, - "top": 70.140364, - "right": 101.25, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 57, - "left": 101.25, - "top": 70.140364, - "right": 102.65625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 57, - "left": 102.65625, - "top": 70.140364, - "right": 104.0625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 57, - "left": 104.0625, - "top": 70.140364, - "right": 105.46875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 57, - "left": 105.46875, - "top": 70.140364, - "right": 106.875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 57, - "left": 106.875, - "top": 70.140364, - "right": 108.28125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 57, - "left": 108.28125, - "top": 70.140364, - "right": 109.6875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 57, - "left": 109.6875, - "top": 70.140364, - "right": 111.09375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 57, - "left": 111.09375, - "top": 70.140364, - "right": 112.5, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 57, - "left": 112.5, - "top": 70.140364, - "right": 113.90625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 57, - "left": 113.90625, - "top": 70.140364, - "right": 115.3125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 57, - "left": 115.3125, - "top": 70.140364, - "right": 116.71875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 57, - "left": 116.71875, - "top": 70.140364, - "right": 118.125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 57, - "left": 118.125, - "top": 70.140364, - "right": 119.53125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 57, - "left": 119.53125, - "top": 70.140364, - "right": 120.9375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 57, - "left": 120.9375, - "top": 70.140364, - "right": 122.34375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 57, - "left": 122.34375, - "top": 70.140364, - "right": 123.75, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 57, - "left": 123.75, - "top": 70.140364, - "right": 125.15625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 57, - "left": 125.15625, - "top": 70.140364, - "right": 126.5625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 57, - "left": 126.5625, - "top": 70.140364, - "right": 127.96875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 57, - "left": 127.96875, - "top": 70.140364, - "right": 129.375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 57, - "left": 129.375, - "top": 70.140364, - "right": 130.78125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 57, - "left": 130.78125, - "top": 70.140364, - "right": 132.1875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 57, - "left": 132.1875, - "top": 70.140364, - "right": 133.59375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 57, - "left": 133.59375, - "top": 70.140364, - "right": 135.0, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 57, - "left": 135.0, - "top": 70.140364, - "right": 136.40625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 57, - "left": 136.40625, - "top": 70.140364, - "right": 137.8125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 57, - "left": 137.8125, - "top": 70.140364, - "right": 139.21875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 57, - "left": 139.21875, - "top": 70.140364, - "right": 140.625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 57, - "left": 140.625, - "top": 70.140364, - "right": 142.03125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 57, - "left": 142.03125, - "top": 70.140364, - "right": 143.4375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 57, - "left": 143.4375, - "top": 70.140364, - "right": 144.84375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 57, - "left": 144.84375, - "top": 70.140364, - "right": 146.25, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 57, - "left": 146.25, - "top": 70.140364, - "right": 147.65625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 57, - "left": 147.65625, - "top": 70.140364, - "right": 149.0625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 57, - "left": 149.0625, - "top": 70.140364, - "right": 150.46875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 57, - "left": 150.46875, - "top": 70.140364, - "right": 151.875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 57, - "left": 151.875, - "top": 70.140364, - "right": 153.28125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 57, - "left": 153.28125, - "top": 70.140364, - "right": 154.6875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 57, - "left": 154.6875, - "top": 70.140364, - "right": 156.09375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 57, - "left": 156.09375, - "top": 70.140364, - "right": 157.5, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 57, - "left": 157.5, - "top": 70.140364, - "right": 158.90625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 57, - "left": 158.90625, - "top": 70.140364, - "right": 160.3125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 57, - "left": 160.3125, - "top": 70.140364, - "right": 161.71875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 57, - "left": 161.71875, - "top": 70.140364, - "right": 163.125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 57, - "left": 163.125, - "top": 70.140364, - "right": 164.53125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 57, - "left": 167.34375, - "top": 70.140364, - "right": 168.75, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 57, - "left": 168.75, - "top": 70.140364, - "right": 170.15625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 57, - "left": 170.15625, - "top": 70.140364, - "right": 171.5625, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 57, - "left": 171.5625, - "top": 70.140364, - "right": 172.96875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 57, - "left": 172.96875, - "top": 70.140364, - "right": 174.375, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 57, - "left": 174.375, - "top": 70.140364, - "right": 175.78125, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 57, - "left": 175.78125, - "top": 70.140364, - "right": 177.1875, - "bottom": 69.657086, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 58, - "left": 32.34375, - "top": 69.657086, - "right": 33.75, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 58, - "left": 33.75, - "top": 69.657086, - "right": 35.15625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 58, - "left": 35.15625, - "top": 69.657086, - "right": 36.5625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 58, - "left": 47.8125, - "top": 69.657086, - "right": 49.21875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 58, - "left": 49.21875, - "top": 69.657086, - "right": 50.625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 58, - "left": 57.65625, - "top": 69.657086, - "right": 59.0625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 58, - "left": 59.0625, - "top": 69.657086, - "right": 60.46875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 58, - "left": 60.46875, - "top": 69.657086, - "right": 61.875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 58, - "left": 61.875, - "top": 69.657086, - "right": 63.28125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 58, - "left": 63.28125, - "top": 69.657086, - "right": 64.6875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 58, - "left": 64.6875, - "top": 69.657086, - "right": 66.09375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 58, - "left": 66.09375, - "top": 69.657086, - "right": 67.5, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 58, - "left": 67.5, - "top": 69.657086, - "right": 68.90625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 58, - "left": 68.90625, - "top": 69.657086, - "right": 70.3125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 58, - "left": 70.3125, - "top": 69.657086, - "right": 71.71875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 58, - "left": 71.71875, - "top": 69.657086, - "right": 73.125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 58, - "left": 73.125, - "top": 69.657086, - "right": 74.53125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 58, - "left": 74.53125, - "top": 69.657086, - "right": 75.9375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 58, - "left": 75.9375, - "top": 69.657086, - "right": 77.34375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 58, - "left": 77.34375, - "top": 69.657086, - "right": 78.75, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 58, - "left": 78.75, - "top": 69.657086, - "right": 80.15625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 58, - "left": 80.15625, - "top": 69.657086, - "right": 81.5625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 58, - "left": 81.5625, - "top": 69.657086, - "right": 82.96875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 58, - "left": 82.96875, - "top": 69.657086, - "right": 84.375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 58, - "left": 84.375, - "top": 69.657086, - "right": 85.78125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 58, - "left": 85.78125, - "top": 69.657086, - "right": 87.1875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 58, - "left": 87.1875, - "top": 69.657086, - "right": 88.59375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 58, - "left": 88.59375, - "top": 69.657086, - "right": 90.0, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 58, - "left": 90.0, - "top": 69.657086, - "right": 91.40625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 58, - "left": 91.40625, - "top": 69.657086, - "right": 92.8125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 58, - "left": 92.8125, - "top": 69.657086, - "right": 94.21875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 58, - "left": 94.21875, - "top": 69.657086, - "right": 95.625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 58, - "left": 95.625, - "top": 69.657086, - "right": 97.03125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 58, - "left": 97.03125, - "top": 69.657086, - "right": 98.4375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 58, - "left": 98.4375, - "top": 69.657086, - "right": 99.84375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 58, - "left": 99.84375, - "top": 69.657086, - "right": 101.25, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 58, - "left": 101.25, - "top": 69.657086, - "right": 102.65625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 58, - "left": 102.65625, - "top": 69.657086, - "right": 104.0625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 58, - "left": 104.0625, - "top": 69.657086, - "right": 105.46875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 58, - "left": 105.46875, - "top": 69.657086, - "right": 106.875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 58, - "left": 106.875, - "top": 69.657086, - "right": 108.28125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 58, - "left": 108.28125, - "top": 69.657086, - "right": 109.6875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 58, - "left": 109.6875, - "top": 69.657086, - "right": 111.09375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 58, - "left": 111.09375, - "top": 69.657086, - "right": 112.5, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 58, - "left": 112.5, - "top": 69.657086, - "right": 113.90625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 58, - "left": 113.90625, - "top": 69.657086, - "right": 115.3125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 58, - "left": 115.3125, - "top": 69.657086, - "right": 116.71875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 58, - "left": 116.71875, - "top": 69.657086, - "right": 118.125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 58, - "left": 118.125, - "top": 69.657086, - "right": 119.53125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 58, - "left": 119.53125, - "top": 69.657086, - "right": 120.9375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 58, - "left": 120.9375, - "top": 69.657086, - "right": 122.34375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 58, - "left": 122.34375, - "top": 69.657086, - "right": 123.75, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 58, - "left": 123.75, - "top": 69.657086, - "right": 125.15625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 58, - "left": 125.15625, - "top": 69.657086, - "right": 126.5625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 58, - "left": 126.5625, - "top": 69.657086, - "right": 127.96875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 58, - "left": 127.96875, - "top": 69.657086, - "right": 129.375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 58, - "left": 129.375, - "top": 69.657086, - "right": 130.78125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 58, - "left": 130.78125, - "top": 69.657086, - "right": 132.1875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 58, - "left": 132.1875, - "top": 69.657086, - "right": 133.59375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 58, - "left": 133.59375, - "top": 69.657086, - "right": 135.0, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 58, - "left": 135.0, - "top": 69.657086, - "right": 136.40625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 58, - "left": 136.40625, - "top": 69.657086, - "right": 137.8125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 58, - "left": 137.8125, - "top": 69.657086, - "right": 139.21875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 58, - "left": 139.21875, - "top": 69.657086, - "right": 140.625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 58, - "left": 140.625, - "top": 69.657086, - "right": 142.03125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 58, - "left": 142.03125, - "top": 69.657086, - "right": 143.4375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 58, - "left": 143.4375, - "top": 69.657086, - "right": 144.84375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 58, - "left": 144.84375, - "top": 69.657086, - "right": 146.25, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 58, - "left": 146.25, - "top": 69.657086, - "right": 147.65625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 58, - "left": 147.65625, - "top": 69.657086, - "right": 149.0625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 58, - "left": 149.0625, - "top": 69.657086, - "right": 150.46875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 58, - "left": 150.46875, - "top": 69.657086, - "right": 151.875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 58, - "left": 151.875, - "top": 69.657086, - "right": 153.28125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 58, - "left": 153.28125, - "top": 69.657086, - "right": 154.6875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 58, - "left": 154.6875, - "top": 69.657086, - "right": 156.09375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 58, - "left": 156.09375, - "top": 69.657086, - "right": 157.5, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 58, - "left": 157.5, - "top": 69.657086, - "right": 158.90625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 58, - "left": 158.90625, - "top": 69.657086, - "right": 160.3125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 58, - "left": 160.3125, - "top": 69.657086, - "right": 161.71875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 58, - "left": 161.71875, - "top": 69.657086, - "right": 163.125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 58, - "left": 163.125, - "top": 69.657086, - "right": 164.53125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 58, - "left": 164.53125, - "top": 69.657086, - "right": 165.9375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 58, - "left": 165.9375, - "top": 69.657086, - "right": 167.34375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 58, - "left": 167.34375, - "top": 69.657086, - "right": 168.75, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 58, - "left": 168.75, - "top": 69.657086, - "right": 170.15625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 58, - "left": 170.15625, - "top": 69.657086, - "right": 171.5625, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 58, - "left": 171.5625, - "top": 69.657086, - "right": 172.96875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 58, - "left": 172.96875, - "top": 69.657086, - "right": 174.375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 58, - "left": 174.375, - "top": 69.657086, - "right": 175.78125, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 58, - "left": 175.78125, - "top": 69.657086, - "right": 177.1875, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 58, - "left": 177.1875, - "top": 69.657086, - "right": 178.59375, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 58, - "left": 178.59375, - "top": 69.657086, - "right": 180.0, - "bottom": 69.162558, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 59, - "left": -180.0, - "top": 69.162558, - "right": -178.59375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 59, - "left": 29.53125, - "top": 69.162558, - "right": 30.9375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 59, - "left": 30.9375, - "top": 69.162558, - "right": 32.34375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 59, - "left": 32.34375, - "top": 69.162558, - "right": 33.75, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 59, - "left": 33.75, - "top": 69.162558, - "right": 35.15625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 59, - "left": 35.15625, - "top": 69.162558, - "right": 36.5625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 59, - "left": 36.5625, - "top": 69.162558, - "right": 37.96875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 59, - "left": 42.1875, - "top": 69.162558, - "right": 43.59375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 59, - "left": 47.8125, - "top": 69.162558, - "right": 49.21875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 59, - "left": 49.21875, - "top": 69.162558, - "right": 50.625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 59, - "left": 52.03125, - "top": 69.162558, - "right": 53.4375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 59, - "left": 53.4375, - "top": 69.162558, - "right": 54.84375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 59, - "left": 54.84375, - "top": 69.162558, - "right": 56.25, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 59, - "left": 56.25, - "top": 69.162558, - "right": 57.65625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 59, - "left": 57.65625, - "top": 69.162558, - "right": 59.0625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 59, - "left": 59.0625, - "top": 69.162558, - "right": 60.46875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 59, - "left": 60.46875, - "top": 69.162558, - "right": 61.875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 59, - "left": 61.875, - "top": 69.162558, - "right": 63.28125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 59, - "left": 63.28125, - "top": 69.162558, - "right": 64.6875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 59, - "left": 64.6875, - "top": 69.162558, - "right": 66.09375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 59, - "left": 66.09375, - "top": 69.162558, - "right": 67.5, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 59, - "left": 67.5, - "top": 69.162558, - "right": 68.90625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 59, - "left": 68.90625, - "top": 69.162558, - "right": 70.3125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 59, - "left": 70.3125, - "top": 69.162558, - "right": 71.71875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 59, - "left": 71.71875, - "top": 69.162558, - "right": 73.125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 59, - "left": 73.125, - "top": 69.162558, - "right": 74.53125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 59, - "left": 74.53125, - "top": 69.162558, - "right": 75.9375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 59, - "left": 75.9375, - "top": 69.162558, - "right": 77.34375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 59, - "left": 77.34375, - "top": 69.162558, - "right": 78.75, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 59, - "left": 78.75, - "top": 69.162558, - "right": 80.15625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 59, - "left": 80.15625, - "top": 69.162558, - "right": 81.5625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 59, - "left": 81.5625, - "top": 69.162558, - "right": 82.96875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 59, - "left": 82.96875, - "top": 69.162558, - "right": 84.375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 59, - "left": 84.375, - "top": 69.162558, - "right": 85.78125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 59, - "left": 85.78125, - "top": 69.162558, - "right": 87.1875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 59, - "left": 87.1875, - "top": 69.162558, - "right": 88.59375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 59, - "left": 88.59375, - "top": 69.162558, - "right": 90.0, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 59, - "left": 90.0, - "top": 69.162558, - "right": 91.40625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 59, - "left": 91.40625, - "top": 69.162558, - "right": 92.8125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 59, - "left": 92.8125, - "top": 69.162558, - "right": 94.21875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 59, - "left": 94.21875, - "top": 69.162558, - "right": 95.625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 59, - "left": 95.625, - "top": 69.162558, - "right": 97.03125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 59, - "left": 97.03125, - "top": 69.162558, - "right": 98.4375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 59, - "left": 98.4375, - "top": 69.162558, - "right": 99.84375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 59, - "left": 99.84375, - "top": 69.162558, - "right": 101.25, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 59, - "left": 101.25, - "top": 69.162558, - "right": 102.65625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 59, - "left": 102.65625, - "top": 69.162558, - "right": 104.0625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 59, - "left": 104.0625, - "top": 69.162558, - "right": 105.46875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 59, - "left": 105.46875, - "top": 69.162558, - "right": 106.875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 59, - "left": 106.875, - "top": 69.162558, - "right": 108.28125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 59, - "left": 108.28125, - "top": 69.162558, - "right": 109.6875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 59, - "left": 109.6875, - "top": 69.162558, - "right": 111.09375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 59, - "left": 111.09375, - "top": 69.162558, - "right": 112.5, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 59, - "left": 112.5, - "top": 69.162558, - "right": 113.90625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 59, - "left": 113.90625, - "top": 69.162558, - "right": 115.3125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 59, - "left": 115.3125, - "top": 69.162558, - "right": 116.71875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 59, - "left": 116.71875, - "top": 69.162558, - "right": 118.125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 59, - "left": 118.125, - "top": 69.162558, - "right": 119.53125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 59, - "left": 119.53125, - "top": 69.162558, - "right": 120.9375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 59, - "left": 120.9375, - "top": 69.162558, - "right": 122.34375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 59, - "left": 122.34375, - "top": 69.162558, - "right": 123.75, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 59, - "left": 123.75, - "top": 69.162558, - "right": 125.15625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 59, - "left": 125.15625, - "top": 69.162558, - "right": 126.5625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 59, - "left": 126.5625, - "top": 69.162558, - "right": 127.96875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 59, - "left": 127.96875, - "top": 69.162558, - "right": 129.375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 59, - "left": 129.375, - "top": 69.162558, - "right": 130.78125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 59, - "left": 130.78125, - "top": 69.162558, - "right": 132.1875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 59, - "left": 132.1875, - "top": 69.162558, - "right": 133.59375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 59, - "left": 133.59375, - "top": 69.162558, - "right": 135.0, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 59, - "left": 135.0, - "top": 69.162558, - "right": 136.40625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 59, - "left": 136.40625, - "top": 69.162558, - "right": 137.8125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 59, - "left": 137.8125, - "top": 69.162558, - "right": 139.21875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 59, - "left": 139.21875, - "top": 69.162558, - "right": 140.625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 59, - "left": 140.625, - "top": 69.162558, - "right": 142.03125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 59, - "left": 142.03125, - "top": 69.162558, - "right": 143.4375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 59, - "left": 143.4375, - "top": 69.162558, - "right": 144.84375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 59, - "left": 144.84375, - "top": 69.162558, - "right": 146.25, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 59, - "left": 146.25, - "top": 69.162558, - "right": 147.65625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 59, - "left": 147.65625, - "top": 69.162558, - "right": 149.0625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 59, - "left": 149.0625, - "top": 69.162558, - "right": 150.46875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 59, - "left": 150.46875, - "top": 69.162558, - "right": 151.875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 59, - "left": 151.875, - "top": 69.162558, - "right": 153.28125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 59, - "left": 153.28125, - "top": 69.162558, - "right": 154.6875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 59, - "left": 154.6875, - "top": 69.162558, - "right": 156.09375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 59, - "left": 156.09375, - "top": 69.162558, - "right": 157.5, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 59, - "left": 157.5, - "top": 69.162558, - "right": 158.90625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 59, - "left": 158.90625, - "top": 69.162558, - "right": 160.3125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 59, - "left": 160.3125, - "top": 69.162558, - "right": 161.71875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 59, - "left": 161.71875, - "top": 69.162558, - "right": 163.125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 59, - "left": 163.125, - "top": 69.162558, - "right": 164.53125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 59, - "left": 164.53125, - "top": 69.162558, - "right": 165.9375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 59, - "left": 165.9375, - "top": 69.162558, - "right": 167.34375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 59, - "left": 167.34375, - "top": 69.162558, - "right": 168.75, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 59, - "left": 168.75, - "top": 69.162558, - "right": 170.15625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 59, - "left": 170.15625, - "top": 69.162558, - "right": 171.5625, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 59, - "left": 171.5625, - "top": 69.162558, - "right": 172.96875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 59, - "left": 172.96875, - "top": 69.162558, - "right": 174.375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 59, - "left": 174.375, - "top": 69.162558, - "right": 175.78125, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 59, - "left": 175.78125, - "top": 69.162558, - "right": 177.1875, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 59, - "left": 177.1875, - "top": 69.162558, - "right": 178.59375, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 59, - "left": 178.59375, - "top": 69.162558, - "right": 180.0, - "bottom": 68.656555, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 60, - "left": -180.0, - "top": 68.656555, - "right": -178.59375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 60, - "left": -178.59375, - "top": 68.656555, - "right": -177.1875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 60, - "left": -177.1875, - "top": 68.656555, - "right": -175.78125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 60, - "left": 29.53125, - "top": 68.656555, - "right": 30.9375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 60, - "left": 30.9375, - "top": 68.656555, - "right": 32.34375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 60, - "left": 32.34375, - "top": 68.656555, - "right": 33.75, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 60, - "left": 33.75, - "top": 68.656555, - "right": 35.15625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 60, - "left": 35.15625, - "top": 68.656555, - "right": 36.5625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 60, - "left": 36.5625, - "top": 68.656555, - "right": 37.96875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 60, - "left": 37.96875, - "top": 68.656555, - "right": 39.375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 60, - "left": 39.375, - "top": 68.656555, - "right": 40.78125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 60, - "left": 42.1875, - "top": 68.656555, - "right": 43.59375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 60, - "left": 43.59375, - "top": 68.656555, - "right": 45.0, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 60, - "left": 45.0, - "top": 68.656555, - "right": 46.40625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 60, - "left": 46.40625, - "top": 68.656555, - "right": 47.8125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 60, - "left": 49.21875, - "top": 68.656555, - "right": 50.625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 60, - "left": 50.625, - "top": 68.656555, - "right": 52.03125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 60, - "left": 52.03125, - "top": 68.656555, - "right": 53.4375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 60, - "left": 53.4375, - "top": 68.656555, - "right": 54.84375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 60, - "left": 54.84375, - "top": 68.656555, - "right": 56.25, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 60, - "left": 56.25, - "top": 68.656555, - "right": 57.65625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 60, - "left": 57.65625, - "top": 68.656555, - "right": 59.0625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 60, - "left": 59.0625, - "top": 68.656555, - "right": 60.46875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 60, - "left": 60.46875, - "top": 68.656555, - "right": 61.875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 60, - "left": 61.875, - "top": 68.656555, - "right": 63.28125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 60, - "left": 63.28125, - "top": 68.656555, - "right": 64.6875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 60, - "left": 64.6875, - "top": 68.656555, - "right": 66.09375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 60, - "left": 66.09375, - "top": 68.656555, - "right": 67.5, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 60, - "left": 67.5, - "top": 68.656555, - "right": 68.90625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 60, - "left": 68.90625, - "top": 68.656555, - "right": 70.3125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 60, - "left": 70.3125, - "top": 68.656555, - "right": 71.71875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 60, - "left": 71.71875, - "top": 68.656555, - "right": 73.125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 60, - "left": 73.125, - "top": 68.656555, - "right": 74.53125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 60, - "left": 74.53125, - "top": 68.656555, - "right": 75.9375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 60, - "left": 75.9375, - "top": 68.656555, - "right": 77.34375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 60, - "left": 77.34375, - "top": 68.656555, - "right": 78.75, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 60, - "left": 78.75, - "top": 68.656555, - "right": 80.15625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 60, - "left": 80.15625, - "top": 68.656555, - "right": 81.5625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 60, - "left": 81.5625, - "top": 68.656555, - "right": 82.96875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 60, - "left": 82.96875, - "top": 68.656555, - "right": 84.375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 60, - "left": 84.375, - "top": 68.656555, - "right": 85.78125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 60, - "left": 85.78125, - "top": 68.656555, - "right": 87.1875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 60, - "left": 87.1875, - "top": 68.656555, - "right": 88.59375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 60, - "left": 88.59375, - "top": 68.656555, - "right": 90.0, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 60, - "left": 90.0, - "top": 68.656555, - "right": 91.40625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 60, - "left": 91.40625, - "top": 68.656555, - "right": 92.8125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 60, - "left": 92.8125, - "top": 68.656555, - "right": 94.21875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 60, - "left": 94.21875, - "top": 68.656555, - "right": 95.625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 60, - "left": 95.625, - "top": 68.656555, - "right": 97.03125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 60, - "left": 97.03125, - "top": 68.656555, - "right": 98.4375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 60, - "left": 98.4375, - "top": 68.656555, - "right": 99.84375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 60, - "left": 99.84375, - "top": 68.656555, - "right": 101.25, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 60, - "left": 101.25, - "top": 68.656555, - "right": 102.65625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 60, - "left": 102.65625, - "top": 68.656555, - "right": 104.0625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 60, - "left": 104.0625, - "top": 68.656555, - "right": 105.46875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 60, - "left": 105.46875, - "top": 68.656555, - "right": 106.875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 60, - "left": 106.875, - "top": 68.656555, - "right": 108.28125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 60, - "left": 108.28125, - "top": 68.656555, - "right": 109.6875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 60, - "left": 109.6875, - "top": 68.656555, - "right": 111.09375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 60, - "left": 111.09375, - "top": 68.656555, - "right": 112.5, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 60, - "left": 112.5, - "top": 68.656555, - "right": 113.90625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 60, - "left": 113.90625, - "top": 68.656555, - "right": 115.3125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 60, - "left": 115.3125, - "top": 68.656555, - "right": 116.71875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 60, - "left": 116.71875, - "top": 68.656555, - "right": 118.125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 60, - "left": 118.125, - "top": 68.656555, - "right": 119.53125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 60, - "left": 119.53125, - "top": 68.656555, - "right": 120.9375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 60, - "left": 120.9375, - "top": 68.656555, - "right": 122.34375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 60, - "left": 122.34375, - "top": 68.656555, - "right": 123.75, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 60, - "left": 123.75, - "top": 68.656555, - "right": 125.15625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 60, - "left": 125.15625, - "top": 68.656555, - "right": 126.5625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 60, - "left": 126.5625, - "top": 68.656555, - "right": 127.96875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 60, - "left": 127.96875, - "top": 68.656555, - "right": 129.375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 60, - "left": 129.375, - "top": 68.656555, - "right": 130.78125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 60, - "left": 130.78125, - "top": 68.656555, - "right": 132.1875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 60, - "left": 132.1875, - "top": 68.656555, - "right": 133.59375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 60, - "left": 133.59375, - "top": 68.656555, - "right": 135.0, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 60, - "left": 135.0, - "top": 68.656555, - "right": 136.40625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 60, - "left": 136.40625, - "top": 68.656555, - "right": 137.8125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 60, - "left": 137.8125, - "top": 68.656555, - "right": 139.21875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 60, - "left": 139.21875, - "top": 68.656555, - "right": 140.625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 60, - "left": 140.625, - "top": 68.656555, - "right": 142.03125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 60, - "left": 142.03125, - "top": 68.656555, - "right": 143.4375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 60, - "left": 143.4375, - "top": 68.656555, - "right": 144.84375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 60, - "left": 144.84375, - "top": 68.656555, - "right": 146.25, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 60, - "left": 146.25, - "top": 68.656555, - "right": 147.65625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 60, - "left": 147.65625, - "top": 68.656555, - "right": 149.0625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 60, - "left": 149.0625, - "top": 68.656555, - "right": 150.46875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 60, - "left": 150.46875, - "top": 68.656555, - "right": 151.875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 60, - "left": 151.875, - "top": 68.656555, - "right": 153.28125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 60, - "left": 153.28125, - "top": 68.656555, - "right": 154.6875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 60, - "left": 154.6875, - "top": 68.656555, - "right": 156.09375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 60, - "left": 156.09375, - "top": 68.656555, - "right": 157.5, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 60, - "left": 157.5, - "top": 68.656555, - "right": 158.90625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 60, - "left": 158.90625, - "top": 68.656555, - "right": 160.3125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 60, - "left": 160.3125, - "top": 68.656555, - "right": 161.71875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 60, - "left": 161.71875, - "top": 68.656555, - "right": 163.125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 60, - "left": 163.125, - "top": 68.656555, - "right": 164.53125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 60, - "left": 164.53125, - "top": 68.656555, - "right": 165.9375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 60, - "left": 165.9375, - "top": 68.656555, - "right": 167.34375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 60, - "left": 167.34375, - "top": 68.656555, - "right": 168.75, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 60, - "left": 168.75, - "top": 68.656555, - "right": 170.15625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 60, - "left": 170.15625, - "top": 68.656555, - "right": 171.5625, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 60, - "left": 171.5625, - "top": 68.656555, - "right": 172.96875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 60, - "left": 172.96875, - "top": 68.656555, - "right": 174.375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 60, - "left": 174.375, - "top": 68.656555, - "right": 175.78125, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 60, - "left": 175.78125, - "top": 68.656555, - "right": 177.1875, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 60, - "left": 177.1875, - "top": 68.656555, - "right": 178.59375, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 60, - "left": 178.59375, - "top": 68.656555, - "right": 180.0, - "bottom": 68.138852, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 61, - "left": -180.0, - "top": 68.138852, - "right": -178.59375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 61, - "left": -178.59375, - "top": 68.138852, - "right": -177.1875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 61, - "left": -177.1875, - "top": 68.138852, - "right": -175.78125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 61, - "left": -175.78125, - "top": 68.138852, - "right": -174.375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 61, - "left": 30.9375, - "top": 68.138852, - "right": 32.34375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 61, - "left": 32.34375, - "top": 68.138852, - "right": 33.75, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 61, - "left": 33.75, - "top": 68.138852, - "right": 35.15625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 61, - "left": 35.15625, - "top": 68.138852, - "right": 36.5625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 61, - "left": 36.5625, - "top": 68.138852, - "right": 37.96875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 61, - "left": 37.96875, - "top": 68.138852, - "right": 39.375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 61, - "left": 39.375, - "top": 68.138852, - "right": 40.78125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 61, - "left": 40.78125, - "top": 68.138852, - "right": 42.1875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 61, - "left": 43.59375, - "top": 68.138852, - "right": 45.0, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 61, - "left": 45.0, - "top": 68.138852, - "right": 46.40625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 61, - "left": 46.40625, - "top": 68.138852, - "right": 47.8125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 61, - "left": 47.8125, - "top": 68.138852, - "right": 49.21875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 61, - "left": 49.21875, - "top": 68.138852, - "right": 50.625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 61, - "left": 50.625, - "top": 68.138852, - "right": 52.03125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 61, - "left": 52.03125, - "top": 68.138852, - "right": 53.4375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 61, - "left": 53.4375, - "top": 68.138852, - "right": 54.84375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 61, - "left": 54.84375, - "top": 68.138852, - "right": 56.25, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 61, - "left": 56.25, - "top": 68.138852, - "right": 57.65625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 61, - "left": 57.65625, - "top": 68.138852, - "right": 59.0625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 61, - "left": 59.0625, - "top": 68.138852, - "right": 60.46875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 61, - "left": 60.46875, - "top": 68.138852, - "right": 61.875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 61, - "left": 61.875, - "top": 68.138852, - "right": 63.28125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 61, - "left": 63.28125, - "top": 68.138852, - "right": 64.6875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 61, - "left": 64.6875, - "top": 68.138852, - "right": 66.09375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 61, - "left": 66.09375, - "top": 68.138852, - "right": 67.5, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 61, - "left": 67.5, - "top": 68.138852, - "right": 68.90625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 61, - "left": 68.90625, - "top": 68.138852, - "right": 70.3125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 61, - "left": 70.3125, - "top": 68.138852, - "right": 71.71875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 61, - "left": 71.71875, - "top": 68.138852, - "right": 73.125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 61, - "left": 73.125, - "top": 68.138852, - "right": 74.53125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 61, - "left": 74.53125, - "top": 68.138852, - "right": 75.9375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 61, - "left": 75.9375, - "top": 68.138852, - "right": 77.34375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 61, - "left": 77.34375, - "top": 68.138852, - "right": 78.75, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 61, - "left": 78.75, - "top": 68.138852, - "right": 80.15625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 61, - "left": 80.15625, - "top": 68.138852, - "right": 81.5625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 61, - "left": 81.5625, - "top": 68.138852, - "right": 82.96875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 61, - "left": 82.96875, - "top": 68.138852, - "right": 84.375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 61, - "left": 84.375, - "top": 68.138852, - "right": 85.78125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 61, - "left": 85.78125, - "top": 68.138852, - "right": 87.1875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 61, - "left": 87.1875, - "top": 68.138852, - "right": 88.59375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 61, - "left": 88.59375, - "top": 68.138852, - "right": 90.0, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 61, - "left": 90.0, - "top": 68.138852, - "right": 91.40625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 61, - "left": 91.40625, - "top": 68.138852, - "right": 92.8125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 61, - "left": 92.8125, - "top": 68.138852, - "right": 94.21875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 61, - "left": 94.21875, - "top": 68.138852, - "right": 95.625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 61, - "left": 95.625, - "top": 68.138852, - "right": 97.03125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 61, - "left": 97.03125, - "top": 68.138852, - "right": 98.4375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 61, - "left": 98.4375, - "top": 68.138852, - "right": 99.84375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 61, - "left": 99.84375, - "top": 68.138852, - "right": 101.25, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 61, - "left": 101.25, - "top": 68.138852, - "right": 102.65625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 61, - "left": 102.65625, - "top": 68.138852, - "right": 104.0625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 61, - "left": 104.0625, - "top": 68.138852, - "right": 105.46875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 61, - "left": 105.46875, - "top": 68.138852, - "right": 106.875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 61, - "left": 106.875, - "top": 68.138852, - "right": 108.28125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 61, - "left": 108.28125, - "top": 68.138852, - "right": 109.6875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 61, - "left": 109.6875, - "top": 68.138852, - "right": 111.09375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 61, - "left": 111.09375, - "top": 68.138852, - "right": 112.5, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 61, - "left": 112.5, - "top": 68.138852, - "right": 113.90625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 61, - "left": 113.90625, - "top": 68.138852, - "right": 115.3125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 61, - "left": 115.3125, - "top": 68.138852, - "right": 116.71875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 61, - "left": 116.71875, - "top": 68.138852, - "right": 118.125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 61, - "left": 118.125, - "top": 68.138852, - "right": 119.53125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 61, - "left": 119.53125, - "top": 68.138852, - "right": 120.9375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 61, - "left": 120.9375, - "top": 68.138852, - "right": 122.34375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 61, - "left": 122.34375, - "top": 68.138852, - "right": 123.75, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 61, - "left": 123.75, - "top": 68.138852, - "right": 125.15625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 61, - "left": 125.15625, - "top": 68.138852, - "right": 126.5625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 61, - "left": 126.5625, - "top": 68.138852, - "right": 127.96875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 61, - "left": 127.96875, - "top": 68.138852, - "right": 129.375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 61, - "left": 129.375, - "top": 68.138852, - "right": 130.78125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 61, - "left": 130.78125, - "top": 68.138852, - "right": 132.1875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 61, - "left": 132.1875, - "top": 68.138852, - "right": 133.59375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 61, - "left": 133.59375, - "top": 68.138852, - "right": 135.0, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 61, - "left": 135.0, - "top": 68.138852, - "right": 136.40625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 61, - "left": 136.40625, - "top": 68.138852, - "right": 137.8125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 61, - "left": 137.8125, - "top": 68.138852, - "right": 139.21875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 61, - "left": 139.21875, - "top": 68.138852, - "right": 140.625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 61, - "left": 140.625, - "top": 68.138852, - "right": 142.03125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 61, - "left": 142.03125, - "top": 68.138852, - "right": 143.4375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 61, - "left": 143.4375, - "top": 68.138852, - "right": 144.84375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 61, - "left": 144.84375, - "top": 68.138852, - "right": 146.25, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 61, - "left": 146.25, - "top": 68.138852, - "right": 147.65625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 61, - "left": 147.65625, - "top": 68.138852, - "right": 149.0625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 61, - "left": 149.0625, - "top": 68.138852, - "right": 150.46875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 61, - "left": 150.46875, - "top": 68.138852, - "right": 151.875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 61, - "left": 151.875, - "top": 68.138852, - "right": 153.28125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 61, - "left": 153.28125, - "top": 68.138852, - "right": 154.6875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 61, - "left": 154.6875, - "top": 68.138852, - "right": 156.09375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 61, - "left": 156.09375, - "top": 68.138852, - "right": 157.5, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 61, - "left": 157.5, - "top": 68.138852, - "right": 158.90625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 61, - "left": 158.90625, - "top": 68.138852, - "right": 160.3125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 61, - "left": 160.3125, - "top": 68.138852, - "right": 161.71875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 61, - "left": 161.71875, - "top": 68.138852, - "right": 163.125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 61, - "left": 163.125, - "top": 68.138852, - "right": 164.53125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 61, - "left": 164.53125, - "top": 68.138852, - "right": 165.9375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 61, - "left": 165.9375, - "top": 68.138852, - "right": 167.34375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 61, - "left": 167.34375, - "top": 68.138852, - "right": 168.75, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 61, - "left": 168.75, - "top": 68.138852, - "right": 170.15625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 61, - "left": 170.15625, - "top": 68.138852, - "right": 171.5625, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 61, - "left": 171.5625, - "top": 68.138852, - "right": 172.96875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 61, - "left": 172.96875, - "top": 68.138852, - "right": 174.375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 61, - "left": 174.375, - "top": 68.138852, - "right": 175.78125, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 61, - "left": 175.78125, - "top": 68.138852, - "right": 177.1875, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 61, - "left": 177.1875, - "top": 68.138852, - "right": 178.59375, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 61, - "left": 178.59375, - "top": 68.138852, - "right": 180.0, - "bottom": 67.609221, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 62, - "left": -180.0, - "top": 67.609221, - "right": -178.59375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 62, - "left": -178.59375, - "top": 67.609221, - "right": -177.1875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 62, - "left": -177.1875, - "top": 67.609221, - "right": -175.78125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 62, - "left": -175.78125, - "top": 67.609221, - "right": -174.375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 62, - "left": -174.375, - "top": 67.609221, - "right": -172.96875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 62, - "left": 30.9375, - "top": 67.609221, - "right": 32.34375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 62, - "left": 32.34375, - "top": 67.609221, - "right": 33.75, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 62, - "left": 33.75, - "top": 67.609221, - "right": 35.15625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 62, - "left": 35.15625, - "top": 67.609221, - "right": 36.5625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 62, - "left": 36.5625, - "top": 67.609221, - "right": 37.96875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 62, - "left": 37.96875, - "top": 67.609221, - "right": 39.375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 62, - "left": 39.375, - "top": 67.609221, - "right": 40.78125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 62, - "left": 40.78125, - "top": 67.609221, - "right": 42.1875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 62, - "left": 43.59375, - "top": 67.609221, - "right": 45.0, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 62, - "left": 45.0, - "top": 67.609221, - "right": 46.40625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 62, - "left": 46.40625, - "top": 67.609221, - "right": 47.8125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 62, - "left": 47.8125, - "top": 67.609221, - "right": 49.21875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 62, - "left": 49.21875, - "top": 67.609221, - "right": 50.625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 62, - "left": 50.625, - "top": 67.609221, - "right": 52.03125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 62, - "left": 52.03125, - "top": 67.609221, - "right": 53.4375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 62, - "left": 53.4375, - "top": 67.609221, - "right": 54.84375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 62, - "left": 54.84375, - "top": 67.609221, - "right": 56.25, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 62, - "left": 56.25, - "top": 67.609221, - "right": 57.65625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 62, - "left": 57.65625, - "top": 67.609221, - "right": 59.0625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 62, - "left": 59.0625, - "top": 67.609221, - "right": 60.46875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 62, - "left": 60.46875, - "top": 67.609221, - "right": 61.875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 62, - "left": 61.875, - "top": 67.609221, - "right": 63.28125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 62, - "left": 63.28125, - "top": 67.609221, - "right": 64.6875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 62, - "left": 64.6875, - "top": 67.609221, - "right": 66.09375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 62, - "left": 66.09375, - "top": 67.609221, - "right": 67.5, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 62, - "left": 67.5, - "top": 67.609221, - "right": 68.90625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 62, - "left": 68.90625, - "top": 67.609221, - "right": 70.3125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 62, - "left": 70.3125, - "top": 67.609221, - "right": 71.71875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 62, - "left": 71.71875, - "top": 67.609221, - "right": 73.125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 62, - "left": 73.125, - "top": 67.609221, - "right": 74.53125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 62, - "left": 74.53125, - "top": 67.609221, - "right": 75.9375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 62, - "left": 75.9375, - "top": 67.609221, - "right": 77.34375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 62, - "left": 77.34375, - "top": 67.609221, - "right": 78.75, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 62, - "left": 78.75, - "top": 67.609221, - "right": 80.15625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 62, - "left": 80.15625, - "top": 67.609221, - "right": 81.5625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 62, - "left": 81.5625, - "top": 67.609221, - "right": 82.96875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 62, - "left": 82.96875, - "top": 67.609221, - "right": 84.375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 62, - "left": 84.375, - "top": 67.609221, - "right": 85.78125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 62, - "left": 85.78125, - "top": 67.609221, - "right": 87.1875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 62, - "left": 87.1875, - "top": 67.609221, - "right": 88.59375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 62, - "left": 88.59375, - "top": 67.609221, - "right": 90.0, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 62, - "left": 90.0, - "top": 67.609221, - "right": 91.40625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 62, - "left": 91.40625, - "top": 67.609221, - "right": 92.8125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 62, - "left": 92.8125, - "top": 67.609221, - "right": 94.21875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 62, - "left": 94.21875, - "top": 67.609221, - "right": 95.625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 62, - "left": 95.625, - "top": 67.609221, - "right": 97.03125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 62, - "left": 97.03125, - "top": 67.609221, - "right": 98.4375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 62, - "left": 98.4375, - "top": 67.609221, - "right": 99.84375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 62, - "left": 99.84375, - "top": 67.609221, - "right": 101.25, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 62, - "left": 101.25, - "top": 67.609221, - "right": 102.65625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 62, - "left": 102.65625, - "top": 67.609221, - "right": 104.0625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 62, - "left": 104.0625, - "top": 67.609221, - "right": 105.46875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 62, - "left": 105.46875, - "top": 67.609221, - "right": 106.875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 62, - "left": 106.875, - "top": 67.609221, - "right": 108.28125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 62, - "left": 108.28125, - "top": 67.609221, - "right": 109.6875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 62, - "left": 109.6875, - "top": 67.609221, - "right": 111.09375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 62, - "left": 111.09375, - "top": 67.609221, - "right": 112.5, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 62, - "left": 112.5, - "top": 67.609221, - "right": 113.90625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 62, - "left": 113.90625, - "top": 67.609221, - "right": 115.3125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 62, - "left": 115.3125, - "top": 67.609221, - "right": 116.71875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 62, - "left": 116.71875, - "top": 67.609221, - "right": 118.125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 62, - "left": 118.125, - "top": 67.609221, - "right": 119.53125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 62, - "left": 119.53125, - "top": 67.609221, - "right": 120.9375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 62, - "left": 120.9375, - "top": 67.609221, - "right": 122.34375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 62, - "left": 122.34375, - "top": 67.609221, - "right": 123.75, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 62, - "left": 123.75, - "top": 67.609221, - "right": 125.15625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 62, - "left": 125.15625, - "top": 67.609221, - "right": 126.5625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 62, - "left": 126.5625, - "top": 67.609221, - "right": 127.96875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 62, - "left": 127.96875, - "top": 67.609221, - "right": 129.375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 62, - "left": 129.375, - "top": 67.609221, - "right": 130.78125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 62, - "left": 130.78125, - "top": 67.609221, - "right": 132.1875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 62, - "left": 132.1875, - "top": 67.609221, - "right": 133.59375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 62, - "left": 133.59375, - "top": 67.609221, - "right": 135.0, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 62, - "left": 135.0, - "top": 67.609221, - "right": 136.40625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 62, - "left": 136.40625, - "top": 67.609221, - "right": 137.8125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 62, - "left": 137.8125, - "top": 67.609221, - "right": 139.21875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 62, - "left": 139.21875, - "top": 67.609221, - "right": 140.625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 62, - "left": 140.625, - "top": 67.609221, - "right": 142.03125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 62, - "left": 142.03125, - "top": 67.609221, - "right": 143.4375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 62, - "left": 143.4375, - "top": 67.609221, - "right": 144.84375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 62, - "left": 144.84375, - "top": 67.609221, - "right": 146.25, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 62, - "left": 146.25, - "top": 67.609221, - "right": 147.65625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 62, - "left": 147.65625, - "top": 67.609221, - "right": 149.0625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 62, - "left": 149.0625, - "top": 67.609221, - "right": 150.46875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 62, - "left": 150.46875, - "top": 67.609221, - "right": 151.875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 62, - "left": 151.875, - "top": 67.609221, - "right": 153.28125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 62, - "left": 153.28125, - "top": 67.609221, - "right": 154.6875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 62, - "left": 154.6875, - "top": 67.609221, - "right": 156.09375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 62, - "left": 156.09375, - "top": 67.609221, - "right": 157.5, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 62, - "left": 157.5, - "top": 67.609221, - "right": 158.90625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 62, - "left": 158.90625, - "top": 67.609221, - "right": 160.3125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 62, - "left": 160.3125, - "top": 67.609221, - "right": 161.71875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 62, - "left": 161.71875, - "top": 67.609221, - "right": 163.125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 62, - "left": 163.125, - "top": 67.609221, - "right": 164.53125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 62, - "left": 164.53125, - "top": 67.609221, - "right": 165.9375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 62, - "left": 165.9375, - "top": 67.609221, - "right": 167.34375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 62, - "left": 167.34375, - "top": 67.609221, - "right": 168.75, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 62, - "left": 168.75, - "top": 67.609221, - "right": 170.15625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 62, - "left": 170.15625, - "top": 67.609221, - "right": 171.5625, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 62, - "left": 171.5625, - "top": 67.609221, - "right": 172.96875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 62, - "left": 172.96875, - "top": 67.609221, - "right": 174.375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 62, - "left": 174.375, - "top": 67.609221, - "right": 175.78125, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 62, - "left": 175.78125, - "top": 67.609221, - "right": 177.1875, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 62, - "left": 177.1875, - "top": 67.609221, - "right": 178.59375, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 62, - "left": 178.59375, - "top": 67.609221, - "right": 180.0, - "bottom": 67.067433, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 63, - "left": -180.0, - "top": 67.067433, - "right": -178.59375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 63, - "left": -178.59375, - "top": 67.067433, - "right": -177.1875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 63, - "left": -177.1875, - "top": 67.067433, - "right": -175.78125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 63, - "left": -175.78125, - "top": 67.067433, - "right": -174.375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 63, - "left": -174.375, - "top": 67.067433, - "right": -172.96875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 5, - "y": 63, - "left": -172.96875, - "top": 67.067433, - "right": -171.5625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 6, - "y": 63, - "left": -171.5625, - "top": 67.067433, - "right": -170.15625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 63, - "left": 29.53125, - "top": 67.067433, - "right": 30.9375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 63, - "left": 30.9375, - "top": 67.067433, - "right": 32.34375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 63, - "left": 32.34375, - "top": 67.067433, - "right": 33.75, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 63, - "left": 33.75, - "top": 67.067433, - "right": 35.15625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 63, - "left": 35.15625, - "top": 67.067433, - "right": 36.5625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 63, - "left": 36.5625, - "top": 67.067433, - "right": 37.96875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 63, - "left": 37.96875, - "top": 67.067433, - "right": 39.375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 63, - "left": 39.375, - "top": 67.067433, - "right": 40.78125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 63, - "left": 40.78125, - "top": 67.067433, - "right": 42.1875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 63, - "left": 42.1875, - "top": 67.067433, - "right": 43.59375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 63, - "left": 43.59375, - "top": 67.067433, - "right": 45.0, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 63, - "left": 45.0, - "top": 67.067433, - "right": 46.40625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 63, - "left": 46.40625, - "top": 67.067433, - "right": 47.8125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 63, - "left": 47.8125, - "top": 67.067433, - "right": 49.21875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 63, - "left": 49.21875, - "top": 67.067433, - "right": 50.625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 63, - "left": 50.625, - "top": 67.067433, - "right": 52.03125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 63, - "left": 52.03125, - "top": 67.067433, - "right": 53.4375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 63, - "left": 53.4375, - "top": 67.067433, - "right": 54.84375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 63, - "left": 54.84375, - "top": 67.067433, - "right": 56.25, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 63, - "left": 56.25, - "top": 67.067433, - "right": 57.65625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 63, - "left": 57.65625, - "top": 67.067433, - "right": 59.0625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 63, - "left": 59.0625, - "top": 67.067433, - "right": 60.46875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 63, - "left": 60.46875, - "top": 67.067433, - "right": 61.875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 63, - "left": 61.875, - "top": 67.067433, - "right": 63.28125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 63, - "left": 63.28125, - "top": 67.067433, - "right": 64.6875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 63, - "left": 64.6875, - "top": 67.067433, - "right": 66.09375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 63, - "left": 66.09375, - "top": 67.067433, - "right": 67.5, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 63, - "left": 67.5, - "top": 67.067433, - "right": 68.90625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 63, - "left": 68.90625, - "top": 67.067433, - "right": 70.3125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 63, - "left": 70.3125, - "top": 67.067433, - "right": 71.71875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 63, - "left": 71.71875, - "top": 67.067433, - "right": 73.125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 63, - "left": 73.125, - "top": 67.067433, - "right": 74.53125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 63, - "left": 74.53125, - "top": 67.067433, - "right": 75.9375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 63, - "left": 75.9375, - "top": 67.067433, - "right": 77.34375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 63, - "left": 77.34375, - "top": 67.067433, - "right": 78.75, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 63, - "left": 78.75, - "top": 67.067433, - "right": 80.15625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 63, - "left": 80.15625, - "top": 67.067433, - "right": 81.5625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 63, - "left": 81.5625, - "top": 67.067433, - "right": 82.96875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 63, - "left": 82.96875, - "top": 67.067433, - "right": 84.375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 63, - "left": 84.375, - "top": 67.067433, - "right": 85.78125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 63, - "left": 85.78125, - "top": 67.067433, - "right": 87.1875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 63, - "left": 87.1875, - "top": 67.067433, - "right": 88.59375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 63, - "left": 88.59375, - "top": 67.067433, - "right": 90.0, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 63, - "left": 90.0, - "top": 67.067433, - "right": 91.40625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 63, - "left": 91.40625, - "top": 67.067433, - "right": 92.8125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 63, - "left": 92.8125, - "top": 67.067433, - "right": 94.21875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 63, - "left": 94.21875, - "top": 67.067433, - "right": 95.625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 63, - "left": 95.625, - "top": 67.067433, - "right": 97.03125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 63, - "left": 97.03125, - "top": 67.067433, - "right": 98.4375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 63, - "left": 98.4375, - "top": 67.067433, - "right": 99.84375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 63, - "left": 99.84375, - "top": 67.067433, - "right": 101.25, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 63, - "left": 101.25, - "top": 67.067433, - "right": 102.65625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 63, - "left": 102.65625, - "top": 67.067433, - "right": 104.0625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 63, - "left": 104.0625, - "top": 67.067433, - "right": 105.46875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 63, - "left": 105.46875, - "top": 67.067433, - "right": 106.875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 63, - "left": 106.875, - "top": 67.067433, - "right": 108.28125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 63, - "left": 108.28125, - "top": 67.067433, - "right": 109.6875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 63, - "left": 109.6875, - "top": 67.067433, - "right": 111.09375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 63, - "left": 111.09375, - "top": 67.067433, - "right": 112.5, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 63, - "left": 112.5, - "top": 67.067433, - "right": 113.90625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 63, - "left": 113.90625, - "top": 67.067433, - "right": 115.3125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 63, - "left": 115.3125, - "top": 67.067433, - "right": 116.71875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 63, - "left": 116.71875, - "top": 67.067433, - "right": 118.125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 63, - "left": 118.125, - "top": 67.067433, - "right": 119.53125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 63, - "left": 119.53125, - "top": 67.067433, - "right": 120.9375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 63, - "left": 120.9375, - "top": 67.067433, - "right": 122.34375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 63, - "left": 122.34375, - "top": 67.067433, - "right": 123.75, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 63, - "left": 123.75, - "top": 67.067433, - "right": 125.15625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 63, - "left": 125.15625, - "top": 67.067433, - "right": 126.5625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 63, - "left": 126.5625, - "top": 67.067433, - "right": 127.96875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 63, - "left": 127.96875, - "top": 67.067433, - "right": 129.375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 63, - "left": 129.375, - "top": 67.067433, - "right": 130.78125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 63, - "left": 130.78125, - "top": 67.067433, - "right": 132.1875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 63, - "left": 132.1875, - "top": 67.067433, - "right": 133.59375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 63, - "left": 133.59375, - "top": 67.067433, - "right": 135.0, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 63, - "left": 135.0, - "top": 67.067433, - "right": 136.40625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 63, - "left": 136.40625, - "top": 67.067433, - "right": 137.8125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 63, - "left": 137.8125, - "top": 67.067433, - "right": 139.21875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 63, - "left": 139.21875, - "top": 67.067433, - "right": 140.625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 63, - "left": 140.625, - "top": 67.067433, - "right": 142.03125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 63, - "left": 142.03125, - "top": 67.067433, - "right": 143.4375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 63, - "left": 143.4375, - "top": 67.067433, - "right": 144.84375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 63, - "left": 144.84375, - "top": 67.067433, - "right": 146.25, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 63, - "left": 146.25, - "top": 67.067433, - "right": 147.65625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 63, - "left": 147.65625, - "top": 67.067433, - "right": 149.0625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 63, - "left": 149.0625, - "top": 67.067433, - "right": 150.46875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 63, - "left": 150.46875, - "top": 67.067433, - "right": 151.875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 63, - "left": 151.875, - "top": 67.067433, - "right": 153.28125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 63, - "left": 153.28125, - "top": 67.067433, - "right": 154.6875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 63, - "left": 154.6875, - "top": 67.067433, - "right": 156.09375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 63, - "left": 156.09375, - "top": 67.067433, - "right": 157.5, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 63, - "left": 157.5, - "top": 67.067433, - "right": 158.90625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 63, - "left": 158.90625, - "top": 67.067433, - "right": 160.3125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 63, - "left": 160.3125, - "top": 67.067433, - "right": 161.71875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 63, - "left": 161.71875, - "top": 67.067433, - "right": 163.125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 63, - "left": 163.125, - "top": 67.067433, - "right": 164.53125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 63, - "left": 164.53125, - "top": 67.067433, - "right": 165.9375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 63, - "left": 165.9375, - "top": 67.067433, - "right": 167.34375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 63, - "left": 167.34375, - "top": 67.067433, - "right": 168.75, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 63, - "left": 168.75, - "top": 67.067433, - "right": 170.15625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 63, - "left": 170.15625, - "top": 67.067433, - "right": 171.5625, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 63, - "left": 171.5625, - "top": 67.067433, - "right": 172.96875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 63, - "left": 172.96875, - "top": 67.067433, - "right": 174.375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 63, - "left": 174.375, - "top": 67.067433, - "right": 175.78125, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 63, - "left": 175.78125, - "top": 67.067433, - "right": 177.1875, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 63, - "left": 177.1875, - "top": 67.067433, - "right": 178.59375, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 63, - "left": 178.59375, - "top": 67.067433, - "right": 180.0, - "bottom": 66.51326, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 64, - "left": -180.0, - "top": 66.51326, - "right": -178.59375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 64, - "left": -178.59375, - "top": 66.51326, - "right": -177.1875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 64, - "left": -177.1875, - "top": 66.51326, - "right": -175.78125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 64, - "left": -175.78125, - "top": 66.51326, - "right": -174.375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 64, - "left": -174.375, - "top": 66.51326, - "right": -172.96875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 5, - "y": 64, - "left": -172.96875, - "top": 66.51326, - "right": -171.5625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 6, - "y": 64, - "left": -171.5625, - "top": 66.51326, - "right": -170.15625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 7, - "y": 64, - "left": -170.15625, - "top": 66.51326, - "right": -168.75, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 64, - "left": 30.9375, - "top": 66.51326, - "right": 32.34375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 64, - "left": 32.34375, - "top": 66.51326, - "right": 33.75, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 64, - "left": 33.75, - "top": 66.51326, - "right": 35.15625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 64, - "left": 35.15625, - "top": 66.51326, - "right": 36.5625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 64, - "left": 36.5625, - "top": 66.51326, - "right": 37.96875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 64, - "left": 37.96875, - "top": 66.51326, - "right": 39.375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 64, - "left": 39.375, - "top": 66.51326, - "right": 40.78125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 64, - "left": 40.78125, - "top": 66.51326, - "right": 42.1875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 64, - "left": 42.1875, - "top": 66.51326, - "right": 43.59375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 64, - "left": 43.59375, - "top": 66.51326, - "right": 45.0, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 64, - "left": 45.0, - "top": 66.51326, - "right": 46.40625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 64, - "left": 46.40625, - "top": 66.51326, - "right": 47.8125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 64, - "left": 47.8125, - "top": 66.51326, - "right": 49.21875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 64, - "left": 49.21875, - "top": 66.51326, - "right": 50.625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 64, - "left": 50.625, - "top": 66.51326, - "right": 52.03125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 64, - "left": 52.03125, - "top": 66.51326, - "right": 53.4375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 64, - "left": 53.4375, - "top": 66.51326, - "right": 54.84375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 64, - "left": 54.84375, - "top": 66.51326, - "right": 56.25, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 64, - "left": 56.25, - "top": 66.51326, - "right": 57.65625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 64, - "left": 57.65625, - "top": 66.51326, - "right": 59.0625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 64, - "left": 59.0625, - "top": 66.51326, - "right": 60.46875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 64, - "left": 60.46875, - "top": 66.51326, - "right": 61.875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 64, - "left": 61.875, - "top": 66.51326, - "right": 63.28125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 64, - "left": 63.28125, - "top": 66.51326, - "right": 64.6875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 64, - "left": 64.6875, - "top": 66.51326, - "right": 66.09375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 64, - "left": 66.09375, - "top": 66.51326, - "right": 67.5, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 64, - "left": 67.5, - "top": 66.51326, - "right": 68.90625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 64, - "left": 68.90625, - "top": 66.51326, - "right": 70.3125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 64, - "left": 70.3125, - "top": 66.51326, - "right": 71.71875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 64, - "left": 71.71875, - "top": 66.51326, - "right": 73.125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 64, - "left": 73.125, - "top": 66.51326, - "right": 74.53125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 64, - "left": 74.53125, - "top": 66.51326, - "right": 75.9375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 64, - "left": 75.9375, - "top": 66.51326, - "right": 77.34375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 64, - "left": 77.34375, - "top": 66.51326, - "right": 78.75, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 64, - "left": 78.75, - "top": 66.51326, - "right": 80.15625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 64, - "left": 80.15625, - "top": 66.51326, - "right": 81.5625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 64, - "left": 81.5625, - "top": 66.51326, - "right": 82.96875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 64, - "left": 82.96875, - "top": 66.51326, - "right": 84.375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 64, - "left": 84.375, - "top": 66.51326, - "right": 85.78125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 64, - "left": 85.78125, - "top": 66.51326, - "right": 87.1875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 64, - "left": 87.1875, - "top": 66.51326, - "right": 88.59375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 64, - "left": 88.59375, - "top": 66.51326, - "right": 90.0, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 64, - "left": 90.0, - "top": 66.51326, - "right": 91.40625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 64, - "left": 91.40625, - "top": 66.51326, - "right": 92.8125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 64, - "left": 92.8125, - "top": 66.51326, - "right": 94.21875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 64, - "left": 94.21875, - "top": 66.51326, - "right": 95.625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 64, - "left": 95.625, - "top": 66.51326, - "right": 97.03125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 64, - "left": 97.03125, - "top": 66.51326, - "right": 98.4375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 64, - "left": 98.4375, - "top": 66.51326, - "right": 99.84375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 64, - "left": 99.84375, - "top": 66.51326, - "right": 101.25, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 64, - "left": 101.25, - "top": 66.51326, - "right": 102.65625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 64, - "left": 102.65625, - "top": 66.51326, - "right": 104.0625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 64, - "left": 104.0625, - "top": 66.51326, - "right": 105.46875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 64, - "left": 105.46875, - "top": 66.51326, - "right": 106.875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 64, - "left": 106.875, - "top": 66.51326, - "right": 108.28125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 64, - "left": 108.28125, - "top": 66.51326, - "right": 109.6875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 64, - "left": 109.6875, - "top": 66.51326, - "right": 111.09375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 64, - "left": 111.09375, - "top": 66.51326, - "right": 112.5, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 64, - "left": 112.5, - "top": 66.51326, - "right": 113.90625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 64, - "left": 113.90625, - "top": 66.51326, - "right": 115.3125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 64, - "left": 115.3125, - "top": 66.51326, - "right": 116.71875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 64, - "left": 116.71875, - "top": 66.51326, - "right": 118.125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 64, - "left": 118.125, - "top": 66.51326, - "right": 119.53125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 64, - "left": 119.53125, - "top": 66.51326, - "right": 120.9375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 64, - "left": 120.9375, - "top": 66.51326, - "right": 122.34375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 64, - "left": 122.34375, - "top": 66.51326, - "right": 123.75, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 64, - "left": 123.75, - "top": 66.51326, - "right": 125.15625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 64, - "left": 125.15625, - "top": 66.51326, - "right": 126.5625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 64, - "left": 126.5625, - "top": 66.51326, - "right": 127.96875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 64, - "left": 127.96875, - "top": 66.51326, - "right": 129.375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 64, - "left": 129.375, - "top": 66.51326, - "right": 130.78125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 64, - "left": 130.78125, - "top": 66.51326, - "right": 132.1875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 64, - "left": 132.1875, - "top": 66.51326, - "right": 133.59375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 64, - "left": 133.59375, - "top": 66.51326, - "right": 135.0, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 64, - "left": 135.0, - "top": 66.51326, - "right": 136.40625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 64, - "left": 136.40625, - "top": 66.51326, - "right": 137.8125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 64, - "left": 137.8125, - "top": 66.51326, - "right": 139.21875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 64, - "left": 139.21875, - "top": 66.51326, - "right": 140.625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 64, - "left": 140.625, - "top": 66.51326, - "right": 142.03125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 64, - "left": 142.03125, - "top": 66.51326, - "right": 143.4375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 64, - "left": 143.4375, - "top": 66.51326, - "right": 144.84375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 64, - "left": 144.84375, - "top": 66.51326, - "right": 146.25, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 64, - "left": 146.25, - "top": 66.51326, - "right": 147.65625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 64, - "left": 147.65625, - "top": 66.51326, - "right": 149.0625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 64, - "left": 149.0625, - "top": 66.51326, - "right": 150.46875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 64, - "left": 150.46875, - "top": 66.51326, - "right": 151.875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 64, - "left": 151.875, - "top": 66.51326, - "right": 153.28125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 64, - "left": 153.28125, - "top": 66.51326, - "right": 154.6875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 64, - "left": 154.6875, - "top": 66.51326, - "right": 156.09375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 64, - "left": 156.09375, - "top": 66.51326, - "right": 157.5, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 64, - "left": 157.5, - "top": 66.51326, - "right": 158.90625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 64, - "left": 158.90625, - "top": 66.51326, - "right": 160.3125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 64, - "left": 160.3125, - "top": 66.51326, - "right": 161.71875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 64, - "left": 161.71875, - "top": 66.51326, - "right": 163.125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 64, - "left": 163.125, - "top": 66.51326, - "right": 164.53125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 64, - "left": 164.53125, - "top": 66.51326, - "right": 165.9375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 64, - "left": 165.9375, - "top": 66.51326, - "right": 167.34375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 64, - "left": 167.34375, - "top": 66.51326, - "right": 168.75, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 64, - "left": 168.75, - "top": 66.51326, - "right": 170.15625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 64, - "left": 170.15625, - "top": 66.51326, - "right": 171.5625, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 64, - "left": 171.5625, - "top": 66.51326, - "right": 172.96875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 64, - "left": 172.96875, - "top": 66.51326, - "right": 174.375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 64, - "left": 174.375, - "top": 66.51326, - "right": 175.78125, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 64, - "left": 175.78125, - "top": 66.51326, - "right": 177.1875, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 64, - "left": 177.1875, - "top": 66.51326, - "right": 178.59375, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 64, - "left": 178.59375, - "top": 66.51326, - "right": 180.0, - "bottom": 65.946472, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 65, - "left": -180.0, - "top": 65.946472, - "right": -178.59375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 1, - "y": 65, - "left": -178.59375, - "top": 65.946472, - "right": -177.1875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 65, - "left": -177.1875, - "top": 65.946472, - "right": -175.78125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 65, - "left": -175.78125, - "top": 65.946472, - "right": -174.375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 65, - "left": -174.375, - "top": 65.946472, - "right": -172.96875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 5, - "y": 65, - "left": -172.96875, - "top": 65.946472, - "right": -171.5625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 6, - "y": 65, - "left": -171.5625, - "top": 65.946472, - "right": -170.15625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 7, - "y": 65, - "left": -170.15625, - "top": 65.946472, - "right": -168.75, - "bottom": 65.366837, - "countries": [ - "russia", - "alaska" - ] - }, - { - "x": 150, - "y": 65, - "left": 30.9375, - "top": 65.946472, - "right": 32.34375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 65, - "left": 32.34375, - "top": 65.946472, - "right": 33.75, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 65, - "left": 33.75, - "top": 65.946472, - "right": 35.15625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 65, - "left": 39.375, - "top": 65.946472, - "right": 40.78125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 65, - "left": 40.78125, - "top": 65.946472, - "right": 42.1875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 65, - "left": 42.1875, - "top": 65.946472, - "right": 43.59375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 65, - "left": 43.59375, - "top": 65.946472, - "right": 45.0, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 65, - "left": 45.0, - "top": 65.946472, - "right": 46.40625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 65, - "left": 46.40625, - "top": 65.946472, - "right": 47.8125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 65, - "left": 47.8125, - "top": 65.946472, - "right": 49.21875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 65, - "left": 49.21875, - "top": 65.946472, - "right": 50.625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 65, - "left": 50.625, - "top": 65.946472, - "right": 52.03125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 65, - "left": 52.03125, - "top": 65.946472, - "right": 53.4375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 65, - "left": 53.4375, - "top": 65.946472, - "right": 54.84375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 65, - "left": 54.84375, - "top": 65.946472, - "right": 56.25, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 65, - "left": 56.25, - "top": 65.946472, - "right": 57.65625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 65, - "left": 57.65625, - "top": 65.946472, - "right": 59.0625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 65, - "left": 59.0625, - "top": 65.946472, - "right": 60.46875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 65, - "left": 60.46875, - "top": 65.946472, - "right": 61.875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 65, - "left": 61.875, - "top": 65.946472, - "right": 63.28125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 65, - "left": 63.28125, - "top": 65.946472, - "right": 64.6875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 65, - "left": 64.6875, - "top": 65.946472, - "right": 66.09375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 65, - "left": 66.09375, - "top": 65.946472, - "right": 67.5, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 65, - "left": 67.5, - "top": 65.946472, - "right": 68.90625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 65, - "left": 68.90625, - "top": 65.946472, - "right": 70.3125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 65, - "left": 70.3125, - "top": 65.946472, - "right": 71.71875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 65, - "left": 71.71875, - "top": 65.946472, - "right": 73.125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 65, - "left": 73.125, - "top": 65.946472, - "right": 74.53125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 65, - "left": 74.53125, - "top": 65.946472, - "right": 75.9375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 65, - "left": 75.9375, - "top": 65.946472, - "right": 77.34375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 65, - "left": 77.34375, - "top": 65.946472, - "right": 78.75, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 65, - "left": 78.75, - "top": 65.946472, - "right": 80.15625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 65, - "left": 80.15625, - "top": 65.946472, - "right": 81.5625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 65, - "left": 81.5625, - "top": 65.946472, - "right": 82.96875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 65, - "left": 82.96875, - "top": 65.946472, - "right": 84.375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 65, - "left": 84.375, - "top": 65.946472, - "right": 85.78125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 65, - "left": 85.78125, - "top": 65.946472, - "right": 87.1875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 65, - "left": 87.1875, - "top": 65.946472, - "right": 88.59375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 65, - "left": 88.59375, - "top": 65.946472, - "right": 90.0, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 65, - "left": 90.0, - "top": 65.946472, - "right": 91.40625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 65, - "left": 91.40625, - "top": 65.946472, - "right": 92.8125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 65, - "left": 92.8125, - "top": 65.946472, - "right": 94.21875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 65, - "left": 94.21875, - "top": 65.946472, - "right": 95.625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 65, - "left": 95.625, - "top": 65.946472, - "right": 97.03125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 65, - "left": 97.03125, - "top": 65.946472, - "right": 98.4375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 65, - "left": 98.4375, - "top": 65.946472, - "right": 99.84375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 65, - "left": 99.84375, - "top": 65.946472, - "right": 101.25, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 65, - "left": 101.25, - "top": 65.946472, - "right": 102.65625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 65, - "left": 102.65625, - "top": 65.946472, - "right": 104.0625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 65, - "left": 104.0625, - "top": 65.946472, - "right": 105.46875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 65, - "left": 105.46875, - "top": 65.946472, - "right": 106.875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 65, - "left": 106.875, - "top": 65.946472, - "right": 108.28125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 65, - "left": 108.28125, - "top": 65.946472, - "right": 109.6875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 65, - "left": 109.6875, - "top": 65.946472, - "right": 111.09375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 65, - "left": 111.09375, - "top": 65.946472, - "right": 112.5, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 65, - "left": 112.5, - "top": 65.946472, - "right": 113.90625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 65, - "left": 113.90625, - "top": 65.946472, - "right": 115.3125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 65, - "left": 115.3125, - "top": 65.946472, - "right": 116.71875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 65, - "left": 116.71875, - "top": 65.946472, - "right": 118.125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 65, - "left": 118.125, - "top": 65.946472, - "right": 119.53125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 65, - "left": 119.53125, - "top": 65.946472, - "right": 120.9375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 65, - "left": 120.9375, - "top": 65.946472, - "right": 122.34375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 65, - "left": 122.34375, - "top": 65.946472, - "right": 123.75, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 65, - "left": 123.75, - "top": 65.946472, - "right": 125.15625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 65, - "left": 125.15625, - "top": 65.946472, - "right": 126.5625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 65, - "left": 126.5625, - "top": 65.946472, - "right": 127.96875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 65, - "left": 127.96875, - "top": 65.946472, - "right": 129.375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 65, - "left": 129.375, - "top": 65.946472, - "right": 130.78125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 65, - "left": 130.78125, - "top": 65.946472, - "right": 132.1875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 65, - "left": 132.1875, - "top": 65.946472, - "right": 133.59375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 65, - "left": 133.59375, - "top": 65.946472, - "right": 135.0, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 65, - "left": 135.0, - "top": 65.946472, - "right": 136.40625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 65, - "left": 136.40625, - "top": 65.946472, - "right": 137.8125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 65, - "left": 137.8125, - "top": 65.946472, - "right": 139.21875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 65, - "left": 139.21875, - "top": 65.946472, - "right": 140.625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 65, - "left": 140.625, - "top": 65.946472, - "right": 142.03125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 65, - "left": 142.03125, - "top": 65.946472, - "right": 143.4375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 65, - "left": 143.4375, - "top": 65.946472, - "right": 144.84375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 65, - "left": 144.84375, - "top": 65.946472, - "right": 146.25, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 65, - "left": 146.25, - "top": 65.946472, - "right": 147.65625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 65, - "left": 147.65625, - "top": 65.946472, - "right": 149.0625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 65, - "left": 149.0625, - "top": 65.946472, - "right": 150.46875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 65, - "left": 150.46875, - "top": 65.946472, - "right": 151.875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 65, - "left": 151.875, - "top": 65.946472, - "right": 153.28125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 65, - "left": 153.28125, - "top": 65.946472, - "right": 154.6875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 65, - "left": 154.6875, - "top": 65.946472, - "right": 156.09375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 65, - "left": 156.09375, - "top": 65.946472, - "right": 157.5, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 65, - "left": 157.5, - "top": 65.946472, - "right": 158.90625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 65, - "left": 158.90625, - "top": 65.946472, - "right": 160.3125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 65, - "left": 160.3125, - "top": 65.946472, - "right": 161.71875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 65, - "left": 161.71875, - "top": 65.946472, - "right": 163.125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 65, - "left": 163.125, - "top": 65.946472, - "right": 164.53125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 65, - "left": 164.53125, - "top": 65.946472, - "right": 165.9375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 65, - "left": 165.9375, - "top": 65.946472, - "right": 167.34375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 65, - "left": 167.34375, - "top": 65.946472, - "right": 168.75, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 65, - "left": 168.75, - "top": 65.946472, - "right": 170.15625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 65, - "left": 170.15625, - "top": 65.946472, - "right": 171.5625, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 65, - "left": 171.5625, - "top": 65.946472, - "right": 172.96875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 65, - "left": 172.96875, - "top": 65.946472, - "right": 174.375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 65, - "left": 174.375, - "top": 65.946472, - "right": 175.78125, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 65, - "left": 175.78125, - "top": 65.946472, - "right": 177.1875, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 65, - "left": 177.1875, - "top": 65.946472, - "right": 178.59375, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 65, - "left": 178.59375, - "top": 65.946472, - "right": 180.0, - "bottom": 65.366837, - "countries": [ - "russia" - ] - }, - { - "x": 0, - "y": 66, - "left": -180.0, - "top": 65.366837, - "right": -178.59375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 2, - "y": 66, - "left": -177.1875, - "top": 65.366837, - "right": -175.78125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 66, - "left": -175.78125, - "top": 65.366837, - "right": -174.375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 66, - "left": -174.375, - "top": 65.366837, - "right": -172.96875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 5, - "y": 66, - "left": -172.96875, - "top": 65.366837, - "right": -171.5625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 66, - "left": 30.9375, - "top": 65.366837, - "right": 32.34375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 66, - "left": 32.34375, - "top": 65.366837, - "right": 33.75, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 66, - "left": 33.75, - "top": 65.366837, - "right": 35.15625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 66, - "left": 35.15625, - "top": 65.366837, - "right": 36.5625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 66, - "left": 36.5625, - "top": 65.366837, - "right": 37.96875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 66, - "left": 37.96875, - "top": 65.366837, - "right": 39.375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 66, - "left": 39.375, - "top": 65.366837, - "right": 40.78125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 66, - "left": 40.78125, - "top": 65.366837, - "right": 42.1875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 66, - "left": 42.1875, - "top": 65.366837, - "right": 43.59375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 66, - "left": 43.59375, - "top": 65.366837, - "right": 45.0, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 66, - "left": 45.0, - "top": 65.366837, - "right": 46.40625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 66, - "left": 46.40625, - "top": 65.366837, - "right": 47.8125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 66, - "left": 47.8125, - "top": 65.366837, - "right": 49.21875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 66, - "left": 49.21875, - "top": 65.366837, - "right": 50.625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 66, - "left": 50.625, - "top": 65.366837, - "right": 52.03125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 66, - "left": 52.03125, - "top": 65.366837, - "right": 53.4375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 66, - "left": 53.4375, - "top": 65.366837, - "right": 54.84375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 66, - "left": 54.84375, - "top": 65.366837, - "right": 56.25, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 66, - "left": 56.25, - "top": 65.366837, - "right": 57.65625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 66, - "left": 57.65625, - "top": 65.366837, - "right": 59.0625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 66, - "left": 59.0625, - "top": 65.366837, - "right": 60.46875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 66, - "left": 60.46875, - "top": 65.366837, - "right": 61.875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 66, - "left": 61.875, - "top": 65.366837, - "right": 63.28125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 66, - "left": 63.28125, - "top": 65.366837, - "right": 64.6875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 66, - "left": 64.6875, - "top": 65.366837, - "right": 66.09375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 66, - "left": 66.09375, - "top": 65.366837, - "right": 67.5, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 66, - "left": 67.5, - "top": 65.366837, - "right": 68.90625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 66, - "left": 68.90625, - "top": 65.366837, - "right": 70.3125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 66, - "left": 70.3125, - "top": 65.366837, - "right": 71.71875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 66, - "left": 71.71875, - "top": 65.366837, - "right": 73.125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 66, - "left": 73.125, - "top": 65.366837, - "right": 74.53125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 66, - "left": 74.53125, - "top": 65.366837, - "right": 75.9375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 66, - "left": 75.9375, - "top": 65.366837, - "right": 77.34375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 66, - "left": 77.34375, - "top": 65.366837, - "right": 78.75, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 66, - "left": 78.75, - "top": 65.366837, - "right": 80.15625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 66, - "left": 80.15625, - "top": 65.366837, - "right": 81.5625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 66, - "left": 81.5625, - "top": 65.366837, - "right": 82.96875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 66, - "left": 82.96875, - "top": 65.366837, - "right": 84.375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 66, - "left": 84.375, - "top": 65.366837, - "right": 85.78125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 66, - "left": 85.78125, - "top": 65.366837, - "right": 87.1875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 66, - "left": 87.1875, - "top": 65.366837, - "right": 88.59375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 66, - "left": 88.59375, - "top": 65.366837, - "right": 90.0, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 66, - "left": 90.0, - "top": 65.366837, - "right": 91.40625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 66, - "left": 91.40625, - "top": 65.366837, - "right": 92.8125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 66, - "left": 92.8125, - "top": 65.366837, - "right": 94.21875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 66, - "left": 94.21875, - "top": 65.366837, - "right": 95.625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 66, - "left": 95.625, - "top": 65.366837, - "right": 97.03125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 66, - "left": 97.03125, - "top": 65.366837, - "right": 98.4375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 66, - "left": 98.4375, - "top": 65.366837, - "right": 99.84375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 66, - "left": 99.84375, - "top": 65.366837, - "right": 101.25, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 66, - "left": 101.25, - "top": 65.366837, - "right": 102.65625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 66, - "left": 102.65625, - "top": 65.366837, - "right": 104.0625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 66, - "left": 104.0625, - "top": 65.366837, - "right": 105.46875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 66, - "left": 105.46875, - "top": 65.366837, - "right": 106.875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 66, - "left": 106.875, - "top": 65.366837, - "right": 108.28125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 66, - "left": 108.28125, - "top": 65.366837, - "right": 109.6875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 66, - "left": 109.6875, - "top": 65.366837, - "right": 111.09375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 66, - "left": 111.09375, - "top": 65.366837, - "right": 112.5, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 66, - "left": 112.5, - "top": 65.366837, - "right": 113.90625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 66, - "left": 113.90625, - "top": 65.366837, - "right": 115.3125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 66, - "left": 115.3125, - "top": 65.366837, - "right": 116.71875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 66, - "left": 116.71875, - "top": 65.366837, - "right": 118.125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 66, - "left": 118.125, - "top": 65.366837, - "right": 119.53125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 66, - "left": 119.53125, - "top": 65.366837, - "right": 120.9375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 66, - "left": 120.9375, - "top": 65.366837, - "right": 122.34375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 66, - "left": 122.34375, - "top": 65.366837, - "right": 123.75, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 66, - "left": 123.75, - "top": 65.366837, - "right": 125.15625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 66, - "left": 125.15625, - "top": 65.366837, - "right": 126.5625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 66, - "left": 126.5625, - "top": 65.366837, - "right": 127.96875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 66, - "left": 127.96875, - "top": 65.366837, - "right": 129.375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 66, - "left": 129.375, - "top": 65.366837, - "right": 130.78125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 66, - "left": 130.78125, - "top": 65.366837, - "right": 132.1875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 66, - "left": 132.1875, - "top": 65.366837, - "right": 133.59375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 66, - "left": 133.59375, - "top": 65.366837, - "right": 135.0, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 66, - "left": 135.0, - "top": 65.366837, - "right": 136.40625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 66, - "left": 136.40625, - "top": 65.366837, - "right": 137.8125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 66, - "left": 137.8125, - "top": 65.366837, - "right": 139.21875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 66, - "left": 139.21875, - "top": 65.366837, - "right": 140.625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 66, - "left": 140.625, - "top": 65.366837, - "right": 142.03125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 66, - "left": 142.03125, - "top": 65.366837, - "right": 143.4375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 66, - "left": 143.4375, - "top": 65.366837, - "right": 144.84375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 66, - "left": 144.84375, - "top": 65.366837, - "right": 146.25, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 66, - "left": 146.25, - "top": 65.366837, - "right": 147.65625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 66, - "left": 147.65625, - "top": 65.366837, - "right": 149.0625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 66, - "left": 149.0625, - "top": 65.366837, - "right": 150.46875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 66, - "left": 150.46875, - "top": 65.366837, - "right": 151.875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 66, - "left": 151.875, - "top": 65.366837, - "right": 153.28125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 66, - "left": 153.28125, - "top": 65.366837, - "right": 154.6875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 66, - "left": 154.6875, - "top": 65.366837, - "right": 156.09375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 66, - "left": 156.09375, - "top": 65.366837, - "right": 157.5, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 66, - "left": 157.5, - "top": 65.366837, - "right": 158.90625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 66, - "left": 158.90625, - "top": 65.366837, - "right": 160.3125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 66, - "left": 160.3125, - "top": 65.366837, - "right": 161.71875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 66, - "left": 161.71875, - "top": 65.366837, - "right": 163.125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 66, - "left": 163.125, - "top": 65.366837, - "right": 164.53125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 66, - "left": 164.53125, - "top": 65.366837, - "right": 165.9375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 66, - "left": 165.9375, - "top": 65.366837, - "right": 167.34375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 66, - "left": 167.34375, - "top": 65.366837, - "right": 168.75, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 66, - "left": 168.75, - "top": 65.366837, - "right": 170.15625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 66, - "left": 170.15625, - "top": 65.366837, - "right": 171.5625, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 66, - "left": 171.5625, - "top": 65.366837, - "right": 172.96875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 66, - "left": 172.96875, - "top": 65.366837, - "right": 174.375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 66, - "left": 174.375, - "top": 65.366837, - "right": 175.78125, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 66, - "left": 175.78125, - "top": 65.366837, - "right": 177.1875, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 66, - "left": 177.1875, - "top": 65.366837, - "right": 178.59375, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 66, - "left": 178.59375, - "top": 65.366837, - "right": 180.0, - "bottom": 64.774125, - "countries": [ - "russia" - ] - }, - { - "x": 3, - "y": 67, - "left": -175.78125, - "top": 64.774125, - "right": -174.375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 4, - "y": 67, - "left": -174.375, - "top": 64.774125, - "right": -172.96875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 5, - "y": 67, - "left": -172.96875, - "top": 64.774125, - "right": -171.5625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 67, - "left": 30.9375, - "top": 64.774125, - "right": 32.34375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 67, - "left": 32.34375, - "top": 64.774125, - "right": 33.75, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 67, - "left": 33.75, - "top": 64.774125, - "right": 35.15625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 67, - "left": 35.15625, - "top": 64.774125, - "right": 36.5625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 67, - "left": 36.5625, - "top": 64.774125, - "right": 37.96875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 67, - "left": 37.96875, - "top": 64.774125, - "right": 39.375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 67, - "left": 39.375, - "top": 64.774125, - "right": 40.78125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 67, - "left": 40.78125, - "top": 64.774125, - "right": 42.1875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 67, - "left": 42.1875, - "top": 64.774125, - "right": 43.59375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 67, - "left": 43.59375, - "top": 64.774125, - "right": 45.0, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 67, - "left": 45.0, - "top": 64.774125, - "right": 46.40625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 67, - "left": 46.40625, - "top": 64.774125, - "right": 47.8125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 67, - "left": 47.8125, - "top": 64.774125, - "right": 49.21875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 67, - "left": 49.21875, - "top": 64.774125, - "right": 50.625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 67, - "left": 50.625, - "top": 64.774125, - "right": 52.03125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 67, - "left": 52.03125, - "top": 64.774125, - "right": 53.4375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 67, - "left": 53.4375, - "top": 64.774125, - "right": 54.84375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 67, - "left": 54.84375, - "top": 64.774125, - "right": 56.25, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 67, - "left": 56.25, - "top": 64.774125, - "right": 57.65625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 67, - "left": 57.65625, - "top": 64.774125, - "right": 59.0625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 67, - "left": 59.0625, - "top": 64.774125, - "right": 60.46875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 67, - "left": 60.46875, - "top": 64.774125, - "right": 61.875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 67, - "left": 61.875, - "top": 64.774125, - "right": 63.28125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 67, - "left": 63.28125, - "top": 64.774125, - "right": 64.6875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 67, - "left": 64.6875, - "top": 64.774125, - "right": 66.09375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 67, - "left": 66.09375, - "top": 64.774125, - "right": 67.5, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 67, - "left": 67.5, - "top": 64.774125, - "right": 68.90625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 67, - "left": 68.90625, - "top": 64.774125, - "right": 70.3125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 67, - "left": 70.3125, - "top": 64.774125, - "right": 71.71875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 67, - "left": 71.71875, - "top": 64.774125, - "right": 73.125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 67, - "left": 73.125, - "top": 64.774125, - "right": 74.53125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 67, - "left": 74.53125, - "top": 64.774125, - "right": 75.9375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 67, - "left": 75.9375, - "top": 64.774125, - "right": 77.34375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 67, - "left": 77.34375, - "top": 64.774125, - "right": 78.75, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 67, - "left": 78.75, - "top": 64.774125, - "right": 80.15625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 67, - "left": 80.15625, - "top": 64.774125, - "right": 81.5625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 67, - "left": 81.5625, - "top": 64.774125, - "right": 82.96875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 67, - "left": 82.96875, - "top": 64.774125, - "right": 84.375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 67, - "left": 84.375, - "top": 64.774125, - "right": 85.78125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 67, - "left": 85.78125, - "top": 64.774125, - "right": 87.1875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 67, - "left": 87.1875, - "top": 64.774125, - "right": 88.59375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 67, - "left": 88.59375, - "top": 64.774125, - "right": 90.0, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 67, - "left": 90.0, - "top": 64.774125, - "right": 91.40625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 67, - "left": 91.40625, - "top": 64.774125, - "right": 92.8125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 67, - "left": 92.8125, - "top": 64.774125, - "right": 94.21875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 67, - "left": 94.21875, - "top": 64.774125, - "right": 95.625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 67, - "left": 95.625, - "top": 64.774125, - "right": 97.03125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 67, - "left": 97.03125, - "top": 64.774125, - "right": 98.4375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 67, - "left": 98.4375, - "top": 64.774125, - "right": 99.84375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 67, - "left": 99.84375, - "top": 64.774125, - "right": 101.25, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 67, - "left": 101.25, - "top": 64.774125, - "right": 102.65625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 67, - "left": 102.65625, - "top": 64.774125, - "right": 104.0625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 67, - "left": 104.0625, - "top": 64.774125, - "right": 105.46875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 67, - "left": 105.46875, - "top": 64.774125, - "right": 106.875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 67, - "left": 106.875, - "top": 64.774125, - "right": 108.28125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 67, - "left": 108.28125, - "top": 64.774125, - "right": 109.6875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 67, - "left": 109.6875, - "top": 64.774125, - "right": 111.09375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 67, - "left": 111.09375, - "top": 64.774125, - "right": 112.5, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 67, - "left": 112.5, - "top": 64.774125, - "right": 113.90625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 67, - "left": 113.90625, - "top": 64.774125, - "right": 115.3125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 67, - "left": 115.3125, - "top": 64.774125, - "right": 116.71875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 67, - "left": 116.71875, - "top": 64.774125, - "right": 118.125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 67, - "left": 118.125, - "top": 64.774125, - "right": 119.53125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 67, - "left": 119.53125, - "top": 64.774125, - "right": 120.9375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 67, - "left": 120.9375, - "top": 64.774125, - "right": 122.34375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 67, - "left": 122.34375, - "top": 64.774125, - "right": 123.75, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 67, - "left": 123.75, - "top": 64.774125, - "right": 125.15625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 67, - "left": 125.15625, - "top": 64.774125, - "right": 126.5625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 67, - "left": 126.5625, - "top": 64.774125, - "right": 127.96875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 67, - "left": 127.96875, - "top": 64.774125, - "right": 129.375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 67, - "left": 129.375, - "top": 64.774125, - "right": 130.78125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 67, - "left": 130.78125, - "top": 64.774125, - "right": 132.1875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 67, - "left": 132.1875, - "top": 64.774125, - "right": 133.59375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 67, - "left": 133.59375, - "top": 64.774125, - "right": 135.0, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 67, - "left": 135.0, - "top": 64.774125, - "right": 136.40625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 67, - "left": 136.40625, - "top": 64.774125, - "right": 137.8125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 67, - "left": 137.8125, - "top": 64.774125, - "right": 139.21875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 67, - "left": 139.21875, - "top": 64.774125, - "right": 140.625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 67, - "left": 140.625, - "top": 64.774125, - "right": 142.03125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 67, - "left": 142.03125, - "top": 64.774125, - "right": 143.4375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 67, - "left": 143.4375, - "top": 64.774125, - "right": 144.84375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 67, - "left": 144.84375, - "top": 64.774125, - "right": 146.25, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 67, - "left": 146.25, - "top": 64.774125, - "right": 147.65625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 67, - "left": 147.65625, - "top": 64.774125, - "right": 149.0625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 67, - "left": 149.0625, - "top": 64.774125, - "right": 150.46875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 67, - "left": 150.46875, - "top": 64.774125, - "right": 151.875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 67, - "left": 151.875, - "top": 64.774125, - "right": 153.28125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 67, - "left": 153.28125, - "top": 64.774125, - "right": 154.6875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 67, - "left": 154.6875, - "top": 64.774125, - "right": 156.09375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 67, - "left": 156.09375, - "top": 64.774125, - "right": 157.5, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 67, - "left": 157.5, - "top": 64.774125, - "right": 158.90625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 67, - "left": 158.90625, - "top": 64.774125, - "right": 160.3125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 67, - "left": 160.3125, - "top": 64.774125, - "right": 161.71875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 67, - "left": 161.71875, - "top": 64.774125, - "right": 163.125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 67, - "left": 163.125, - "top": 64.774125, - "right": 164.53125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 67, - "left": 164.53125, - "top": 64.774125, - "right": 165.9375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 67, - "left": 165.9375, - "top": 64.774125, - "right": 167.34375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 67, - "left": 167.34375, - "top": 64.774125, - "right": 168.75, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 67, - "left": 168.75, - "top": 64.774125, - "right": 170.15625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 67, - "left": 170.15625, - "top": 64.774125, - "right": 171.5625, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 67, - "left": 171.5625, - "top": 64.774125, - "right": 172.96875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 67, - "left": 172.96875, - "top": 64.774125, - "right": 174.375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 67, - "left": 174.375, - "top": 64.774125, - "right": 175.78125, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 67, - "left": 175.78125, - "top": 64.774125, - "right": 177.1875, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 67, - "left": 177.1875, - "top": 64.774125, - "right": 178.59375, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 67, - "left": 178.59375, - "top": 64.774125, - "right": 180.0, - "bottom": 64.168107, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 68, - "left": 30.9375, - "top": 64.168107, - "right": 32.34375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 68, - "left": 32.34375, - "top": 64.168107, - "right": 33.75, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 68, - "left": 33.75, - "top": 64.168107, - "right": 35.15625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 68, - "left": 35.15625, - "top": 64.168107, - "right": 36.5625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 68, - "left": 36.5625, - "top": 64.168107, - "right": 37.96875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 68, - "left": 37.96875, - "top": 64.168107, - "right": 39.375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 68, - "left": 39.375, - "top": 64.168107, - "right": 40.78125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 68, - "left": 40.78125, - "top": 64.168107, - "right": 42.1875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 68, - "left": 42.1875, - "top": 64.168107, - "right": 43.59375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 68, - "left": 43.59375, - "top": 64.168107, - "right": 45.0, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 68, - "left": 45.0, - "top": 64.168107, - "right": 46.40625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 68, - "left": 46.40625, - "top": 64.168107, - "right": 47.8125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 68, - "left": 47.8125, - "top": 64.168107, - "right": 49.21875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 68, - "left": 49.21875, - "top": 64.168107, - "right": 50.625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 68, - "left": 50.625, - "top": 64.168107, - "right": 52.03125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 68, - "left": 52.03125, - "top": 64.168107, - "right": 53.4375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 68, - "left": 53.4375, - "top": 64.168107, - "right": 54.84375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 68, - "left": 54.84375, - "top": 64.168107, - "right": 56.25, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 68, - "left": 56.25, - "top": 64.168107, - "right": 57.65625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 68, - "left": 57.65625, - "top": 64.168107, - "right": 59.0625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 68, - "left": 59.0625, - "top": 64.168107, - "right": 60.46875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 68, - "left": 60.46875, - "top": 64.168107, - "right": 61.875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 68, - "left": 61.875, - "top": 64.168107, - "right": 63.28125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 68, - "left": 63.28125, - "top": 64.168107, - "right": 64.6875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 68, - "left": 64.6875, - "top": 64.168107, - "right": 66.09375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 68, - "left": 66.09375, - "top": 64.168107, - "right": 67.5, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 68, - "left": 67.5, - "top": 64.168107, - "right": 68.90625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 68, - "left": 68.90625, - "top": 64.168107, - "right": 70.3125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 68, - "left": 70.3125, - "top": 64.168107, - "right": 71.71875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 68, - "left": 71.71875, - "top": 64.168107, - "right": 73.125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 68, - "left": 73.125, - "top": 64.168107, - "right": 74.53125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 68, - "left": 74.53125, - "top": 64.168107, - "right": 75.9375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 68, - "left": 75.9375, - "top": 64.168107, - "right": 77.34375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 68, - "left": 77.34375, - "top": 64.168107, - "right": 78.75, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 68, - "left": 78.75, - "top": 64.168107, - "right": 80.15625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 68, - "left": 80.15625, - "top": 64.168107, - "right": 81.5625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 68, - "left": 81.5625, - "top": 64.168107, - "right": 82.96875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 68, - "left": 82.96875, - "top": 64.168107, - "right": 84.375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 68, - "left": 84.375, - "top": 64.168107, - "right": 85.78125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 68, - "left": 85.78125, - "top": 64.168107, - "right": 87.1875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 68, - "left": 87.1875, - "top": 64.168107, - "right": 88.59375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 68, - "left": 88.59375, - "top": 64.168107, - "right": 90.0, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 68, - "left": 90.0, - "top": 64.168107, - "right": 91.40625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 68, - "left": 91.40625, - "top": 64.168107, - "right": 92.8125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 68, - "left": 92.8125, - "top": 64.168107, - "right": 94.21875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 68, - "left": 94.21875, - "top": 64.168107, - "right": 95.625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 68, - "left": 95.625, - "top": 64.168107, - "right": 97.03125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 68, - "left": 97.03125, - "top": 64.168107, - "right": 98.4375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 68, - "left": 98.4375, - "top": 64.168107, - "right": 99.84375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 68, - "left": 99.84375, - "top": 64.168107, - "right": 101.25, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 68, - "left": 101.25, - "top": 64.168107, - "right": 102.65625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 68, - "left": 102.65625, - "top": 64.168107, - "right": 104.0625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 68, - "left": 104.0625, - "top": 64.168107, - "right": 105.46875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 68, - "left": 105.46875, - "top": 64.168107, - "right": 106.875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 68, - "left": 106.875, - "top": 64.168107, - "right": 108.28125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 68, - "left": 108.28125, - "top": 64.168107, - "right": 109.6875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 68, - "left": 109.6875, - "top": 64.168107, - "right": 111.09375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 68, - "left": 111.09375, - "top": 64.168107, - "right": 112.5, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 68, - "left": 112.5, - "top": 64.168107, - "right": 113.90625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 68, - "left": 113.90625, - "top": 64.168107, - "right": 115.3125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 68, - "left": 115.3125, - "top": 64.168107, - "right": 116.71875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 68, - "left": 116.71875, - "top": 64.168107, - "right": 118.125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 68, - "left": 118.125, - "top": 64.168107, - "right": 119.53125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 68, - "left": 119.53125, - "top": 64.168107, - "right": 120.9375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 68, - "left": 120.9375, - "top": 64.168107, - "right": 122.34375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 68, - "left": 122.34375, - "top": 64.168107, - "right": 123.75, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 68, - "left": 123.75, - "top": 64.168107, - "right": 125.15625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 68, - "left": 125.15625, - "top": 64.168107, - "right": 126.5625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 68, - "left": 126.5625, - "top": 64.168107, - "right": 127.96875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 68, - "left": 127.96875, - "top": 64.168107, - "right": 129.375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 68, - "left": 129.375, - "top": 64.168107, - "right": 130.78125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 68, - "left": 130.78125, - "top": 64.168107, - "right": 132.1875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 68, - "left": 132.1875, - "top": 64.168107, - "right": 133.59375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 68, - "left": 133.59375, - "top": 64.168107, - "right": 135.0, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 68, - "left": 135.0, - "top": 64.168107, - "right": 136.40625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 68, - "left": 136.40625, - "top": 64.168107, - "right": 137.8125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 68, - "left": 137.8125, - "top": 64.168107, - "right": 139.21875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 68, - "left": 139.21875, - "top": 64.168107, - "right": 140.625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 68, - "left": 140.625, - "top": 64.168107, - "right": 142.03125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 68, - "left": 142.03125, - "top": 64.168107, - "right": 143.4375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 68, - "left": 143.4375, - "top": 64.168107, - "right": 144.84375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 68, - "left": 144.84375, - "top": 64.168107, - "right": 146.25, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 68, - "left": 146.25, - "top": 64.168107, - "right": 147.65625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 68, - "left": 147.65625, - "top": 64.168107, - "right": 149.0625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 68, - "left": 149.0625, - "top": 64.168107, - "right": 150.46875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 68, - "left": 150.46875, - "top": 64.168107, - "right": 151.875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 68, - "left": 151.875, - "top": 64.168107, - "right": 153.28125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 68, - "left": 153.28125, - "top": 64.168107, - "right": 154.6875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 68, - "left": 154.6875, - "top": 64.168107, - "right": 156.09375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 68, - "left": 156.09375, - "top": 64.168107, - "right": 157.5, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 68, - "left": 157.5, - "top": 64.168107, - "right": 158.90625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 68, - "left": 158.90625, - "top": 64.168107, - "right": 160.3125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 68, - "left": 160.3125, - "top": 64.168107, - "right": 161.71875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 68, - "left": 161.71875, - "top": 64.168107, - "right": 163.125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 68, - "left": 163.125, - "top": 64.168107, - "right": 164.53125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 68, - "left": 164.53125, - "top": 64.168107, - "right": 165.9375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 68, - "left": 165.9375, - "top": 64.168107, - "right": 167.34375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 68, - "left": 167.34375, - "top": 64.168107, - "right": 168.75, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 68, - "left": 168.75, - "top": 64.168107, - "right": 170.15625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 68, - "left": 170.15625, - "top": 64.168107, - "right": 171.5625, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 68, - "left": 171.5625, - "top": 64.168107, - "right": 172.96875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 68, - "left": 172.96875, - "top": 64.168107, - "right": 174.375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 68, - "left": 174.375, - "top": 64.168107, - "right": 175.78125, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 68, - "left": 175.78125, - "top": 64.168107, - "right": 177.1875, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 68, - "left": 177.1875, - "top": 64.168107, - "right": 178.59375, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 68, - "left": 178.59375, - "top": 64.168107, - "right": 180.0, - "bottom": 63.548552, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 69, - "left": 32.34375, - "top": 63.548552, - "right": 33.75, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 69, - "left": 33.75, - "top": 63.548552, - "right": 35.15625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 69, - "left": 35.15625, - "top": 63.548552, - "right": 36.5625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 69, - "left": 36.5625, - "top": 63.548552, - "right": 37.96875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 69, - "left": 37.96875, - "top": 63.548552, - "right": 39.375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 69, - "left": 39.375, - "top": 63.548552, - "right": 40.78125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 69, - "left": 40.78125, - "top": 63.548552, - "right": 42.1875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 69, - "left": 42.1875, - "top": 63.548552, - "right": 43.59375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 69, - "left": 43.59375, - "top": 63.548552, - "right": 45.0, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 69, - "left": 45.0, - "top": 63.548552, - "right": 46.40625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 69, - "left": 46.40625, - "top": 63.548552, - "right": 47.8125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 69, - "left": 47.8125, - "top": 63.548552, - "right": 49.21875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 69, - "left": 49.21875, - "top": 63.548552, - "right": 50.625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 69, - "left": 50.625, - "top": 63.548552, - "right": 52.03125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 69, - "left": 52.03125, - "top": 63.548552, - "right": 53.4375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 69, - "left": 53.4375, - "top": 63.548552, - "right": 54.84375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 69, - "left": 54.84375, - "top": 63.548552, - "right": 56.25, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 69, - "left": 56.25, - "top": 63.548552, - "right": 57.65625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 69, - "left": 57.65625, - "top": 63.548552, - "right": 59.0625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 69, - "left": 59.0625, - "top": 63.548552, - "right": 60.46875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 69, - "left": 60.46875, - "top": 63.548552, - "right": 61.875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 69, - "left": 61.875, - "top": 63.548552, - "right": 63.28125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 69, - "left": 63.28125, - "top": 63.548552, - "right": 64.6875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 69, - "left": 64.6875, - "top": 63.548552, - "right": 66.09375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 69, - "left": 66.09375, - "top": 63.548552, - "right": 67.5, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 69, - "left": 67.5, - "top": 63.548552, - "right": 68.90625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 69, - "left": 68.90625, - "top": 63.548552, - "right": 70.3125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 69, - "left": 70.3125, - "top": 63.548552, - "right": 71.71875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 69, - "left": 71.71875, - "top": 63.548552, - "right": 73.125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 69, - "left": 73.125, - "top": 63.548552, - "right": 74.53125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 69, - "left": 74.53125, - "top": 63.548552, - "right": 75.9375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 69, - "left": 75.9375, - "top": 63.548552, - "right": 77.34375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 69, - "left": 77.34375, - "top": 63.548552, - "right": 78.75, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 69, - "left": 78.75, - "top": 63.548552, - "right": 80.15625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 69, - "left": 80.15625, - "top": 63.548552, - "right": 81.5625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 69, - "left": 81.5625, - "top": 63.548552, - "right": 82.96875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 69, - "left": 82.96875, - "top": 63.548552, - "right": 84.375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 69, - "left": 84.375, - "top": 63.548552, - "right": 85.78125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 69, - "left": 85.78125, - "top": 63.548552, - "right": 87.1875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 69, - "left": 87.1875, - "top": 63.548552, - "right": 88.59375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 69, - "left": 88.59375, - "top": 63.548552, - "right": 90.0, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 69, - "left": 90.0, - "top": 63.548552, - "right": 91.40625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 69, - "left": 91.40625, - "top": 63.548552, - "right": 92.8125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 69, - "left": 92.8125, - "top": 63.548552, - "right": 94.21875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 69, - "left": 94.21875, - "top": 63.548552, - "right": 95.625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 69, - "left": 95.625, - "top": 63.548552, - "right": 97.03125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 69, - "left": 97.03125, - "top": 63.548552, - "right": 98.4375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 69, - "left": 98.4375, - "top": 63.548552, - "right": 99.84375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 69, - "left": 99.84375, - "top": 63.548552, - "right": 101.25, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 69, - "left": 101.25, - "top": 63.548552, - "right": 102.65625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 69, - "left": 102.65625, - "top": 63.548552, - "right": 104.0625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 69, - "left": 104.0625, - "top": 63.548552, - "right": 105.46875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 69, - "left": 105.46875, - "top": 63.548552, - "right": 106.875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 69, - "left": 106.875, - "top": 63.548552, - "right": 108.28125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 69, - "left": 108.28125, - "top": 63.548552, - "right": 109.6875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 69, - "left": 109.6875, - "top": 63.548552, - "right": 111.09375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 69, - "left": 111.09375, - "top": 63.548552, - "right": 112.5, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 69, - "left": 112.5, - "top": 63.548552, - "right": 113.90625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 69, - "left": 113.90625, - "top": 63.548552, - "right": 115.3125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 69, - "left": 115.3125, - "top": 63.548552, - "right": 116.71875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 69, - "left": 116.71875, - "top": 63.548552, - "right": 118.125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 69, - "left": 118.125, - "top": 63.548552, - "right": 119.53125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 69, - "left": 119.53125, - "top": 63.548552, - "right": 120.9375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 69, - "left": 120.9375, - "top": 63.548552, - "right": 122.34375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 69, - "left": 122.34375, - "top": 63.548552, - "right": 123.75, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 69, - "left": 123.75, - "top": 63.548552, - "right": 125.15625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 69, - "left": 125.15625, - "top": 63.548552, - "right": 126.5625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 69, - "left": 126.5625, - "top": 63.548552, - "right": 127.96875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 69, - "left": 127.96875, - "top": 63.548552, - "right": 129.375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 69, - "left": 129.375, - "top": 63.548552, - "right": 130.78125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 69, - "left": 130.78125, - "top": 63.548552, - "right": 132.1875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 69, - "left": 132.1875, - "top": 63.548552, - "right": 133.59375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 69, - "left": 133.59375, - "top": 63.548552, - "right": 135.0, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 69, - "left": 135.0, - "top": 63.548552, - "right": 136.40625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 69, - "left": 136.40625, - "top": 63.548552, - "right": 137.8125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 69, - "left": 137.8125, - "top": 63.548552, - "right": 139.21875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 69, - "left": 139.21875, - "top": 63.548552, - "right": 140.625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 69, - "left": 140.625, - "top": 63.548552, - "right": 142.03125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 69, - "left": 142.03125, - "top": 63.548552, - "right": 143.4375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 69, - "left": 143.4375, - "top": 63.548552, - "right": 144.84375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 69, - "left": 144.84375, - "top": 63.548552, - "right": 146.25, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 69, - "left": 146.25, - "top": 63.548552, - "right": 147.65625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 69, - "left": 147.65625, - "top": 63.548552, - "right": 149.0625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 69, - "left": 149.0625, - "top": 63.548552, - "right": 150.46875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 69, - "left": 150.46875, - "top": 63.548552, - "right": 151.875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 69, - "left": 151.875, - "top": 63.548552, - "right": 153.28125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 69, - "left": 153.28125, - "top": 63.548552, - "right": 154.6875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 69, - "left": 154.6875, - "top": 63.548552, - "right": 156.09375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 69, - "left": 156.09375, - "top": 63.548552, - "right": 157.5, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 69, - "left": 157.5, - "top": 63.548552, - "right": 158.90625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 69, - "left": 158.90625, - "top": 63.548552, - "right": 160.3125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 69, - "left": 160.3125, - "top": 63.548552, - "right": 161.71875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 69, - "left": 161.71875, - "top": 63.548552, - "right": 163.125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 69, - "left": 163.125, - "top": 63.548552, - "right": 164.53125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 69, - "left": 164.53125, - "top": 63.548552, - "right": 165.9375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 69, - "left": 165.9375, - "top": 63.548552, - "right": 167.34375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 69, - "left": 167.34375, - "top": 63.548552, - "right": 168.75, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 69, - "left": 168.75, - "top": 63.548552, - "right": 170.15625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 69, - "left": 170.15625, - "top": 63.548552, - "right": 171.5625, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 69, - "left": 171.5625, - "top": 63.548552, - "right": 172.96875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 69, - "left": 172.96875, - "top": 63.548552, - "right": 174.375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 69, - "left": 174.375, - "top": 63.548552, - "right": 175.78125, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 69, - "left": 175.78125, - "top": 63.548552, - "right": 177.1875, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 69, - "left": 177.1875, - "top": 63.548552, - "right": 178.59375, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 69, - "left": 178.59375, - "top": 63.548552, - "right": 180.0, - "bottom": 62.915233, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 70, - "left": 32.34375, - "top": 62.915233, - "right": 33.75, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 70, - "left": 33.75, - "top": 62.915233, - "right": 35.15625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 70, - "left": 35.15625, - "top": 62.915233, - "right": 36.5625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 70, - "left": 36.5625, - "top": 62.915233, - "right": 37.96875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 70, - "left": 37.96875, - "top": 62.915233, - "right": 39.375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 70, - "left": 39.375, - "top": 62.915233, - "right": 40.78125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 70, - "left": 40.78125, - "top": 62.915233, - "right": 42.1875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 70, - "left": 42.1875, - "top": 62.915233, - "right": 43.59375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 70, - "left": 43.59375, - "top": 62.915233, - "right": 45.0, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 70, - "left": 45.0, - "top": 62.915233, - "right": 46.40625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 70, - "left": 46.40625, - "top": 62.915233, - "right": 47.8125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 70, - "left": 47.8125, - "top": 62.915233, - "right": 49.21875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 70, - "left": 49.21875, - "top": 62.915233, - "right": 50.625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 70, - "left": 50.625, - "top": 62.915233, - "right": 52.03125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 70, - "left": 52.03125, - "top": 62.915233, - "right": 53.4375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 70, - "left": 53.4375, - "top": 62.915233, - "right": 54.84375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 70, - "left": 54.84375, - "top": 62.915233, - "right": 56.25, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 70, - "left": 56.25, - "top": 62.915233, - "right": 57.65625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 70, - "left": 57.65625, - "top": 62.915233, - "right": 59.0625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 70, - "left": 59.0625, - "top": 62.915233, - "right": 60.46875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 70, - "left": 60.46875, - "top": 62.915233, - "right": 61.875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 70, - "left": 61.875, - "top": 62.915233, - "right": 63.28125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 70, - "left": 63.28125, - "top": 62.915233, - "right": 64.6875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 70, - "left": 64.6875, - "top": 62.915233, - "right": 66.09375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 70, - "left": 66.09375, - "top": 62.915233, - "right": 67.5, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 70, - "left": 67.5, - "top": 62.915233, - "right": 68.90625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 70, - "left": 68.90625, - "top": 62.915233, - "right": 70.3125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 70, - "left": 70.3125, - "top": 62.915233, - "right": 71.71875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 70, - "left": 71.71875, - "top": 62.915233, - "right": 73.125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 70, - "left": 73.125, - "top": 62.915233, - "right": 74.53125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 70, - "left": 74.53125, - "top": 62.915233, - "right": 75.9375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 70, - "left": 75.9375, - "top": 62.915233, - "right": 77.34375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 70, - "left": 77.34375, - "top": 62.915233, - "right": 78.75, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 70, - "left": 78.75, - "top": 62.915233, - "right": 80.15625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 70, - "left": 80.15625, - "top": 62.915233, - "right": 81.5625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 70, - "left": 81.5625, - "top": 62.915233, - "right": 82.96875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 70, - "left": 82.96875, - "top": 62.915233, - "right": 84.375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 70, - "left": 84.375, - "top": 62.915233, - "right": 85.78125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 70, - "left": 85.78125, - "top": 62.915233, - "right": 87.1875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 70, - "left": 87.1875, - "top": 62.915233, - "right": 88.59375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 70, - "left": 88.59375, - "top": 62.915233, - "right": 90.0, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 70, - "left": 90.0, - "top": 62.915233, - "right": 91.40625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 70, - "left": 91.40625, - "top": 62.915233, - "right": 92.8125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 70, - "left": 92.8125, - "top": 62.915233, - "right": 94.21875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 70, - "left": 94.21875, - "top": 62.915233, - "right": 95.625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 70, - "left": 95.625, - "top": 62.915233, - "right": 97.03125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 70, - "left": 97.03125, - "top": 62.915233, - "right": 98.4375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 70, - "left": 98.4375, - "top": 62.915233, - "right": 99.84375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 70, - "left": 99.84375, - "top": 62.915233, - "right": 101.25, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 70, - "left": 101.25, - "top": 62.915233, - "right": 102.65625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 70, - "left": 102.65625, - "top": 62.915233, - "right": 104.0625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 70, - "left": 104.0625, - "top": 62.915233, - "right": 105.46875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 70, - "left": 105.46875, - "top": 62.915233, - "right": 106.875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 70, - "left": 106.875, - "top": 62.915233, - "right": 108.28125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 70, - "left": 108.28125, - "top": 62.915233, - "right": 109.6875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 70, - "left": 109.6875, - "top": 62.915233, - "right": 111.09375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 70, - "left": 111.09375, - "top": 62.915233, - "right": 112.5, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 70, - "left": 112.5, - "top": 62.915233, - "right": 113.90625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 70, - "left": 113.90625, - "top": 62.915233, - "right": 115.3125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 70, - "left": 115.3125, - "top": 62.915233, - "right": 116.71875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 70, - "left": 116.71875, - "top": 62.915233, - "right": 118.125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 70, - "left": 118.125, - "top": 62.915233, - "right": 119.53125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 70, - "left": 119.53125, - "top": 62.915233, - "right": 120.9375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 70, - "left": 120.9375, - "top": 62.915233, - "right": 122.34375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 70, - "left": 122.34375, - "top": 62.915233, - "right": 123.75, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 70, - "left": 123.75, - "top": 62.915233, - "right": 125.15625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 70, - "left": 125.15625, - "top": 62.915233, - "right": 126.5625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 70, - "left": 126.5625, - "top": 62.915233, - "right": 127.96875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 70, - "left": 127.96875, - "top": 62.915233, - "right": 129.375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 70, - "left": 129.375, - "top": 62.915233, - "right": 130.78125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 70, - "left": 130.78125, - "top": 62.915233, - "right": 132.1875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 70, - "left": 132.1875, - "top": 62.915233, - "right": 133.59375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 70, - "left": 133.59375, - "top": 62.915233, - "right": 135.0, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 70, - "left": 135.0, - "top": 62.915233, - "right": 136.40625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 70, - "left": 136.40625, - "top": 62.915233, - "right": 137.8125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 70, - "left": 137.8125, - "top": 62.915233, - "right": 139.21875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 70, - "left": 139.21875, - "top": 62.915233, - "right": 140.625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 70, - "left": 140.625, - "top": 62.915233, - "right": 142.03125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 70, - "left": 142.03125, - "top": 62.915233, - "right": 143.4375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 70, - "left": 143.4375, - "top": 62.915233, - "right": 144.84375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 70, - "left": 144.84375, - "top": 62.915233, - "right": 146.25, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 70, - "left": 146.25, - "top": 62.915233, - "right": 147.65625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 70, - "left": 147.65625, - "top": 62.915233, - "right": 149.0625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 70, - "left": 149.0625, - "top": 62.915233, - "right": 150.46875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 70, - "left": 150.46875, - "top": 62.915233, - "right": 151.875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 70, - "left": 151.875, - "top": 62.915233, - "right": 153.28125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 70, - "left": 153.28125, - "top": 62.915233, - "right": 154.6875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 70, - "left": 154.6875, - "top": 62.915233, - "right": 156.09375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 70, - "left": 156.09375, - "top": 62.915233, - "right": 157.5, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 70, - "left": 157.5, - "top": 62.915233, - "right": 158.90625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 70, - "left": 158.90625, - "top": 62.915233, - "right": 160.3125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 70, - "left": 160.3125, - "top": 62.915233, - "right": 161.71875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 70, - "left": 161.71875, - "top": 62.915233, - "right": 163.125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 70, - "left": 163.125, - "top": 62.915233, - "right": 164.53125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 70, - "left": 164.53125, - "top": 62.915233, - "right": 165.9375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 70, - "left": 165.9375, - "top": 62.915233, - "right": 167.34375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 70, - "left": 167.34375, - "top": 62.915233, - "right": 168.75, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 70, - "left": 168.75, - "top": 62.915233, - "right": 170.15625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 70, - "left": 170.15625, - "top": 62.915233, - "right": 171.5625, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 70, - "left": 171.5625, - "top": 62.915233, - "right": 172.96875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 70, - "left": 172.96875, - "top": 62.915233, - "right": 174.375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 70, - "left": 174.375, - "top": 62.915233, - "right": 175.78125, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 70, - "left": 175.78125, - "top": 62.915233, - "right": 177.1875, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 254, - "y": 70, - "left": 177.1875, - "top": 62.915233, - "right": 178.59375, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 255, - "y": 70, - "left": 178.59375, - "top": 62.915233, - "right": 180.0, - "bottom": 62.267923, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 71, - "left": 30.9375, - "top": 62.267923, - "right": 32.34375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 71, - "left": 32.34375, - "top": 62.267923, - "right": 33.75, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 71, - "left": 33.75, - "top": 62.267923, - "right": 35.15625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 71, - "left": 35.15625, - "top": 62.267923, - "right": 36.5625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 71, - "left": 36.5625, - "top": 62.267923, - "right": 37.96875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 71, - "left": 37.96875, - "top": 62.267923, - "right": 39.375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 71, - "left": 39.375, - "top": 62.267923, - "right": 40.78125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 71, - "left": 40.78125, - "top": 62.267923, - "right": 42.1875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 71, - "left": 42.1875, - "top": 62.267923, - "right": 43.59375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 71, - "left": 43.59375, - "top": 62.267923, - "right": 45.0, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 71, - "left": 45.0, - "top": 62.267923, - "right": 46.40625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 71, - "left": 46.40625, - "top": 62.267923, - "right": 47.8125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 71, - "left": 47.8125, - "top": 62.267923, - "right": 49.21875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 71, - "left": 49.21875, - "top": 62.267923, - "right": 50.625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 71, - "left": 50.625, - "top": 62.267923, - "right": 52.03125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 71, - "left": 52.03125, - "top": 62.267923, - "right": 53.4375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 71, - "left": 53.4375, - "top": 62.267923, - "right": 54.84375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 71, - "left": 54.84375, - "top": 62.267923, - "right": 56.25, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 71, - "left": 56.25, - "top": 62.267923, - "right": 57.65625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 71, - "left": 57.65625, - "top": 62.267923, - "right": 59.0625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 71, - "left": 59.0625, - "top": 62.267923, - "right": 60.46875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 71, - "left": 60.46875, - "top": 62.267923, - "right": 61.875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 71, - "left": 61.875, - "top": 62.267923, - "right": 63.28125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 71, - "left": 63.28125, - "top": 62.267923, - "right": 64.6875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 71, - "left": 64.6875, - "top": 62.267923, - "right": 66.09375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 71, - "left": 66.09375, - "top": 62.267923, - "right": 67.5, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 71, - "left": 67.5, - "top": 62.267923, - "right": 68.90625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 71, - "left": 68.90625, - "top": 62.267923, - "right": 70.3125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 71, - "left": 70.3125, - "top": 62.267923, - "right": 71.71875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 71, - "left": 71.71875, - "top": 62.267923, - "right": 73.125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 71, - "left": 73.125, - "top": 62.267923, - "right": 74.53125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 71, - "left": 74.53125, - "top": 62.267923, - "right": 75.9375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 71, - "left": 75.9375, - "top": 62.267923, - "right": 77.34375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 71, - "left": 77.34375, - "top": 62.267923, - "right": 78.75, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 71, - "left": 78.75, - "top": 62.267923, - "right": 80.15625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 71, - "left": 80.15625, - "top": 62.267923, - "right": 81.5625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 71, - "left": 81.5625, - "top": 62.267923, - "right": 82.96875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 71, - "left": 82.96875, - "top": 62.267923, - "right": 84.375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 71, - "left": 84.375, - "top": 62.267923, - "right": 85.78125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 71, - "left": 85.78125, - "top": 62.267923, - "right": 87.1875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 71, - "left": 87.1875, - "top": 62.267923, - "right": 88.59375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 71, - "left": 88.59375, - "top": 62.267923, - "right": 90.0, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 71, - "left": 90.0, - "top": 62.267923, - "right": 91.40625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 71, - "left": 91.40625, - "top": 62.267923, - "right": 92.8125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 71, - "left": 92.8125, - "top": 62.267923, - "right": 94.21875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 71, - "left": 94.21875, - "top": 62.267923, - "right": 95.625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 71, - "left": 95.625, - "top": 62.267923, - "right": 97.03125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 71, - "left": 97.03125, - "top": 62.267923, - "right": 98.4375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 71, - "left": 98.4375, - "top": 62.267923, - "right": 99.84375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 71, - "left": 99.84375, - "top": 62.267923, - "right": 101.25, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 71, - "left": 101.25, - "top": 62.267923, - "right": 102.65625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 71, - "left": 102.65625, - "top": 62.267923, - "right": 104.0625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 71, - "left": 104.0625, - "top": 62.267923, - "right": 105.46875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 71, - "left": 105.46875, - "top": 62.267923, - "right": 106.875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 71, - "left": 106.875, - "top": 62.267923, - "right": 108.28125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 71, - "left": 108.28125, - "top": 62.267923, - "right": 109.6875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 71, - "left": 109.6875, - "top": 62.267923, - "right": 111.09375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 71, - "left": 111.09375, - "top": 62.267923, - "right": 112.5, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 71, - "left": 112.5, - "top": 62.267923, - "right": 113.90625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 71, - "left": 113.90625, - "top": 62.267923, - "right": 115.3125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 71, - "left": 115.3125, - "top": 62.267923, - "right": 116.71875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 71, - "left": 116.71875, - "top": 62.267923, - "right": 118.125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 71, - "left": 118.125, - "top": 62.267923, - "right": 119.53125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 71, - "left": 119.53125, - "top": 62.267923, - "right": 120.9375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 71, - "left": 120.9375, - "top": 62.267923, - "right": 122.34375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 71, - "left": 122.34375, - "top": 62.267923, - "right": 123.75, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 71, - "left": 123.75, - "top": 62.267923, - "right": 125.15625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 71, - "left": 125.15625, - "top": 62.267923, - "right": 126.5625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 71, - "left": 126.5625, - "top": 62.267923, - "right": 127.96875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 71, - "left": 127.96875, - "top": 62.267923, - "right": 129.375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 71, - "left": 129.375, - "top": 62.267923, - "right": 130.78125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 71, - "left": 130.78125, - "top": 62.267923, - "right": 132.1875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 71, - "left": 132.1875, - "top": 62.267923, - "right": 133.59375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 71, - "left": 133.59375, - "top": 62.267923, - "right": 135.0, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 71, - "left": 135.0, - "top": 62.267923, - "right": 136.40625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 71, - "left": 136.40625, - "top": 62.267923, - "right": 137.8125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 71, - "left": 137.8125, - "top": 62.267923, - "right": 139.21875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 71, - "left": 139.21875, - "top": 62.267923, - "right": 140.625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 71, - "left": 140.625, - "top": 62.267923, - "right": 142.03125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 71, - "left": 142.03125, - "top": 62.267923, - "right": 143.4375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 71, - "left": 143.4375, - "top": 62.267923, - "right": 144.84375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 71, - "left": 144.84375, - "top": 62.267923, - "right": 146.25, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 71, - "left": 146.25, - "top": 62.267923, - "right": 147.65625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 71, - "left": 147.65625, - "top": 62.267923, - "right": 149.0625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 71, - "left": 149.0625, - "top": 62.267923, - "right": 150.46875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 71, - "left": 150.46875, - "top": 62.267923, - "right": 151.875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 71, - "left": 151.875, - "top": 62.267923, - "right": 153.28125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 71, - "left": 153.28125, - "top": 62.267923, - "right": 154.6875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 71, - "left": 154.6875, - "top": 62.267923, - "right": 156.09375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 71, - "left": 156.09375, - "top": 62.267923, - "right": 157.5, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 71, - "left": 157.5, - "top": 62.267923, - "right": 158.90625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 71, - "left": 158.90625, - "top": 62.267923, - "right": 160.3125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 71, - "left": 160.3125, - "top": 62.267923, - "right": 161.71875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 71, - "left": 161.71875, - "top": 62.267923, - "right": 163.125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 71, - "left": 163.125, - "top": 62.267923, - "right": 164.53125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 71, - "left": 164.53125, - "top": 62.267923, - "right": 165.9375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 71, - "left": 165.9375, - "top": 62.267923, - "right": 167.34375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 71, - "left": 167.34375, - "top": 62.267923, - "right": 168.75, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 71, - "left": 168.75, - "top": 62.267923, - "right": 170.15625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 71, - "left": 170.15625, - "top": 62.267923, - "right": 171.5625, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 71, - "left": 171.5625, - "top": 62.267923, - "right": 172.96875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 71, - "left": 172.96875, - "top": 62.267923, - "right": 174.375, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 252, - "y": 71, - "left": 174.375, - "top": 62.267923, - "right": 175.78125, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 253, - "y": 71, - "left": 175.78125, - "top": 62.267923, - "right": 177.1875, - "bottom": 61.606396, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 72, - "left": 30.9375, - "top": 61.606396, - "right": 32.34375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 72, - "left": 32.34375, - "top": 61.606396, - "right": 33.75, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 72, - "left": 33.75, - "top": 61.606396, - "right": 35.15625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 72, - "left": 35.15625, - "top": 61.606396, - "right": 36.5625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 72, - "left": 36.5625, - "top": 61.606396, - "right": 37.96875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 72, - "left": 37.96875, - "top": 61.606396, - "right": 39.375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 72, - "left": 39.375, - "top": 61.606396, - "right": 40.78125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 72, - "left": 40.78125, - "top": 61.606396, - "right": 42.1875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 72, - "left": 42.1875, - "top": 61.606396, - "right": 43.59375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 72, - "left": 43.59375, - "top": 61.606396, - "right": 45.0, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 72, - "left": 45.0, - "top": 61.606396, - "right": 46.40625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 72, - "left": 46.40625, - "top": 61.606396, - "right": 47.8125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 72, - "left": 47.8125, - "top": 61.606396, - "right": 49.21875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 72, - "left": 49.21875, - "top": 61.606396, - "right": 50.625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 72, - "left": 50.625, - "top": 61.606396, - "right": 52.03125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 72, - "left": 52.03125, - "top": 61.606396, - "right": 53.4375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 72, - "left": 53.4375, - "top": 61.606396, - "right": 54.84375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 72, - "left": 54.84375, - "top": 61.606396, - "right": 56.25, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 72, - "left": 56.25, - "top": 61.606396, - "right": 57.65625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 72, - "left": 57.65625, - "top": 61.606396, - "right": 59.0625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 72, - "left": 59.0625, - "top": 61.606396, - "right": 60.46875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 72, - "left": 60.46875, - "top": 61.606396, - "right": 61.875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 72, - "left": 61.875, - "top": 61.606396, - "right": 63.28125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 72, - "left": 63.28125, - "top": 61.606396, - "right": 64.6875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 72, - "left": 64.6875, - "top": 61.606396, - "right": 66.09375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 72, - "left": 66.09375, - "top": 61.606396, - "right": 67.5, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 72, - "left": 67.5, - "top": 61.606396, - "right": 68.90625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 72, - "left": 68.90625, - "top": 61.606396, - "right": 70.3125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 72, - "left": 70.3125, - "top": 61.606396, - "right": 71.71875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 72, - "left": 71.71875, - "top": 61.606396, - "right": 73.125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 72, - "left": 73.125, - "top": 61.606396, - "right": 74.53125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 72, - "left": 74.53125, - "top": 61.606396, - "right": 75.9375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 72, - "left": 75.9375, - "top": 61.606396, - "right": 77.34375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 72, - "left": 77.34375, - "top": 61.606396, - "right": 78.75, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 72, - "left": 78.75, - "top": 61.606396, - "right": 80.15625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 72, - "left": 80.15625, - "top": 61.606396, - "right": 81.5625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 72, - "left": 81.5625, - "top": 61.606396, - "right": 82.96875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 72, - "left": 82.96875, - "top": 61.606396, - "right": 84.375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 72, - "left": 84.375, - "top": 61.606396, - "right": 85.78125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 72, - "left": 85.78125, - "top": 61.606396, - "right": 87.1875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 72, - "left": 87.1875, - "top": 61.606396, - "right": 88.59375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 72, - "left": 88.59375, - "top": 61.606396, - "right": 90.0, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 72, - "left": 90.0, - "top": 61.606396, - "right": 91.40625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 72, - "left": 91.40625, - "top": 61.606396, - "right": 92.8125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 72, - "left": 92.8125, - "top": 61.606396, - "right": 94.21875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 72, - "left": 94.21875, - "top": 61.606396, - "right": 95.625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 72, - "left": 95.625, - "top": 61.606396, - "right": 97.03125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 72, - "left": 97.03125, - "top": 61.606396, - "right": 98.4375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 72, - "left": 98.4375, - "top": 61.606396, - "right": 99.84375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 72, - "left": 99.84375, - "top": 61.606396, - "right": 101.25, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 72, - "left": 101.25, - "top": 61.606396, - "right": 102.65625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 72, - "left": 102.65625, - "top": 61.606396, - "right": 104.0625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 72, - "left": 104.0625, - "top": 61.606396, - "right": 105.46875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 72, - "left": 105.46875, - "top": 61.606396, - "right": 106.875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 72, - "left": 106.875, - "top": 61.606396, - "right": 108.28125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 72, - "left": 108.28125, - "top": 61.606396, - "right": 109.6875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 72, - "left": 109.6875, - "top": 61.606396, - "right": 111.09375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 72, - "left": 111.09375, - "top": 61.606396, - "right": 112.5, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 72, - "left": 112.5, - "top": 61.606396, - "right": 113.90625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 72, - "left": 113.90625, - "top": 61.606396, - "right": 115.3125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 72, - "left": 115.3125, - "top": 61.606396, - "right": 116.71875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 72, - "left": 116.71875, - "top": 61.606396, - "right": 118.125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 72, - "left": 118.125, - "top": 61.606396, - "right": 119.53125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 72, - "left": 119.53125, - "top": 61.606396, - "right": 120.9375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 72, - "left": 120.9375, - "top": 61.606396, - "right": 122.34375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 72, - "left": 122.34375, - "top": 61.606396, - "right": 123.75, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 72, - "left": 123.75, - "top": 61.606396, - "right": 125.15625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 72, - "left": 125.15625, - "top": 61.606396, - "right": 126.5625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 72, - "left": 126.5625, - "top": 61.606396, - "right": 127.96875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 72, - "left": 127.96875, - "top": 61.606396, - "right": 129.375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 72, - "left": 129.375, - "top": 61.606396, - "right": 130.78125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 72, - "left": 130.78125, - "top": 61.606396, - "right": 132.1875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 72, - "left": 132.1875, - "top": 61.606396, - "right": 133.59375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 72, - "left": 133.59375, - "top": 61.606396, - "right": 135.0, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 72, - "left": 135.0, - "top": 61.606396, - "right": 136.40625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 72, - "left": 136.40625, - "top": 61.606396, - "right": 137.8125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 72, - "left": 137.8125, - "top": 61.606396, - "right": 139.21875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 72, - "left": 139.21875, - "top": 61.606396, - "right": 140.625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 72, - "left": 140.625, - "top": 61.606396, - "right": 142.03125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 72, - "left": 142.03125, - "top": 61.606396, - "right": 143.4375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 72, - "left": 143.4375, - "top": 61.606396, - "right": 144.84375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 72, - "left": 144.84375, - "top": 61.606396, - "right": 146.25, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 72, - "left": 146.25, - "top": 61.606396, - "right": 147.65625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 72, - "left": 147.65625, - "top": 61.606396, - "right": 149.0625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 72, - "left": 149.0625, - "top": 61.606396, - "right": 150.46875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 72, - "left": 150.46875, - "top": 61.606396, - "right": 151.875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 72, - "left": 151.875, - "top": 61.606396, - "right": 153.28125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 72, - "left": 153.28125, - "top": 61.606396, - "right": 154.6875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 72, - "left": 154.6875, - "top": 61.606396, - "right": 156.09375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 72, - "left": 156.09375, - "top": 61.606396, - "right": 157.5, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 72, - "left": 158.90625, - "top": 61.606396, - "right": 160.3125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 72, - "left": 160.3125, - "top": 61.606396, - "right": 161.71875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 72, - "left": 161.71875, - "top": 61.606396, - "right": 163.125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 72, - "left": 163.125, - "top": 61.606396, - "right": 164.53125, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 72, - "left": 164.53125, - "top": 61.606396, - "right": 165.9375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 72, - "left": 165.9375, - "top": 61.606396, - "right": 167.34375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 72, - "left": 167.34375, - "top": 61.606396, - "right": 168.75, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 72, - "left": 168.75, - "top": 61.606396, - "right": 170.15625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 72, - "left": 170.15625, - "top": 61.606396, - "right": 171.5625, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 72, - "left": 171.5625, - "top": 61.606396, - "right": 172.96875, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 251, - "y": 72, - "left": 172.96875, - "top": 61.606396, - "right": 174.375, - "bottom": 60.930432, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 73, - "left": 29.53125, - "top": 60.930432, - "right": 30.9375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 73, - "left": 30.9375, - "top": 60.930432, - "right": 32.34375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 73, - "left": 32.34375, - "top": 60.930432, - "right": 33.75, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 73, - "left": 33.75, - "top": 60.930432, - "right": 35.15625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 73, - "left": 35.15625, - "top": 60.930432, - "right": 36.5625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 73, - "left": 36.5625, - "top": 60.930432, - "right": 37.96875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 73, - "left": 37.96875, - "top": 60.930432, - "right": 39.375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 73, - "left": 39.375, - "top": 60.930432, - "right": 40.78125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 73, - "left": 40.78125, - "top": 60.930432, - "right": 42.1875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 73, - "left": 42.1875, - "top": 60.930432, - "right": 43.59375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 73, - "left": 43.59375, - "top": 60.930432, - "right": 45.0, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 73, - "left": 45.0, - "top": 60.930432, - "right": 46.40625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 73, - "left": 46.40625, - "top": 60.930432, - "right": 47.8125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 73, - "left": 47.8125, - "top": 60.930432, - "right": 49.21875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 73, - "left": 49.21875, - "top": 60.930432, - "right": 50.625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 73, - "left": 50.625, - "top": 60.930432, - "right": 52.03125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 73, - "left": 52.03125, - "top": 60.930432, - "right": 53.4375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 73, - "left": 53.4375, - "top": 60.930432, - "right": 54.84375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 73, - "left": 54.84375, - "top": 60.930432, - "right": 56.25, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 73, - "left": 56.25, - "top": 60.930432, - "right": 57.65625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 73, - "left": 57.65625, - "top": 60.930432, - "right": 59.0625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 73, - "left": 59.0625, - "top": 60.930432, - "right": 60.46875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 73, - "left": 60.46875, - "top": 60.930432, - "right": 61.875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 73, - "left": 61.875, - "top": 60.930432, - "right": 63.28125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 73, - "left": 63.28125, - "top": 60.930432, - "right": 64.6875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 73, - "left": 64.6875, - "top": 60.930432, - "right": 66.09375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 73, - "left": 66.09375, - "top": 60.930432, - "right": 67.5, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 73, - "left": 67.5, - "top": 60.930432, - "right": 68.90625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 73, - "left": 68.90625, - "top": 60.930432, - "right": 70.3125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 73, - "left": 70.3125, - "top": 60.930432, - "right": 71.71875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 73, - "left": 71.71875, - "top": 60.930432, - "right": 73.125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 73, - "left": 73.125, - "top": 60.930432, - "right": 74.53125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 73, - "left": 74.53125, - "top": 60.930432, - "right": 75.9375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 73, - "left": 75.9375, - "top": 60.930432, - "right": 77.34375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 73, - "left": 77.34375, - "top": 60.930432, - "right": 78.75, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 73, - "left": 78.75, - "top": 60.930432, - "right": 80.15625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 73, - "left": 80.15625, - "top": 60.930432, - "right": 81.5625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 73, - "left": 81.5625, - "top": 60.930432, - "right": 82.96875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 73, - "left": 82.96875, - "top": 60.930432, - "right": 84.375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 73, - "left": 84.375, - "top": 60.930432, - "right": 85.78125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 73, - "left": 85.78125, - "top": 60.930432, - "right": 87.1875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 73, - "left": 87.1875, - "top": 60.930432, - "right": 88.59375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 73, - "left": 88.59375, - "top": 60.930432, - "right": 90.0, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 73, - "left": 90.0, - "top": 60.930432, - "right": 91.40625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 73, - "left": 91.40625, - "top": 60.930432, - "right": 92.8125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 73, - "left": 92.8125, - "top": 60.930432, - "right": 94.21875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 73, - "left": 94.21875, - "top": 60.930432, - "right": 95.625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 73, - "left": 95.625, - "top": 60.930432, - "right": 97.03125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 73, - "left": 97.03125, - "top": 60.930432, - "right": 98.4375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 73, - "left": 98.4375, - "top": 60.930432, - "right": 99.84375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 73, - "left": 99.84375, - "top": 60.930432, - "right": 101.25, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 73, - "left": 101.25, - "top": 60.930432, - "right": 102.65625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 73, - "left": 102.65625, - "top": 60.930432, - "right": 104.0625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 73, - "left": 104.0625, - "top": 60.930432, - "right": 105.46875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 73, - "left": 105.46875, - "top": 60.930432, - "right": 106.875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 73, - "left": 106.875, - "top": 60.930432, - "right": 108.28125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 73, - "left": 108.28125, - "top": 60.930432, - "right": 109.6875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 73, - "left": 109.6875, - "top": 60.930432, - "right": 111.09375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 73, - "left": 111.09375, - "top": 60.930432, - "right": 112.5, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 73, - "left": 112.5, - "top": 60.930432, - "right": 113.90625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 73, - "left": 113.90625, - "top": 60.930432, - "right": 115.3125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 73, - "left": 115.3125, - "top": 60.930432, - "right": 116.71875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 73, - "left": 116.71875, - "top": 60.930432, - "right": 118.125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 73, - "left": 118.125, - "top": 60.930432, - "right": 119.53125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 73, - "left": 119.53125, - "top": 60.930432, - "right": 120.9375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 73, - "left": 120.9375, - "top": 60.930432, - "right": 122.34375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 73, - "left": 122.34375, - "top": 60.930432, - "right": 123.75, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 73, - "left": 123.75, - "top": 60.930432, - "right": 125.15625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 73, - "left": 125.15625, - "top": 60.930432, - "right": 126.5625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 73, - "left": 126.5625, - "top": 60.930432, - "right": 127.96875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 73, - "left": 127.96875, - "top": 60.930432, - "right": 129.375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 73, - "left": 129.375, - "top": 60.930432, - "right": 130.78125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 73, - "left": 130.78125, - "top": 60.930432, - "right": 132.1875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 73, - "left": 132.1875, - "top": 60.930432, - "right": 133.59375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 73, - "left": 133.59375, - "top": 60.930432, - "right": 135.0, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 73, - "left": 135.0, - "top": 60.930432, - "right": 136.40625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 73, - "left": 136.40625, - "top": 60.930432, - "right": 137.8125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 73, - "left": 137.8125, - "top": 60.930432, - "right": 139.21875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 73, - "left": 139.21875, - "top": 60.930432, - "right": 140.625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 73, - "left": 140.625, - "top": 60.930432, - "right": 142.03125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 73, - "left": 142.03125, - "top": 60.930432, - "right": 143.4375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 73, - "left": 143.4375, - "top": 60.930432, - "right": 144.84375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 73, - "left": 144.84375, - "top": 60.930432, - "right": 146.25, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 73, - "left": 146.25, - "top": 60.930432, - "right": 147.65625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 73, - "left": 147.65625, - "top": 60.930432, - "right": 149.0625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 73, - "left": 149.0625, - "top": 60.930432, - "right": 150.46875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 73, - "left": 150.46875, - "top": 60.930432, - "right": 151.875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 73, - "left": 151.875, - "top": 60.930432, - "right": 153.28125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 73, - "left": 153.28125, - "top": 60.930432, - "right": 154.6875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 73, - "left": 154.6875, - "top": 60.930432, - "right": 156.09375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 73, - "left": 158.90625, - "top": 60.930432, - "right": 160.3125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 73, - "left": 160.3125, - "top": 60.930432, - "right": 161.71875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 73, - "left": 161.71875, - "top": 60.930432, - "right": 163.125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 73, - "left": 163.125, - "top": 60.930432, - "right": 164.53125, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 73, - "left": 164.53125, - "top": 60.930432, - "right": 165.9375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 73, - "left": 165.9375, - "top": 60.930432, - "right": 167.34375, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 73, - "left": 167.34375, - "top": 60.930432, - "right": 168.75, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 73, - "left": 168.75, - "top": 60.930432, - "right": 170.15625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 73, - "left": 170.15625, - "top": 60.930432, - "right": 171.5625, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 250, - "y": 73, - "left": 171.5625, - "top": 60.930432, - "right": 172.96875, - "bottom": 60.239811, - "countries": [ - "russia" - ] - }, - { - "x": 147, - "y": 74, - "left": 26.71875, - "top": 60.239811, - "right": 28.125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 148, - "y": 74, - "left": 28.125, - "top": 60.239811, - "right": 29.53125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 74, - "left": 29.53125, - "top": 60.239811, - "right": 30.9375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 74, - "left": 30.9375, - "top": 60.239811, - "right": 32.34375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 74, - "left": 32.34375, - "top": 60.239811, - "right": 33.75, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 74, - "left": 33.75, - "top": 60.239811, - "right": 35.15625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 74, - "left": 35.15625, - "top": 60.239811, - "right": 36.5625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 74, - "left": 36.5625, - "top": 60.239811, - "right": 37.96875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 74, - "left": 37.96875, - "top": 60.239811, - "right": 39.375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 74, - "left": 39.375, - "top": 60.239811, - "right": 40.78125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 74, - "left": 40.78125, - "top": 60.239811, - "right": 42.1875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 74, - "left": 42.1875, - "top": 60.239811, - "right": 43.59375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 74, - "left": 43.59375, - "top": 60.239811, - "right": 45.0, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 74, - "left": 45.0, - "top": 60.239811, - "right": 46.40625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 74, - "left": 46.40625, - "top": 60.239811, - "right": 47.8125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 74, - "left": 47.8125, - "top": 60.239811, - "right": 49.21875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 74, - "left": 49.21875, - "top": 60.239811, - "right": 50.625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 74, - "left": 50.625, - "top": 60.239811, - "right": 52.03125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 74, - "left": 52.03125, - "top": 60.239811, - "right": 53.4375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 74, - "left": 53.4375, - "top": 60.239811, - "right": 54.84375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 74, - "left": 54.84375, - "top": 60.239811, - "right": 56.25, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 74, - "left": 56.25, - "top": 60.239811, - "right": 57.65625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 74, - "left": 57.65625, - "top": 60.239811, - "right": 59.0625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 74, - "left": 59.0625, - "top": 60.239811, - "right": 60.46875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 74, - "left": 60.46875, - "top": 60.239811, - "right": 61.875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 74, - "left": 61.875, - "top": 60.239811, - "right": 63.28125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 74, - "left": 63.28125, - "top": 60.239811, - "right": 64.6875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 74, - "left": 64.6875, - "top": 60.239811, - "right": 66.09375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 74, - "left": 66.09375, - "top": 60.239811, - "right": 67.5, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 74, - "left": 67.5, - "top": 60.239811, - "right": 68.90625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 74, - "left": 68.90625, - "top": 60.239811, - "right": 70.3125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 74, - "left": 70.3125, - "top": 60.239811, - "right": 71.71875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 74, - "left": 71.71875, - "top": 60.239811, - "right": 73.125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 74, - "left": 73.125, - "top": 60.239811, - "right": 74.53125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 74, - "left": 74.53125, - "top": 60.239811, - "right": 75.9375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 74, - "left": 75.9375, - "top": 60.239811, - "right": 77.34375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 74, - "left": 77.34375, - "top": 60.239811, - "right": 78.75, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 74, - "left": 78.75, - "top": 60.239811, - "right": 80.15625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 74, - "left": 80.15625, - "top": 60.239811, - "right": 81.5625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 74, - "left": 81.5625, - "top": 60.239811, - "right": 82.96875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 74, - "left": 82.96875, - "top": 60.239811, - "right": 84.375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 74, - "left": 84.375, - "top": 60.239811, - "right": 85.78125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 74, - "left": 85.78125, - "top": 60.239811, - "right": 87.1875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 74, - "left": 87.1875, - "top": 60.239811, - "right": 88.59375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 74, - "left": 88.59375, - "top": 60.239811, - "right": 90.0, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 74, - "left": 90.0, - "top": 60.239811, - "right": 91.40625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 74, - "left": 91.40625, - "top": 60.239811, - "right": 92.8125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 74, - "left": 92.8125, - "top": 60.239811, - "right": 94.21875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 74, - "left": 94.21875, - "top": 60.239811, - "right": 95.625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 74, - "left": 95.625, - "top": 60.239811, - "right": 97.03125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 74, - "left": 97.03125, - "top": 60.239811, - "right": 98.4375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 74, - "left": 98.4375, - "top": 60.239811, - "right": 99.84375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 74, - "left": 99.84375, - "top": 60.239811, - "right": 101.25, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 74, - "left": 101.25, - "top": 60.239811, - "right": 102.65625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 74, - "left": 102.65625, - "top": 60.239811, - "right": 104.0625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 74, - "left": 104.0625, - "top": 60.239811, - "right": 105.46875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 74, - "left": 105.46875, - "top": 60.239811, - "right": 106.875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 74, - "left": 106.875, - "top": 60.239811, - "right": 108.28125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 74, - "left": 108.28125, - "top": 60.239811, - "right": 109.6875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 74, - "left": 109.6875, - "top": 60.239811, - "right": 111.09375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 74, - "left": 111.09375, - "top": 60.239811, - "right": 112.5, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 74, - "left": 112.5, - "top": 60.239811, - "right": 113.90625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 74, - "left": 113.90625, - "top": 60.239811, - "right": 115.3125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 74, - "left": 115.3125, - "top": 60.239811, - "right": 116.71875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 74, - "left": 116.71875, - "top": 60.239811, - "right": 118.125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 74, - "left": 118.125, - "top": 60.239811, - "right": 119.53125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 74, - "left": 119.53125, - "top": 60.239811, - "right": 120.9375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 74, - "left": 120.9375, - "top": 60.239811, - "right": 122.34375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 74, - "left": 122.34375, - "top": 60.239811, - "right": 123.75, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 74, - "left": 123.75, - "top": 60.239811, - "right": 125.15625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 74, - "left": 125.15625, - "top": 60.239811, - "right": 126.5625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 74, - "left": 126.5625, - "top": 60.239811, - "right": 127.96875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 74, - "left": 127.96875, - "top": 60.239811, - "right": 129.375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 74, - "left": 129.375, - "top": 60.239811, - "right": 130.78125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 74, - "left": 130.78125, - "top": 60.239811, - "right": 132.1875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 74, - "left": 132.1875, - "top": 60.239811, - "right": 133.59375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 74, - "left": 133.59375, - "top": 60.239811, - "right": 135.0, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 74, - "left": 135.0, - "top": 60.239811, - "right": 136.40625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 74, - "left": 136.40625, - "top": 60.239811, - "right": 137.8125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 74, - "left": 137.8125, - "top": 60.239811, - "right": 139.21875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 74, - "left": 139.21875, - "top": 60.239811, - "right": 140.625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 74, - "left": 140.625, - "top": 60.239811, - "right": 142.03125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 74, - "left": 142.03125, - "top": 60.239811, - "right": 143.4375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 74, - "left": 143.4375, - "top": 60.239811, - "right": 144.84375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 74, - "left": 144.84375, - "top": 60.239811, - "right": 146.25, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 74, - "left": 146.25, - "top": 60.239811, - "right": 147.65625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 74, - "left": 147.65625, - "top": 60.239811, - "right": 149.0625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 74, - "left": 149.0625, - "top": 60.239811, - "right": 150.46875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 74, - "left": 150.46875, - "top": 60.239811, - "right": 151.875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 74, - "left": 151.875, - "top": 60.239811, - "right": 153.28125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 74, - "left": 153.28125, - "top": 60.239811, - "right": 154.6875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 74, - "left": 154.6875, - "top": 60.239811, - "right": 156.09375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 74, - "left": 160.3125, - "top": 60.239811, - "right": 161.71875, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 74, - "left": 161.71875, - "top": 60.239811, - "right": 163.125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 74, - "left": 163.125, - "top": 60.239811, - "right": 164.53125, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 74, - "left": 164.53125, - "top": 60.239811, - "right": 165.9375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 74, - "left": 165.9375, - "top": 60.239811, - "right": 167.34375, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 248, - "y": 74, - "left": 168.75, - "top": 60.239811, - "right": 170.15625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 249, - "y": 74, - "left": 170.15625, - "top": 60.239811, - "right": 171.5625, - "bottom": 59.534318, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 75, - "left": 29.53125, - "top": 59.534318, - "right": 30.9375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 75, - "left": 30.9375, - "top": 59.534318, - "right": 32.34375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 75, - "left": 32.34375, - "top": 59.534318, - "right": 33.75, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 75, - "left": 33.75, - "top": 59.534318, - "right": 35.15625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 75, - "left": 35.15625, - "top": 59.534318, - "right": 36.5625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 75, - "left": 36.5625, - "top": 59.534318, - "right": 37.96875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 75, - "left": 37.96875, - "top": 59.534318, - "right": 39.375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 75, - "left": 39.375, - "top": 59.534318, - "right": 40.78125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 75, - "left": 40.78125, - "top": 59.534318, - "right": 42.1875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 75, - "left": 42.1875, - "top": 59.534318, - "right": 43.59375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 75, - "left": 43.59375, - "top": 59.534318, - "right": 45.0, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 75, - "left": 45.0, - "top": 59.534318, - "right": 46.40625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 75, - "left": 46.40625, - "top": 59.534318, - "right": 47.8125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 75, - "left": 47.8125, - "top": 59.534318, - "right": 49.21875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 75, - "left": 49.21875, - "top": 59.534318, - "right": 50.625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 75, - "left": 50.625, - "top": 59.534318, - "right": 52.03125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 75, - "left": 52.03125, - "top": 59.534318, - "right": 53.4375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 75, - "left": 53.4375, - "top": 59.534318, - "right": 54.84375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 75, - "left": 54.84375, - "top": 59.534318, - "right": 56.25, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 75, - "left": 56.25, - "top": 59.534318, - "right": 57.65625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 75, - "left": 57.65625, - "top": 59.534318, - "right": 59.0625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 75, - "left": 59.0625, - "top": 59.534318, - "right": 60.46875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 75, - "left": 60.46875, - "top": 59.534318, - "right": 61.875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 75, - "left": 61.875, - "top": 59.534318, - "right": 63.28125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 75, - "left": 63.28125, - "top": 59.534318, - "right": 64.6875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 75, - "left": 64.6875, - "top": 59.534318, - "right": 66.09375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 75, - "left": 66.09375, - "top": 59.534318, - "right": 67.5, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 75, - "left": 67.5, - "top": 59.534318, - "right": 68.90625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 75, - "left": 68.90625, - "top": 59.534318, - "right": 70.3125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 75, - "left": 70.3125, - "top": 59.534318, - "right": 71.71875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 75, - "left": 71.71875, - "top": 59.534318, - "right": 73.125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 75, - "left": 73.125, - "top": 59.534318, - "right": 74.53125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 75, - "left": 74.53125, - "top": 59.534318, - "right": 75.9375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 75, - "left": 75.9375, - "top": 59.534318, - "right": 77.34375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 75, - "left": 77.34375, - "top": 59.534318, - "right": 78.75, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 75, - "left": 78.75, - "top": 59.534318, - "right": 80.15625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 75, - "left": 80.15625, - "top": 59.534318, - "right": 81.5625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 75, - "left": 81.5625, - "top": 59.534318, - "right": 82.96875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 75, - "left": 82.96875, - "top": 59.534318, - "right": 84.375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 75, - "left": 84.375, - "top": 59.534318, - "right": 85.78125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 75, - "left": 85.78125, - "top": 59.534318, - "right": 87.1875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 75, - "left": 87.1875, - "top": 59.534318, - "right": 88.59375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 75, - "left": 88.59375, - "top": 59.534318, - "right": 90.0, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 75, - "left": 90.0, - "top": 59.534318, - "right": 91.40625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 75, - "left": 91.40625, - "top": 59.534318, - "right": 92.8125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 75, - "left": 92.8125, - "top": 59.534318, - "right": 94.21875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 75, - "left": 94.21875, - "top": 59.534318, - "right": 95.625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 75, - "left": 95.625, - "top": 59.534318, - "right": 97.03125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 75, - "left": 97.03125, - "top": 59.534318, - "right": 98.4375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 75, - "left": 98.4375, - "top": 59.534318, - "right": 99.84375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 75, - "left": 99.84375, - "top": 59.534318, - "right": 101.25, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 75, - "left": 101.25, - "top": 59.534318, - "right": 102.65625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 75, - "left": 102.65625, - "top": 59.534318, - "right": 104.0625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 75, - "left": 104.0625, - "top": 59.534318, - "right": 105.46875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 75, - "left": 105.46875, - "top": 59.534318, - "right": 106.875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 75, - "left": 106.875, - "top": 59.534318, - "right": 108.28125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 75, - "left": 108.28125, - "top": 59.534318, - "right": 109.6875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 75, - "left": 109.6875, - "top": 59.534318, - "right": 111.09375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 75, - "left": 111.09375, - "top": 59.534318, - "right": 112.5, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 75, - "left": 112.5, - "top": 59.534318, - "right": 113.90625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 75, - "left": 113.90625, - "top": 59.534318, - "right": 115.3125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 75, - "left": 115.3125, - "top": 59.534318, - "right": 116.71875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 75, - "left": 116.71875, - "top": 59.534318, - "right": 118.125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 75, - "left": 118.125, - "top": 59.534318, - "right": 119.53125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 75, - "left": 119.53125, - "top": 59.534318, - "right": 120.9375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 75, - "left": 120.9375, - "top": 59.534318, - "right": 122.34375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 75, - "left": 122.34375, - "top": 59.534318, - "right": 123.75, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 75, - "left": 123.75, - "top": 59.534318, - "right": 125.15625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 75, - "left": 125.15625, - "top": 59.534318, - "right": 126.5625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 75, - "left": 126.5625, - "top": 59.534318, - "right": 127.96875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 75, - "left": 127.96875, - "top": 59.534318, - "right": 129.375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 75, - "left": 129.375, - "top": 59.534318, - "right": 130.78125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 75, - "left": 130.78125, - "top": 59.534318, - "right": 132.1875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 75, - "left": 132.1875, - "top": 59.534318, - "right": 133.59375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 75, - "left": 133.59375, - "top": 59.534318, - "right": 135.0, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 75, - "left": 135.0, - "top": 59.534318, - "right": 136.40625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 75, - "left": 136.40625, - "top": 59.534318, - "right": 137.8125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 75, - "left": 137.8125, - "top": 59.534318, - "right": 139.21875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 75, - "left": 139.21875, - "top": 59.534318, - "right": 140.625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 75, - "left": 140.625, - "top": 59.534318, - "right": 142.03125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 75, - "left": 142.03125, - "top": 59.534318, - "right": 143.4375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 75, - "left": 143.4375, - "top": 59.534318, - "right": 144.84375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 231, - "y": 75, - "left": 144.84375, - "top": 59.534318, - "right": 146.25, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 75, - "left": 146.25, - "top": 59.534318, - "right": 147.65625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 75, - "left": 147.65625, - "top": 59.534318, - "right": 149.0625, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 75, - "left": 149.0625, - "top": 59.534318, - "right": 150.46875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 75, - "left": 150.46875, - "top": 59.534318, - "right": 151.875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 75, - "left": 151.875, - "top": 59.534318, - "right": 153.28125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 75, - "left": 153.28125, - "top": 59.534318, - "right": 154.6875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 75, - "left": 154.6875, - "top": 59.534318, - "right": 156.09375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 75, - "left": 158.90625, - "top": 59.534318, - "right": 160.3125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 75, - "left": 160.3125, - "top": 59.534318, - "right": 161.71875, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 75, - "left": 161.71875, - "top": 59.534318, - "right": 163.125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 75, - "left": 163.125, - "top": 59.534318, - "right": 164.53125, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 75, - "left": 164.53125, - "top": 59.534318, - "right": 165.9375, - "bottom": 58.813742, - "countries": [ - "russia" - ] - }, - { - "x": 148, - "y": 76, - "left": 28.125, - "top": 58.813742, - "right": 29.53125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 76, - "left": 29.53125, - "top": 58.813742, - "right": 30.9375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 76, - "left": 30.9375, - "top": 58.813742, - "right": 32.34375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 76, - "left": 32.34375, - "top": 58.813742, - "right": 33.75, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 76, - "left": 33.75, - "top": 58.813742, - "right": 35.15625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 76, - "left": 35.15625, - "top": 58.813742, - "right": 36.5625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 76, - "left": 36.5625, - "top": 58.813742, - "right": 37.96875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 76, - "left": 37.96875, - "top": 58.813742, - "right": 39.375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 76, - "left": 39.375, - "top": 58.813742, - "right": 40.78125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 76, - "left": 40.78125, - "top": 58.813742, - "right": 42.1875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 76, - "left": 42.1875, - "top": 58.813742, - "right": 43.59375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 76, - "left": 43.59375, - "top": 58.813742, - "right": 45.0, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 76, - "left": 45.0, - "top": 58.813742, - "right": 46.40625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 76, - "left": 46.40625, - "top": 58.813742, - "right": 47.8125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 76, - "left": 47.8125, - "top": 58.813742, - "right": 49.21875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 76, - "left": 49.21875, - "top": 58.813742, - "right": 50.625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 76, - "left": 50.625, - "top": 58.813742, - "right": 52.03125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 76, - "left": 52.03125, - "top": 58.813742, - "right": 53.4375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 76, - "left": 53.4375, - "top": 58.813742, - "right": 54.84375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 76, - "left": 54.84375, - "top": 58.813742, - "right": 56.25, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 76, - "left": 56.25, - "top": 58.813742, - "right": 57.65625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 76, - "left": 57.65625, - "top": 58.813742, - "right": 59.0625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 76, - "left": 59.0625, - "top": 58.813742, - "right": 60.46875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 76, - "left": 60.46875, - "top": 58.813742, - "right": 61.875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 76, - "left": 61.875, - "top": 58.813742, - "right": 63.28125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 76, - "left": 63.28125, - "top": 58.813742, - "right": 64.6875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 76, - "left": 64.6875, - "top": 58.813742, - "right": 66.09375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 76, - "left": 66.09375, - "top": 58.813742, - "right": 67.5, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 76, - "left": 67.5, - "top": 58.813742, - "right": 68.90625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 76, - "left": 68.90625, - "top": 58.813742, - "right": 70.3125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 76, - "left": 70.3125, - "top": 58.813742, - "right": 71.71875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 76, - "left": 71.71875, - "top": 58.813742, - "right": 73.125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 76, - "left": 73.125, - "top": 58.813742, - "right": 74.53125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 76, - "left": 74.53125, - "top": 58.813742, - "right": 75.9375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 76, - "left": 75.9375, - "top": 58.813742, - "right": 77.34375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 76, - "left": 77.34375, - "top": 58.813742, - "right": 78.75, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 76, - "left": 78.75, - "top": 58.813742, - "right": 80.15625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 76, - "left": 80.15625, - "top": 58.813742, - "right": 81.5625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 76, - "left": 81.5625, - "top": 58.813742, - "right": 82.96875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 76, - "left": 82.96875, - "top": 58.813742, - "right": 84.375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 76, - "left": 84.375, - "top": 58.813742, - "right": 85.78125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 76, - "left": 85.78125, - "top": 58.813742, - "right": 87.1875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 76, - "left": 87.1875, - "top": 58.813742, - "right": 88.59375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 76, - "left": 88.59375, - "top": 58.813742, - "right": 90.0, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 76, - "left": 90.0, - "top": 58.813742, - "right": 91.40625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 76, - "left": 91.40625, - "top": 58.813742, - "right": 92.8125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 76, - "left": 92.8125, - "top": 58.813742, - "right": 94.21875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 76, - "left": 94.21875, - "top": 58.813742, - "right": 95.625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 76, - "left": 95.625, - "top": 58.813742, - "right": 97.03125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 76, - "left": 97.03125, - "top": 58.813742, - "right": 98.4375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 76, - "left": 98.4375, - "top": 58.813742, - "right": 99.84375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 76, - "left": 99.84375, - "top": 58.813742, - "right": 101.25, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 76, - "left": 101.25, - "top": 58.813742, - "right": 102.65625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 76, - "left": 102.65625, - "top": 58.813742, - "right": 104.0625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 76, - "left": 104.0625, - "top": 58.813742, - "right": 105.46875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 76, - "left": 105.46875, - "top": 58.813742, - "right": 106.875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 76, - "left": 106.875, - "top": 58.813742, - "right": 108.28125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 76, - "left": 108.28125, - "top": 58.813742, - "right": 109.6875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 76, - "left": 109.6875, - "top": 58.813742, - "right": 111.09375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 76, - "left": 111.09375, - "top": 58.813742, - "right": 112.5, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 76, - "left": 112.5, - "top": 58.813742, - "right": 113.90625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 76, - "left": 113.90625, - "top": 58.813742, - "right": 115.3125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 76, - "left": 115.3125, - "top": 58.813742, - "right": 116.71875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 76, - "left": 116.71875, - "top": 58.813742, - "right": 118.125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 76, - "left": 118.125, - "top": 58.813742, - "right": 119.53125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 76, - "left": 119.53125, - "top": 58.813742, - "right": 120.9375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 76, - "left": 120.9375, - "top": 58.813742, - "right": 122.34375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 76, - "left": 122.34375, - "top": 58.813742, - "right": 123.75, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 76, - "left": 123.75, - "top": 58.813742, - "right": 125.15625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 76, - "left": 125.15625, - "top": 58.813742, - "right": 126.5625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 76, - "left": 126.5625, - "top": 58.813742, - "right": 127.96875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 76, - "left": 127.96875, - "top": 58.813742, - "right": 129.375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 76, - "left": 129.375, - "top": 58.813742, - "right": 130.78125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 76, - "left": 130.78125, - "top": 58.813742, - "right": 132.1875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 76, - "left": 132.1875, - "top": 58.813742, - "right": 133.59375, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 76, - "left": 133.59375, - "top": 58.813742, - "right": 135.0, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 76, - "left": 135.0, - "top": 58.813742, - "right": 136.40625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 76, - "left": 136.40625, - "top": 58.813742, - "right": 137.8125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 76, - "left": 137.8125, - "top": 58.813742, - "right": 139.21875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 76, - "left": 139.21875, - "top": 58.813742, - "right": 140.625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 76, - "left": 140.625, - "top": 58.813742, - "right": 142.03125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 76, - "left": 157.5, - "top": 58.813742, - "right": 158.90625, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 76, - "left": 158.90625, - "top": 58.813742, - "right": 160.3125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 76, - "left": 160.3125, - "top": 58.813742, - "right": 161.71875, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 76, - "left": 161.71875, - "top": 58.813742, - "right": 163.125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 76, - "left": 163.125, - "top": 58.813742, - "right": 164.53125, - "bottom": 58.077876, - "countries": [ - "russia" - ] - }, - { - "x": 148, - "y": 77, - "left": 28.125, - "top": 58.077876, - "right": 29.53125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 77, - "left": 29.53125, - "top": 58.077876, - "right": 30.9375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 77, - "left": 30.9375, - "top": 58.077876, - "right": 32.34375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 77, - "left": 32.34375, - "top": 58.077876, - "right": 33.75, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 77, - "left": 33.75, - "top": 58.077876, - "right": 35.15625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 77, - "left": 35.15625, - "top": 58.077876, - "right": 36.5625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 77, - "left": 36.5625, - "top": 58.077876, - "right": 37.96875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 77, - "left": 37.96875, - "top": 58.077876, - "right": 39.375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 77, - "left": 39.375, - "top": 58.077876, - "right": 40.78125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 77, - "left": 40.78125, - "top": 58.077876, - "right": 42.1875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 77, - "left": 42.1875, - "top": 58.077876, - "right": 43.59375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 77, - "left": 43.59375, - "top": 58.077876, - "right": 45.0, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 77, - "left": 45.0, - "top": 58.077876, - "right": 46.40625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 77, - "left": 46.40625, - "top": 58.077876, - "right": 47.8125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 77, - "left": 47.8125, - "top": 58.077876, - "right": 49.21875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 77, - "left": 49.21875, - "top": 58.077876, - "right": 50.625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 77, - "left": 50.625, - "top": 58.077876, - "right": 52.03125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 77, - "left": 52.03125, - "top": 58.077876, - "right": 53.4375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 77, - "left": 53.4375, - "top": 58.077876, - "right": 54.84375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 77, - "left": 54.84375, - "top": 58.077876, - "right": 56.25, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 77, - "left": 56.25, - "top": 58.077876, - "right": 57.65625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 77, - "left": 57.65625, - "top": 58.077876, - "right": 59.0625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 77, - "left": 59.0625, - "top": 58.077876, - "right": 60.46875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 77, - "left": 60.46875, - "top": 58.077876, - "right": 61.875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 77, - "left": 61.875, - "top": 58.077876, - "right": 63.28125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 77, - "left": 63.28125, - "top": 58.077876, - "right": 64.6875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 77, - "left": 64.6875, - "top": 58.077876, - "right": 66.09375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 77, - "left": 66.09375, - "top": 58.077876, - "right": 67.5, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 77, - "left": 67.5, - "top": 58.077876, - "right": 68.90625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 77, - "left": 68.90625, - "top": 58.077876, - "right": 70.3125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 77, - "left": 70.3125, - "top": 58.077876, - "right": 71.71875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 77, - "left": 71.71875, - "top": 58.077876, - "right": 73.125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 77, - "left": 73.125, - "top": 58.077876, - "right": 74.53125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 77, - "left": 74.53125, - "top": 58.077876, - "right": 75.9375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 77, - "left": 75.9375, - "top": 58.077876, - "right": 77.34375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 77, - "left": 77.34375, - "top": 58.077876, - "right": 78.75, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 77, - "left": 78.75, - "top": 58.077876, - "right": 80.15625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 77, - "left": 80.15625, - "top": 58.077876, - "right": 81.5625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 77, - "left": 81.5625, - "top": 58.077876, - "right": 82.96875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 77, - "left": 82.96875, - "top": 58.077876, - "right": 84.375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 77, - "left": 84.375, - "top": 58.077876, - "right": 85.78125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 77, - "left": 85.78125, - "top": 58.077876, - "right": 87.1875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 77, - "left": 87.1875, - "top": 58.077876, - "right": 88.59375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 77, - "left": 88.59375, - "top": 58.077876, - "right": 90.0, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 77, - "left": 90.0, - "top": 58.077876, - "right": 91.40625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 77, - "left": 91.40625, - "top": 58.077876, - "right": 92.8125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 77, - "left": 92.8125, - "top": 58.077876, - "right": 94.21875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 77, - "left": 94.21875, - "top": 58.077876, - "right": 95.625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 77, - "left": 95.625, - "top": 58.077876, - "right": 97.03125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 77, - "left": 97.03125, - "top": 58.077876, - "right": 98.4375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 77, - "left": 98.4375, - "top": 58.077876, - "right": 99.84375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 77, - "left": 99.84375, - "top": 58.077876, - "right": 101.25, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 77, - "left": 101.25, - "top": 58.077876, - "right": 102.65625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 77, - "left": 102.65625, - "top": 58.077876, - "right": 104.0625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 77, - "left": 104.0625, - "top": 58.077876, - "right": 105.46875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 77, - "left": 105.46875, - "top": 58.077876, - "right": 106.875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 77, - "left": 106.875, - "top": 58.077876, - "right": 108.28125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 77, - "left": 108.28125, - "top": 58.077876, - "right": 109.6875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 77, - "left": 109.6875, - "top": 58.077876, - "right": 111.09375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 77, - "left": 111.09375, - "top": 58.077876, - "right": 112.5, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 77, - "left": 112.5, - "top": 58.077876, - "right": 113.90625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 77, - "left": 113.90625, - "top": 58.077876, - "right": 115.3125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 77, - "left": 115.3125, - "top": 58.077876, - "right": 116.71875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 77, - "left": 116.71875, - "top": 58.077876, - "right": 118.125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 77, - "left": 118.125, - "top": 58.077876, - "right": 119.53125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 77, - "left": 119.53125, - "top": 58.077876, - "right": 120.9375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 77, - "left": 120.9375, - "top": 58.077876, - "right": 122.34375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 77, - "left": 122.34375, - "top": 58.077876, - "right": 123.75, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 77, - "left": 123.75, - "top": 58.077876, - "right": 125.15625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 77, - "left": 125.15625, - "top": 58.077876, - "right": 126.5625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 77, - "left": 126.5625, - "top": 58.077876, - "right": 127.96875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 77, - "left": 127.96875, - "top": 58.077876, - "right": 129.375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 77, - "left": 129.375, - "top": 58.077876, - "right": 130.78125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 77, - "left": 130.78125, - "top": 58.077876, - "right": 132.1875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 77, - "left": 132.1875, - "top": 58.077876, - "right": 133.59375, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 77, - "left": 133.59375, - "top": 58.077876, - "right": 135.0, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 77, - "left": 135.0, - "top": 58.077876, - "right": 136.40625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 77, - "left": 136.40625, - "top": 58.077876, - "right": 137.8125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 77, - "left": 137.8125, - "top": 58.077876, - "right": 139.21875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 77, - "left": 139.21875, - "top": 58.077876, - "right": 140.625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 77, - "left": 156.09375, - "top": 58.077876, - "right": 157.5, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 77, - "left": 157.5, - "top": 58.077876, - "right": 158.90625, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 77, - "left": 158.90625, - "top": 58.077876, - "right": 160.3125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 77, - "left": 160.3125, - "top": 58.077876, - "right": 161.71875, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 77, - "left": 161.71875, - "top": 58.077876, - "right": 163.125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 77, - "left": 163.125, - "top": 58.077876, - "right": 164.53125, - "bottom": 57.326521, - "countries": [ - "russia" - ] - }, - { - "x": 149, - "y": 78, - "left": 29.53125, - "top": 57.326521, - "right": 30.9375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 78, - "left": 30.9375, - "top": 57.326521, - "right": 32.34375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 78, - "left": 32.34375, - "top": 57.326521, - "right": 33.75, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 78, - "left": 33.75, - "top": 57.326521, - "right": 35.15625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 78, - "left": 35.15625, - "top": 57.326521, - "right": 36.5625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 78, - "left": 36.5625, - "top": 57.326521, - "right": 37.96875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 78, - "left": 37.96875, - "top": 57.326521, - "right": 39.375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 78, - "left": 39.375, - "top": 57.326521, - "right": 40.78125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 78, - "left": 40.78125, - "top": 57.326521, - "right": 42.1875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 78, - "left": 42.1875, - "top": 57.326521, - "right": 43.59375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 78, - "left": 43.59375, - "top": 57.326521, - "right": 45.0, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 78, - "left": 45.0, - "top": 57.326521, - "right": 46.40625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 78, - "left": 46.40625, - "top": 57.326521, - "right": 47.8125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 78, - "left": 47.8125, - "top": 57.326521, - "right": 49.21875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 78, - "left": 49.21875, - "top": 57.326521, - "right": 50.625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 78, - "left": 50.625, - "top": 57.326521, - "right": 52.03125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 78, - "left": 52.03125, - "top": 57.326521, - "right": 53.4375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 78, - "left": 53.4375, - "top": 57.326521, - "right": 54.84375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 78, - "left": 54.84375, - "top": 57.326521, - "right": 56.25, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 78, - "left": 56.25, - "top": 57.326521, - "right": 57.65625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 78, - "left": 57.65625, - "top": 57.326521, - "right": 59.0625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 78, - "left": 59.0625, - "top": 57.326521, - "right": 60.46875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 78, - "left": 60.46875, - "top": 57.326521, - "right": 61.875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 78, - "left": 61.875, - "top": 57.326521, - "right": 63.28125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 78, - "left": 63.28125, - "top": 57.326521, - "right": 64.6875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 78, - "left": 64.6875, - "top": 57.326521, - "right": 66.09375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 78, - "left": 66.09375, - "top": 57.326521, - "right": 67.5, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 78, - "left": 67.5, - "top": 57.326521, - "right": 68.90625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 78, - "left": 68.90625, - "top": 57.326521, - "right": 70.3125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 78, - "left": 70.3125, - "top": 57.326521, - "right": 71.71875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 78, - "left": 71.71875, - "top": 57.326521, - "right": 73.125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 78, - "left": 73.125, - "top": 57.326521, - "right": 74.53125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 78, - "left": 74.53125, - "top": 57.326521, - "right": 75.9375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 78, - "left": 75.9375, - "top": 57.326521, - "right": 77.34375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 78, - "left": 77.34375, - "top": 57.326521, - "right": 78.75, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 78, - "left": 78.75, - "top": 57.326521, - "right": 80.15625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 78, - "left": 80.15625, - "top": 57.326521, - "right": 81.5625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 78, - "left": 81.5625, - "top": 57.326521, - "right": 82.96875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 78, - "left": 82.96875, - "top": 57.326521, - "right": 84.375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 78, - "left": 84.375, - "top": 57.326521, - "right": 85.78125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 78, - "left": 85.78125, - "top": 57.326521, - "right": 87.1875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 78, - "left": 87.1875, - "top": 57.326521, - "right": 88.59375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 78, - "left": 88.59375, - "top": 57.326521, - "right": 90.0, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 78, - "left": 90.0, - "top": 57.326521, - "right": 91.40625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 78, - "left": 91.40625, - "top": 57.326521, - "right": 92.8125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 78, - "left": 92.8125, - "top": 57.326521, - "right": 94.21875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 78, - "left": 94.21875, - "top": 57.326521, - "right": 95.625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 78, - "left": 95.625, - "top": 57.326521, - "right": 97.03125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 78, - "left": 97.03125, - "top": 57.326521, - "right": 98.4375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 78, - "left": 98.4375, - "top": 57.326521, - "right": 99.84375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 78, - "left": 99.84375, - "top": 57.326521, - "right": 101.25, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 78, - "left": 101.25, - "top": 57.326521, - "right": 102.65625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 78, - "left": 102.65625, - "top": 57.326521, - "right": 104.0625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 78, - "left": 104.0625, - "top": 57.326521, - "right": 105.46875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 78, - "left": 105.46875, - "top": 57.326521, - "right": 106.875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 78, - "left": 106.875, - "top": 57.326521, - "right": 108.28125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 78, - "left": 108.28125, - "top": 57.326521, - "right": 109.6875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 78, - "left": 109.6875, - "top": 57.326521, - "right": 111.09375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 78, - "left": 111.09375, - "top": 57.326521, - "right": 112.5, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 78, - "left": 112.5, - "top": 57.326521, - "right": 113.90625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 78, - "left": 113.90625, - "top": 57.326521, - "right": 115.3125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 78, - "left": 115.3125, - "top": 57.326521, - "right": 116.71875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 78, - "left": 116.71875, - "top": 57.326521, - "right": 118.125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 78, - "left": 118.125, - "top": 57.326521, - "right": 119.53125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 78, - "left": 119.53125, - "top": 57.326521, - "right": 120.9375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 78, - "left": 120.9375, - "top": 57.326521, - "right": 122.34375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 78, - "left": 122.34375, - "top": 57.326521, - "right": 123.75, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 78, - "left": 123.75, - "top": 57.326521, - "right": 125.15625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 78, - "left": 125.15625, - "top": 57.326521, - "right": 126.5625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 78, - "left": 126.5625, - "top": 57.326521, - "right": 127.96875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 78, - "left": 127.96875, - "top": 57.326521, - "right": 129.375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 78, - "left": 129.375, - "top": 57.326521, - "right": 130.78125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 78, - "left": 130.78125, - "top": 57.326521, - "right": 132.1875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 78, - "left": 132.1875, - "top": 57.326521, - "right": 133.59375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 78, - "left": 133.59375, - "top": 57.326521, - "right": 135.0, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 78, - "left": 135.0, - "top": 57.326521, - "right": 136.40625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 78, - "left": 136.40625, - "top": 57.326521, - "right": 137.8125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 78, - "left": 137.8125, - "top": 57.326521, - "right": 139.21875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 78, - "left": 139.21875, - "top": 57.326521, - "right": 140.625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 78, - "left": 154.6875, - "top": 57.326521, - "right": 156.09375, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 78, - "left": 156.09375, - "top": 57.326521, - "right": 157.5, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 78, - "left": 157.5, - "top": 57.326521, - "right": 158.90625, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 78, - "left": 158.90625, - "top": 57.326521, - "right": 160.3125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 78, - "left": 160.3125, - "top": 57.326521, - "right": 161.71875, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 78, - "left": 161.71875, - "top": 57.326521, - "right": 163.125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 78, - "left": 163.125, - "top": 57.326521, - "right": 164.53125, - "bottom": 56.559482, - "countries": [ - "russia" - ] - }, - { - "x": 150, - "y": 79, - "left": 30.9375, - "top": 56.559482, - "right": 32.34375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 79, - "left": 32.34375, - "top": 56.559482, - "right": 33.75, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 79, - "left": 33.75, - "top": 56.559482, - "right": 35.15625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 79, - "left": 35.15625, - "top": 56.559482, - "right": 36.5625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 79, - "left": 36.5625, - "top": 56.559482, - "right": 37.96875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 79, - "left": 37.96875, - "top": 56.559482, - "right": 39.375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 79, - "left": 39.375, - "top": 56.559482, - "right": 40.78125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 79, - "left": 40.78125, - "top": 56.559482, - "right": 42.1875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 79, - "left": 42.1875, - "top": 56.559482, - "right": 43.59375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 79, - "left": 43.59375, - "top": 56.559482, - "right": 45.0, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 79, - "left": 45.0, - "top": 56.559482, - "right": 46.40625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 79, - "left": 46.40625, - "top": 56.559482, - "right": 47.8125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 79, - "left": 47.8125, - "top": 56.559482, - "right": 49.21875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 79, - "left": 49.21875, - "top": 56.559482, - "right": 50.625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 79, - "left": 50.625, - "top": 56.559482, - "right": 52.03125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 79, - "left": 52.03125, - "top": 56.559482, - "right": 53.4375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 79, - "left": 53.4375, - "top": 56.559482, - "right": 54.84375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 79, - "left": 54.84375, - "top": 56.559482, - "right": 56.25, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 79, - "left": 56.25, - "top": 56.559482, - "right": 57.65625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 79, - "left": 57.65625, - "top": 56.559482, - "right": 59.0625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 79, - "left": 59.0625, - "top": 56.559482, - "right": 60.46875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 79, - "left": 60.46875, - "top": 56.559482, - "right": 61.875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 79, - "left": 61.875, - "top": 56.559482, - "right": 63.28125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 79, - "left": 63.28125, - "top": 56.559482, - "right": 64.6875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 79, - "left": 64.6875, - "top": 56.559482, - "right": 66.09375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 79, - "left": 66.09375, - "top": 56.559482, - "right": 67.5, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 176, - "y": 79, - "left": 67.5, - "top": 56.559482, - "right": 68.90625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 177, - "y": 79, - "left": 68.90625, - "top": 56.559482, - "right": 70.3125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 178, - "y": 79, - "left": 70.3125, - "top": 56.559482, - "right": 71.71875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 79, - "left": 71.71875, - "top": 56.559482, - "right": 73.125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 79, - "left": 73.125, - "top": 56.559482, - "right": 74.53125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 79, - "left": 74.53125, - "top": 56.559482, - "right": 75.9375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 79, - "left": 75.9375, - "top": 56.559482, - "right": 77.34375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 79, - "left": 77.34375, - "top": 56.559482, - "right": 78.75, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 79, - "left": 78.75, - "top": 56.559482, - "right": 80.15625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 79, - "left": 80.15625, - "top": 56.559482, - "right": 81.5625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 79, - "left": 81.5625, - "top": 56.559482, - "right": 82.96875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 79, - "left": 82.96875, - "top": 56.559482, - "right": 84.375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 79, - "left": 84.375, - "top": 56.559482, - "right": 85.78125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 79, - "left": 85.78125, - "top": 56.559482, - "right": 87.1875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 79, - "left": 87.1875, - "top": 56.559482, - "right": 88.59375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 79, - "left": 88.59375, - "top": 56.559482, - "right": 90.0, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 79, - "left": 90.0, - "top": 56.559482, - "right": 91.40625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 79, - "left": 91.40625, - "top": 56.559482, - "right": 92.8125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 79, - "left": 92.8125, - "top": 56.559482, - "right": 94.21875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 79, - "left": 94.21875, - "top": 56.559482, - "right": 95.625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 79, - "left": 95.625, - "top": 56.559482, - "right": 97.03125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 79, - "left": 97.03125, - "top": 56.559482, - "right": 98.4375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 79, - "left": 98.4375, - "top": 56.559482, - "right": 99.84375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 79, - "left": 99.84375, - "top": 56.559482, - "right": 101.25, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 79, - "left": 101.25, - "top": 56.559482, - "right": 102.65625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 79, - "left": 102.65625, - "top": 56.559482, - "right": 104.0625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 79, - "left": 104.0625, - "top": 56.559482, - "right": 105.46875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 79, - "left": 105.46875, - "top": 56.559482, - "right": 106.875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 79, - "left": 106.875, - "top": 56.559482, - "right": 108.28125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 79, - "left": 108.28125, - "top": 56.559482, - "right": 109.6875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 79, - "left": 109.6875, - "top": 56.559482, - "right": 111.09375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 79, - "left": 111.09375, - "top": 56.559482, - "right": 112.5, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 79, - "left": 112.5, - "top": 56.559482, - "right": 113.90625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 79, - "left": 113.90625, - "top": 56.559482, - "right": 115.3125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 79, - "left": 115.3125, - "top": 56.559482, - "right": 116.71875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 79, - "left": 116.71875, - "top": 56.559482, - "right": 118.125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 79, - "left": 118.125, - "top": 56.559482, - "right": 119.53125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 79, - "left": 119.53125, - "top": 56.559482, - "right": 120.9375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 79, - "left": 120.9375, - "top": 56.559482, - "right": 122.34375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 79, - "left": 122.34375, - "top": 56.559482, - "right": 123.75, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 79, - "left": 123.75, - "top": 56.559482, - "right": 125.15625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 79, - "left": 125.15625, - "top": 56.559482, - "right": 126.5625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 79, - "left": 126.5625, - "top": 56.559482, - "right": 127.96875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 79, - "left": 127.96875, - "top": 56.559482, - "right": 129.375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 79, - "left": 129.375, - "top": 56.559482, - "right": 130.78125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 79, - "left": 130.78125, - "top": 56.559482, - "right": 132.1875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 79, - "left": 132.1875, - "top": 56.559482, - "right": 133.59375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 79, - "left": 133.59375, - "top": 56.559482, - "right": 135.0, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 79, - "left": 135.0, - "top": 56.559482, - "right": 136.40625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 79, - "left": 136.40625, - "top": 56.559482, - "right": 137.8125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 79, - "left": 137.8125, - "top": 56.559482, - "right": 139.21875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 79, - "left": 142.03125, - "top": 56.559482, - "right": 143.4375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 79, - "left": 154.6875, - "top": 56.559482, - "right": 156.09375, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 79, - "left": 156.09375, - "top": 56.559482, - "right": 157.5, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 79, - "left": 157.5, - "top": 56.559482, - "right": 158.90625, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 79, - "left": 158.90625, - "top": 56.559482, - "right": 160.3125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 79, - "left": 160.3125, - "top": 56.559482, - "right": 161.71875, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 79, - "left": 161.71875, - "top": 56.559482, - "right": 163.125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 244, - "y": 79, - "left": 163.125, - "top": 56.559482, - "right": 164.53125, - "bottom": 55.776573, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 80, - "left": 32.34375, - "top": 55.776573, - "right": 33.75, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 80, - "left": 33.75, - "top": 55.776573, - "right": 35.15625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 80, - "left": 35.15625, - "top": 55.776573, - "right": 36.5625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 80, - "left": 36.5625, - "top": 55.776573, - "right": 37.96875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 80, - "left": 37.96875, - "top": 55.776573, - "right": 39.375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 80, - "left": 39.375, - "top": 55.776573, - "right": 40.78125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 80, - "left": 40.78125, - "top": 55.776573, - "right": 42.1875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 80, - "left": 42.1875, - "top": 55.776573, - "right": 43.59375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 80, - "left": 43.59375, - "top": 55.776573, - "right": 45.0, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 80, - "left": 45.0, - "top": 55.776573, - "right": 46.40625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 80, - "left": 46.40625, - "top": 55.776573, - "right": 47.8125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 80, - "left": 47.8125, - "top": 55.776573, - "right": 49.21875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 80, - "left": 49.21875, - "top": 55.776573, - "right": 50.625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 80, - "left": 50.625, - "top": 55.776573, - "right": 52.03125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 80, - "left": 52.03125, - "top": 55.776573, - "right": 53.4375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 80, - "left": 53.4375, - "top": 55.776573, - "right": 54.84375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 80, - "left": 54.84375, - "top": 55.776573, - "right": 56.25, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 80, - "left": 56.25, - "top": 55.776573, - "right": 57.65625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 80, - "left": 57.65625, - "top": 55.776573, - "right": 59.0625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 80, - "left": 59.0625, - "top": 55.776573, - "right": 60.46875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 80, - "left": 60.46875, - "top": 55.776573, - "right": 61.875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 172, - "y": 80, - "left": 61.875, - "top": 55.776573, - "right": 63.28125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 173, - "y": 80, - "left": 63.28125, - "top": 55.776573, - "right": 64.6875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 174, - "y": 80, - "left": 64.6875, - "top": 55.776573, - "right": 66.09375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 175, - "y": 80, - "left": 66.09375, - "top": 55.776573, - "right": 67.5, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 179, - "y": 80, - "left": 71.71875, - "top": 55.776573, - "right": 73.125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 80, - "left": 73.125, - "top": 55.776573, - "right": 74.53125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 181, - "y": 80, - "left": 74.53125, - "top": 55.776573, - "right": 75.9375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 182, - "y": 80, - "left": 75.9375, - "top": 55.776573, - "right": 77.34375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 80, - "left": 77.34375, - "top": 55.776573, - "right": 78.75, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 80, - "left": 78.75, - "top": 55.776573, - "right": 80.15625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 80, - "left": 80.15625, - "top": 55.776573, - "right": 81.5625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 80, - "left": 81.5625, - "top": 55.776573, - "right": 82.96875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 80, - "left": 82.96875, - "top": 55.776573, - "right": 84.375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 80, - "left": 84.375, - "top": 55.776573, - "right": 85.78125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 80, - "left": 85.78125, - "top": 55.776573, - "right": 87.1875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 80, - "left": 87.1875, - "top": 55.776573, - "right": 88.59375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 80, - "left": 88.59375, - "top": 55.776573, - "right": 90.0, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 80, - "left": 90.0, - "top": 55.776573, - "right": 91.40625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 80, - "left": 91.40625, - "top": 55.776573, - "right": 92.8125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 80, - "left": 92.8125, - "top": 55.776573, - "right": 94.21875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 80, - "left": 94.21875, - "top": 55.776573, - "right": 95.625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 80, - "left": 95.625, - "top": 55.776573, - "right": 97.03125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 80, - "left": 97.03125, - "top": 55.776573, - "right": 98.4375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 80, - "left": 98.4375, - "top": 55.776573, - "right": 99.84375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 80, - "left": 99.84375, - "top": 55.776573, - "right": 101.25, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 80, - "left": 101.25, - "top": 55.776573, - "right": 102.65625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 80, - "left": 102.65625, - "top": 55.776573, - "right": 104.0625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 80, - "left": 104.0625, - "top": 55.776573, - "right": 105.46875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 80, - "left": 105.46875, - "top": 55.776573, - "right": 106.875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 80, - "left": 106.875, - "top": 55.776573, - "right": 108.28125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 80, - "left": 108.28125, - "top": 55.776573, - "right": 109.6875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 80, - "left": 109.6875, - "top": 55.776573, - "right": 111.09375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 80, - "left": 111.09375, - "top": 55.776573, - "right": 112.5, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 80, - "left": 112.5, - "top": 55.776573, - "right": 113.90625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 80, - "left": 113.90625, - "top": 55.776573, - "right": 115.3125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 80, - "left": 115.3125, - "top": 55.776573, - "right": 116.71875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 80, - "left": 116.71875, - "top": 55.776573, - "right": 118.125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 80, - "left": 118.125, - "top": 55.776573, - "right": 119.53125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 80, - "left": 119.53125, - "top": 55.776573, - "right": 120.9375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 80, - "left": 120.9375, - "top": 55.776573, - "right": 122.34375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 80, - "left": 122.34375, - "top": 55.776573, - "right": 123.75, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 80, - "left": 123.75, - "top": 55.776573, - "right": 125.15625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 80, - "left": 125.15625, - "top": 55.776573, - "right": 126.5625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 80, - "left": 126.5625, - "top": 55.776573, - "right": 127.96875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 80, - "left": 127.96875, - "top": 55.776573, - "right": 129.375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 80, - "left": 129.375, - "top": 55.776573, - "right": 130.78125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 80, - "left": 130.78125, - "top": 55.776573, - "right": 132.1875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 80, - "left": 132.1875, - "top": 55.776573, - "right": 133.59375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 80, - "left": 133.59375, - "top": 55.776573, - "right": 135.0, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 80, - "left": 135.0, - "top": 55.776573, - "right": 136.40625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 80, - "left": 136.40625, - "top": 55.776573, - "right": 137.8125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 80, - "left": 137.8125, - "top": 55.776573, - "right": 139.21875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 80, - "left": 154.6875, - "top": 55.776573, - "right": 156.09375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 80, - "left": 156.09375, - "top": 55.776573, - "right": 157.5, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 80, - "left": 157.5, - "top": 55.776573, - "right": 158.90625, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 80, - "left": 158.90625, - "top": 55.776573, - "right": 160.3125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 80, - "left": 160.3125, - "top": 55.776573, - "right": 161.71875, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 80, - "left": 161.71875, - "top": 55.776573, - "right": 163.125, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 245, - "y": 80, - "left": 164.53125, - "top": 55.776573, - "right": 165.9375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 80, - "left": 165.9375, - "top": 55.776573, - "right": 167.34375, - "bottom": 54.977614, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 81, - "left": 32.34375, - "top": 54.977614, - "right": 33.75, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 81, - "left": 33.75, - "top": 54.977614, - "right": 35.15625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 81, - "left": 35.15625, - "top": 54.977614, - "right": 36.5625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 81, - "left": 36.5625, - "top": 54.977614, - "right": 37.96875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 81, - "left": 37.96875, - "top": 54.977614, - "right": 39.375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 81, - "left": 39.375, - "top": 54.977614, - "right": 40.78125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 81, - "left": 40.78125, - "top": 54.977614, - "right": 42.1875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 81, - "left": 42.1875, - "top": 54.977614, - "right": 43.59375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 81, - "left": 43.59375, - "top": 54.977614, - "right": 45.0, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 81, - "left": 45.0, - "top": 54.977614, - "right": 46.40625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 81, - "left": 46.40625, - "top": 54.977614, - "right": 47.8125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 81, - "left": 47.8125, - "top": 54.977614, - "right": 49.21875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 81, - "left": 49.21875, - "top": 54.977614, - "right": 50.625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 81, - "left": 50.625, - "top": 54.977614, - "right": 52.03125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 81, - "left": 52.03125, - "top": 54.977614, - "right": 53.4375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 81, - "left": 53.4375, - "top": 54.977614, - "right": 54.84375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 81, - "left": 54.84375, - "top": 54.977614, - "right": 56.25, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 81, - "left": 56.25, - "top": 54.977614, - "right": 57.65625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 81, - "left": 57.65625, - "top": 54.977614, - "right": 59.0625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 81, - "left": 59.0625, - "top": 54.977614, - "right": 60.46875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 171, - "y": 81, - "left": 60.46875, - "top": 54.977614, - "right": 61.875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 180, - "y": 81, - "left": 73.125, - "top": 54.977614, - "right": 74.53125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 183, - "y": 81, - "left": 77.34375, - "top": 54.977614, - "right": 78.75, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 81, - "left": 78.75, - "top": 54.977614, - "right": 80.15625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 81, - "left": 80.15625, - "top": 54.977614, - "right": 81.5625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 81, - "left": 81.5625, - "top": 54.977614, - "right": 82.96875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 81, - "left": 82.96875, - "top": 54.977614, - "right": 84.375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 81, - "left": 84.375, - "top": 54.977614, - "right": 85.78125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 81, - "left": 85.78125, - "top": 54.977614, - "right": 87.1875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 81, - "left": 87.1875, - "top": 54.977614, - "right": 88.59375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 81, - "left": 88.59375, - "top": 54.977614, - "right": 90.0, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 81, - "left": 90.0, - "top": 54.977614, - "right": 91.40625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 81, - "left": 91.40625, - "top": 54.977614, - "right": 92.8125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 81, - "left": 92.8125, - "top": 54.977614, - "right": 94.21875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 81, - "left": 94.21875, - "top": 54.977614, - "right": 95.625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 81, - "left": 95.625, - "top": 54.977614, - "right": 97.03125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 81, - "left": 97.03125, - "top": 54.977614, - "right": 98.4375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 81, - "left": 98.4375, - "top": 54.977614, - "right": 99.84375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 81, - "left": 99.84375, - "top": 54.977614, - "right": 101.25, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 81, - "left": 101.25, - "top": 54.977614, - "right": 102.65625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 81, - "left": 102.65625, - "top": 54.977614, - "right": 104.0625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 81, - "left": 104.0625, - "top": 54.977614, - "right": 105.46875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 81, - "left": 105.46875, - "top": 54.977614, - "right": 106.875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 81, - "left": 106.875, - "top": 54.977614, - "right": 108.28125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 81, - "left": 108.28125, - "top": 54.977614, - "right": 109.6875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 81, - "left": 109.6875, - "top": 54.977614, - "right": 111.09375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 81, - "left": 111.09375, - "top": 54.977614, - "right": 112.5, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 81, - "left": 112.5, - "top": 54.977614, - "right": 113.90625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 81, - "left": 113.90625, - "top": 54.977614, - "right": 115.3125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 81, - "left": 115.3125, - "top": 54.977614, - "right": 116.71875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 81, - "left": 116.71875, - "top": 54.977614, - "right": 118.125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 81, - "left": 118.125, - "top": 54.977614, - "right": 119.53125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 81, - "left": 119.53125, - "top": 54.977614, - "right": 120.9375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 214, - "y": 81, - "left": 120.9375, - "top": 54.977614, - "right": 122.34375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 215, - "y": 81, - "left": 122.34375, - "top": 54.977614, - "right": 123.75, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 216, - "y": 81, - "left": 123.75, - "top": 54.977614, - "right": 125.15625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 81, - "left": 125.15625, - "top": 54.977614, - "right": 126.5625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 81, - "left": 126.5625, - "top": 54.977614, - "right": 127.96875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 81, - "left": 127.96875, - "top": 54.977614, - "right": 129.375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 81, - "left": 129.375, - "top": 54.977614, - "right": 130.78125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 81, - "left": 130.78125, - "top": 54.977614, - "right": 132.1875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 81, - "left": 132.1875, - "top": 54.977614, - "right": 133.59375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 81, - "left": 133.59375, - "top": 54.977614, - "right": 135.0, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 81, - "left": 135.0, - "top": 54.977614, - "right": 136.40625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 81, - "left": 136.40625, - "top": 54.977614, - "right": 137.8125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 81, - "left": 137.8125, - "top": 54.977614, - "right": 139.21875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 81, - "left": 139.21875, - "top": 54.977614, - "right": 140.625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 81, - "left": 142.03125, - "top": 54.977614, - "right": 143.4375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 81, - "left": 154.6875, - "top": 54.977614, - "right": 156.09375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 81, - "left": 156.09375, - "top": 54.977614, - "right": 157.5, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 81, - "left": 157.5, - "top": 54.977614, - "right": 158.90625, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 81, - "left": 158.90625, - "top": 54.977614, - "right": 160.3125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 242, - "y": 81, - "left": 160.3125, - "top": 54.977614, - "right": 161.71875, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 243, - "y": 81, - "left": 161.71875, - "top": 54.977614, - "right": 163.125, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 246, - "y": 81, - "left": 165.9375, - "top": 54.977614, - "right": 167.34375, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 247, - "y": 81, - "left": 167.34375, - "top": 54.977614, - "right": 168.75, - "bottom": 54.162434, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 82, - "left": 33.75, - "top": 54.162434, - "right": 35.15625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 82, - "left": 35.15625, - "top": 54.162434, - "right": 36.5625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 82, - "left": 36.5625, - "top": 54.162434, - "right": 37.96875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 82, - "left": 37.96875, - "top": 54.162434, - "right": 39.375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 82, - "left": 39.375, - "top": 54.162434, - "right": 40.78125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 82, - "left": 40.78125, - "top": 54.162434, - "right": 42.1875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 82, - "left": 42.1875, - "top": 54.162434, - "right": 43.59375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 82, - "left": 43.59375, - "top": 54.162434, - "right": 45.0, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 82, - "left": 45.0, - "top": 54.162434, - "right": 46.40625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 82, - "left": 46.40625, - "top": 54.162434, - "right": 47.8125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 82, - "left": 47.8125, - "top": 54.162434, - "right": 49.21875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 82, - "left": 49.21875, - "top": 54.162434, - "right": 50.625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 82, - "left": 50.625, - "top": 54.162434, - "right": 52.03125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 82, - "left": 52.03125, - "top": 54.162434, - "right": 53.4375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 82, - "left": 53.4375, - "top": 54.162434, - "right": 54.84375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 82, - "left": 54.84375, - "top": 54.162434, - "right": 56.25, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 82, - "left": 56.25, - "top": 54.162434, - "right": 57.65625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 82, - "left": 57.65625, - "top": 54.162434, - "right": 59.0625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 82, - "left": 59.0625, - "top": 54.162434, - "right": 60.46875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 82, - "left": 78.75, - "top": 54.162434, - "right": 80.15625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 82, - "left": 80.15625, - "top": 54.162434, - "right": 81.5625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 82, - "left": 81.5625, - "top": 54.162434, - "right": 82.96875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 82, - "left": 82.96875, - "top": 54.162434, - "right": 84.375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 82, - "left": 84.375, - "top": 54.162434, - "right": 85.78125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 82, - "left": 85.78125, - "top": 54.162434, - "right": 87.1875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 82, - "left": 87.1875, - "top": 54.162434, - "right": 88.59375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 82, - "left": 88.59375, - "top": 54.162434, - "right": 90.0, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 82, - "left": 90.0, - "top": 54.162434, - "right": 91.40625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 82, - "left": 91.40625, - "top": 54.162434, - "right": 92.8125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 82, - "left": 92.8125, - "top": 54.162434, - "right": 94.21875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 82, - "left": 94.21875, - "top": 54.162434, - "right": 95.625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 82, - "left": 95.625, - "top": 54.162434, - "right": 97.03125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 82, - "left": 97.03125, - "top": 54.162434, - "right": 98.4375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 82, - "left": 98.4375, - "top": 54.162434, - "right": 99.84375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 82, - "left": 99.84375, - "top": 54.162434, - "right": 101.25, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 82, - "left": 101.25, - "top": 54.162434, - "right": 102.65625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 82, - "left": 102.65625, - "top": 54.162434, - "right": 104.0625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 82, - "left": 104.0625, - "top": 54.162434, - "right": 105.46875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 82, - "left": 105.46875, - "top": 54.162434, - "right": 106.875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 82, - "left": 106.875, - "top": 54.162434, - "right": 108.28125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 82, - "left": 108.28125, - "top": 54.162434, - "right": 109.6875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 82, - "left": 109.6875, - "top": 54.162434, - "right": 111.09375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 82, - "left": 111.09375, - "top": 54.162434, - "right": 112.5, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 82, - "left": 112.5, - "top": 54.162434, - "right": 113.90625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 82, - "left": 113.90625, - "top": 54.162434, - "right": 115.3125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 82, - "left": 115.3125, - "top": 54.162434, - "right": 116.71875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 82, - "left": 116.71875, - "top": 54.162434, - "right": 118.125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 82, - "left": 118.125, - "top": 54.162434, - "right": 119.53125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 213, - "y": 82, - "left": 119.53125, - "top": 54.162434, - "right": 120.9375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 217, - "y": 82, - "left": 125.15625, - "top": 54.162434, - "right": 126.5625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 82, - "left": 126.5625, - "top": 54.162434, - "right": 127.96875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 82, - "left": 127.96875, - "top": 54.162434, - "right": 129.375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 82, - "left": 129.375, - "top": 54.162434, - "right": 130.78125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 82, - "left": 130.78125, - "top": 54.162434, - "right": 132.1875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 82, - "left": 132.1875, - "top": 54.162434, - "right": 133.59375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 82, - "left": 133.59375, - "top": 54.162434, - "right": 135.0, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 82, - "left": 135.0, - "top": 54.162434, - "right": 136.40625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 82, - "left": 136.40625, - "top": 54.162434, - "right": 137.8125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 82, - "left": 137.8125, - "top": 54.162434, - "right": 139.21875, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 82, - "left": 139.21875, - "top": 54.162434, - "right": 140.625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 82, - "left": 140.625, - "top": 54.162434, - "right": 142.03125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 82, - "left": 142.03125, - "top": 54.162434, - "right": 143.4375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 82, - "left": 154.6875, - "top": 54.162434, - "right": 156.09375, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 82, - "left": 156.09375, - "top": 54.162434, - "right": 157.5, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 82, - "left": 157.5, - "top": 54.162434, - "right": 158.90625, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 82, - "left": 158.90625, - "top": 54.162434, - "right": 160.3125, - "bottom": 53.330873, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 83, - "left": 33.75, - "top": 53.330873, - "right": 35.15625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 83, - "left": 35.15625, - "top": 53.330873, - "right": 36.5625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 83, - "left": 36.5625, - "top": 53.330873, - "right": 37.96875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 83, - "left": 37.96875, - "top": 53.330873, - "right": 39.375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 83, - "left": 39.375, - "top": 53.330873, - "right": 40.78125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 83, - "left": 40.78125, - "top": 53.330873, - "right": 42.1875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 83, - "left": 42.1875, - "top": 53.330873, - "right": 43.59375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 83, - "left": 43.59375, - "top": 53.330873, - "right": 45.0, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 83, - "left": 45.0, - "top": 53.330873, - "right": 46.40625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 83, - "left": 46.40625, - "top": 53.330873, - "right": 47.8125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 83, - "left": 47.8125, - "top": 53.330873, - "right": 49.21875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 83, - "left": 49.21875, - "top": 53.330873, - "right": 50.625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 164, - "y": 83, - "left": 50.625, - "top": 53.330873, - "right": 52.03125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 165, - "y": 83, - "left": 52.03125, - "top": 53.330873, - "right": 53.4375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 83, - "left": 53.4375, - "top": 53.330873, - "right": 54.84375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 83, - "left": 54.84375, - "top": 53.330873, - "right": 56.25, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 83, - "left": 56.25, - "top": 53.330873, - "right": 57.65625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 83, - "left": 57.65625, - "top": 53.330873, - "right": 59.0625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 170, - "y": 83, - "left": 59.0625, - "top": 53.330873, - "right": 60.46875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 184, - "y": 83, - "left": 78.75, - "top": 53.330873, - "right": 80.15625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 83, - "left": 80.15625, - "top": 53.330873, - "right": 81.5625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 83, - "left": 81.5625, - "top": 53.330873, - "right": 82.96875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 83, - "left": 82.96875, - "top": 53.330873, - "right": 84.375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 83, - "left": 84.375, - "top": 53.330873, - "right": 85.78125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 83, - "left": 85.78125, - "top": 53.330873, - "right": 87.1875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 83, - "left": 87.1875, - "top": 53.330873, - "right": 88.59375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 83, - "left": 88.59375, - "top": 53.330873, - "right": 90.0, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 83, - "left": 90.0, - "top": 53.330873, - "right": 91.40625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 83, - "left": 91.40625, - "top": 53.330873, - "right": 92.8125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 83, - "left": 92.8125, - "top": 53.330873, - "right": 94.21875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 83, - "left": 94.21875, - "top": 53.330873, - "right": 95.625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 83, - "left": 95.625, - "top": 53.330873, - "right": 97.03125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 197, - "y": 83, - "left": 97.03125, - "top": 53.330873, - "right": 98.4375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 198, - "y": 83, - "left": 98.4375, - "top": 53.330873, - "right": 99.84375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 199, - "y": 83, - "left": 99.84375, - "top": 53.330873, - "right": 101.25, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 83, - "left": 101.25, - "top": 53.330873, - "right": 102.65625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 83, - "left": 102.65625, - "top": 53.330873, - "right": 104.0625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 83, - "left": 104.0625, - "top": 53.330873, - "right": 105.46875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 83, - "left": 105.46875, - "top": 53.330873, - "right": 106.875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 83, - "left": 106.875, - "top": 53.330873, - "right": 108.28125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 83, - "left": 108.28125, - "top": 53.330873, - "right": 109.6875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 83, - "left": 109.6875, - "top": 53.330873, - "right": 111.09375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 83, - "left": 111.09375, - "top": 53.330873, - "right": 112.5, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 83, - "left": 112.5, - "top": 53.330873, - "right": 113.90625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 83, - "left": 113.90625, - "top": 53.330873, - "right": 115.3125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 83, - "left": 115.3125, - "top": 53.330873, - "right": 116.71875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 83, - "left": 116.71875, - "top": 53.330873, - "right": 118.125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 83, - "left": 118.125, - "top": 53.330873, - "right": 119.53125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 218, - "y": 83, - "left": 126.5625, - "top": 53.330873, - "right": 127.96875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 83, - "left": 127.96875, - "top": 53.330873, - "right": 129.375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 83, - "left": 129.375, - "top": 53.330873, - "right": 130.78125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 83, - "left": 130.78125, - "top": 53.330873, - "right": 132.1875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 83, - "left": 132.1875, - "top": 53.330873, - "right": 133.59375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 83, - "left": 133.59375, - "top": 53.330873, - "right": 135.0, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 83, - "left": 135.0, - "top": 53.330873, - "right": 136.40625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 83, - "left": 136.40625, - "top": 53.330873, - "right": 137.8125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 83, - "left": 137.8125, - "top": 53.330873, - "right": 139.21875, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 83, - "left": 139.21875, - "top": 53.330873, - "right": 140.625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 83, - "left": 140.625, - "top": 53.330873, - "right": 142.03125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 83, - "left": 142.03125, - "top": 53.330873, - "right": 143.4375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 83, - "left": 154.6875, - "top": 53.330873, - "right": 156.09375, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 83, - "left": 156.09375, - "top": 53.330873, - "right": 157.5, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 83, - "left": 157.5, - "top": 53.330873, - "right": 158.90625, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 241, - "y": 83, - "left": 158.90625, - "top": 53.330873, - "right": 160.3125, - "bottom": 52.48278, - "countries": [ - "russia" - ] - }, - { - "x": 151, - "y": 84, - "left": 32.34375, - "top": 52.48278, - "right": 33.75, - "bottom": 51.618017, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 152, - "y": 84, - "left": 33.75, - "top": 52.48278, - "right": 35.15625, - "bottom": 51.618017, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 153, - "y": 84, - "left": 35.15625, - "top": 52.48278, - "right": 36.5625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 84, - "left": 36.5625, - "top": 52.48278, - "right": 37.96875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 84, - "left": 37.96875, - "top": 52.48278, - "right": 39.375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 84, - "left": 39.375, - "top": 52.48278, - "right": 40.78125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 84, - "left": 40.78125, - "top": 52.48278, - "right": 42.1875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 84, - "left": 42.1875, - "top": 52.48278, - "right": 43.59375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 84, - "left": 43.59375, - "top": 52.48278, - "right": 45.0, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 84, - "left": 45.0, - "top": 52.48278, - "right": 46.40625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 84, - "left": 46.40625, - "top": 52.48278, - "right": 47.8125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 84, - "left": 47.8125, - "top": 52.48278, - "right": 49.21875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 166, - "y": 84, - "left": 53.4375, - "top": 52.48278, - "right": 54.84375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 167, - "y": 84, - "left": 54.84375, - "top": 52.48278, - "right": 56.25, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 168, - "y": 84, - "left": 56.25, - "top": 52.48278, - "right": 57.65625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 169, - "y": 84, - "left": 57.65625, - "top": 52.48278, - "right": 59.0625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 185, - "y": 84, - "left": 80.15625, - "top": 52.48278, - "right": 81.5625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 186, - "y": 84, - "left": 81.5625, - "top": 52.48278, - "right": 82.96875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 187, - "y": 84, - "left": 82.96875, - "top": 52.48278, - "right": 84.375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 84, - "left": 84.375, - "top": 52.48278, - "right": 85.78125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 84, - "left": 85.78125, - "top": 52.48278, - "right": 87.1875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 84, - "left": 87.1875, - "top": 52.48278, - "right": 88.59375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 84, - "left": 88.59375, - "top": 52.48278, - "right": 90.0, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 84, - "left": 90.0, - "top": 52.48278, - "right": 91.40625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 193, - "y": 84, - "left": 91.40625, - "top": 52.48278, - "right": 92.8125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 194, - "y": 84, - "left": 92.8125, - "top": 52.48278, - "right": 94.21875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 84, - "left": 94.21875, - "top": 52.48278, - "right": 95.625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 84, - "left": 95.625, - "top": 52.48278, - "right": 97.03125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 200, - "y": 84, - "left": 101.25, - "top": 52.48278, - "right": 102.65625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 84, - "left": 102.65625, - "top": 52.48278, - "right": 104.0625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 84, - "left": 104.0625, - "top": 52.48278, - "right": 105.46875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 84, - "left": 105.46875, - "top": 52.48278, - "right": 106.875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 84, - "left": 106.875, - "top": 52.48278, - "right": 108.28125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 84, - "left": 108.28125, - "top": 52.48278, - "right": 109.6875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 84, - "left": 109.6875, - "top": 52.48278, - "right": 111.09375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 84, - "left": 111.09375, - "top": 52.48278, - "right": 112.5, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 84, - "left": 112.5, - "top": 52.48278, - "right": 113.90625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 84, - "left": 113.90625, - "top": 52.48278, - "right": 115.3125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 84, - "left": 115.3125, - "top": 52.48278, - "right": 116.71875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 84, - "left": 116.71875, - "top": 52.48278, - "right": 118.125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 212, - "y": 84, - "left": 118.125, - "top": 52.48278, - "right": 119.53125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 84, - "left": 127.96875, - "top": 52.48278, - "right": 129.375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 84, - "left": 129.375, - "top": 52.48278, - "right": 130.78125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 84, - "left": 130.78125, - "top": 52.48278, - "right": 132.1875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 84, - "left": 132.1875, - "top": 52.48278, - "right": 133.59375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 84, - "left": 133.59375, - "top": 52.48278, - "right": 135.0, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 84, - "left": 135.0, - "top": 52.48278, - "right": 136.40625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 84, - "left": 136.40625, - "top": 52.48278, - "right": 137.8125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 84, - "left": 137.8125, - "top": 52.48278, - "right": 139.21875, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 84, - "left": 139.21875, - "top": 52.48278, - "right": 140.625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 84, - "left": 140.625, - "top": 52.48278, - "right": 142.03125, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 84, - "left": 142.03125, - "top": 52.48278, - "right": 143.4375, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 84, - "left": 156.09375, - "top": 52.48278, - "right": 157.5, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 84, - "left": 157.5, - "top": 52.48278, - "right": 158.90625, - "bottom": 51.618017, - "countries": [ - "russia" - ] - }, - { - "x": 152, - "y": 85, - "left": 33.75, - "top": 51.618017, - "right": 35.15625, - "bottom": 50.736455, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 153, - "y": 85, - "left": 35.15625, - "top": 51.618017, - "right": 36.5625, - "bottom": 50.736455, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 85, - "left": 36.5625, - "top": 51.618017, - "right": 37.96875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 85, - "left": 37.96875, - "top": 51.618017, - "right": 39.375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 85, - "left": 39.375, - "top": 51.618017, - "right": 40.78125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 85, - "left": 40.78125, - "top": 51.618017, - "right": 42.1875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 85, - "left": 42.1875, - "top": 51.618017, - "right": 43.59375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 85, - "left": 43.59375, - "top": 51.618017, - "right": 45.0, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 85, - "left": 45.0, - "top": 51.618017, - "right": 46.40625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 85, - "left": 46.40625, - "top": 51.618017, - "right": 47.8125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 188, - "y": 85, - "left": 84.375, - "top": 51.618017, - "right": 85.78125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 85, - "left": 85.78125, - "top": 51.618017, - "right": 87.1875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 85, - "left": 87.1875, - "top": 51.618017, - "right": 88.59375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 191, - "y": 85, - "left": 88.59375, - "top": 51.618017, - "right": 90.0, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 192, - "y": 85, - "left": 90.0, - "top": 51.618017, - "right": 91.40625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 195, - "y": 85, - "left": 94.21875, - "top": 51.618017, - "right": 95.625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 196, - "y": 85, - "left": 95.625, - "top": 51.618017, - "right": 97.03125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 201, - "y": 85, - "left": 102.65625, - "top": 51.618017, - "right": 104.0625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 202, - "y": 85, - "left": 104.0625, - "top": 51.618017, - "right": 105.46875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 203, - "y": 85, - "left": 105.46875, - "top": 51.618017, - "right": 106.875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 204, - "y": 85, - "left": 106.875, - "top": 51.618017, - "right": 108.28125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 85, - "left": 108.28125, - "top": 51.618017, - "right": 109.6875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 85, - "left": 109.6875, - "top": 51.618017, - "right": 111.09375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 85, - "left": 111.09375, - "top": 51.618017, - "right": 112.5, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 208, - "y": 85, - "left": 112.5, - "top": 51.618017, - "right": 113.90625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 209, - "y": 85, - "left": 113.90625, - "top": 51.618017, - "right": 115.3125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 210, - "y": 85, - "left": 115.3125, - "top": 51.618017, - "right": 116.71875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 85, - "left": 116.71875, - "top": 51.618017, - "right": 118.125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 85, - "left": 127.96875, - "top": 51.618017, - "right": 129.375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 85, - "left": 129.375, - "top": 51.618017, - "right": 130.78125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 85, - "left": 130.78125, - "top": 51.618017, - "right": 132.1875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 85, - "left": 132.1875, - "top": 51.618017, - "right": 133.59375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 85, - "left": 133.59375, - "top": 51.618017, - "right": 135.0, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 85, - "left": 135.0, - "top": 51.618017, - "right": 136.40625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 85, - "left": 136.40625, - "top": 51.618017, - "right": 137.8125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 85, - "left": 137.8125, - "top": 51.618017, - "right": 139.21875, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 85, - "left": 139.21875, - "top": 51.618017, - "right": 140.625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 85, - "left": 140.625, - "top": 51.618017, - "right": 142.03125, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 85, - "left": 142.03125, - "top": 51.618017, - "right": 143.4375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 85, - "left": 143.4375, - "top": 51.618017, - "right": 144.84375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 85, - "left": 154.6875, - "top": 51.618017, - "right": 156.09375, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 85, - "left": 156.09375, - "top": 51.618017, - "right": 157.5, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 240, - "y": 85, - "left": 157.5, - "top": 51.618017, - "right": 158.90625, - "bottom": 50.736455, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 86, - "left": 35.15625, - "top": 50.736455, - "right": 36.5625, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 86, - "left": 36.5625, - "top": 50.736455, - "right": 37.96875, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 86, - "left": 37.96875, - "top": 50.736455, - "right": 39.375, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 86, - "left": 39.375, - "top": 50.736455, - "right": 40.78125, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 86, - "left": 40.78125, - "top": 50.736455, - "right": 42.1875, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 86, - "left": 42.1875, - "top": 50.736455, - "right": 43.59375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 86, - "left": 43.59375, - "top": 50.736455, - "right": 45.0, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 86, - "left": 45.0, - "top": 50.736455, - "right": 46.40625, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 189, - "y": 86, - "left": 85.78125, - "top": 50.736455, - "right": 87.1875, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 190, - "y": 86, - "left": 87.1875, - "top": 50.736455, - "right": 88.59375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 205, - "y": 86, - "left": 108.28125, - "top": 50.736455, - "right": 109.6875, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 206, - "y": 86, - "left": 109.6875, - "top": 50.736455, - "right": 111.09375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 207, - "y": 86, - "left": 111.09375, - "top": 50.736455, - "right": 112.5, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 211, - "y": 86, - "left": 116.71875, - "top": 50.736455, - "right": 118.125, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 219, - "y": 86, - "left": 127.96875, - "top": 50.736455, - "right": 129.375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 220, - "y": 86, - "left": 129.375, - "top": 50.736455, - "right": 130.78125, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 86, - "left": 130.78125, - "top": 50.736455, - "right": 132.1875, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 86, - "left": 132.1875, - "top": 50.736455, - "right": 133.59375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 86, - "left": 133.59375, - "top": 50.736455, - "right": 135.0, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 86, - "left": 135.0, - "top": 50.736455, - "right": 136.40625, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 86, - "left": 136.40625, - "top": 50.736455, - "right": 137.8125, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 86, - "left": 137.8125, - "top": 50.736455, - "right": 139.21875, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 86, - "left": 139.21875, - "top": 50.736455, - "right": 140.625, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 86, - "left": 140.625, - "top": 50.736455, - "right": 142.03125, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 86, - "left": 142.03125, - "top": 50.736455, - "right": 143.4375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 86, - "left": 143.4375, - "top": 50.736455, - "right": 144.84375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 86, - "left": 154.6875, - "top": 50.736455, - "right": 156.09375, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 239, - "y": 86, - "left": 156.09375, - "top": 50.736455, - "right": 157.5, - "bottom": 49.837982, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 87, - "left": 37.96875, - "top": 49.837982, - "right": 39.375, - "bottom": 48.922499, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 87, - "left": 39.375, - "top": 49.837982, - "right": 40.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 157, - "y": 87, - "left": 40.78125, - "top": 49.837982, - "right": 42.1875, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 87, - "left": 42.1875, - "top": 49.837982, - "right": 43.59375, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 87, - "left": 43.59375, - "top": 49.837982, - "right": 45.0, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 87, - "left": 45.0, - "top": 49.837982, - "right": 46.40625, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 221, - "y": 87, - "left": 130.78125, - "top": 49.837982, - "right": 132.1875, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 87, - "left": 132.1875, - "top": 49.837982, - "right": 133.59375, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 87, - "left": 133.59375, - "top": 49.837982, - "right": 135.0, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 87, - "left": 135.0, - "top": 49.837982, - "right": 136.40625, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 87, - "left": 136.40625, - "top": 49.837982, - "right": 137.8125, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 87, - "left": 137.8125, - "top": 49.837982, - "right": 139.21875, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 87, - "left": 139.21875, - "top": 49.837982, - "right": 140.625, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 87, - "left": 140.625, - "top": 49.837982, - "right": 142.03125, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 87, - "left": 142.03125, - "top": 49.837982, - "right": 143.4375, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 87, - "left": 143.4375, - "top": 49.837982, - "right": 144.84375, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 87, - "left": 153.28125, - "top": 49.837982, - "right": 154.6875, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 238, - "y": 87, - "left": 154.6875, - "top": 49.837982, - "right": 156.09375, - "bottom": 48.922499, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 88, - "left": 39.375, - "top": 48.922499, - "right": 40.78125, - "bottom": 47.989922, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 157, - "y": 88, - "left": 40.78125, - "top": 48.922499, - "right": 42.1875, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 88, - "left": 42.1875, - "top": 48.922499, - "right": 43.59375, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 88, - "left": 43.59375, - "top": 48.922499, - "right": 45.0, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 88, - "left": 45.0, - "top": 48.922499, - "right": 46.40625, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 88, - "left": 135.0, - "top": 48.922499, - "right": 136.40625, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 88, - "left": 136.40625, - "top": 48.922499, - "right": 137.8125, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 88, - "left": 137.8125, - "top": 48.922499, - "right": 139.21875, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 88, - "left": 139.21875, - "top": 48.922499, - "right": 140.625, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 88, - "left": 140.625, - "top": 48.922499, - "right": 142.03125, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 88, - "left": 142.03125, - "top": 48.922499, - "right": 143.4375, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 88, - "left": 143.4375, - "top": 48.922499, - "right": 144.84375, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 88, - "left": 151.875, - "top": 48.922499, - "right": 153.28125, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 237, - "y": 88, - "left": 153.28125, - "top": 48.922499, - "right": 154.6875, - "bottom": 47.989922, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 89, - "left": 37.96875, - "top": 47.989922, - "right": 39.375, - "bottom": 47.040182, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 89, - "left": 39.375, - "top": 47.989922, - "right": 40.78125, - "bottom": 47.040182, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 157, - "y": 89, - "left": 40.78125, - "top": 47.989922, - "right": 42.1875, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 89, - "left": 42.1875, - "top": 47.989922, - "right": 43.59375, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 89, - "left": 43.59375, - "top": 47.989922, - "right": 45.0, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 89, - "left": 45.0, - "top": 47.989922, - "right": 46.40625, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 89, - "left": 135.0, - "top": 47.989922, - "right": 136.40625, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 89, - "left": 136.40625, - "top": 47.989922, - "right": 137.8125, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 89, - "left": 137.8125, - "top": 47.989922, - "right": 139.21875, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 227, - "y": 89, - "left": 139.21875, - "top": 47.989922, - "right": 140.625, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 89, - "left": 140.625, - "top": 47.989922, - "right": 142.03125, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 89, - "left": 142.03125, - "top": 47.989922, - "right": 143.4375, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 89, - "left": 151.875, - "top": 47.989922, - "right": 153.28125, - "bottom": 47.040182, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 90, - "left": 36.5625, - "top": 47.040182, - "right": 37.96875, - "bottom": 46.073231, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 90, - "left": 37.96875, - "top": 47.040182, - "right": 39.375, - "bottom": 46.073231, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 90, - "left": 39.375, - "top": 47.040182, - "right": 40.78125, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 90, - "left": 40.78125, - "top": 47.040182, - "right": 42.1875, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 90, - "left": 42.1875, - "top": 47.040182, - "right": 43.59375, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 90, - "left": 43.59375, - "top": 47.040182, - "right": 45.0, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 90, - "left": 45.0, - "top": 47.040182, - "right": 46.40625, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 90, - "left": 46.40625, - "top": 47.040182, - "right": 47.8125, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 90, - "left": 135.0, - "top": 47.040182, - "right": 136.40625, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 90, - "left": 136.40625, - "top": 47.040182, - "right": 137.8125, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 90, - "left": 137.8125, - "top": 47.040182, - "right": 139.21875, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 228, - "y": 90, - "left": 140.625, - "top": 47.040182, - "right": 142.03125, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 229, - "y": 90, - "left": 142.03125, - "top": 47.040182, - "right": 143.4375, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 90, - "left": 143.4375, - "top": 47.040182, - "right": 144.84375, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 90, - "left": 149.0625, - "top": 47.040182, - "right": 150.46875, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 235, - "y": 90, - "left": 150.46875, - "top": 47.040182, - "right": 151.875, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 236, - "y": 90, - "left": 151.875, - "top": 47.040182, - "right": 153.28125, - "bottom": 46.073231, - "countries": [ - "russia" - ] - }, - { - "x": 153, - "y": 91, - "left": 35.15625, - "top": 46.073231, - "right": 36.5625, - "bottom": 45.089036, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 91, - "left": 36.5625, - "top": 46.073231, - "right": 37.96875, - "bottom": 45.089036, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 91, - "left": 37.96875, - "top": 46.073231, - "right": 39.375, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 91, - "left": 39.375, - "top": 46.073231, - "right": 40.78125, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 91, - "left": 40.78125, - "top": 46.073231, - "right": 42.1875, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 91, - "left": 42.1875, - "top": 46.073231, - "right": 43.59375, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 91, - "left": 43.59375, - "top": 46.073231, - "right": 45.0, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 91, - "left": 45.0, - "top": 46.073231, - "right": 46.40625, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 91, - "left": 46.40625, - "top": 46.073231, - "right": 47.8125, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 91, - "left": 47.8125, - "top": 46.073231, - "right": 49.21875, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 163, - "y": 91, - "left": 49.21875, - "top": 46.073231, - "right": 50.625, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 91, - "left": 135.0, - "top": 46.073231, - "right": 136.40625, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 91, - "left": 136.40625, - "top": 46.073231, - "right": 137.8125, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 226, - "y": 91, - "left": 137.8125, - "top": 46.073231, - "right": 139.21875, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 230, - "y": 91, - "left": 143.4375, - "top": 46.073231, - "right": 144.84375, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 91, - "left": 146.25, - "top": 46.073231, - "right": 147.65625, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 91, - "left": 147.65625, - "top": 46.073231, - "right": 149.0625, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 234, - "y": 91, - "left": 149.0625, - "top": 46.073231, - "right": 150.46875, - "bottom": 45.089036, - "countries": [ - "russia" - ] - }, - { - "x": 154, - "y": 92, - "left": 36.5625, - "top": 45.089036, - "right": 37.96875, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 92, - "left": 37.96875, - "top": 45.089036, - "right": 39.375, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 156, - "y": 92, - "left": 39.375, - "top": 45.089036, - "right": 40.78125, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 157, - "y": 92, - "left": 40.78125, - "top": 45.089036, - "right": 42.1875, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 158, - "y": 92, - "left": 42.1875, - "top": 45.089036, - "right": 43.59375, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 92, - "left": 43.59375, - "top": 45.089036, - "right": 45.0, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 92, - "left": 45.0, - "top": 45.089036, - "right": 46.40625, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 92, - "left": 46.40625, - "top": 45.089036, - "right": 47.8125, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 92, - "left": 133.59375, - "top": 45.089036, - "right": 135.0, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 92, - "left": 135.0, - "top": 45.089036, - "right": 136.40625, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 225, - "y": 92, - "left": 136.40625, - "top": 45.089036, - "right": 137.8125, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 92, - "left": 146.25, - "top": 45.089036, - "right": 147.65625, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 233, - "y": 92, - "left": 147.65625, - "top": 45.089036, - "right": 149.0625, - "bottom": 44.087585, - "countries": [ - "russia" - ] - }, - { - "x": 155, - "y": 93, - "left": 37.96875, - "top": 44.087585, - "right": 39.375, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 159, - "y": 93, - "left": 43.59375, - "top": 44.087585, - "right": 45.0, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 160, - "y": 93, - "left": 45.0, - "top": 44.087585, - "right": 46.40625, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 93, - "left": 46.40625, - "top": 44.087585, - "right": 47.8125, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 93, - "left": 47.8125, - "top": 44.087585, - "right": 49.21875, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 93, - "left": 132.1875, - "top": 44.087585, - "right": 133.59375, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 93, - "left": 133.59375, - "top": 44.087585, - "right": 135.0, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 224, - "y": 93, - "left": 135.0, - "top": 44.087585, - "right": 136.40625, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 232, - "y": 93, - "left": 146.25, - "top": 44.087585, - "right": 147.65625, - "bottom": 43.068888, - "countries": [ - "russia" - ] - }, - { - "x": 161, - "y": 94, - "left": 46.40625, - "top": 43.068888, - "right": 47.8125, - "bottom": 42.032974, - "countries": [ - "russia" - ] - }, - { - "x": 162, - "y": 94, - "left": 47.8125, - "top": 43.068888, - "right": 49.21875, - "bottom": 42.032974, - "countries": [ - "russia" - ] - }, - { - "x": 222, - "y": 94, - "left": 132.1875, - "top": 43.068888, - "right": 133.59375, - "bottom": 42.032974, - "countries": [ - "russia" - ] - }, - { - "x": 223, - "y": 94, - "left": 133.59375, - "top": 43.068888, - "right": 135.0, - "bottom": 42.032974, - "countries": [ - "russia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/san_marino.json b/wahoomc/resources/json/europe/san_marino.json deleted file mode 100644 index 1fe5340a..00000000 --- a/wahoomc/resources/json/europe/san_marino.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "x": 136, - "y": 93, - "left": 11.25, - "top": 44.087585, - "right": 12.65625, - "bottom": 43.068888, - "countries": [ - "san_marino", - "italy" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/serbia.json b/wahoomc/resources/json/europe/serbia.json deleted file mode 100644 index 5157bc6d..00000000 --- a/wahoomc/resources/json/europe/serbia.json +++ /dev/null @@ -1,217 +0,0 @@ -[ - { - "x": 142, - "y": 94, - "left": 19.6875, - "top": 43.068888, - "right": 21.09375, - "bottom": 42.032974, - "countries": [ - "montenegro", - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 142, - "y": 95, - "left": 19.6875, - "top": 42.032974, - "right": 21.09375, - "bottom": 40.979898, - "countries": [ - "serbia", - "macedonia", - "albania" - ] - }, - { - "x": 141, - "y": 91, - "left": 18.28125, - "top": 46.073231, - "right": 19.6875, - "bottom": 45.089036, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "hungary", - "croatia" - ] - }, - { - "x": 141, - "y": 92, - "left": 18.28125, - "top": 45.089036, - "right": 19.6875, - "bottom": 44.087585, - "countries": [ - "bosnia_and_herzegovina", - "serbia", - "croatia" - ] - }, - { - "x": 141, - "y": 93, - "left": 18.28125, - "top": 44.087585, - "right": 19.6875, - "bottom": 43.068888, - "countries": [ - "bosnia_and_herzegovina", - "montenegro", - "serbia" - ] - }, - { - "x": 144, - "y": 92, - "left": 22.5, - "top": 45.089036, - "right": 23.90625, - "bottom": 44.087585, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 143, - "y": 93, - "left": 21.09375, - "top": 44.087585, - "right": 22.5, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "serbia" - ] - }, - { - "x": 144, - "y": 93, - "left": 22.5, - "top": 44.087585, - "right": 23.90625, - "bottom": 43.068888, - "countries": [ - "bulgaria", - "serbia", - "romania" - ] - }, - { - "x": 143, - "y": 94, - "left": 21.09375, - "top": 43.068888, - "right": 22.5, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 144, - "y": 94, - "left": 22.5, - "top": 43.068888, - "right": 23.90625, - "bottom": 42.032974, - "countries": [ - "bulgaria", - "serbia", - "macedonia" - ] - }, - { - "x": 141, - "y": 90, - "left": 18.28125, - "top": 47.040182, - "right": 19.6875, - "bottom": 46.073231, - "countries": [ - "serbia", - "hungary" - ] - }, - { - "x": 142, - "y": 90, - "left": 19.6875, - "top": 47.040182, - "right": 21.09375, - "bottom": 46.073231, - "countries": [ - "romania", - "serbia", - "hungary" - ] - }, - { - "x": 142, - "y": 93, - "left": 19.6875, - "top": 44.087585, - "right": 21.09375, - "bottom": 43.068888, - "countries": [ - "serbia", - "montenegro" - ] - }, - { - "x": 142, - "y": 91, - "left": 19.6875, - "top": 46.073231, - "right": 21.09375, - "bottom": 45.089036, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 143, - "y": 91, - "left": 21.09375, - "top": 46.073231, - "right": 22.5, - "bottom": 45.089036, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 143, - "y": 92, - "left": 21.09375, - "top": 45.089036, - "right": 22.5, - "bottom": 44.087585, - "countries": [ - "serbia", - "romania" - ] - }, - { - "x": 142, - "y": 92, - "left": 19.6875, - "top": 45.089036, - "right": 21.09375, - "bottom": 44.087585, - "countries": [ - "serbia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/slovakia.json b/wahoomc/resources/json/europe/slovakia.json deleted file mode 100644 index c531f11e..00000000 --- a/wahoomc/resources/json/europe/slovakia.json +++ /dev/null @@ -1,154 +0,0 @@ -[ - { - "x": 139, - "y": 88, - "left": 15.46875, - "top": 48.922499, - "right": 16.875, - "bottom": 47.989922, - "countries": [ - "slovakia", - "czech_republic", - "austria" - ] - }, - { - "x": 140, - "y": 88, - "left": 16.875, - "top": 48.922499, - "right": 18.28125, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary", - "czech_republic", - "austria" - ] - }, - { - "x": 140, - "y": 89, - "left": 16.875, - "top": 47.989922, - "right": 18.28125, - "bottom": 47.040182, - "countries": [ - "slovakia", - "hungary", - "austria" - ] - }, - { - "x": 140, - "y": 87, - "left": 16.875, - "top": 49.837982, - "right": 18.28125, - "bottom": 48.922499, - "countries": [ - "czech_republic", - "slovakia" - ] - }, - { - "x": 141, - "y": 87, - "left": 18.28125, - "top": 49.837982, - "right": 19.6875, - "bottom": 48.922499, - "countries": [ - "poland", - "czech_republic", - "slovakia" - ] - }, - { - "x": 141, - "y": 88, - "left": 18.28125, - "top": 48.922499, - "right": 19.6875, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 142, - "y": 88, - "left": 19.6875, - "top": 48.922499, - "right": 21.09375, - "bottom": 47.989922, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 143, - "y": 88, - "left": 21.09375, - "top": 48.922499, - "right": 22.5, - "bottom": 47.989922, - "countries": [ - "slovakia", - "ukraine", - "hungary" - ] - }, - { - "x": 141, - "y": 89, - "left": 18.28125, - "top": 47.989922, - "right": 19.6875, - "bottom": 47.040182, - "countries": [ - "slovakia", - "hungary" - ] - }, - { - "x": 142, - "y": 87, - "left": 19.6875, - "top": 49.837982, - "right": 21.09375, - "bottom": 48.922499, - "countries": [ - "poland", - "slovakia" - ] - }, - { - "x": 143, - "y": 87, - "left": 21.09375, - "top": 49.837982, - "right": 22.5, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - }, - { - "x": 144, - "y": 87, - "left": 22.5, - "top": 49.837982, - "right": 23.90625, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/slovenia.json b/wahoomc/resources/json/europe/slovenia.json deleted file mode 100644 index 57243b67..00000000 --- a/wahoomc/resources/json/europe/slovenia.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "x": 137, - "y": 90, - "left": 12.65625, - "top": 47.040182, - "right": 14.0625, - "bottom": 46.073231, - "countries": [ - "italy", - "slovenia", - "austria" - ] - }, - { - "x": 138, - "y": 90, - "left": 14.0625, - "top": 47.040182, - "right": 15.46875, - "bottom": 46.073231, - "countries": [ - "slovenia", - "austria" - ] - }, - { - "x": 139, - "y": 90, - "left": 15.46875, - "top": 47.040182, - "right": 16.875, - "bottom": 46.073231, - "countries": [ - "hungary", - "croatia", - "slovenia", - "austria" - ] - }, - { - "x": 139, - "y": 91, - "left": 15.46875, - "top": 46.073231, - "right": 16.875, - "bottom": 45.089036, - "countries": [ - "slovenia", - "bosnia_and_herzegovina", - "croatia" - ] - }, - { - "x": 137, - "y": 91, - "left": 12.65625, - "top": 46.073231, - "right": 14.0625, - "bottom": 45.089036, - "countries": [ - "slovenia", - "croatia", - "italy" - ] - }, - { - "x": 138, - "y": 91, - "left": 14.0625, - "top": 46.073231, - "right": 15.46875, - "bottom": 45.089036, - "countries": [ - "slovenia", - "croatia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/spain.json b/wahoomc/resources/json/europe/spain.json deleted file mode 100644 index 3b262619..00000000 --- a/wahoomc/resources/json/europe/spain.json +++ /dev/null @@ -1,744 +0,0 @@ -[ - { - "x": 126, - "y": 101, - "left": -2.8125, - "top": 35.46067, - "right": -1.40625, - "bottom": 34.307144, - "countries": [ - "spain", - "algeria", - "morocco" - ] - }, - { - "x": 123, - "y": 100, - "left": -7.03125, - "top": 36.597889, - "right": -5.625, - "bottom": 35.46067, - "countries": [ - "spain", - "morocco" - ] - }, - { - "x": 124, - "y": 100, - "left": -5.625, - "top": 36.597889, - "right": -4.21875, - "bottom": 35.46067, - "countries": [ - "gibraltar", - "spain", - "morocco" - ] - }, - { - "x": 125, - "y": 101, - "left": -4.21875, - "top": 35.46067, - "right": -2.8125, - "bottom": 34.307144, - "countries": [ - "spain", - "morocco" - ] - }, - { - "x": 118, - "y": 107, - "left": -14.0625, - "top": 28.304381, - "right": -12.65625, - "bottom": 27.059126, - "countries": [ - "spain", - "western_sahara", - "morocco" - ] - }, - { - "x": 129, - "y": 94, - "left": 1.40625, - "top": 43.068888, - "right": 2.8125, - "bottom": 42.032974, - "countries": [ - "andorra", - "spain", - "france" - ] - }, - { - "x": 126, - "y": 93, - "left": -2.8125, - "top": 44.087585, - "right": -1.40625, - "bottom": 43.068888, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 127, - "y": 93, - "left": -1.40625, - "top": 44.087585, - "right": 0.0, - "bottom": 43.068888, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 126, - "y": 94, - "left": -2.8125, - "top": 43.068888, - "right": -1.40625, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 127, - "y": 94, - "left": -1.40625, - "top": 43.068888, - "right": 0.0, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 130, - "y": 94, - "left": 2.8125, - "top": 43.068888, - "right": 4.21875, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 128, - "y": 94, - "left": 0.0, - "top": 43.068888, - "right": 1.40625, - "bottom": 42.032974, - "countries": [ - "spain", - "france" - ] - }, - { - "x": 121, - "y": 94, - "left": -9.84375, - "top": 43.068888, - "right": -8.4375, - "bottom": 42.032974, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 94, - "left": -8.4375, - "top": 43.068888, - "right": -7.03125, - "bottom": 42.032974, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 121, - "y": 95, - "left": -9.84375, - "top": 42.032974, - "right": -8.4375, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 95, - "left": -8.4375, - "top": 42.032974, - "right": -7.03125, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 95, - "left": -7.03125, - "top": 42.032974, - "right": -5.625, - "bottom": 40.979898, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 96, - "left": -7.03125, - "top": 40.979898, - "right": -5.625, - "bottom": 39.909736, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 97, - "left": -8.4375, - "top": 39.909736, - "right": -7.03125, - "bottom": 38.822591, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 97, - "left": -7.03125, - "top": 39.909736, - "right": -5.625, - "bottom": 38.822591, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 98, - "left": -8.4375, - "top": 38.822591, - "right": -7.03125, - "bottom": 37.71859, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 123, - "y": 98, - "left": -7.03125, - "top": 38.822591, - "right": -5.625, - "bottom": 37.71859, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 122, - "y": 99, - "left": -8.4375, - "top": 37.71859, - "right": -7.03125, - "bottom": 36.597889, - "countries": [ - "portugal", - "spain" - ] - }, - { - "x": 121, - "y": 93, - "left": -9.84375, - "top": 44.087585, - "right": -8.4375, - "bottom": 43.068888, - "countries": [ - "spain" - ] - }, - { - "x": 122, - "y": 93, - "left": -8.4375, - "top": 44.087585, - "right": -7.03125, - "bottom": 43.068888, - "countries": [ - "spain" - ] - }, - { - "x": 123, - "y": 93, - "left": -7.03125, - "top": 44.087585, - "right": -5.625, - "bottom": 43.068888, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 93, - "left": -5.625, - "top": 44.087585, - "right": -4.21875, - "bottom": 43.068888, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 93, - "left": -4.21875, - "top": 44.087585, - "right": -2.8125, - "bottom": 43.068888, - "countries": [ - "spain" - ] - }, - { - "x": 123, - "y": 94, - "left": -7.03125, - "top": 43.068888, - "right": -5.625, - "bottom": 42.032974, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 94, - "left": -5.625, - "top": 43.068888, - "right": -4.21875, - "bottom": 42.032974, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 94, - "left": -4.21875, - "top": 43.068888, - "right": -2.8125, - "bottom": 42.032974, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 95, - "left": -5.625, - "top": 42.032974, - "right": -4.21875, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 95, - "left": -4.21875, - "top": 42.032974, - "right": -2.8125, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 126, - "y": 95, - "left": -2.8125, - "top": 42.032974, - "right": -1.40625, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 127, - "y": 95, - "left": -1.40625, - "top": 42.032974, - "right": 0.0, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 128, - "y": 95, - "left": 0.0, - "top": 42.032974, - "right": 1.40625, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 129, - "y": 95, - "left": 1.40625, - "top": 42.032974, - "right": 2.8125, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 130, - "y": 95, - "left": 2.8125, - "top": 42.032974, - "right": 4.21875, - "bottom": 40.979898, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 96, - "left": -5.625, - "top": 40.979898, - "right": -4.21875, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 96, - "left": -4.21875, - "top": 40.979898, - "right": -2.8125, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 126, - "y": 96, - "left": -2.8125, - "top": 40.979898, - "right": -1.40625, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 127, - "y": 96, - "left": -1.40625, - "top": 40.979898, - "right": 0.0, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 128, - "y": 96, - "left": 0.0, - "top": 40.979898, - "right": 1.40625, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 130, - "y": 96, - "left": 2.8125, - "top": 40.979898, - "right": 4.21875, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 131, - "y": 96, - "left": 4.21875, - "top": 40.979898, - "right": 5.625, - "bottom": 39.909736, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 97, - "left": -5.625, - "top": 39.909736, - "right": -4.21875, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 97, - "left": -4.21875, - "top": 39.909736, - "right": -2.8125, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 126, - "y": 97, - "left": -2.8125, - "top": 39.909736, - "right": -1.40625, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 127, - "y": 97, - "left": -1.40625, - "top": 39.909736, - "right": 0.0, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 128, - "y": 97, - "left": 0.0, - "top": 39.909736, - "right": 1.40625, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 129, - "y": 97, - "left": 1.40625, - "top": 39.909736, - "right": 2.8125, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 130, - "y": 97, - "left": 2.8125, - "top": 39.909736, - "right": 4.21875, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 131, - "y": 97, - "left": 4.21875, - "top": 39.909736, - "right": 5.625, - "bottom": 38.822591, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 98, - "left": -5.625, - "top": 38.822591, - "right": -4.21875, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 98, - "left": -4.21875, - "top": 38.822591, - "right": -2.8125, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 126, - "y": 98, - "left": -2.8125, - "top": 38.822591, - "right": -1.40625, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 127, - "y": 98, - "left": -1.40625, - "top": 38.822591, - "right": 0.0, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 128, - "y": 98, - "left": 0.0, - "top": 38.822591, - "right": 1.40625, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 129, - "y": 98, - "left": 1.40625, - "top": 38.822591, - "right": 2.8125, - "bottom": 37.71859, - "countries": [ - "spain" - ] - }, - { - "x": 123, - "y": 99, - "left": -7.03125, - "top": 37.71859, - "right": -5.625, - "bottom": 36.597889, - "countries": [ - "spain" - ] - }, - { - "x": 124, - "y": 99, - "left": -5.625, - "top": 37.71859, - "right": -4.21875, - "bottom": 36.597889, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 99, - "left": -4.21875, - "top": 37.71859, - "right": -2.8125, - "bottom": 36.597889, - "countries": [ - "spain" - ] - }, - { - "x": 126, - "y": 99, - "left": -2.8125, - "top": 37.71859, - "right": -1.40625, - "bottom": 36.597889, - "countries": [ - "spain" - ] - }, - { - "x": 127, - "y": 99, - "left": -1.40625, - "top": 37.71859, - "right": 0.0, - "bottom": 36.597889, - "countries": [ - "spain" - ] - }, - { - "x": 125, - "y": 100, - "left": -4.21875, - "top": 36.597889, - "right": -2.8125, - "bottom": 35.46067, - "countries": [ - "spain" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/svalbard_and_jan_mayen.json b/wahoomc/resources/json/europe/svalbard_and_jan_mayen.json deleted file mode 100644 index bf915eb9..00000000 --- a/wahoomc/resources/json/europe/svalbard_and_jan_mayen.json +++ /dev/null @@ -1,1688 +0,0 @@ -[ - { - "x": 141, - "y": 29, - "left": 18.28125, - "top": 79.935918, - "right": 19.6875, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 29, - "left": 19.6875, - "top": 79.935918, - "right": 21.09375, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 141, - "y": 30, - "left": 18.28125, - "top": 79.687184, - "right": 19.6875, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 30, - "left": 19.6875, - "top": 79.687184, - "right": 21.09375, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 31, - "left": 21.09375, - "top": 79.432371, - "right": 22.5, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 32, - "left": 21.09375, - "top": 79.171335, - "right": 22.5, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 148, - "y": 33, - "left": 28.125, - "top": 78.903929, - "right": 29.53125, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 35, - "left": 19.6875, - "top": 78.349411, - "right": 21.09375, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 35, - "left": 21.09375, - "top": 78.349411, - "right": 22.5, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 145, - "y": 36, - "left": 23.90625, - "top": 78.061989, - "right": 25.3125, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 145, - "y": 37, - "left": 23.90625, - "top": 77.767582, - "right": 25.3125, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 38, - "left": 21.09375, - "top": 77.466028, - "right": 22.5, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 144, - "y": 38, - "left": 22.5, - "top": 77.466028, - "right": 23.90625, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 143, - "y": 39, - "left": 21.09375, - "top": 77.157163, - "right": 22.5, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen", - "norway" - ] - }, - { - "x": 142, - "y": 25, - "left": 19.6875, - "top": 80.872827, - "right": 21.09375, - "bottom": 80.647035, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 25, - "left": 21.09375, - "top": 80.872827, - "right": 22.5, - "bottom": 80.647035, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 25, - "left": 23.90625, - "top": 80.872827, - "right": 25.3125, - "bottom": 80.647035, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 26, - "left": 18.28125, - "top": 80.647035, - "right": 19.6875, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 26, - "left": 19.6875, - "top": 80.647035, - "right": 21.09375, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 26, - "left": 21.09375, - "top": 80.647035, - "right": 22.5, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 26, - "left": 22.5, - "top": 80.647035, - "right": 23.90625, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 26, - "left": 23.90625, - "top": 80.647035, - "right": 25.3125, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 26, - "left": 25.3125, - "top": 80.647035, - "right": 26.71875, - "bottom": 80.415707, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 27, - "left": 16.875, - "top": 80.415707, - "right": 18.28125, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 27, - "left": 18.28125, - "top": 80.415707, - "right": 19.6875, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 27, - "left": 19.6875, - "top": 80.415707, - "right": 21.09375, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 27, - "left": 21.09375, - "top": 80.415707, - "right": 22.5, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 27, - "left": 22.5, - "top": 80.415707, - "right": 23.90625, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 27, - "left": 23.90625, - "top": 80.415707, - "right": 25.3125, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 27, - "left": 25.3125, - "top": 80.415707, - "right": 26.71875, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 147, - "y": 27, - "left": 26.71875, - "top": 80.415707, - "right": 28.125, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 151, - "y": 27, - "left": 32.34375, - "top": 80.415707, - "right": 33.75, - "bottom": 80.178713, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 28, - "left": 14.0625, - "top": 80.178713, - "right": 15.46875, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 28, - "left": 15.46875, - "top": 80.178713, - "right": 16.875, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 28, - "left": 16.875, - "top": 80.178713, - "right": 18.28125, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 28, - "left": 18.28125, - "top": 80.178713, - "right": 19.6875, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 28, - "left": 19.6875, - "top": 80.178713, - "right": 21.09375, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 28, - "left": 21.09375, - "top": 80.178713, - "right": 22.5, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 28, - "left": 22.5, - "top": 80.178713, - "right": 23.90625, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 28, - "left": 23.90625, - "top": 80.178713, - "right": 25.3125, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 28, - "left": 25.3125, - "top": 80.178713, - "right": 26.71875, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 147, - "y": 28, - "left": 26.71875, - "top": 80.178713, - "right": 28.125, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 148, - "y": 28, - "left": 28.125, - "top": 80.178713, - "right": 29.53125, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 150, - "y": 28, - "left": 30.9375, - "top": 80.178713, - "right": 32.34375, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 151, - "y": 28, - "left": 32.34375, - "top": 80.178713, - "right": 33.75, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 154, - "y": 28, - "left": 36.5625, - "top": 80.178713, - "right": 37.96875, - "bottom": 79.935918, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 29, - "left": 9.84375, - "top": 79.935918, - "right": 11.25, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 29, - "left": 11.25, - "top": 79.935918, - "right": 12.65625, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 29, - "left": 12.65625, - "top": 79.935918, - "right": 14.0625, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 29, - "left": 14.0625, - "top": 79.935918, - "right": 15.46875, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 29, - "left": 15.46875, - "top": 79.935918, - "right": 16.875, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 29, - "left": 16.875, - "top": 79.935918, - "right": 18.28125, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 29, - "left": 21.09375, - "top": 79.935918, - "right": 22.5, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 29, - "left": 22.5, - "top": 79.935918, - "right": 23.90625, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 29, - "left": 23.90625, - "top": 79.935918, - "right": 25.3125, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 29, - "left": 25.3125, - "top": 79.935918, - "right": 26.71875, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 147, - "y": 29, - "left": 26.71875, - "top": 79.935918, - "right": 28.125, - "bottom": 79.687184, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 30, - "left": 9.84375, - "top": 79.687184, - "right": 11.25, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 30, - "left": 11.25, - "top": 79.687184, - "right": 12.65625, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 30, - "left": 12.65625, - "top": 79.687184, - "right": 14.0625, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 30, - "left": 14.0625, - "top": 79.687184, - "right": 15.46875, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 30, - "left": 15.46875, - "top": 79.687184, - "right": 16.875, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 30, - "left": 16.875, - "top": 79.687184, - "right": 18.28125, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 30, - "left": 21.09375, - "top": 79.687184, - "right": 22.5, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 30, - "left": 22.5, - "top": 79.687184, - "right": 23.90625, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 30, - "left": 23.90625, - "top": 79.687184, - "right": 25.3125, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 30, - "left": 25.3125, - "top": 79.687184, - "right": 26.71875, - "bottom": 79.432371, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 31, - "left": 9.84375, - "top": 79.432371, - "right": 11.25, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 31, - "left": 11.25, - "top": 79.432371, - "right": 12.65625, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 31, - "left": 12.65625, - "top": 79.432371, - "right": 14.0625, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 31, - "left": 14.0625, - "top": 79.432371, - "right": 15.46875, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 31, - "left": 15.46875, - "top": 79.432371, - "right": 16.875, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 31, - "left": 16.875, - "top": 79.432371, - "right": 18.28125, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 31, - "left": 18.28125, - "top": 79.432371, - "right": 19.6875, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 31, - "left": 19.6875, - "top": 79.432371, - "right": 21.09375, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 31, - "left": 22.5, - "top": 79.432371, - "right": 23.90625, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 31, - "left": 23.90625, - "top": 79.432371, - "right": 25.3125, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 31, - "left": 25.3125, - "top": 79.432371, - "right": 26.71875, - "bottom": 79.171335, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 32, - "left": 9.84375, - "top": 79.171335, - "right": 11.25, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 32, - "left": 11.25, - "top": 79.171335, - "right": 12.65625, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 32, - "left": 12.65625, - "top": 79.171335, - "right": 14.0625, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 32, - "left": 14.0625, - "top": 79.171335, - "right": 15.46875, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 32, - "left": 15.46875, - "top": 79.171335, - "right": 16.875, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 32, - "left": 16.875, - "top": 79.171335, - "right": 18.28125, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 32, - "left": 18.28125, - "top": 79.171335, - "right": 19.6875, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 32, - "left": 19.6875, - "top": 79.171335, - "right": 21.09375, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 148, - "y": 32, - "left": 28.125, - "top": 79.171335, - "right": 29.53125, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 149, - "y": 32, - "left": 29.53125, - "top": 79.171335, - "right": 30.9375, - "bottom": 78.903929, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 33, - "left": 9.84375, - "top": 78.903929, - "right": 11.25, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 33, - "left": 11.25, - "top": 78.903929, - "right": 12.65625, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 33, - "left": 12.65625, - "top": 78.903929, - "right": 14.0625, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 33, - "left": 14.0625, - "top": 78.903929, - "right": 15.46875, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 33, - "left": 15.46875, - "top": 78.903929, - "right": 16.875, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 33, - "left": 16.875, - "top": 78.903929, - "right": 18.28125, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 33, - "left": 18.28125, - "top": 78.903929, - "right": 19.6875, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 33, - "left": 19.6875, - "top": 78.903929, - "right": 21.09375, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 33, - "left": 21.09375, - "top": 78.903929, - "right": 22.5, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 33, - "left": 25.3125, - "top": 78.903929, - "right": 26.71875, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 147, - "y": 33, - "left": 26.71875, - "top": 78.903929, - "right": 28.125, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 149, - "y": 33, - "left": 29.53125, - "top": 78.903929, - "right": 30.9375, - "bottom": 78.630006, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 135, - "y": 34, - "left": 9.84375, - "top": 78.630006, - "right": 11.25, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 34, - "left": 11.25, - "top": 78.630006, - "right": 12.65625, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 34, - "left": 12.65625, - "top": 78.630006, - "right": 14.0625, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 34, - "left": 14.0625, - "top": 78.630006, - "right": 15.46875, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 34, - "left": 15.46875, - "top": 78.630006, - "right": 16.875, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 34, - "left": 16.875, - "top": 78.630006, - "right": 18.28125, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 34, - "left": 18.28125, - "top": 78.630006, - "right": 19.6875, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 34, - "left": 19.6875, - "top": 78.630006, - "right": 21.09375, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 34, - "left": 21.09375, - "top": 78.630006, - "right": 22.5, - "bottom": 78.349411, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 136, - "y": 35, - "left": 11.25, - "top": 78.349411, - "right": 12.65625, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 35, - "left": 12.65625, - "top": 78.349411, - "right": 14.0625, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 35, - "left": 14.0625, - "top": 78.349411, - "right": 15.46875, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 35, - "left": 15.46875, - "top": 78.349411, - "right": 16.875, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 35, - "left": 16.875, - "top": 78.349411, - "right": 18.28125, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 35, - "left": 18.28125, - "top": 78.349411, - "right": 19.6875, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 35, - "left": 22.5, - "top": 78.349411, - "right": 23.90625, - "bottom": 78.061989, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 36, - "left": 12.65625, - "top": 78.061989, - "right": 14.0625, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 36, - "left": 14.0625, - "top": 78.061989, - "right": 15.46875, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 36, - "left": 15.46875, - "top": 78.061989, - "right": 16.875, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 36, - "left": 16.875, - "top": 78.061989, - "right": 18.28125, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 36, - "left": 18.28125, - "top": 78.061989, - "right": 19.6875, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 36, - "left": 19.6875, - "top": 78.061989, - "right": 21.09375, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 36, - "left": 21.09375, - "top": 78.061989, - "right": 22.5, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 36, - "left": 22.5, - "top": 78.061989, - "right": 23.90625, - "bottom": 77.767582, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 37, - "left": 12.65625, - "top": 77.767582, - "right": 14.0625, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 37, - "left": 14.0625, - "top": 77.767582, - "right": 15.46875, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 37, - "left": 15.46875, - "top": 77.767582, - "right": 16.875, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 37, - "left": 16.875, - "top": 77.767582, - "right": 18.28125, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 37, - "left": 18.28125, - "top": 77.767582, - "right": 19.6875, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 37, - "left": 19.6875, - "top": 77.767582, - "right": 21.09375, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 143, - "y": 37, - "left": 21.09375, - "top": 77.767582, - "right": 22.5, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 37, - "left": 22.5, - "top": 77.767582, - "right": 23.90625, - "bottom": 77.466028, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 137, - "y": 38, - "left": 12.65625, - "top": 77.466028, - "right": 14.0625, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 38, - "left": 14.0625, - "top": 77.466028, - "right": 15.46875, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 38, - "left": 15.46875, - "top": 77.466028, - "right": 16.875, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 38, - "left": 16.875, - "top": 77.466028, - "right": 18.28125, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 142, - "y": 38, - "left": 19.6875, - "top": 77.466028, - "right": 21.09375, - "bottom": 77.157163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 138, - "y": 39, - "left": 14.0625, - "top": 77.157163, - "right": 15.46875, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 39, - "left": 15.46875, - "top": 77.157163, - "right": 16.875, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 39, - "left": 16.875, - "top": 77.157163, - "right": 18.28125, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 144, - "y": 39, - "left": 22.5, - "top": 77.157163, - "right": 23.90625, - "bottom": 76.840816, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 40, - "left": 15.46875, - "top": 76.840816, - "right": 16.875, - "bottom": 76.516819, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 140, - "y": 40, - "left": 16.875, - "top": 76.840816, - "right": 18.28125, - "bottom": 76.516819, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 40, - "left": 23.90625, - "top": 76.840816, - "right": 25.3125, - "bottom": 76.516819, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 146, - "y": 40, - "left": 25.3125, - "top": 76.840816, - "right": 26.71875, - "bottom": 76.516819, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 139, - "y": 41, - "left": 15.46875, - "top": 76.516819, - "right": 16.875, - "bottom": 76.184995, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 145, - "y": 41, - "left": 23.90625, - "top": 76.516819, - "right": 25.3125, - "bottom": 76.184995, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 46, - "left": 18.28125, - "top": 74.775843, - "right": 19.6875, - "bottom": 74.402163, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 141, - "y": 47, - "left": 18.28125, - "top": 74.402163, - "right": 19.6875, - "bottom": 74.019543, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 122, - "y": 54, - "left": -8.4375, - "top": 71.524909, - "right": -7.03125, - "bottom": 71.074056, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 121, - "y": 55, - "left": -9.84375, - "top": 71.074056, - "right": -8.4375, - "bottom": 70.612614, - "countries": [ - "svalbard_and_jan_mayen" - ] - }, - { - "x": 122, - "y": 55, - "left": -8.4375, - "top": 71.074056, - "right": -7.03125, - "bottom": 70.612614, - "countries": [ - "svalbard_and_jan_mayen" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/sweden.json b/wahoomc/resources/json/europe/sweden.json deleted file mode 100644 index b87a8101..00000000 --- a/wahoomc/resources/json/europe/sweden.json +++ /dev/null @@ -1,1491 +0,0 @@ -[ - { - "x": 136, - "y": 78, - "left": 11.25, - "top": 57.326521, - "right": 12.65625, - "bottom": 56.559482, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 136, - "y": 79, - "left": 11.25, - "top": 56.559482, - "right": 12.65625, - "bottom": 55.776573, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 137, - "y": 80, - "left": 12.65625, - "top": 55.776573, - "right": 14.0625, - "bottom": 54.977614, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 138, - "y": 80, - "left": 14.0625, - "top": 55.776573, - "right": 15.46875, - "bottom": 54.977614, - "countries": [ - "denmark", - "sweden" - ] - }, - { - "x": 142, - "y": 59, - "left": 19.6875, - "top": 69.162558, - "right": 21.09375, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 143, - "y": 59, - "left": 21.09375, - "top": 69.162558, - "right": 22.5, - "bottom": 68.656555, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 143, - "y": 60, - "left": 21.09375, - "top": 68.656555, - "right": 22.5, - "bottom": 68.138852, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 60, - "left": 22.5, - "top": 68.656555, - "right": 23.90625, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 61, - "left": 22.5, - "top": 68.138852, - "right": 23.90625, - "bottom": 67.609221, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 62, - "left": 22.5, - "top": 67.609221, - "right": 23.90625, - "bottom": 67.067433, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 63, - "left": 22.5, - "top": 67.067433, - "right": 23.90625, - "bottom": 66.51326, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 63, - "left": 23.90625, - "top": 67.067433, - "right": 25.3125, - "bottom": 66.51326, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 144, - "y": 64, - "left": 22.5, - "top": 66.51326, - "right": 23.90625, - "bottom": 65.946472, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 64, - "left": 23.90625, - "top": 66.51326, - "right": 25.3125, - "bottom": 65.946472, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 145, - "y": 65, - "left": 23.90625, - "top": 65.946472, - "right": 25.3125, - "bottom": 65.366837, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 142, - "y": 69, - "left": 19.6875, - "top": 63.548552, - "right": 21.09375, - "bottom": 62.915233, - "countries": [ - "sweden", - "finland" - ] - }, - { - "x": 140, - "y": 60, - "left": 16.875, - "top": 68.656555, - "right": 18.28125, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 141, - "y": 60, - "left": 18.28125, - "top": 68.656555, - "right": 19.6875, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 142, - "y": 60, - "left": 19.6875, - "top": 68.656555, - "right": 21.09375, - "bottom": 68.138852, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 61, - "left": 15.46875, - "top": 68.138852, - "right": 16.875, - "bottom": 67.609221, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 140, - "y": 61, - "left": 16.875, - "top": 68.138852, - "right": 18.28125, - "bottom": 67.609221, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 62, - "left": 15.46875, - "top": 67.609221, - "right": 16.875, - "bottom": 67.067433, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 63, - "left": 14.0625, - "top": 67.067433, - "right": 15.46875, - "bottom": 66.51326, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 63, - "left": 15.46875, - "top": 67.067433, - "right": 16.875, - "bottom": 66.51326, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 64, - "left": 14.0625, - "top": 66.51326, - "right": 15.46875, - "bottom": 65.946472, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 139, - "y": 64, - "left": 15.46875, - "top": 66.51326, - "right": 16.875, - "bottom": 65.946472, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 65, - "left": 14.0625, - "top": 65.946472, - "right": 15.46875, - "bottom": 65.366837, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 66, - "left": 12.65625, - "top": 65.366837, - "right": 14.0625, - "bottom": 64.774125, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 66, - "left": 14.0625, - "top": 65.366837, - "right": 15.46875, - "bottom": 64.774125, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 67, - "left": 12.65625, - "top": 64.774125, - "right": 14.0625, - "bottom": 64.168107, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 67, - "left": 14.0625, - "top": 64.774125, - "right": 15.46875, - "bottom": 64.168107, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 68, - "left": 11.25, - "top": 64.168107, - "right": 12.65625, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 68, - "left": 12.65625, - "top": 64.168107, - "right": 14.0625, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 138, - "y": 68, - "left": 14.0625, - "top": 64.168107, - "right": 15.46875, - "bottom": 63.548552, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 69, - "left": 11.25, - "top": 63.548552, - "right": 12.65625, - "bottom": 62.915233, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 70, - "left": 11.25, - "top": 62.915233, - "right": 12.65625, - "bottom": 62.267923, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 71, - "left": 11.25, - "top": 62.267923, - "right": 12.65625, - "bottom": 61.606396, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 72, - "left": 11.25, - "top": 61.606396, - "right": 12.65625, - "bottom": 60.930432, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 137, - "y": 72, - "left": 12.65625, - "top": 61.606396, - "right": 14.0625, - "bottom": 60.930432, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 73, - "left": 11.25, - "top": 60.930432, - "right": 12.65625, - "bottom": 60.239811, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 74, - "left": 11.25, - "top": 60.239811, - "right": 12.65625, - "bottom": 59.534318, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 135, - "y": 75, - "left": 9.84375, - "top": 59.534318, - "right": 11.25, - "bottom": 58.813742, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 136, - "y": 75, - "left": 11.25, - "top": 59.534318, - "right": 12.65625, - "bottom": 58.813742, - "countries": [ - "norway", - "sweden" - ] - }, - { - "x": 141, - "y": 61, - "left": 18.28125, - "top": 68.138852, - "right": 19.6875, - "bottom": 67.609221, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 61, - "left": 19.6875, - "top": 68.138852, - "right": 21.09375, - "bottom": 67.609221, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 61, - "left": 21.09375, - "top": 68.138852, - "right": 22.5, - "bottom": 67.609221, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 62, - "left": 16.875, - "top": 67.609221, - "right": 18.28125, - "bottom": 67.067433, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 62, - "left": 18.28125, - "top": 67.609221, - "right": 19.6875, - "bottom": 67.067433, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 62, - "left": 19.6875, - "top": 67.609221, - "right": 21.09375, - "bottom": 67.067433, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 62, - "left": 21.09375, - "top": 67.609221, - "right": 22.5, - "bottom": 67.067433, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 63, - "left": 16.875, - "top": 67.067433, - "right": 18.28125, - "bottom": 66.51326, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 63, - "left": 18.28125, - "top": 67.067433, - "right": 19.6875, - "bottom": 66.51326, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 63, - "left": 19.6875, - "top": 67.067433, - "right": 21.09375, - "bottom": 66.51326, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 63, - "left": 21.09375, - "top": 67.067433, - "right": 22.5, - "bottom": 66.51326, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 64, - "left": 16.875, - "top": 66.51326, - "right": 18.28125, - "bottom": 65.946472, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 64, - "left": 18.28125, - "top": 66.51326, - "right": 19.6875, - "bottom": 65.946472, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 64, - "left": 19.6875, - "top": 66.51326, - "right": 21.09375, - "bottom": 65.946472, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 64, - "left": 21.09375, - "top": 66.51326, - "right": 22.5, - "bottom": 65.946472, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 65, - "left": 15.46875, - "top": 65.946472, - "right": 16.875, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 65, - "left": 16.875, - "top": 65.946472, - "right": 18.28125, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 65, - "left": 18.28125, - "top": 65.946472, - "right": 19.6875, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 65, - "left": 19.6875, - "top": 65.946472, - "right": 21.09375, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 65, - "left": 21.09375, - "top": 65.946472, - "right": 22.5, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 144, - "y": 65, - "left": 22.5, - "top": 65.946472, - "right": 23.90625, - "bottom": 65.366837, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 66, - "left": 15.46875, - "top": 65.366837, - "right": 16.875, - "bottom": 64.774125, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 66, - "left": 16.875, - "top": 65.366837, - "right": 18.28125, - "bottom": 64.774125, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 66, - "left": 18.28125, - "top": 65.366837, - "right": 19.6875, - "bottom": 64.774125, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 66, - "left": 19.6875, - "top": 65.366837, - "right": 21.09375, - "bottom": 64.774125, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 66, - "left": 21.09375, - "top": 65.366837, - "right": 22.5, - "bottom": 64.774125, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 67, - "left": 15.46875, - "top": 64.774125, - "right": 16.875, - "bottom": 64.168107, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 67, - "left": 16.875, - "top": 64.774125, - "right": 18.28125, - "bottom": 64.168107, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 67, - "left": 18.28125, - "top": 64.774125, - "right": 19.6875, - "bottom": 64.168107, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 67, - "left": 19.6875, - "top": 64.774125, - "right": 21.09375, - "bottom": 64.168107, - "countries": [ - "sweden" - ] - }, - { - "x": 143, - "y": 67, - "left": 21.09375, - "top": 64.774125, - "right": 22.5, - "bottom": 64.168107, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 68, - "left": 15.46875, - "top": 64.168107, - "right": 16.875, - "bottom": 63.548552, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 68, - "left": 16.875, - "top": 64.168107, - "right": 18.28125, - "bottom": 63.548552, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 68, - "left": 18.28125, - "top": 64.168107, - "right": 19.6875, - "bottom": 63.548552, - "countries": [ - "sweden" - ] - }, - { - "x": 142, - "y": 68, - "left": 19.6875, - "top": 64.168107, - "right": 21.09375, - "bottom": 63.548552, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 69, - "left": 12.65625, - "top": 63.548552, - "right": 14.0625, - "bottom": 62.915233, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 69, - "left": 14.0625, - "top": 63.548552, - "right": 15.46875, - "bottom": 62.915233, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 69, - "left": 15.46875, - "top": 63.548552, - "right": 16.875, - "bottom": 62.915233, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 69, - "left": 16.875, - "top": 63.548552, - "right": 18.28125, - "bottom": 62.915233, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 69, - "left": 18.28125, - "top": 63.548552, - "right": 19.6875, - "bottom": 62.915233, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 70, - "left": 12.65625, - "top": 62.915233, - "right": 14.0625, - "bottom": 62.267923, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 70, - "left": 14.0625, - "top": 62.915233, - "right": 15.46875, - "bottom": 62.267923, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 70, - "left": 15.46875, - "top": 62.915233, - "right": 16.875, - "bottom": 62.267923, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 70, - "left": 16.875, - "top": 62.915233, - "right": 18.28125, - "bottom": 62.267923, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 70, - "left": 18.28125, - "top": 62.915233, - "right": 19.6875, - "bottom": 62.267923, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 71, - "left": 12.65625, - "top": 62.267923, - "right": 14.0625, - "bottom": 61.606396, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 71, - "left": 14.0625, - "top": 62.267923, - "right": 15.46875, - "bottom": 61.606396, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 71, - "left": 15.46875, - "top": 62.267923, - "right": 16.875, - "bottom": 61.606396, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 71, - "left": 16.875, - "top": 62.267923, - "right": 18.28125, - "bottom": 61.606396, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 72, - "left": 14.0625, - "top": 61.606396, - "right": 15.46875, - "bottom": 60.930432, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 72, - "left": 15.46875, - "top": 61.606396, - "right": 16.875, - "bottom": 60.930432, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 72, - "left": 16.875, - "top": 61.606396, - "right": 18.28125, - "bottom": 60.930432, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 73, - "left": 12.65625, - "top": 60.930432, - "right": 14.0625, - "bottom": 60.239811, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 73, - "left": 14.0625, - "top": 60.930432, - "right": 15.46875, - "bottom": 60.239811, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 73, - "left": 15.46875, - "top": 60.930432, - "right": 16.875, - "bottom": 60.239811, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 73, - "left": 16.875, - "top": 60.930432, - "right": 18.28125, - "bottom": 60.239811, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 73, - "left": 18.28125, - "top": 60.930432, - "right": 19.6875, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "sweden" - ] - }, - { - "x": 137, - "y": 74, - "left": 12.65625, - "top": 60.239811, - "right": 14.0625, - "bottom": 59.534318, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 74, - "left": 14.0625, - "top": 60.239811, - "right": 15.46875, - "bottom": 59.534318, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 74, - "left": 15.46875, - "top": 60.239811, - "right": 16.875, - "bottom": 59.534318, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 74, - "left": 16.875, - "top": 60.239811, - "right": 18.28125, - "bottom": 59.534318, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 74, - "left": 18.28125, - "top": 60.239811, - "right": 19.6875, - "bottom": 59.534318, - "countries": [ - "\u00e5land", - "sweden" - ] - }, - { - "x": 137, - "y": 75, - "left": 12.65625, - "top": 59.534318, - "right": 14.0625, - "bottom": 58.813742, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 75, - "left": 14.0625, - "top": 59.534318, - "right": 15.46875, - "bottom": 58.813742, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 75, - "left": 15.46875, - "top": 59.534318, - "right": 16.875, - "bottom": 58.813742, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 75, - "left": 16.875, - "top": 59.534318, - "right": 18.28125, - "bottom": 58.813742, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 75, - "left": 18.28125, - "top": 59.534318, - "right": 19.6875, - "bottom": 58.813742, - "countries": [ - "sweden" - ] - }, - { - "x": 135, - "y": 76, - "left": 9.84375, - "top": 58.813742, - "right": 11.25, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 136, - "y": 76, - "left": 11.25, - "top": 58.813742, - "right": 12.65625, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 76, - "left": 12.65625, - "top": 58.813742, - "right": 14.0625, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 76, - "left": 14.0625, - "top": 58.813742, - "right": 15.46875, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 76, - "left": 15.46875, - "top": 58.813742, - "right": 16.875, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 76, - "left": 16.875, - "top": 58.813742, - "right": 18.28125, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 76, - "left": 18.28125, - "top": 58.813742, - "right": 19.6875, - "bottom": 58.077876, - "countries": [ - "sweden" - ] - }, - { - "x": 136, - "y": 77, - "left": 11.25, - "top": 58.077876, - "right": 12.65625, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 77, - "left": 12.65625, - "top": 58.077876, - "right": 14.0625, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 77, - "left": 14.0625, - "top": 58.077876, - "right": 15.46875, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 77, - "left": 15.46875, - "top": 58.077876, - "right": 16.875, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 77, - "left": 16.875, - "top": 58.077876, - "right": 18.28125, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 77, - "left": 18.28125, - "top": 58.077876, - "right": 19.6875, - "bottom": 57.326521, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 78, - "left": 12.65625, - "top": 57.326521, - "right": 14.0625, - "bottom": 56.559482, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 78, - "left": 14.0625, - "top": 57.326521, - "right": 15.46875, - "bottom": 56.559482, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 78, - "left": 15.46875, - "top": 57.326521, - "right": 16.875, - "bottom": 56.559482, - "countries": [ - "sweden" - ] - }, - { - "x": 140, - "y": 78, - "left": 16.875, - "top": 57.326521, - "right": 18.28125, - "bottom": 56.559482, - "countries": [ - "sweden" - ] - }, - { - "x": 141, - "y": 78, - "left": 18.28125, - "top": 57.326521, - "right": 19.6875, - "bottom": 56.559482, - "countries": [ - "sweden" - ] - }, - { - "x": 137, - "y": 79, - "left": 12.65625, - "top": 56.559482, - "right": 14.0625, - "bottom": 55.776573, - "countries": [ - "sweden" - ] - }, - { - "x": 138, - "y": 79, - "left": 14.0625, - "top": 56.559482, - "right": 15.46875, - "bottom": 55.776573, - "countries": [ - "sweden" - ] - }, - { - "x": 139, - "y": 79, - "left": 15.46875, - "top": 56.559482, - "right": 16.875, - "bottom": 55.776573, - "countries": [ - "sweden" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/switzerland.json b/wahoomc/resources/json/europe/switzerland.json deleted file mode 100644 index 54abb80a..00000000 --- a/wahoomc/resources/json/europe/switzerland.json +++ /dev/null @@ -1,129 +0,0 @@ -[ - { - "x": 134, - "y": 89, - "left": 8.4375, - "top": 47.989922, - "right": 9.84375, - "bottom": 47.040182, - "countries": [ - "liechtenstein", - "germany", - "austria", - "switzerland" - ] - }, - { - "x": 134, - "y": 90, - "left": 8.4375, - "top": 47.040182, - "right": 9.84375, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 135, - "y": 90, - "left": 9.84375, - "top": 47.040182, - "right": 11.25, - "bottom": 46.073231, - "countries": [ - "italy", - "switzerland", - "austria" - ] - }, - { - "x": 132, - "y": 91, - "left": 5.625, - "top": 46.073231, - "right": 7.03125, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 133, - "y": 91, - "left": 7.03125, - "top": 46.073231, - "right": 8.4375, - "bottom": 45.089036, - "countries": [ - "france", - "switzerland", - "italy" - ] - }, - { - "x": 132, - "y": 90, - "left": 5.625, - "top": 47.040182, - "right": 7.03125, - "bottom": 46.073231, - "countries": [ - "france", - "switzerland" - ] - }, - { - "x": 132, - "y": 89, - "left": 5.625, - "top": 47.989922, - "right": 7.03125, - "bottom": 47.040182, - "countries": [ - "france", - "switzerland" - ] - }, - { - "x": 133, - "y": 89, - "left": 7.03125, - "top": 47.989922, - "right": 8.4375, - "bottom": 47.040182, - "countries": [ - "france", - "germany", - "switzerland" - ] - }, - { - "x": 133, - "y": 90, - "left": 7.03125, - "top": 47.040182, - "right": 8.4375, - "bottom": 46.073231, - "countries": [ - "switzerland", - "italy" - ] - }, - { - "x": 134, - "y": 91, - "left": 8.4375, - "top": 46.073231, - "right": 9.84375, - "bottom": 45.089036, - "countries": [ - "switzerland", - "italy" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/ukraine.json b/wahoomc/resources/json/europe/ukraine.json deleted file mode 100644 index e83bba0d..00000000 --- a/wahoomc/resources/json/europe/ukraine.json +++ /dev/null @@ -1,1029 +0,0 @@ -[ - { - "x": 144, - "y": 84, - "left": 22.5, - "top": 52.48278, - "right": 23.90625, - "bottom": 51.618017, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 84, - "left": 23.90625, - "top": 52.48278, - "right": 25.3125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 146, - "y": 84, - "left": 25.3125, - "top": 52.48278, - "right": 26.71875, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 147, - "y": 84, - "left": 26.71875, - "top": 52.48278, - "right": 28.125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 148, - "y": 84, - "left": 28.125, - "top": 52.48278, - "right": 29.53125, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 149, - "y": 84, - "left": 29.53125, - "top": 52.48278, - "right": 30.9375, - "bottom": 51.618017, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 150, - "y": 84, - "left": 30.9375, - "top": 52.48278, - "right": 32.34375, - "bottom": 51.618017, - "countries": [ - "belarus", - "russia", - "ukraine" - ] - }, - { - "x": 144, - "y": 85, - "left": 22.5, - "top": 51.618017, - "right": 23.90625, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 85, - "left": 23.90625, - "top": 51.618017, - "right": 25.3125, - "bottom": 50.736455, - "countries": [ - "belarus", - "poland", - "ukraine" - ] - }, - { - "x": 147, - "y": 85, - "left": 26.71875, - "top": 51.618017, - "right": 28.125, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 148, - "y": 85, - "left": 28.125, - "top": 51.618017, - "right": 29.53125, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 149, - "y": 85, - "left": 29.53125, - "top": 51.618017, - "right": 30.9375, - "bottom": 50.736455, - "countries": [ - "belarus", - "ukraine" - ] - }, - { - "x": 143, - "y": 88, - "left": 21.09375, - "top": 48.922499, - "right": 22.5, - "bottom": 47.989922, - "countries": [ - "slovakia", - "ukraine", - "hungary" - ] - }, - { - "x": 144, - "y": 88, - "left": 22.5, - "top": 48.922499, - "right": 23.90625, - "bottom": 47.989922, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 144, - "y": 89, - "left": 22.5, - "top": 47.989922, - "right": 23.90625, - "bottom": 47.040182, - "countries": [ - "romania", - "ukraine", - "hungary" - ] - }, - { - "x": 146, - "y": 88, - "left": 25.3125, - "top": 48.922499, - "right": 26.71875, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 147, - "y": 88, - "left": 26.71875, - "top": 48.922499, - "right": 28.125, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 148, - "y": 88, - "left": 28.125, - "top": 48.922499, - "right": 29.53125, - "bottom": 47.989922, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 148, - "y": 89, - "left": 28.125, - "top": 47.989922, - "right": 29.53125, - "bottom": 47.040182, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 149, - "y": 89, - "left": 29.53125, - "top": 47.989922, - "right": 30.9375, - "bottom": 47.040182, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 148, - "y": 90, - "left": 28.125, - "top": 47.040182, - "right": 29.53125, - "bottom": 46.073231, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 149, - "y": 90, - "left": 29.53125, - "top": 47.040182, - "right": 30.9375, - "bottom": 46.073231, - "countries": [ - "moldova", - "ukraine" - ] - }, - { - "x": 148, - "y": 91, - "left": 28.125, - "top": 46.073231, - "right": 29.53125, - "bottom": 45.089036, - "countries": [ - "moldova", - "ukraine", - "romania" - ] - }, - { - "x": 144, - "y": 86, - "left": 22.5, - "top": 50.736455, - "right": 23.90625, - "bottom": 49.837982, - "countries": [ - "poland", - "ukraine" - ] - }, - { - "x": 145, - "y": 86, - "left": 23.90625, - "top": 50.736455, - "right": 25.3125, - "bottom": 49.837982, - "countries": [ - "poland", - "ukraine" - ] - }, - { - "x": 143, - "y": 87, - "left": 21.09375, - "top": 49.837982, - "right": 22.5, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - }, - { - "x": 144, - "y": 87, - "left": 22.5, - "top": 49.837982, - "right": 23.90625, - "bottom": 48.922499, - "countries": [ - "poland", - "ukraine", - "slovakia" - ] - }, - { - "x": 145, - "y": 89, - "left": 23.90625, - "top": 47.989922, - "right": 25.3125, - "bottom": 47.040182, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 146, - "y": 89, - "left": 25.3125, - "top": 47.989922, - "right": 26.71875, - "bottom": 47.040182, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 149, - "y": 91, - "left": 29.53125, - "top": 46.073231, - "right": 30.9375, - "bottom": 45.089036, - "countries": [ - "ukraine", - "romania" - ] - }, - { - "x": 151, - "y": 84, - "left": 32.34375, - "top": 52.48278, - "right": 33.75, - "bottom": 51.618017, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 152, - "y": 84, - "left": 33.75, - "top": 52.48278, - "right": 35.15625, - "bottom": 51.618017, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 152, - "y": 85, - "left": 33.75, - "top": 51.618017, - "right": 35.15625, - "bottom": 50.736455, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 153, - "y": 85, - "left": 35.15625, - "top": 51.618017, - "right": 36.5625, - "bottom": 50.736455, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 153, - "y": 86, - "left": 35.15625, - "top": 50.736455, - "right": 36.5625, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 86, - "left": 36.5625, - "top": 50.736455, - "right": 37.96875, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 86, - "left": 37.96875, - "top": 50.736455, - "right": 39.375, - "bottom": 49.837982, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 87, - "left": 37.96875, - "top": 49.837982, - "right": 39.375, - "bottom": 48.922499, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 87, - "left": 39.375, - "top": 49.837982, - "right": 40.78125, - "bottom": 48.922499, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 88, - "left": 39.375, - "top": 48.922499, - "right": 40.78125, - "bottom": 47.989922, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 89, - "left": 37.96875, - "top": 47.989922, - "right": 39.375, - "bottom": 47.040182, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 156, - "y": 89, - "left": 39.375, - "top": 47.989922, - "right": 40.78125, - "bottom": 47.040182, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 90, - "left": 36.5625, - "top": 47.040182, - "right": 37.96875, - "bottom": 46.073231, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 155, - "y": 90, - "left": 37.96875, - "top": 47.040182, - "right": 39.375, - "bottom": 46.073231, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 153, - "y": 91, - "left": 35.15625, - "top": 46.073231, - "right": 36.5625, - "bottom": 45.089036, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 154, - "y": 91, - "left": 36.5625, - "top": 46.073231, - "right": 37.96875, - "bottom": 45.089036, - "countries": [ - "russia", - "ukraine" - ] - }, - { - "x": 146, - "y": 85, - "left": 25.3125, - "top": 51.618017, - "right": 26.71875, - "bottom": 50.736455, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 85, - "left": 30.9375, - "top": 51.618017, - "right": 32.34375, - "bottom": 50.736455, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 85, - "left": 32.34375, - "top": 51.618017, - "right": 33.75, - "bottom": 50.736455, - "countries": [ - "ukraine" - ] - }, - { - "x": 146, - "y": 86, - "left": 25.3125, - "top": 50.736455, - "right": 26.71875, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 147, - "y": 86, - "left": 26.71875, - "top": 50.736455, - "right": 28.125, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 148, - "y": 86, - "left": 28.125, - "top": 50.736455, - "right": 29.53125, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 149, - "y": 86, - "left": 29.53125, - "top": 50.736455, - "right": 30.9375, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 86, - "left": 30.9375, - "top": 50.736455, - "right": 32.34375, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 86, - "left": 32.34375, - "top": 50.736455, - "right": 33.75, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 86, - "left": 33.75, - "top": 50.736455, - "right": 35.15625, - "bottom": 49.837982, - "countries": [ - "ukraine" - ] - }, - { - "x": 145, - "y": 87, - "left": 23.90625, - "top": 49.837982, - "right": 25.3125, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 146, - "y": 87, - "left": 25.3125, - "top": 49.837982, - "right": 26.71875, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 147, - "y": 87, - "left": 26.71875, - "top": 49.837982, - "right": 28.125, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 148, - "y": 87, - "left": 28.125, - "top": 49.837982, - "right": 29.53125, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 149, - "y": 87, - "left": 29.53125, - "top": 49.837982, - "right": 30.9375, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 87, - "left": 30.9375, - "top": 49.837982, - "right": 32.34375, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 87, - "left": 32.34375, - "top": 49.837982, - "right": 33.75, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 87, - "left": 33.75, - "top": 49.837982, - "right": 35.15625, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 153, - "y": 87, - "left": 35.15625, - "top": 49.837982, - "right": 36.5625, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 154, - "y": 87, - "left": 36.5625, - "top": 49.837982, - "right": 37.96875, - "bottom": 48.922499, - "countries": [ - "ukraine" - ] - }, - { - "x": 145, - "y": 88, - "left": 23.90625, - "top": 48.922499, - "right": 25.3125, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 149, - "y": 88, - "left": 29.53125, - "top": 48.922499, - "right": 30.9375, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 88, - "left": 30.9375, - "top": 48.922499, - "right": 32.34375, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 88, - "left": 32.34375, - "top": 48.922499, - "right": 33.75, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 88, - "left": 33.75, - "top": 48.922499, - "right": 35.15625, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 153, - "y": 88, - "left": 35.15625, - "top": 48.922499, - "right": 36.5625, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 154, - "y": 88, - "left": 36.5625, - "top": 48.922499, - "right": 37.96875, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 155, - "y": 88, - "left": 37.96875, - "top": 48.922499, - "right": 39.375, - "bottom": 47.989922, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 89, - "left": 30.9375, - "top": 47.989922, - "right": 32.34375, - "bottom": 47.040182, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 89, - "left": 32.34375, - "top": 47.989922, - "right": 33.75, - "bottom": 47.040182, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 89, - "left": 33.75, - "top": 47.989922, - "right": 35.15625, - "bottom": 47.040182, - "countries": [ - "ukraine" - ] - }, - { - "x": 153, - "y": 89, - "left": 35.15625, - "top": 47.989922, - "right": 36.5625, - "bottom": 47.040182, - "countries": [ - "ukraine" - ] - }, - { - "x": 154, - "y": 89, - "left": 36.5625, - "top": 47.989922, - "right": 37.96875, - "bottom": 47.040182, - "countries": [ - "ukraine" - ] - }, - { - "x": 150, - "y": 90, - "left": 30.9375, - "top": 47.040182, - "right": 32.34375, - "bottom": 46.073231, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 90, - "left": 32.34375, - "top": 47.040182, - "right": 33.75, - "bottom": 46.073231, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 90, - "left": 33.75, - "top": 47.040182, - "right": 35.15625, - "bottom": 46.073231, - "countries": [ - "ukraine" - ] - }, - { - "x": 153, - "y": 90, - "left": 35.15625, - "top": 47.040182, - "right": 36.5625, - "bottom": 46.073231, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 91, - "left": 32.34375, - "top": 46.073231, - "right": 33.75, - "bottom": 45.089036, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 91, - "left": 33.75, - "top": 46.073231, - "right": 35.15625, - "bottom": 45.089036, - "countries": [ - "ukraine" - ] - }, - { - "x": 151, - "y": 92, - "left": 32.34375, - "top": 45.089036, - "right": 33.75, - "bottom": 44.087585, - "countries": [ - "ukraine" - ] - }, - { - "x": 152, - "y": 92, - "left": 33.75, - "top": 45.089036, - "right": 35.15625, - "bottom": 44.087585, - "countries": [ - "ukraine" - ] - }, - { - "x": 153, - "y": 92, - "left": 35.15625, - "top": 45.089036, - "right": 36.5625, - "bottom": 44.087585, - "countries": [ - "ukraine" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/united_kingdom.json b/wahoomc/resources/json/europe/united_kingdom.json deleted file mode 100644 index 7391786c..00000000 --- a/wahoomc/resources/json/europe/united_kingdom.json +++ /dev/null @@ -1,806 +0,0 @@ -[ - { - "x": 129, - "y": 85, - "left": 1.40625, - "top": 51.618017, - "right": 2.8125, - "bottom": 50.736455, - "countries": [ - "united_kingdom", - "france", - "belgium" - ] - }, - { - "x": 128, - "y": 86, - "left": 0.0, - "top": 50.736455, - "right": 1.40625, - "bottom": 49.837982, - "countries": [ - "united_kingdom", - "france" - ] - }, - { - "x": 122, - "y": 80, - "left": -8.4375, - "top": 55.776573, - "right": -7.03125, - "bottom": 54.977614, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 80, - "left": -7.03125, - "top": 55.776573, - "right": -5.625, - "bottom": 54.977614, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 122, - "y": 81, - "left": -8.4375, - "top": 54.977614, - "right": -7.03125, - "bottom": 54.162434, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 81, - "left": -7.03125, - "top": 54.977614, - "right": -5.625, - "bottom": 54.162434, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 122, - "y": 82, - "left": -8.4375, - "top": 54.162434, - "right": -7.03125, - "bottom": 53.330873, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 82, - "left": -7.03125, - "top": 54.162434, - "right": -5.625, - "bottom": 53.330873, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 123, - "y": 84, - "left": -7.03125, - "top": 52.48278, - "right": -5.625, - "bottom": 51.618017, - "countries": [ - "united_kingdom", - "ireland" - ] - }, - { - "x": 124, - "y": 81, - "left": -5.625, - "top": 54.977614, - "right": -4.21875, - "bottom": 54.162434, - "countries": [ - "isle_of_man", - "united_kingdom" - ] - }, - { - "x": 124, - "y": 82, - "left": -5.625, - "top": 54.162434, - "right": -4.21875, - "bottom": 53.330873, - "countries": [ - "isle_of_man", - "united_kingdom" - ] - }, - { - "x": 126, - "y": 79, - "left": -2.8125, - "top": 56.559482, - "right": -1.40625, - "bottom": 55.776573, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 80, - "left": -4.21875, - "top": 55.776573, - "right": -2.8125, - "bottom": 54.977614, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 80, - "left": -2.8125, - "top": 55.776573, - "right": -1.40625, - "bottom": 54.977614, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 80, - "left": -1.40625, - "top": 55.776573, - "right": 0.0, - "bottom": 54.977614, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 81, - "left": -4.21875, - "top": 54.977614, - "right": -2.8125, - "bottom": 54.162434, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 81, - "left": -2.8125, - "top": 54.977614, - "right": -1.40625, - "bottom": 54.162434, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 81, - "left": -1.40625, - "top": 54.977614, - "right": 0.0, - "bottom": 54.162434, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 82, - "left": -4.21875, - "top": 54.162434, - "right": -2.8125, - "bottom": 53.330873, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 82, - "left": -2.8125, - "top": 54.162434, - "right": -1.40625, - "bottom": 53.330873, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 82, - "left": -1.40625, - "top": 54.162434, - "right": 0.0, - "bottom": 53.330873, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 128, - "y": 82, - "left": 0.0, - "top": 54.162434, - "right": 1.40625, - "bottom": 53.330873, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 83, - "left": -4.21875, - "top": 53.330873, - "right": -2.8125, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 83, - "left": -2.8125, - "top": 53.330873, - "right": -1.40625, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 83, - "left": -1.40625, - "top": 53.330873, - "right": 0.0, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 128, - "y": 83, - "left": 0.0, - "top": 53.330873, - "right": 1.40625, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 129, - "y": 83, - "left": 1.40625, - "top": 53.330873, - "right": 2.8125, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 84, - "left": -4.21875, - "top": 52.48278, - "right": -2.8125, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 84, - "left": -2.8125, - "top": 52.48278, - "right": -1.40625, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 84, - "left": -1.40625, - "top": 52.48278, - "right": 0.0, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 128, - "y": 84, - "left": 0.0, - "top": 52.48278, - "right": 1.40625, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 129, - "y": 84, - "left": 1.40625, - "top": 52.48278, - "right": 2.8125, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 85, - "left": -5.625, - "top": 51.618017, - "right": -4.21875, - "bottom": 50.736455, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 85, - "left": -4.21875, - "top": 51.618017, - "right": -2.8125, - "bottom": 50.736455, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 85, - "left": -2.8125, - "top": 51.618017, - "right": -1.40625, - "bottom": 50.736455, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 85, - "left": -1.40625, - "top": 51.618017, - "right": 0.0, - "bottom": 50.736455, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 128, - "y": 85, - "left": 0.0, - "top": 51.618017, - "right": 1.40625, - "bottom": 50.736455, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 86, - "left": -7.03125, - "top": 50.736455, - "right": -5.625, - "bottom": 49.837982, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 86, - "left": -5.625, - "top": 50.736455, - "right": -4.21875, - "bottom": 49.837982, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 86, - "left": -4.21875, - "top": 50.736455, - "right": -2.8125, - "bottom": 49.837982, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 86, - "left": -2.8125, - "top": 50.736455, - "right": -1.40625, - "bottom": 49.837982, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 86, - "left": -1.40625, - "top": 50.736455, - "right": 0.0, - "bottom": 49.837982, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 73, - "left": -2.8125, - "top": 60.930432, - "right": -1.40625, - "bottom": 60.239811, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 73, - "left": -1.40625, - "top": 60.930432, - "right": 0.0, - "bottom": 60.239811, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 74, - "left": -2.8125, - "top": 60.239811, - "right": -1.40625, - "bottom": 59.534318, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 127, - "y": 74, - "left": -1.40625, - "top": 60.239811, - "right": 0.0, - "bottom": 59.534318, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 75, - "left": -7.03125, - "top": 59.534318, - "right": -5.625, - "bottom": 58.813742, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 75, - "left": -5.625, - "top": 59.534318, - "right": -4.21875, - "bottom": 58.813742, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 75, - "left": -4.21875, - "top": 59.534318, - "right": -2.8125, - "bottom": 58.813742, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 75, - "left": -2.8125, - "top": 59.534318, - "right": -1.40625, - "bottom": 58.813742, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 122, - "y": 76, - "left": -8.4375, - "top": 58.813742, - "right": -7.03125, - "bottom": 58.077876, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 76, - "left": -7.03125, - "top": 58.813742, - "right": -5.625, - "bottom": 58.077876, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 76, - "left": -5.625, - "top": 58.813742, - "right": -4.21875, - "bottom": 58.077876, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 76, - "left": -4.21875, - "top": 58.813742, - "right": -2.8125, - "bottom": 58.077876, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 121, - "y": 77, - "left": -9.84375, - "top": 58.077876, - "right": -8.4375, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 122, - "y": 77, - "left": -8.4375, - "top": 58.077876, - "right": -7.03125, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 77, - "left": -7.03125, - "top": 58.077876, - "right": -5.625, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 77, - "left": -5.625, - "top": 58.077876, - "right": -4.21875, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 77, - "left": -4.21875, - "top": 58.077876, - "right": -2.8125, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 77, - "left": -2.8125, - "top": 58.077876, - "right": -1.40625, - "bottom": 57.326521, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 122, - "y": 78, - "left": -8.4375, - "top": 57.326521, - "right": -7.03125, - "bottom": 56.559482, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 78, - "left": -7.03125, - "top": 57.326521, - "right": -5.625, - "bottom": 56.559482, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 78, - "left": -5.625, - "top": 57.326521, - "right": -4.21875, - "bottom": 56.559482, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 78, - "left": -4.21875, - "top": 57.326521, - "right": -2.8125, - "bottom": 56.559482, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 126, - "y": 78, - "left": -2.8125, - "top": 57.326521, - "right": -1.40625, - "bottom": 56.559482, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 122, - "y": 79, - "left": -8.4375, - "top": 56.559482, - "right": -7.03125, - "bottom": 55.776573, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 123, - "y": 79, - "left": -7.03125, - "top": 56.559482, - "right": -5.625, - "bottom": 55.776573, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 79, - "left": -5.625, - "top": 56.559482, - "right": -4.21875, - "bottom": 55.776573, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 125, - "y": 79, - "left": -4.21875, - "top": 56.559482, - "right": -2.8125, - "bottom": 55.776573, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 80, - "left": -5.625, - "top": 55.776573, - "right": -4.21875, - "bottom": 54.977614, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 83, - "left": -5.625, - "top": 53.330873, - "right": -4.21875, - "bottom": 52.48278, - "countries": [ - "united_kingdom" - ] - }, - { - "x": 124, - "y": 84, - "left": -5.625, - "top": 52.48278, - "right": -4.21875, - "bottom": 51.618017, - "countries": [ - "united_kingdom" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/europe/vatican_city.json b/wahoomc/resources/json/europe/vatican_city.json deleted file mode 100644 index c4b946c3..00000000 --- a/wahoomc/resources/json/europe/vatican_city.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "x": 136, - "y": 95, - "left": 11.25, - "top": 42.032974, - "right": 12.65625, - "bottom": 40.979898, - "countries": [ - "vatican_city", - "italy" - ] - } -] \ No newline at end of file diff --git "a/wahoomc/resources/json/europe/\303\245land.json" "b/wahoomc/resources/json/europe/\303\245land.json" deleted file mode 100644 index baaf75f5..00000000 --- "a/wahoomc/resources/json/europe/\303\245land.json" +++ /dev/null @@ -1,73 +0,0 @@ -[ - { - "x": 142, - "y": 73, - "left": 19.6875, - "top": 60.930432, - "right": 21.09375, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 143, - "y": 73, - "left": 21.09375, - "top": 60.930432, - "right": 22.5, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 143, - "y": 74, - "left": 21.09375, - "top": 60.239811, - "right": 22.5, - "bottom": 59.534318, - "countries": [ - "\u00e5land", - "finland" - ] - }, - { - "x": 141, - "y": 73, - "left": 18.28125, - "top": 60.930432, - "right": 19.6875, - "bottom": 60.239811, - "countries": [ - "\u00e5land", - "sweden" - ] - }, - { - "x": 141, - "y": 74, - "left": 18.28125, - "top": 60.239811, - "right": 19.6875, - "bottom": 59.534318, - "countries": [ - "\u00e5land", - "sweden" - ] - }, - { - "x": 142, - "y": 74, - "left": 19.6875, - "top": 60.239811, - "right": 21.09375, - "bottom": 59.534318, - "countries": [ - "\u00e5land" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/anguilla.json b/wahoomc/resources/json/north_america/anguilla.json deleted file mode 100644 index 5e356c0e..00000000 --- a/wahoomc/resources/json/north_america/anguilla.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "x": 82, - "y": 114, - "left": -64.6875, - "top": 19.311143, - "right": -63.28125, - "bottom": 17.978733, - "countries": [ - "anguilla", - "virgin_islands_u.s.", - "united_states_virgin_islands", - "british_virgin_islands" - ] - }, - { - "x": 83, - "y": 114, - "left": -63.28125, - "top": 19.311143, - "right": -61.875, - "bottom": 17.978733, - "countries": [ - "anguilla", - "saint-martin", - "sint_maarten" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/antigua_and_barbuda.json b/wahoomc/resources/json/north_america/antigua_and_barbuda.json deleted file mode 100644 index 3b19ee74..00000000 --- a/wahoomc/resources/json/north_america/antigua_and_barbuda.json +++ /dev/null @@ -1,28 +0,0 @@ -[ - { - "x": 83, - "y": 115, - "left": -63.28125, - "top": 17.978733, - "right": -61.875, - "bottom": 16.636192, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "saint_kitts_and_nevis", - "antigua_and_barbuda", - "saint-barth\u00e9lemy", - "montserrat" - ] - }, - { - "x": 84, - "y": 115, - "left": -61.875, - "top": 17.978733, - "right": -60.46875, - "bottom": 16.636192, - "countries": [ - "antigua_and_barbuda" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/bahamas.json b/wahoomc/resources/json/north_america/bahamas.json deleted file mode 100644 index 58ef43de..00000000 --- a/wahoomc/resources/json/north_america/bahamas.json +++ /dev/null @@ -1,205 +0,0 @@ -[ - { - "x": 72, - "y": 107, - "left": -78.75, - "top": 28.304381, - "right": -77.34375, - "bottom": 27.059126, - "countries": [ - "bahamas" - ] - }, - { - "x": 71, - "y": 108, - "left": -80.15625, - "top": 27.059126, - "right": -78.75, - "bottom": 25.799891, - "countries": [ - "florida", - "bahamas" - ] - }, - { - "x": 72, - "y": 108, - "left": -78.75, - "top": 27.059126, - "right": -77.34375, - "bottom": 25.799891, - "countries": [ - "bahamas" - ] - }, - { - "x": 73, - "y": 108, - "left": -77.34375, - "top": 27.059126, - "right": -75.9375, - "bottom": 25.799891, - "countries": [ - "bahamas" - ] - }, - { - "x": 71, - "y": 109, - "left": -80.15625, - "top": 25.799891, - "right": -78.75, - "bottom": 24.527135, - "countries": [ - "florida", - "bahamas" - ] - }, - { - "x": 72, - "y": 109, - "left": -78.75, - "top": 25.799891, - "right": -77.34375, - "bottom": 24.527135, - "countries": [ - "bahamas" - ] - }, - { - "x": 73, - "y": 109, - "left": -77.34375, - "top": 25.799891, - "right": -75.9375, - "bottom": 24.527135, - "countries": [ - "bahamas" - ] - }, - { - "x": 74, - "y": 109, - "left": -75.9375, - "top": 25.799891, - "right": -74.53125, - "bottom": 24.527135, - "countries": [ - "bahamas" - ] - }, - { - "x": 70, - "y": 110, - "left": -81.5625, - "top": 24.527135, - "right": -80.15625, - "bottom": 23.241346, - "countries": [ - "cuba", - "bahamas" - ] - }, - { - "x": 72, - "y": 110, - "left": -78.75, - "top": 24.527135, - "right": -77.34375, - "bottom": 23.241346, - "countries": [ - "bahamas" - ] - }, - { - "x": 73, - "y": 110, - "left": -77.34375, - "top": 24.527135, - "right": -75.9375, - "bottom": 23.241346, - "countries": [ - "bahamas" - ] - }, - { - "x": 74, - "y": 110, - "left": -75.9375, - "top": 24.527135, - "right": -74.53125, - "bottom": 23.241346, - "countries": [ - "bahamas" - ] - }, - { - "x": 75, - "y": 110, - "left": -74.53125, - "top": 24.527135, - "right": -73.125, - "bottom": 23.241346, - "countries": [ - "bahamas" - ] - }, - { - "x": 74, - "y": 111, - "left": -75.9375, - "top": 23.241346, - "right": -74.53125, - "bottom": 21.943046, - "countries": [ - "bahamas" - ] - }, - { - "x": 75, - "y": 111, - "left": -74.53125, - "top": 23.241346, - "right": -73.125, - "bottom": 21.943046, - "countries": [ - "bahamas" - ] - }, - { - "x": 76, - "y": 111, - "left": -73.125, - "top": 23.241346, - "right": -71.71875, - "bottom": 21.943046, - "countries": [ - "turks_and_caicos_islands", - "bahamas" - ] - }, - { - "x": 75, - "y": 112, - "left": -74.53125, - "top": 21.943046, - "right": -73.125, - "bottom": 20.632784, - "countries": [ - "bahamas" - ] - }, - { - "x": 76, - "y": 112, - "left": -73.125, - "top": 21.943046, - "right": -71.71875, - "bottom": 20.632784, - "countries": [ - "turks_and_caicos_islands", - "bahamas" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/barbados.json b/wahoomc/resources/json/north_america/barbados.json deleted file mode 100644 index 7f1691ea..00000000 --- a/wahoomc/resources/json/north_america/barbados.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 85, - "y": 118, - "left": -60.46875, - "top": 13.923404, - "right": -59.0625, - "bottom": 12.554564, - "countries": [ - "barbados" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/belize.json b/wahoomc/resources/json/north_america/belize.json deleted file mode 100644 index e57ec901..00000000 --- a/wahoomc/resources/json/north_america/belize.json +++ /dev/null @@ -1,76 +0,0 @@ -[ - { - "x": 64, - "y": 114, - "left": -90.0, - "top": 19.311143, - "right": -88.59375, - "bottom": 17.978733, - "countries": [ - "belize", - "mexico" - ] - }, - { - "x": 65, - "y": 114, - "left": -88.59375, - "top": 19.311143, - "right": -87.1875, - "bottom": 17.978733, - "countries": [ - "belize", - "mexico" - ] - }, - { - "x": 64, - "y": 115, - "left": -90.0, - "top": 17.978733, - "right": -88.59375, - "bottom": 16.636192, - "countries": [ - "belize", - "guatemala", - "mexico" - ] - }, - { - "x": 65, - "y": 115, - "left": -88.59375, - "top": 17.978733, - "right": -87.1875, - "bottom": 16.636192, - "countries": [ - "belize" - ] - }, - { - "x": 64, - "y": 116, - "left": -90.0, - "top": 16.636192, - "right": -88.59375, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - }, - { - "x": 65, - "y": 116, - "left": -88.59375, - "top": 16.636192, - "right": -87.1875, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/bermuda.json b/wahoomc/resources/json/north_america/bermuda.json deleted file mode 100644 index 66c31f88..00000000 --- a/wahoomc/resources/json/north_america/bermuda.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 81, - "y": 103, - "left": -66.09375, - "top": 33.137551, - "right": -64.6875, - "bottom": 31.952162, - "countries": [ - "bermuda" - ] - }, - { - "x": 82, - "y": 103, - "left": -64.6875, - "top": 33.137551, - "right": -63.28125, - "bottom": 31.952162, - "countries": [ - "bermuda" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/british_virgin_islands.json b/wahoomc/resources/json/north_america/british_virgin_islands.json deleted file mode 100644 index ffa0e314..00000000 --- a/wahoomc/resources/json/north_america/british_virgin_islands.json +++ /dev/null @@ -1,30 +0,0 @@ -[ - { - "x": 82, - "y": 114, - "left": -64.6875, - "top": 19.311143, - "right": -63.28125, - "bottom": 17.978733, - "countries": [ - "anguilla", - "virgin_islands_u.s.", - "united_states_virgin_islands", - "british_virgin_islands" - ] - }, - { - "x": 81, - "y": 114, - "left": -66.09375, - "top": 19.311143, - "right": -64.6875, - "bottom": 17.978733, - "countries": [ - "british_virgin_islands", - "puerto_rico", - "united_states_virgin_islands", - "virgin_islands_u.s." - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/canada.json b/wahoomc/resources/json/north_america/canada.json deleted file mode 100644 index 7d8ab7af..00000000 --- a/wahoomc/resources/json/north_america/canada.json +++ /dev/null @@ -1,30690 +0,0 @@ -[ - { - "x": 73, - "y": 13, - "left": -77.34375, - "top": 83.194896, - "right": -75.9375, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 13, - "left": -75.9375, - "top": 83.194896, - "right": -74.53125, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 13, - "left": -74.53125, - "top": 83.194896, - "right": -73.125, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 13, - "left": -73.125, - "top": 83.194896, - "right": -71.71875, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 13, - "left": -71.71875, - "top": 83.194896, - "right": -70.3125, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 13, - "left": -70.3125, - "top": 83.194896, - "right": -68.90625, - "bottom": 83.026219, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 14, - "left": -81.5625, - "top": 83.026219, - "right": -80.15625, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 14, - "left": -80.15625, - "top": 83.026219, - "right": -78.75, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 14, - "left": -78.75, - "top": 83.026219, - "right": -77.34375, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 14, - "left": -77.34375, - "top": 83.026219, - "right": -75.9375, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 14, - "left": -75.9375, - "top": 83.026219, - "right": -74.53125, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 14, - "left": -74.53125, - "top": 83.026219, - "right": -73.125, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 14, - "left": -73.125, - "top": 83.026219, - "right": -71.71875, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 14, - "left": -71.71875, - "top": 83.026219, - "right": -70.3125, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 14, - "left": -70.3125, - "top": 83.026219, - "right": -68.90625, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 14, - "left": -68.90625, - "top": 83.026219, - "right": -67.5, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 14, - "left": -67.5, - "top": 83.026219, - "right": -66.09375, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 14, - "left": -66.09375, - "top": 83.026219, - "right": -64.6875, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 14, - "left": -64.6875, - "top": 83.026219, - "right": -63.28125, - "bottom": 82.853382, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 15, - "left": -82.96875, - "top": 82.853382, - "right": -81.5625, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 15, - "left": -81.5625, - "top": 82.853382, - "right": -80.15625, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 15, - "left": -80.15625, - "top": 82.853382, - "right": -78.75, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 15, - "left": -78.75, - "top": 82.853382, - "right": -77.34375, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 15, - "left": -77.34375, - "top": 82.853382, - "right": -75.9375, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 15, - "left": -75.9375, - "top": 82.853382, - "right": -74.53125, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 15, - "left": -74.53125, - "top": 82.853382, - "right": -73.125, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 15, - "left": -73.125, - "top": 82.853382, - "right": -71.71875, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 15, - "left": -71.71875, - "top": 82.853382, - "right": -70.3125, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 15, - "left": -70.3125, - "top": 82.853382, - "right": -68.90625, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 15, - "left": -68.90625, - "top": 82.853382, - "right": -67.5, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 15, - "left": -67.5, - "top": 82.853382, - "right": -66.09375, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 15, - "left": -66.09375, - "top": 82.853382, - "right": -64.6875, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 15, - "left": -64.6875, - "top": 82.853382, - "right": -63.28125, - "bottom": 82.676285, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 16, - "left": -82.96875, - "top": 82.676285, - "right": -81.5625, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 16, - "left": -81.5625, - "top": 82.676285, - "right": -80.15625, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 16, - "left": -80.15625, - "top": 82.676285, - "right": -78.75, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 16, - "left": -78.75, - "top": 82.676285, - "right": -77.34375, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 16, - "left": -77.34375, - "top": 82.676285, - "right": -75.9375, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 16, - "left": -75.9375, - "top": 82.676285, - "right": -74.53125, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 16, - "left": -74.53125, - "top": 82.676285, - "right": -73.125, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 16, - "left": -73.125, - "top": 82.676285, - "right": -71.71875, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 16, - "left": -71.71875, - "top": 82.676285, - "right": -70.3125, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 16, - "left": -70.3125, - "top": 82.676285, - "right": -68.90625, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 16, - "left": -68.90625, - "top": 82.676285, - "right": -67.5, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 16, - "left": -67.5, - "top": 82.676285, - "right": -66.09375, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 16, - "left": -66.09375, - "top": 82.676285, - "right": -64.6875, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 16, - "left": -64.6875, - "top": 82.676285, - "right": -63.28125, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 16, - "left": -63.28125, - "top": 82.676285, - "right": -61.875, - "bottom": 82.494824, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 17, - "left": -87.1875, - "top": 82.494824, - "right": -85.78125, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 17, - "left": -85.78125, - "top": 82.494824, - "right": -84.375, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 17, - "left": -84.375, - "top": 82.494824, - "right": -82.96875, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 17, - "left": -82.96875, - "top": 82.494824, - "right": -81.5625, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 17, - "left": -81.5625, - "top": 82.494824, - "right": -80.15625, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 17, - "left": -80.15625, - "top": 82.494824, - "right": -78.75, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 17, - "left": -78.75, - "top": 82.494824, - "right": -77.34375, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 17, - "left": -77.34375, - "top": 82.494824, - "right": -75.9375, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 17, - "left": -75.9375, - "top": 82.494824, - "right": -74.53125, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 17, - "left": -74.53125, - "top": 82.494824, - "right": -73.125, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 17, - "left": -73.125, - "top": 82.494824, - "right": -71.71875, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 17, - "left": -71.71875, - "top": 82.494824, - "right": -70.3125, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 17, - "left": -70.3125, - "top": 82.494824, - "right": -68.90625, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 17, - "left": -68.90625, - "top": 82.494824, - "right": -67.5, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 17, - "left": -67.5, - "top": 82.494824, - "right": -66.09375, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 17, - "left": -66.09375, - "top": 82.494824, - "right": -64.6875, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 17, - "left": -64.6875, - "top": 82.494824, - "right": -63.28125, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 17, - "left": -63.28125, - "top": 82.494824, - "right": -61.875, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 17, - "left": -61.875, - "top": 82.494824, - "right": -60.46875, - "bottom": 82.308893, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 18, - "left": -87.1875, - "top": 82.308893, - "right": -85.78125, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 18, - "left": -85.78125, - "top": 82.308893, - "right": -84.375, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 18, - "left": -84.375, - "top": 82.308893, - "right": -82.96875, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 18, - "left": -82.96875, - "top": 82.308893, - "right": -81.5625, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 18, - "left": -81.5625, - "top": 82.308893, - "right": -80.15625, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 18, - "left": -80.15625, - "top": 82.308893, - "right": -78.75, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 18, - "left": -78.75, - "top": 82.308893, - "right": -77.34375, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 18, - "left": -77.34375, - "top": 82.308893, - "right": -75.9375, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 18, - "left": -75.9375, - "top": 82.308893, - "right": -74.53125, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 18, - "left": -74.53125, - "top": 82.308893, - "right": -73.125, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 18, - "left": -73.125, - "top": 82.308893, - "right": -71.71875, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 18, - "left": -71.71875, - "top": 82.308893, - "right": -70.3125, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 18, - "left": -70.3125, - "top": 82.308893, - "right": -68.90625, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 18, - "left": -68.90625, - "top": 82.308893, - "right": -67.5, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 18, - "left": -67.5, - "top": 82.308893, - "right": -66.09375, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 18, - "left": -66.09375, - "top": 82.308893, - "right": -64.6875, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 18, - "left": -64.6875, - "top": 82.308893, - "right": -63.28125, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 18, - "left": -63.28125, - "top": 82.308893, - "right": -61.875, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 18, - "left": -61.875, - "top": 82.308893, - "right": -60.46875, - "bottom": 82.118384, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 19, - "left": -91.40625, - "top": 82.118384, - "right": -90.0, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 19, - "left": -90.0, - "top": 82.118384, - "right": -88.59375, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 19, - "left": -88.59375, - "top": 82.118384, - "right": -87.1875, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 19, - "left": -87.1875, - "top": 82.118384, - "right": -85.78125, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 19, - "left": -85.78125, - "top": 82.118384, - "right": -84.375, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 19, - "left": -84.375, - "top": 82.118384, - "right": -82.96875, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 19, - "left": -82.96875, - "top": 82.118384, - "right": -81.5625, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 19, - "left": -81.5625, - "top": 82.118384, - "right": -80.15625, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 19, - "left": -80.15625, - "top": 82.118384, - "right": -78.75, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 19, - "left": -78.75, - "top": 82.118384, - "right": -77.34375, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 19, - "left": -77.34375, - "top": 82.118384, - "right": -75.9375, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 19, - "left": -75.9375, - "top": 82.118384, - "right": -74.53125, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 19, - "left": -74.53125, - "top": 82.118384, - "right": -73.125, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 19, - "left": -73.125, - "top": 82.118384, - "right": -71.71875, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 19, - "left": -71.71875, - "top": 82.118384, - "right": -70.3125, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 19, - "left": -70.3125, - "top": 82.118384, - "right": -68.90625, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 19, - "left": -68.90625, - "top": 82.118384, - "right": -67.5, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 19, - "left": -67.5, - "top": 82.118384, - "right": -66.09375, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 19, - "left": -66.09375, - "top": 82.118384, - "right": -64.6875, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 19, - "left": -64.6875, - "top": 82.118384, - "right": -63.28125, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 19, - "left": -63.28125, - "top": 82.118384, - "right": -61.875, - "bottom": 81.923186, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 20, - "left": -92.8125, - "top": 81.923186, - "right": -91.40625, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 20, - "left": -91.40625, - "top": 81.923186, - "right": -90.0, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 20, - "left": -90.0, - "top": 81.923186, - "right": -88.59375, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 20, - "left": -88.59375, - "top": 81.923186, - "right": -87.1875, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 20, - "left": -87.1875, - "top": 81.923186, - "right": -85.78125, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 20, - "left": -85.78125, - "top": 81.923186, - "right": -84.375, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 20, - "left": -84.375, - "top": 81.923186, - "right": -82.96875, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 20, - "left": -82.96875, - "top": 81.923186, - "right": -81.5625, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 20, - "left": -81.5625, - "top": 81.923186, - "right": -80.15625, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 20, - "left": -80.15625, - "top": 81.923186, - "right": -78.75, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 20, - "left": -78.75, - "top": 81.923186, - "right": -77.34375, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 20, - "left": -77.34375, - "top": 81.923186, - "right": -75.9375, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 20, - "left": -75.9375, - "top": 81.923186, - "right": -74.53125, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 20, - "left": -74.53125, - "top": 81.923186, - "right": -73.125, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 20, - "left": -73.125, - "top": 81.923186, - "right": -71.71875, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 20, - "left": -71.71875, - "top": 81.923186, - "right": -70.3125, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 20, - "left": -70.3125, - "top": 81.923186, - "right": -68.90625, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 20, - "left": -68.90625, - "top": 81.923186, - "right": -67.5, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 20, - "left": -67.5, - "top": 81.923186, - "right": -66.09375, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 20, - "left": -66.09375, - "top": 81.923186, - "right": -64.6875, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 20, - "left": -64.6875, - "top": 81.923186, - "right": -63.28125, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 20, - "left": -63.28125, - "top": 81.923186, - "right": -61.875, - "bottom": 81.723188, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 21, - "left": -92.8125, - "top": 81.723188, - "right": -91.40625, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 21, - "left": -91.40625, - "top": 81.723188, - "right": -90.0, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 21, - "left": -90.0, - "top": 81.723188, - "right": -88.59375, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 21, - "left": -88.59375, - "top": 81.723188, - "right": -87.1875, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 21, - "left": -87.1875, - "top": 81.723188, - "right": -85.78125, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 21, - "left": -85.78125, - "top": 81.723188, - "right": -84.375, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 21, - "left": -84.375, - "top": 81.723188, - "right": -82.96875, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 21, - "left": -82.96875, - "top": 81.723188, - "right": -81.5625, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 21, - "left": -81.5625, - "top": 81.723188, - "right": -80.15625, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 21, - "left": -80.15625, - "top": 81.723188, - "right": -78.75, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 21, - "left": -78.75, - "top": 81.723188, - "right": -77.34375, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 21, - "left": -77.34375, - "top": 81.723188, - "right": -75.9375, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 21, - "left": -75.9375, - "top": 81.723188, - "right": -74.53125, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 21, - "left": -74.53125, - "top": 81.723188, - "right": -73.125, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 21, - "left": -73.125, - "top": 81.723188, - "right": -71.71875, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 21, - "left": -71.71875, - "top": 81.723188, - "right": -70.3125, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 21, - "left": -70.3125, - "top": 81.723188, - "right": -68.90625, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 21, - "left": -68.90625, - "top": 81.723188, - "right": -67.5, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 21, - "left": -67.5, - "top": 81.723188, - "right": -66.09375, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 21, - "left": -66.09375, - "top": 81.723188, - "right": -64.6875, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 21, - "left": -64.6875, - "top": 81.723188, - "right": -63.28125, - "bottom": 81.518272, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 22, - "left": -95.625, - "top": 81.518272, - "right": -94.21875, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 22, - "left": -94.21875, - "top": 81.518272, - "right": -92.8125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 22, - "left": -92.8125, - "top": 81.518272, - "right": -91.40625, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 22, - "left": -91.40625, - "top": 81.518272, - "right": -90.0, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 22, - "left": -90.0, - "top": 81.518272, - "right": -88.59375, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 22, - "left": -88.59375, - "top": 81.518272, - "right": -87.1875, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 22, - "left": -87.1875, - "top": 81.518272, - "right": -85.78125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 22, - "left": -85.78125, - "top": 81.518272, - "right": -84.375, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 22, - "left": -84.375, - "top": 81.518272, - "right": -82.96875, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 22, - "left": -82.96875, - "top": 81.518272, - "right": -81.5625, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 22, - "left": -81.5625, - "top": 81.518272, - "right": -80.15625, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 22, - "left": -80.15625, - "top": 81.518272, - "right": -78.75, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 22, - "left": -78.75, - "top": 81.518272, - "right": -77.34375, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 22, - "left": -77.34375, - "top": 81.518272, - "right": -75.9375, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 22, - "left": -75.9375, - "top": 81.518272, - "right": -74.53125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 22, - "left": -74.53125, - "top": 81.518272, - "right": -73.125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 22, - "left": -73.125, - "top": 81.518272, - "right": -71.71875, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 22, - "left": -71.71875, - "top": 81.518272, - "right": -70.3125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 22, - "left": -70.3125, - "top": 81.518272, - "right": -68.90625, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 22, - "left": -68.90625, - "top": 81.518272, - "right": -67.5, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 22, - "left": -67.5, - "top": 81.518272, - "right": -66.09375, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 22, - "left": -66.09375, - "top": 81.518272, - "right": -64.6875, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 22, - "left": -64.6875, - "top": 81.518272, - "right": -63.28125, - "bottom": 81.308321, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 23, - "left": -95.625, - "top": 81.308321, - "right": -94.21875, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 23, - "left": -94.21875, - "top": 81.308321, - "right": -92.8125, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 23, - "left": -92.8125, - "top": 81.308321, - "right": -91.40625, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 23, - "left": -91.40625, - "top": 81.308321, - "right": -90.0, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 23, - "left": -90.0, - "top": 81.308321, - "right": -88.59375, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 23, - "left": -88.59375, - "top": 81.308321, - "right": -87.1875, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 23, - "left": -87.1875, - "top": 81.308321, - "right": -85.78125, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 23, - "left": -85.78125, - "top": 81.308321, - "right": -84.375, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 23, - "left": -84.375, - "top": 81.308321, - "right": -82.96875, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 23, - "left": -82.96875, - "top": 81.308321, - "right": -81.5625, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 23, - "left": -81.5625, - "top": 81.308321, - "right": -80.15625, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 23, - "left": -80.15625, - "top": 81.308321, - "right": -78.75, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 23, - "left": -78.75, - "top": 81.308321, - "right": -77.34375, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 23, - "left": -77.34375, - "top": 81.308321, - "right": -75.9375, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 23, - "left": -75.9375, - "top": 81.308321, - "right": -74.53125, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 23, - "left": -74.53125, - "top": 81.308321, - "right": -73.125, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 23, - "left": -73.125, - "top": 81.308321, - "right": -71.71875, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 23, - "left": -71.71875, - "top": 81.308321, - "right": -70.3125, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 23, - "left": -70.3125, - "top": 81.308321, - "right": -68.90625, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 23, - "left": -68.90625, - "top": 81.308321, - "right": -67.5, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 23, - "left": -67.5, - "top": 81.308321, - "right": -66.09375, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 23, - "left": -66.09375, - "top": 81.308321, - "right": -64.6875, - "bottom": 81.093214, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 24, - "left": -95.625, - "top": 81.093214, - "right": -94.21875, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 24, - "left": -94.21875, - "top": 81.093214, - "right": -92.8125, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 24, - "left": -92.8125, - "top": 81.093214, - "right": -91.40625, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 24, - "left": -91.40625, - "top": 81.093214, - "right": -90.0, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 24, - "left": -90.0, - "top": 81.093214, - "right": -88.59375, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 24, - "left": -88.59375, - "top": 81.093214, - "right": -87.1875, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 24, - "left": -87.1875, - "top": 81.093214, - "right": -85.78125, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 24, - "left": -85.78125, - "top": 81.093214, - "right": -84.375, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 24, - "left": -84.375, - "top": 81.093214, - "right": -82.96875, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 24, - "left": -82.96875, - "top": 81.093214, - "right": -81.5625, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 24, - "left": -81.5625, - "top": 81.093214, - "right": -80.15625, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 24, - "left": -80.15625, - "top": 81.093214, - "right": -78.75, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 24, - "left": -78.75, - "top": 81.093214, - "right": -77.34375, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 24, - "left": -77.34375, - "top": 81.093214, - "right": -75.9375, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 24, - "left": -75.9375, - "top": 81.093214, - "right": -74.53125, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 24, - "left": -74.53125, - "top": 81.093214, - "right": -73.125, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 24, - "left": -73.125, - "top": 81.093214, - "right": -71.71875, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 24, - "left": -71.71875, - "top": 81.093214, - "right": -70.3125, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 24, - "left": -70.3125, - "top": 81.093214, - "right": -68.90625, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 24, - "left": -68.90625, - "top": 81.093214, - "right": -67.5, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 24, - "left": -67.5, - "top": 81.093214, - "right": -66.09375, - "bottom": 80.872827, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 25, - "left": -97.03125, - "top": 80.872827, - "right": -95.625, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 25, - "left": -95.625, - "top": 80.872827, - "right": -94.21875, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 25, - "left": -94.21875, - "top": 80.872827, - "right": -92.8125, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 25, - "left": -92.8125, - "top": 80.872827, - "right": -91.40625, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 25, - "left": -91.40625, - "top": 80.872827, - "right": -90.0, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 25, - "left": -90.0, - "top": 80.872827, - "right": -88.59375, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 25, - "left": -88.59375, - "top": 80.872827, - "right": -87.1875, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 25, - "left": -87.1875, - "top": 80.872827, - "right": -85.78125, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 25, - "left": -85.78125, - "top": 80.872827, - "right": -84.375, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 25, - "left": -84.375, - "top": 80.872827, - "right": -82.96875, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 25, - "left": -82.96875, - "top": 80.872827, - "right": -81.5625, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 25, - "left": -81.5625, - "top": 80.872827, - "right": -80.15625, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 25, - "left": -80.15625, - "top": 80.872827, - "right": -78.75, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 25, - "left": -78.75, - "top": 80.872827, - "right": -77.34375, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 25, - "left": -77.34375, - "top": 80.872827, - "right": -75.9375, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 25, - "left": -75.9375, - "top": 80.872827, - "right": -74.53125, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 25, - "left": -74.53125, - "top": 80.872827, - "right": -73.125, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 25, - "left": -73.125, - "top": 80.872827, - "right": -71.71875, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 25, - "left": -71.71875, - "top": 80.872827, - "right": -70.3125, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 25, - "left": -70.3125, - "top": 80.872827, - "right": -68.90625, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 25, - "left": -68.90625, - "top": 80.872827, - "right": -67.5, - "bottom": 80.647035, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 26, - "left": -97.03125, - "top": 80.647035, - "right": -95.625, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 26, - "left": -95.625, - "top": 80.647035, - "right": -94.21875, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 26, - "left": -94.21875, - "top": 80.647035, - "right": -92.8125, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 26, - "left": -92.8125, - "top": 80.647035, - "right": -91.40625, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 26, - "left": -91.40625, - "top": 80.647035, - "right": -90.0, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 26, - "left": -90.0, - "top": 80.647035, - "right": -88.59375, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 26, - "left": -88.59375, - "top": 80.647035, - "right": -87.1875, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 26, - "left": -87.1875, - "top": 80.647035, - "right": -85.78125, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 26, - "left": -85.78125, - "top": 80.647035, - "right": -84.375, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 26, - "left": -84.375, - "top": 80.647035, - "right": -82.96875, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 26, - "left": -82.96875, - "top": 80.647035, - "right": -81.5625, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 26, - "left": -81.5625, - "top": 80.647035, - "right": -80.15625, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 26, - "left": -80.15625, - "top": 80.647035, - "right": -78.75, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 26, - "left": -78.75, - "top": 80.647035, - "right": -77.34375, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 26, - "left": -77.34375, - "top": 80.647035, - "right": -75.9375, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 26, - "left": -75.9375, - "top": 80.647035, - "right": -74.53125, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 26, - "left": -74.53125, - "top": 80.647035, - "right": -73.125, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 26, - "left": -73.125, - "top": 80.647035, - "right": -71.71875, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 26, - "left": -71.71875, - "top": 80.647035, - "right": -70.3125, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 26, - "left": -70.3125, - "top": 80.647035, - "right": -68.90625, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 26, - "left": -68.90625, - "top": 80.647035, - "right": -67.5, - "bottom": 80.415707, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 27, - "left": -99.84375, - "top": 80.415707, - "right": -98.4375, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 27, - "left": -97.03125, - "top": 80.415707, - "right": -95.625, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 27, - "left": -95.625, - "top": 80.415707, - "right": -94.21875, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 27, - "left": -94.21875, - "top": 80.415707, - "right": -92.8125, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 27, - "left": -92.8125, - "top": 80.415707, - "right": -91.40625, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 27, - "left": -91.40625, - "top": 80.415707, - "right": -90.0, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 27, - "left": -90.0, - "top": 80.415707, - "right": -88.59375, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 27, - "left": -88.59375, - "top": 80.415707, - "right": -87.1875, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 27, - "left": -87.1875, - "top": 80.415707, - "right": -85.78125, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 27, - "left": -85.78125, - "top": 80.415707, - "right": -84.375, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 27, - "left": -84.375, - "top": 80.415707, - "right": -82.96875, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 27, - "left": -82.96875, - "top": 80.415707, - "right": -81.5625, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 27, - "left": -81.5625, - "top": 80.415707, - "right": -80.15625, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 27, - "left": -80.15625, - "top": 80.415707, - "right": -78.75, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 27, - "left": -78.75, - "top": 80.415707, - "right": -77.34375, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 27, - "left": -77.34375, - "top": 80.415707, - "right": -75.9375, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 27, - "left": -75.9375, - "top": 80.415707, - "right": -74.53125, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 27, - "left": -74.53125, - "top": 80.415707, - "right": -73.125, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 27, - "left": -73.125, - "top": 80.415707, - "right": -71.71875, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 27, - "left": -71.71875, - "top": 80.415707, - "right": -70.3125, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 27, - "left": -70.3125, - "top": 80.415707, - "right": -68.90625, - "bottom": 80.178713, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 28, - "left": -101.25, - "top": 80.178713, - "right": -99.84375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 28, - "left": -99.84375, - "top": 80.178713, - "right": -98.4375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 28, - "left": -97.03125, - "top": 80.178713, - "right": -95.625, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 28, - "left": -95.625, - "top": 80.178713, - "right": -94.21875, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 28, - "left": -94.21875, - "top": 80.178713, - "right": -92.8125, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 28, - "left": -92.8125, - "top": 80.178713, - "right": -91.40625, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 28, - "left": -91.40625, - "top": 80.178713, - "right": -90.0, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 28, - "left": -90.0, - "top": 80.178713, - "right": -88.59375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 28, - "left": -88.59375, - "top": 80.178713, - "right": -87.1875, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 28, - "left": -87.1875, - "top": 80.178713, - "right": -85.78125, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 28, - "left": -85.78125, - "top": 80.178713, - "right": -84.375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 28, - "left": -84.375, - "top": 80.178713, - "right": -82.96875, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 28, - "left": -82.96875, - "top": 80.178713, - "right": -81.5625, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 28, - "left": -81.5625, - "top": 80.178713, - "right": -80.15625, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 28, - "left": -80.15625, - "top": 80.178713, - "right": -78.75, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 28, - "left": -78.75, - "top": 80.178713, - "right": -77.34375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 28, - "left": -77.34375, - "top": 80.178713, - "right": -75.9375, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 28, - "left": -75.9375, - "top": 80.178713, - "right": -74.53125, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 28, - "left": -74.53125, - "top": 80.178713, - "right": -73.125, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 28, - "left": -73.125, - "top": 80.178713, - "right": -71.71875, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 28, - "left": -71.71875, - "top": 80.178713, - "right": -70.3125, - "bottom": 79.935918, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 29, - "left": -101.25, - "top": 79.935918, - "right": -99.84375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 29, - "left": -99.84375, - "top": 79.935918, - "right": -98.4375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 29, - "left": -97.03125, - "top": 79.935918, - "right": -95.625, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 29, - "left": -95.625, - "top": 79.935918, - "right": -94.21875, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 29, - "left": -94.21875, - "top": 79.935918, - "right": -92.8125, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 29, - "left": -92.8125, - "top": 79.935918, - "right": -91.40625, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 29, - "left": -91.40625, - "top": 79.935918, - "right": -90.0, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 29, - "left": -90.0, - "top": 79.935918, - "right": -88.59375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 29, - "left": -88.59375, - "top": 79.935918, - "right": -87.1875, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 29, - "left": -87.1875, - "top": 79.935918, - "right": -85.78125, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 29, - "left": -85.78125, - "top": 79.935918, - "right": -84.375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 29, - "left": -84.375, - "top": 79.935918, - "right": -82.96875, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 29, - "left": -82.96875, - "top": 79.935918, - "right": -81.5625, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 29, - "left": -81.5625, - "top": 79.935918, - "right": -80.15625, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 29, - "left": -80.15625, - "top": 79.935918, - "right": -78.75, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 29, - "left": -78.75, - "top": 79.935918, - "right": -77.34375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 29, - "left": -77.34375, - "top": 79.935918, - "right": -75.9375, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 29, - "left": -75.9375, - "top": 79.935918, - "right": -74.53125, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 29, - "left": -74.53125, - "top": 79.935918, - "right": -73.125, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 29, - "left": -73.125, - "top": 79.935918, - "right": -71.71875, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 29, - "left": -71.71875, - "top": 79.935918, - "right": -70.3125, - "bottom": 79.687184, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 30, - "left": -99.84375, - "top": 79.687184, - "right": -98.4375, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 30, - "left": -98.4375, - "top": 79.687184, - "right": -97.03125, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 30, - "left": -97.03125, - "top": 79.687184, - "right": -95.625, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 30, - "left": -95.625, - "top": 79.687184, - "right": -94.21875, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 30, - "left": -94.21875, - "top": 79.687184, - "right": -92.8125, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 30, - "left": -92.8125, - "top": 79.687184, - "right": -91.40625, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 30, - "left": -91.40625, - "top": 79.687184, - "right": -90.0, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 30, - "left": -90.0, - "top": 79.687184, - "right": -88.59375, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 30, - "left": -88.59375, - "top": 79.687184, - "right": -87.1875, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 30, - "left": -87.1875, - "top": 79.687184, - "right": -85.78125, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 30, - "left": -85.78125, - "top": 79.687184, - "right": -84.375, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 30, - "left": -84.375, - "top": 79.687184, - "right": -82.96875, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 30, - "left": -82.96875, - "top": 79.687184, - "right": -81.5625, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 30, - "left": -81.5625, - "top": 79.687184, - "right": -80.15625, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 30, - "left": -80.15625, - "top": 79.687184, - "right": -78.75, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 30, - "left": -78.75, - "top": 79.687184, - "right": -77.34375, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 30, - "left": -77.34375, - "top": 79.687184, - "right": -75.9375, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 30, - "left": -75.9375, - "top": 79.687184, - "right": -74.53125, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 30, - "left": -74.53125, - "top": 79.687184, - "right": -73.125, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 30, - "left": -73.125, - "top": 79.687184, - "right": -71.71875, - "bottom": 79.432371, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 31, - "left": -106.875, - "top": 79.432371, - "right": -105.46875, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 31, - "left": -105.46875, - "top": 79.432371, - "right": -104.0625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 31, - "left": -104.0625, - "top": 79.432371, - "right": -102.65625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 31, - "left": -98.4375, - "top": 79.432371, - "right": -97.03125, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 31, - "left": -97.03125, - "top": 79.432371, - "right": -95.625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 31, - "left": -95.625, - "top": 79.432371, - "right": -94.21875, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 31, - "left": -94.21875, - "top": 79.432371, - "right": -92.8125, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 31, - "left": -92.8125, - "top": 79.432371, - "right": -91.40625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 31, - "left": -91.40625, - "top": 79.432371, - "right": -90.0, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 31, - "left": -90.0, - "top": 79.432371, - "right": -88.59375, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 31, - "left": -88.59375, - "top": 79.432371, - "right": -87.1875, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 31, - "left": -87.1875, - "top": 79.432371, - "right": -85.78125, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 31, - "left": -85.78125, - "top": 79.432371, - "right": -84.375, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 31, - "left": -84.375, - "top": 79.432371, - "right": -82.96875, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 31, - "left": -82.96875, - "top": 79.432371, - "right": -81.5625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 31, - "left": -81.5625, - "top": 79.432371, - "right": -80.15625, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 31, - "left": -80.15625, - "top": 79.432371, - "right": -78.75, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 31, - "left": -78.75, - "top": 79.432371, - "right": -77.34375, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 31, - "left": -77.34375, - "top": 79.432371, - "right": -75.9375, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 31, - "left": -75.9375, - "top": 79.432371, - "right": -74.53125, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 31, - "left": -74.53125, - "top": 79.432371, - "right": -73.125, - "bottom": 79.171335, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 32, - "left": -106.875, - "top": 79.171335, - "right": -105.46875, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 32, - "left": -105.46875, - "top": 79.171335, - "right": -104.0625, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 32, - "left": -104.0625, - "top": 79.171335, - "right": -102.65625, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 32, - "left": -102.65625, - "top": 79.171335, - "right": -101.25, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 32, - "left": -101.25, - "top": 79.171335, - "right": -99.84375, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 32, - "left": -95.625, - "top": 79.171335, - "right": -94.21875, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 32, - "left": -94.21875, - "top": 79.171335, - "right": -92.8125, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 32, - "left": -92.8125, - "top": 79.171335, - "right": -91.40625, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 32, - "left": -91.40625, - "top": 79.171335, - "right": -90.0, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 32, - "left": -90.0, - "top": 79.171335, - "right": -88.59375, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 32, - "left": -88.59375, - "top": 79.171335, - "right": -87.1875, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 32, - "left": -87.1875, - "top": 79.171335, - "right": -85.78125, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 32, - "left": -85.78125, - "top": 79.171335, - "right": -84.375, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 32, - "left": -84.375, - "top": 79.171335, - "right": -82.96875, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 32, - "left": -82.96875, - "top": 79.171335, - "right": -81.5625, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 32, - "left": -81.5625, - "top": 79.171335, - "right": -80.15625, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 32, - "left": -80.15625, - "top": 79.171335, - "right": -78.75, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 32, - "left": -78.75, - "top": 79.171335, - "right": -77.34375, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 32, - "left": -77.34375, - "top": 79.171335, - "right": -75.9375, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 32, - "left": -75.9375, - "top": 79.171335, - "right": -74.53125, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 32, - "left": -74.53125, - "top": 79.171335, - "right": -73.125, - "bottom": 78.903929, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 33, - "left": -112.5, - "top": 78.903929, - "right": -111.09375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 33, - "left": -111.09375, - "top": 78.903929, - "right": -109.6875, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 33, - "left": -105.46875, - "top": 78.903929, - "right": -104.0625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 33, - "left": -104.0625, - "top": 78.903929, - "right": -102.65625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 33, - "left": -102.65625, - "top": 78.903929, - "right": -101.25, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 33, - "left": -101.25, - "top": 78.903929, - "right": -99.84375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 33, - "left": -99.84375, - "top": 78.903929, - "right": -98.4375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 33, - "left": -98.4375, - "top": 78.903929, - "right": -97.03125, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 33, - "left": -97.03125, - "top": 78.903929, - "right": -95.625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 33, - "left": -94.21875, - "top": 78.903929, - "right": -92.8125, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 33, - "left": -92.8125, - "top": 78.903929, - "right": -91.40625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 33, - "left": -91.40625, - "top": 78.903929, - "right": -90.0, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 33, - "left": -90.0, - "top": 78.903929, - "right": -88.59375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 33, - "left": -88.59375, - "top": 78.903929, - "right": -87.1875, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 33, - "left": -87.1875, - "top": 78.903929, - "right": -85.78125, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 33, - "left": -85.78125, - "top": 78.903929, - "right": -84.375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 33, - "left": -84.375, - "top": 78.903929, - "right": -82.96875, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 33, - "left": -82.96875, - "top": 78.903929, - "right": -81.5625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 33, - "left": -81.5625, - "top": 78.903929, - "right": -80.15625, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 33, - "left": -80.15625, - "top": 78.903929, - "right": -78.75, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 33, - "left": -78.75, - "top": 78.903929, - "right": -77.34375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 33, - "left": -77.34375, - "top": 78.903929, - "right": -75.9375, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 33, - "left": -75.9375, - "top": 78.903929, - "right": -74.53125, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 33, - "left": -74.53125, - "top": 78.903929, - "right": -73.125, - "bottom": 78.630006, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 34, - "left": -113.90625, - "top": 78.630006, - "right": -112.5, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 34, - "left": -112.5, - "top": 78.630006, - "right": -111.09375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 34, - "left": -111.09375, - "top": 78.630006, - "right": -109.6875, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 34, - "left": -109.6875, - "top": 78.630006, - "right": -108.28125, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 34, - "left": -105.46875, - "top": 78.630006, - "right": -104.0625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 34, - "left": -104.0625, - "top": 78.630006, - "right": -102.65625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 34, - "left": -102.65625, - "top": 78.630006, - "right": -101.25, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 34, - "left": -101.25, - "top": 78.630006, - "right": -99.84375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 34, - "left": -99.84375, - "top": 78.630006, - "right": -98.4375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 34, - "left": -98.4375, - "top": 78.630006, - "right": -97.03125, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 34, - "left": -97.03125, - "top": 78.630006, - "right": -95.625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 34, - "left": -95.625, - "top": 78.630006, - "right": -94.21875, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 34, - "left": -94.21875, - "top": 78.630006, - "right": -92.8125, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 34, - "left": -92.8125, - "top": 78.630006, - "right": -91.40625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 34, - "left": -91.40625, - "top": 78.630006, - "right": -90.0, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 34, - "left": -90.0, - "top": 78.630006, - "right": -88.59375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 34, - "left": -88.59375, - "top": 78.630006, - "right": -87.1875, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 34, - "left": -87.1875, - "top": 78.630006, - "right": -85.78125, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 34, - "left": -85.78125, - "top": 78.630006, - "right": -84.375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 34, - "left": -84.375, - "top": 78.630006, - "right": -82.96875, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 34, - "left": -82.96875, - "top": 78.630006, - "right": -81.5625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 34, - "left": -81.5625, - "top": 78.630006, - "right": -80.15625, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 34, - "left": -80.15625, - "top": 78.630006, - "right": -78.75, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 34, - "left": -78.75, - "top": 78.630006, - "right": -77.34375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 34, - "left": -77.34375, - "top": 78.630006, - "right": -75.9375, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 34, - "left": -75.9375, - "top": 78.630006, - "right": -74.53125, - "bottom": 78.349411, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 35, - "left": -115.3125, - "top": 78.349411, - "right": -113.90625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 35, - "left": -113.90625, - "top": 78.349411, - "right": -112.5, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 35, - "left": -112.5, - "top": 78.349411, - "right": -111.09375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 35, - "left": -111.09375, - "top": 78.349411, - "right": -109.6875, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 35, - "left": -109.6875, - "top": 78.349411, - "right": -108.28125, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 35, - "left": -105.46875, - "top": 78.349411, - "right": -104.0625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 35, - "left": -104.0625, - "top": 78.349411, - "right": -102.65625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 35, - "left": -102.65625, - "top": 78.349411, - "right": -101.25, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 35, - "left": -101.25, - "top": 78.349411, - "right": -99.84375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 35, - "left": -99.84375, - "top": 78.349411, - "right": -98.4375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 35, - "left": -98.4375, - "top": 78.349411, - "right": -97.03125, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 35, - "left": -97.03125, - "top": 78.349411, - "right": -95.625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 35, - "left": -95.625, - "top": 78.349411, - "right": -94.21875, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 35, - "left": -92.8125, - "top": 78.349411, - "right": -91.40625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 35, - "left": -91.40625, - "top": 78.349411, - "right": -90.0, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 35, - "left": -90.0, - "top": 78.349411, - "right": -88.59375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 35, - "left": -88.59375, - "top": 78.349411, - "right": -87.1875, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 35, - "left": -87.1875, - "top": 78.349411, - "right": -85.78125, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 35, - "left": -85.78125, - "top": 78.349411, - "right": -84.375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 35, - "left": -84.375, - "top": 78.349411, - "right": -82.96875, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 35, - "left": -82.96875, - "top": 78.349411, - "right": -81.5625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 35, - "left": -81.5625, - "top": 78.349411, - "right": -80.15625, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 35, - "left": -80.15625, - "top": 78.349411, - "right": -78.75, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 35, - "left": -78.75, - "top": 78.349411, - "right": -77.34375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 35, - "left": -77.34375, - "top": 78.349411, - "right": -75.9375, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 35, - "left": -75.9375, - "top": 78.349411, - "right": -74.53125, - "bottom": 78.061989, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 36, - "left": -115.3125, - "top": 78.061989, - "right": -113.90625, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 36, - "left": -113.90625, - "top": 78.061989, - "right": -112.5, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 36, - "left": -112.5, - "top": 78.061989, - "right": -111.09375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 36, - "left": -111.09375, - "top": 78.061989, - "right": -109.6875, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 36, - "left": -109.6875, - "top": 78.061989, - "right": -108.28125, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 36, - "left": -102.65625, - "top": 78.061989, - "right": -101.25, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 36, - "left": -101.25, - "top": 78.061989, - "right": -99.84375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 36, - "left": -99.84375, - "top": 78.061989, - "right": -98.4375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 36, - "left": -98.4375, - "top": 78.061989, - "right": -97.03125, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 36, - "left": -97.03125, - "top": 78.061989, - "right": -95.625, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 36, - "left": -95.625, - "top": 78.061989, - "right": -94.21875, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 36, - "left": -94.21875, - "top": 78.061989, - "right": -92.8125, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 36, - "left": -88.59375, - "top": 78.061989, - "right": -87.1875, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 36, - "left": -87.1875, - "top": 78.061989, - "right": -85.78125, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 36, - "left": -85.78125, - "top": 78.061989, - "right": -84.375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 36, - "left": -84.375, - "top": 78.061989, - "right": -82.96875, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 36, - "left": -82.96875, - "top": 78.061989, - "right": -81.5625, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 36, - "left": -81.5625, - "top": 78.061989, - "right": -80.15625, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 36, - "left": -80.15625, - "top": 78.061989, - "right": -78.75, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 36, - "left": -78.75, - "top": 78.061989, - "right": -77.34375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 36, - "left": -77.34375, - "top": 78.061989, - "right": -75.9375, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 36, - "left": -75.9375, - "top": 78.061989, - "right": -74.53125, - "bottom": 77.767582, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 37, - "left": -118.125, - "top": 77.767582, - "right": -116.71875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 37, - "left": -116.71875, - "top": 77.767582, - "right": -115.3125, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 37, - "left": -115.3125, - "top": 77.767582, - "right": -113.90625, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 37, - "left": -113.90625, - "top": 77.767582, - "right": -112.5, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 37, - "left": -112.5, - "top": 77.767582, - "right": -111.09375, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 37, - "left": -111.09375, - "top": 77.767582, - "right": -109.6875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 37, - "left": -106.875, - "top": 77.767582, - "right": -105.46875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 37, - "left": -105.46875, - "top": 77.767582, - "right": -104.0625, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 37, - "left": -102.65625, - "top": 77.767582, - "right": -101.25, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 37, - "left": -101.25, - "top": 77.767582, - "right": -99.84375, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 37, - "left": -97.03125, - "top": 77.767582, - "right": -95.625, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 37, - "left": -95.625, - "top": 77.767582, - "right": -94.21875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 37, - "left": -94.21875, - "top": 77.767582, - "right": -92.8125, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 37, - "left": -91.40625, - "top": 77.767582, - "right": -90.0, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 37, - "left": -90.0, - "top": 77.767582, - "right": -88.59375, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 37, - "left": -88.59375, - "top": 77.767582, - "right": -87.1875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 37, - "left": -87.1875, - "top": 77.767582, - "right": -85.78125, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 37, - "left": -85.78125, - "top": 77.767582, - "right": -84.375, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 37, - "left": -84.375, - "top": 77.767582, - "right": -82.96875, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 37, - "left": -82.96875, - "top": 77.767582, - "right": -81.5625, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 37, - "left": -81.5625, - "top": 77.767582, - "right": -80.15625, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 37, - "left": -80.15625, - "top": 77.767582, - "right": -78.75, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 37, - "left": -78.75, - "top": 77.767582, - "right": -77.34375, - "bottom": 77.466028, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 38, - "left": -119.53125, - "top": 77.466028, - "right": -118.125, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 38, - "left": -118.125, - "top": 77.466028, - "right": -116.71875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 38, - "left": -116.71875, - "top": 77.466028, - "right": -115.3125, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 38, - "left": -113.90625, - "top": 77.466028, - "right": -112.5, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 38, - "left": -112.5, - "top": 77.466028, - "right": -111.09375, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 38, - "left": -111.09375, - "top": 77.466028, - "right": -109.6875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 38, - "left": -106.875, - "top": 77.466028, - "right": -105.46875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 38, - "left": -105.46875, - "top": 77.466028, - "right": -104.0625, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 38, - "left": -104.0625, - "top": 77.466028, - "right": -102.65625, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 38, - "left": -97.03125, - "top": 77.466028, - "right": -95.625, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 38, - "left": -95.625, - "top": 77.466028, - "right": -94.21875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 38, - "left": -94.21875, - "top": 77.466028, - "right": -92.8125, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 38, - "left": -91.40625, - "top": 77.466028, - "right": -90.0, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 38, - "left": -90.0, - "top": 77.466028, - "right": -88.59375, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 38, - "left": -88.59375, - "top": 77.466028, - "right": -87.1875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 38, - "left": -87.1875, - "top": 77.466028, - "right": -85.78125, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 38, - "left": -85.78125, - "top": 77.466028, - "right": -84.375, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 38, - "left": -84.375, - "top": 77.466028, - "right": -82.96875, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 38, - "left": -82.96875, - "top": 77.466028, - "right": -81.5625, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 38, - "left": -81.5625, - "top": 77.466028, - "right": -80.15625, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 38, - "left": -80.15625, - "top": 77.466028, - "right": -78.75, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 38, - "left": -78.75, - "top": 77.466028, - "right": -77.34375, - "bottom": 77.157163, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 39, - "left": -120.9375, - "top": 77.157163, - "right": -119.53125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 39, - "left": -119.53125, - "top": 77.157163, - "right": -118.125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 39, - "left": -118.125, - "top": 77.157163, - "right": -116.71875, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 39, - "left": -116.71875, - "top": 77.157163, - "right": -115.3125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 39, - "left": -115.3125, - "top": 77.157163, - "right": -113.90625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 39, - "left": -113.90625, - "top": 77.157163, - "right": -112.5, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 39, - "left": -109.6875, - "top": 77.157163, - "right": -108.28125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 39, - "left": -105.46875, - "top": 77.157163, - "right": -104.0625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 39, - "left": -104.0625, - "top": 77.157163, - "right": -102.65625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 39, - "left": -98.4375, - "top": 77.157163, - "right": -97.03125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 39, - "left": -97.03125, - "top": 77.157163, - "right": -95.625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 39, - "left": -95.625, - "top": 77.157163, - "right": -94.21875, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 39, - "left": -94.21875, - "top": 77.157163, - "right": -92.8125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 39, - "left": -91.40625, - "top": 77.157163, - "right": -90.0, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 39, - "left": -90.0, - "top": 77.157163, - "right": -88.59375, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 39, - "left": -88.59375, - "top": 77.157163, - "right": -87.1875, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 39, - "left": -87.1875, - "top": 77.157163, - "right": -85.78125, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 39, - "left": -85.78125, - "top": 77.157163, - "right": -84.375, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 39, - "left": -84.375, - "top": 77.157163, - "right": -82.96875, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 39, - "left": -82.96875, - "top": 77.157163, - "right": -81.5625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 39, - "left": -81.5625, - "top": 77.157163, - "right": -80.15625, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 39, - "left": -80.15625, - "top": 77.157163, - "right": -78.75, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 39, - "left": -78.75, - "top": 77.157163, - "right": -77.34375, - "bottom": 76.840816, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 40, - "left": -122.34375, - "top": 76.840816, - "right": -120.9375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 40, - "left": -120.9375, - "top": 76.840816, - "right": -119.53125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 40, - "left": -119.53125, - "top": 76.840816, - "right": -118.125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 40, - "left": -118.125, - "top": 76.840816, - "right": -116.71875, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 40, - "left": -116.71875, - "top": 76.840816, - "right": -115.3125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 40, - "left": -115.3125, - "top": 76.840816, - "right": -113.90625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 40, - "left": -113.90625, - "top": 76.840816, - "right": -112.5, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 40, - "left": -111.09375, - "top": 76.840816, - "right": -109.6875, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 40, - "left": -109.6875, - "top": 76.840816, - "right": -108.28125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 40, - "left": -105.46875, - "top": 76.840816, - "right": -104.0625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 40, - "left": -104.0625, - "top": 76.840816, - "right": -102.65625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 40, - "left": -102.65625, - "top": 76.840816, - "right": -101.25, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 40, - "left": -101.25, - "top": 76.840816, - "right": -99.84375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 40, - "left": -99.84375, - "top": 76.840816, - "right": -98.4375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 40, - "left": -98.4375, - "top": 76.840816, - "right": -97.03125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 40, - "left": -97.03125, - "top": 76.840816, - "right": -95.625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 40, - "left": -95.625, - "top": 76.840816, - "right": -94.21875, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 40, - "left": -94.21875, - "top": 76.840816, - "right": -92.8125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 40, - "left": -92.8125, - "top": 76.840816, - "right": -91.40625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 40, - "left": -91.40625, - "top": 76.840816, - "right": -90.0, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 40, - "left": -90.0, - "top": 76.840816, - "right": -88.59375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 40, - "left": -88.59375, - "top": 76.840816, - "right": -87.1875, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 40, - "left": -87.1875, - "top": 76.840816, - "right": -85.78125, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 40, - "left": -85.78125, - "top": 76.840816, - "right": -84.375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 40, - "left": -84.375, - "top": 76.840816, - "right": -82.96875, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 40, - "left": -82.96875, - "top": 76.840816, - "right": -81.5625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 40, - "left": -81.5625, - "top": 76.840816, - "right": -80.15625, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 40, - "left": -80.15625, - "top": 76.840816, - "right": -78.75, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 40, - "left": -78.75, - "top": 76.840816, - "right": -77.34375, - "bottom": 76.516819, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 41, - "left": -123.75, - "top": 76.516819, - "right": -122.34375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 41, - "left": -122.34375, - "top": 76.516819, - "right": -120.9375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 41, - "left": -120.9375, - "top": 76.516819, - "right": -119.53125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 41, - "left": -119.53125, - "top": 76.516819, - "right": -118.125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 41, - "left": -118.125, - "top": 76.516819, - "right": -116.71875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 41, - "left": -116.71875, - "top": 76.516819, - "right": -115.3125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 41, - "left": -115.3125, - "top": 76.516819, - "right": -113.90625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 41, - "left": -113.90625, - "top": 76.516819, - "right": -112.5, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 41, - "left": -112.5, - "top": 76.516819, - "right": -111.09375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 41, - "left": -111.09375, - "top": 76.516819, - "right": -109.6875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 41, - "left": -109.6875, - "top": 76.516819, - "right": -108.28125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 41, - "left": -108.28125, - "top": 76.516819, - "right": -106.875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 41, - "left": -105.46875, - "top": 76.516819, - "right": -104.0625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 41, - "left": -104.0625, - "top": 76.516819, - "right": -102.65625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 41, - "left": -102.65625, - "top": 76.516819, - "right": -101.25, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 41, - "left": -101.25, - "top": 76.516819, - "right": -99.84375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 41, - "left": -99.84375, - "top": 76.516819, - "right": -98.4375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 41, - "left": -98.4375, - "top": 76.516819, - "right": -97.03125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 41, - "left": -97.03125, - "top": 76.516819, - "right": -95.625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 41, - "left": -95.625, - "top": 76.516819, - "right": -94.21875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 41, - "left": -94.21875, - "top": 76.516819, - "right": -92.8125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 41, - "left": -92.8125, - "top": 76.516819, - "right": -91.40625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 41, - "left": -91.40625, - "top": 76.516819, - "right": -90.0, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 41, - "left": -90.0, - "top": 76.516819, - "right": -88.59375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 41, - "left": -88.59375, - "top": 76.516819, - "right": -87.1875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 41, - "left": -87.1875, - "top": 76.516819, - "right": -85.78125, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 41, - "left": -85.78125, - "top": 76.516819, - "right": -84.375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 41, - "left": -84.375, - "top": 76.516819, - "right": -82.96875, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 41, - "left": -82.96875, - "top": 76.516819, - "right": -81.5625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 41, - "left": -81.5625, - "top": 76.516819, - "right": -80.15625, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 41, - "left": -80.15625, - "top": 76.516819, - "right": -78.75, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 41, - "left": -78.75, - "top": 76.516819, - "right": -77.34375, - "bottom": 76.184995, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 42, - "left": -123.75, - "top": 76.184995, - "right": -122.34375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 42, - "left": -122.34375, - "top": 76.184995, - "right": -120.9375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 42, - "left": -120.9375, - "top": 76.184995, - "right": -119.53125, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 42, - "left": -119.53125, - "top": 76.184995, - "right": -118.125, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 42, - "left": -118.125, - "top": 76.184995, - "right": -116.71875, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 42, - "left": -116.71875, - "top": 76.184995, - "right": -115.3125, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 42, - "left": -115.3125, - "top": 76.184995, - "right": -113.90625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 42, - "left": -113.90625, - "top": 76.184995, - "right": -112.5, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 42, - "left": -112.5, - "top": 76.184995, - "right": -111.09375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 42, - "left": -111.09375, - "top": 76.184995, - "right": -109.6875, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 42, - "left": -109.6875, - "top": 76.184995, - "right": -108.28125, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 42, - "left": -108.28125, - "top": 76.184995, - "right": -106.875, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 42, - "left": -106.875, - "top": 76.184995, - "right": -105.46875, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 42, - "left": -105.46875, - "top": 76.184995, - "right": -104.0625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 42, - "left": -104.0625, - "top": 76.184995, - "right": -102.65625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 42, - "left": -102.65625, - "top": 76.184995, - "right": -101.25, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 42, - "left": -101.25, - "top": 76.184995, - "right": -99.84375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 42, - "left": -99.84375, - "top": 76.184995, - "right": -98.4375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 42, - "left": -98.4375, - "top": 76.184995, - "right": -97.03125, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 42, - "left": -97.03125, - "top": 76.184995, - "right": -95.625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 42, - "left": -95.625, - "top": 76.184995, - "right": -94.21875, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 42, - "left": -92.8125, - "top": 76.184995, - "right": -91.40625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 42, - "left": -91.40625, - "top": 76.184995, - "right": -90.0, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 42, - "left": -90.0, - "top": 76.184995, - "right": -88.59375, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 42, - "left": -82.96875, - "top": 76.184995, - "right": -81.5625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 42, - "left": -81.5625, - "top": 76.184995, - "right": -80.15625, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 42, - "left": -80.15625, - "top": 76.184995, - "right": -78.75, - "bottom": 75.845169, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 43, - "left": -123.75, - "top": 75.845169, - "right": -122.34375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 43, - "left": -122.34375, - "top": 75.845169, - "right": -120.9375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 43, - "left": -120.9375, - "top": 75.845169, - "right": -119.53125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 43, - "left": -119.53125, - "top": 75.845169, - "right": -118.125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 43, - "left": -118.125, - "top": 75.845169, - "right": -116.71875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 43, - "left": -116.71875, - "top": 75.845169, - "right": -115.3125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 43, - "left": -115.3125, - "top": 75.845169, - "right": -113.90625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 43, - "left": -113.90625, - "top": 75.845169, - "right": -112.5, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 43, - "left": -112.5, - "top": 75.845169, - "right": -111.09375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 43, - "left": -111.09375, - "top": 75.845169, - "right": -109.6875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 43, - "left": -109.6875, - "top": 75.845169, - "right": -108.28125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 43, - "left": -108.28125, - "top": 75.845169, - "right": -106.875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 43, - "left": -106.875, - "top": 75.845169, - "right": -105.46875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 43, - "left": -105.46875, - "top": 75.845169, - "right": -104.0625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 43, - "left": -104.0625, - "top": 75.845169, - "right": -102.65625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 43, - "left": -102.65625, - "top": 75.845169, - "right": -101.25, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 43, - "left": -101.25, - "top": 75.845169, - "right": -99.84375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 43, - "left": -99.84375, - "top": 75.845169, - "right": -98.4375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 43, - "left": -98.4375, - "top": 75.845169, - "right": -97.03125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 43, - "left": -97.03125, - "top": 75.845169, - "right": -95.625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 43, - "left": -95.625, - "top": 75.845169, - "right": -94.21875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 43, - "left": -94.21875, - "top": 75.845169, - "right": -92.8125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 43, - "left": -92.8125, - "top": 75.845169, - "right": -91.40625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 43, - "left": -91.40625, - "top": 75.845169, - "right": -90.0, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 43, - "left": -90.0, - "top": 75.845169, - "right": -88.59375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 43, - "left": -88.59375, - "top": 75.845169, - "right": -87.1875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 43, - "left": -87.1875, - "top": 75.845169, - "right": -85.78125, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 43, - "left": -85.78125, - "top": 75.845169, - "right": -84.375, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 43, - "left": -84.375, - "top": 75.845169, - "right": -82.96875, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 43, - "left": -82.96875, - "top": 75.845169, - "right": -81.5625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 43, - "left": -81.5625, - "top": 75.845169, - "right": -80.15625, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 43, - "left": -80.15625, - "top": 75.845169, - "right": -78.75, - "bottom": 75.497157, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 44, - "left": -118.125, - "top": 75.497157, - "right": -116.71875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 44, - "left": -116.71875, - "top": 75.497157, - "right": -115.3125, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 44, - "left": -115.3125, - "top": 75.497157, - "right": -113.90625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 44, - "left": -113.90625, - "top": 75.497157, - "right": -112.5, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 44, - "left": -112.5, - "top": 75.497157, - "right": -111.09375, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 44, - "left": -111.09375, - "top": 75.497157, - "right": -109.6875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 44, - "left": -109.6875, - "top": 75.497157, - "right": -108.28125, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 44, - "left": -108.28125, - "top": 75.497157, - "right": -106.875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 44, - "left": -106.875, - "top": 75.497157, - "right": -105.46875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 44, - "left": -105.46875, - "top": 75.497157, - "right": -104.0625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 44, - "left": -104.0625, - "top": 75.497157, - "right": -102.65625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 44, - "left": -102.65625, - "top": 75.497157, - "right": -101.25, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 44, - "left": -101.25, - "top": 75.497157, - "right": -99.84375, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 44, - "left": -99.84375, - "top": 75.497157, - "right": -98.4375, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 44, - "left": -98.4375, - "top": 75.497157, - "right": -97.03125, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 44, - "left": -97.03125, - "top": 75.497157, - "right": -95.625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 44, - "left": -95.625, - "top": 75.497157, - "right": -94.21875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 44, - "left": -94.21875, - "top": 75.497157, - "right": -92.8125, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 44, - "left": -92.8125, - "top": 75.497157, - "right": -91.40625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 44, - "left": -91.40625, - "top": 75.497157, - "right": -90.0, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 44, - "left": -90.0, - "top": 75.497157, - "right": -88.59375, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 44, - "left": -88.59375, - "top": 75.497157, - "right": -87.1875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 44, - "left": -87.1875, - "top": 75.497157, - "right": -85.78125, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 44, - "left": -85.78125, - "top": 75.497157, - "right": -84.375, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 44, - "left": -84.375, - "top": 75.497157, - "right": -82.96875, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 44, - "left": -82.96875, - "top": 75.497157, - "right": -81.5625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 44, - "left": -81.5625, - "top": 75.497157, - "right": -80.15625, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 44, - "left": -80.15625, - "top": 75.497157, - "right": -78.75, - "bottom": 75.140778, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 45, - "left": -118.125, - "top": 75.140778, - "right": -116.71875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 45, - "left": -116.71875, - "top": 75.140778, - "right": -115.3125, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 45, - "left": -115.3125, - "top": 75.140778, - "right": -113.90625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 45, - "left": -113.90625, - "top": 75.140778, - "right": -112.5, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 45, - "left": -112.5, - "top": 75.140778, - "right": -111.09375, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 45, - "left": -111.09375, - "top": 75.140778, - "right": -109.6875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 45, - "left": -109.6875, - "top": 75.140778, - "right": -108.28125, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 45, - "left": -108.28125, - "top": 75.140778, - "right": -106.875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 45, - "left": -106.875, - "top": 75.140778, - "right": -105.46875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 45, - "left": -105.46875, - "top": 75.140778, - "right": -104.0625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 45, - "left": -104.0625, - "top": 75.140778, - "right": -102.65625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 45, - "left": -101.25, - "top": 75.140778, - "right": -99.84375, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 45, - "left": -99.84375, - "top": 75.140778, - "right": -98.4375, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 45, - "left": -98.4375, - "top": 75.140778, - "right": -97.03125, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 45, - "left": -97.03125, - "top": 75.140778, - "right": -95.625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 45, - "left": -95.625, - "top": 75.140778, - "right": -94.21875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 45, - "left": -94.21875, - "top": 75.140778, - "right": -92.8125, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 45, - "left": -92.8125, - "top": 75.140778, - "right": -91.40625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 45, - "left": -91.40625, - "top": 75.140778, - "right": -90.0, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 45, - "left": -90.0, - "top": 75.140778, - "right": -88.59375, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 45, - "left": -88.59375, - "top": 75.140778, - "right": -87.1875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 45, - "left": -87.1875, - "top": 75.140778, - "right": -85.78125, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 45, - "left": -85.78125, - "top": 75.140778, - "right": -84.375, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 45, - "left": -84.375, - "top": 75.140778, - "right": -82.96875, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 45, - "left": -82.96875, - "top": 75.140778, - "right": -81.5625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 45, - "left": -81.5625, - "top": 75.140778, - "right": -80.15625, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 45, - "left": -80.15625, - "top": 75.140778, - "right": -78.75, - "bottom": 74.775843, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 46, - "left": -125.15625, - "top": 74.775843, - "right": -123.75, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 46, - "left": -123.75, - "top": 74.775843, - "right": -122.34375, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 46, - "left": -122.34375, - "top": 74.775843, - "right": -120.9375, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 46, - "left": -120.9375, - "top": 74.775843, - "right": -119.53125, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 46, - "left": -115.3125, - "top": 74.775843, - "right": -113.90625, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 46, - "left": -113.90625, - "top": 74.775843, - "right": -112.5, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 46, - "left": -112.5, - "top": 74.775843, - "right": -111.09375, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 46, - "left": -111.09375, - "top": 74.775843, - "right": -109.6875, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 46, - "left": -98.4375, - "top": 74.775843, - "right": -97.03125, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 46, - "left": -97.03125, - "top": 74.775843, - "right": -95.625, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 46, - "left": -95.625, - "top": 74.775843, - "right": -94.21875, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 46, - "left": -94.21875, - "top": 74.775843, - "right": -92.8125, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 46, - "left": -92.8125, - "top": 74.775843, - "right": -91.40625, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 46, - "left": -91.40625, - "top": 74.775843, - "right": -90.0, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 46, - "left": -90.0, - "top": 74.775843, - "right": -88.59375, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 46, - "left": -88.59375, - "top": 74.775843, - "right": -87.1875, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 46, - "left": -87.1875, - "top": 74.775843, - "right": -85.78125, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 46, - "left": -85.78125, - "top": 74.775843, - "right": -84.375, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 46, - "left": -84.375, - "top": 74.775843, - "right": -82.96875, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 46, - "left": -82.96875, - "top": 74.775843, - "right": -81.5625, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 46, - "left": -81.5625, - "top": 74.775843, - "right": -80.15625, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 46, - "left": -80.15625, - "top": 74.775843, - "right": -78.75, - "bottom": 74.402163, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 47, - "left": -125.15625, - "top": 74.402163, - "right": -123.75, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 47, - "left": -123.75, - "top": 74.402163, - "right": -122.34375, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 47, - "left": -122.34375, - "top": 74.402163, - "right": -120.9375, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 47, - "left": -120.9375, - "top": 74.402163, - "right": -119.53125, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 47, - "left": -119.53125, - "top": 74.402163, - "right": -118.125, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 47, - "left": -118.125, - "top": 74.402163, - "right": -116.71875, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 47, - "left": -116.71875, - "top": 74.402163, - "right": -115.3125, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 47, - "left": -113.90625, - "top": 74.402163, - "right": -112.5, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 47, - "left": -99.84375, - "top": 74.402163, - "right": -98.4375, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 47, - "left": -98.4375, - "top": 74.402163, - "right": -97.03125, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 47, - "left": -95.625, - "top": 74.402163, - "right": -94.21875, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 47, - "left": -94.21875, - "top": 74.402163, - "right": -92.8125, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 47, - "left": -92.8125, - "top": 74.402163, - "right": -91.40625, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 47, - "left": -91.40625, - "top": 74.402163, - "right": -90.0, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 47, - "left": -90.0, - "top": 74.402163, - "right": -88.59375, - "bottom": 74.019543, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 48, - "left": -125.15625, - "top": 74.019543, - "right": -123.75, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 48, - "left": -123.75, - "top": 74.019543, - "right": -122.34375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 48, - "left": -122.34375, - "top": 74.019543, - "right": -120.9375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 48, - "left": -120.9375, - "top": 74.019543, - "right": -119.53125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 48, - "left": -119.53125, - "top": 74.019543, - "right": -118.125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 48, - "left": -118.125, - "top": 74.019543, - "right": -116.71875, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 48, - "left": -116.71875, - "top": 74.019543, - "right": -115.3125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 48, - "left": -106.875, - "top": 74.019543, - "right": -105.46875, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 48, - "left": -105.46875, - "top": 74.019543, - "right": -104.0625, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 48, - "left": -101.25, - "top": 74.019543, - "right": -99.84375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 48, - "left": -99.84375, - "top": 74.019543, - "right": -98.4375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 48, - "left": -98.4375, - "top": 74.019543, - "right": -97.03125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 48, - "left": -97.03125, - "top": 74.019543, - "right": -95.625, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 48, - "left": -95.625, - "top": 74.019543, - "right": -94.21875, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 48, - "left": -94.21875, - "top": 74.019543, - "right": -92.8125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 48, - "left": -92.8125, - "top": 74.019543, - "right": -91.40625, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 48, - "left": -91.40625, - "top": 74.019543, - "right": -90.0, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 48, - "left": -90.0, - "top": 74.019543, - "right": -88.59375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 48, - "left": -88.59375, - "top": 74.019543, - "right": -87.1875, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 48, - "left": -87.1875, - "top": 74.019543, - "right": -85.78125, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 48, - "left": -85.78125, - "top": 74.019543, - "right": -84.375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 48, - "left": -84.375, - "top": 74.019543, - "right": -82.96875, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 48, - "left": -82.96875, - "top": 74.019543, - "right": -81.5625, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 48, - "left": -81.5625, - "top": 74.019543, - "right": -80.15625, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 48, - "left": -80.15625, - "top": 74.019543, - "right": -78.75, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 48, - "left": -78.75, - "top": 74.019543, - "right": -77.34375, - "bottom": 73.627789, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 49, - "left": -125.15625, - "top": 73.627789, - "right": -123.75, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 49, - "left": -123.75, - "top": 73.627789, - "right": -122.34375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 49, - "left": -122.34375, - "top": 73.627789, - "right": -120.9375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 49, - "left": -120.9375, - "top": 73.627789, - "right": -119.53125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 49, - "left": -119.53125, - "top": 73.627789, - "right": -118.125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 49, - "left": -118.125, - "top": 73.627789, - "right": -116.71875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 49, - "left": -116.71875, - "top": 73.627789, - "right": -115.3125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 49, - "left": -115.3125, - "top": 73.627789, - "right": -113.90625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 49, - "left": -108.28125, - "top": 73.627789, - "right": -106.875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 49, - "left": -106.875, - "top": 73.627789, - "right": -105.46875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 49, - "left": -105.46875, - "top": 73.627789, - "right": -104.0625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 49, - "left": -102.65625, - "top": 73.627789, - "right": -101.25, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 49, - "left": -101.25, - "top": 73.627789, - "right": -99.84375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 49, - "left": -99.84375, - "top": 73.627789, - "right": -98.4375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 49, - "left": -98.4375, - "top": 73.627789, - "right": -97.03125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 49, - "left": -97.03125, - "top": 73.627789, - "right": -95.625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 49, - "left": -95.625, - "top": 73.627789, - "right": -94.21875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 49, - "left": -94.21875, - "top": 73.627789, - "right": -92.8125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 49, - "left": -92.8125, - "top": 73.627789, - "right": -91.40625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 49, - "left": -91.40625, - "top": 73.627789, - "right": -90.0, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 49, - "left": -90.0, - "top": 73.627789, - "right": -88.59375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 49, - "left": -88.59375, - "top": 73.627789, - "right": -87.1875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 49, - "left": -87.1875, - "top": 73.627789, - "right": -85.78125, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 49, - "left": -85.78125, - "top": 73.627789, - "right": -84.375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 49, - "left": -84.375, - "top": 73.627789, - "right": -82.96875, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 49, - "left": -82.96875, - "top": 73.627789, - "right": -81.5625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 49, - "left": -81.5625, - "top": 73.627789, - "right": -80.15625, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 49, - "left": -80.15625, - "top": 73.627789, - "right": -78.75, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 49, - "left": -78.75, - "top": 73.627789, - "right": -77.34375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 49, - "left": -77.34375, - "top": 73.627789, - "right": -75.9375, - "bottom": 73.2267, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 50, - "left": -126.5625, - "top": 73.2267, - "right": -125.15625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 50, - "left": -125.15625, - "top": 73.2267, - "right": -123.75, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 50, - "left": -123.75, - "top": 73.2267, - "right": -122.34375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 50, - "left": -122.34375, - "top": 73.2267, - "right": -120.9375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 50, - "left": -120.9375, - "top": 73.2267, - "right": -119.53125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 50, - "left": -119.53125, - "top": 73.2267, - "right": -118.125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 50, - "left": -118.125, - "top": 73.2267, - "right": -116.71875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 50, - "left": -116.71875, - "top": 73.2267, - "right": -115.3125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 50, - "left": -115.3125, - "top": 73.2267, - "right": -113.90625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 50, - "left": -113.90625, - "top": 73.2267, - "right": -112.5, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 50, - "left": -112.5, - "top": 73.2267, - "right": -111.09375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 50, - "left": -111.09375, - "top": 73.2267, - "right": -109.6875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 50, - "left": -109.6875, - "top": 73.2267, - "right": -108.28125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 50, - "left": -108.28125, - "top": 73.2267, - "right": -106.875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 50, - "left": -106.875, - "top": 73.2267, - "right": -105.46875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 50, - "left": -105.46875, - "top": 73.2267, - "right": -104.0625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 50, - "left": -104.0625, - "top": 73.2267, - "right": -102.65625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 50, - "left": -102.65625, - "top": 73.2267, - "right": -101.25, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 50, - "left": -101.25, - "top": 73.2267, - "right": -99.84375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 50, - "left": -99.84375, - "top": 73.2267, - "right": -98.4375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 50, - "left": -98.4375, - "top": 73.2267, - "right": -97.03125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 50, - "left": -97.03125, - "top": 73.2267, - "right": -95.625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 50, - "left": -95.625, - "top": 73.2267, - "right": -94.21875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 50, - "left": -94.21875, - "top": 73.2267, - "right": -92.8125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 50, - "left": -92.8125, - "top": 73.2267, - "right": -91.40625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 50, - "left": -91.40625, - "top": 73.2267, - "right": -90.0, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 50, - "left": -90.0, - "top": 73.2267, - "right": -88.59375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 50, - "left": -88.59375, - "top": 73.2267, - "right": -87.1875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 50, - "left": -87.1875, - "top": 73.2267, - "right": -85.78125, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 50, - "left": -85.78125, - "top": 73.2267, - "right": -84.375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 50, - "left": -84.375, - "top": 73.2267, - "right": -82.96875, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 50, - "left": -82.96875, - "top": 73.2267, - "right": -81.5625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 50, - "left": -81.5625, - "top": 73.2267, - "right": -80.15625, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 50, - "left": -80.15625, - "top": 73.2267, - "right": -78.75, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 50, - "left": -78.75, - "top": 73.2267, - "right": -77.34375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 50, - "left": -77.34375, - "top": 73.2267, - "right": -75.9375, - "bottom": 72.816074, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 51, - "left": -126.5625, - "top": 72.816074, - "right": -125.15625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 51, - "left": -125.15625, - "top": 72.816074, - "right": -123.75, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 51, - "left": -123.75, - "top": 72.816074, - "right": -122.34375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 51, - "left": -122.34375, - "top": 72.816074, - "right": -120.9375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 51, - "left": -120.9375, - "top": 72.816074, - "right": -119.53125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 51, - "left": -119.53125, - "top": 72.816074, - "right": -118.125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 51, - "left": -118.125, - "top": 72.816074, - "right": -116.71875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 51, - "left": -116.71875, - "top": 72.816074, - "right": -115.3125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 51, - "left": -115.3125, - "top": 72.816074, - "right": -113.90625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 51, - "left": -113.90625, - "top": 72.816074, - "right": -112.5, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 51, - "left": -112.5, - "top": 72.816074, - "right": -111.09375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 51, - "left": -111.09375, - "top": 72.816074, - "right": -109.6875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 51, - "left": -109.6875, - "top": 72.816074, - "right": -108.28125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 51, - "left": -108.28125, - "top": 72.816074, - "right": -106.875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 51, - "left": -106.875, - "top": 72.816074, - "right": -105.46875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 51, - "left": -105.46875, - "top": 72.816074, - "right": -104.0625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 51, - "left": -104.0625, - "top": 72.816074, - "right": -102.65625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 51, - "left": -102.65625, - "top": 72.816074, - "right": -101.25, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 51, - "left": -101.25, - "top": 72.816074, - "right": -99.84375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 51, - "left": -99.84375, - "top": 72.816074, - "right": -98.4375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 51, - "left": -98.4375, - "top": 72.816074, - "right": -97.03125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 51, - "left": -97.03125, - "top": 72.816074, - "right": -95.625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 51, - "left": -95.625, - "top": 72.816074, - "right": -94.21875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 51, - "left": -94.21875, - "top": 72.816074, - "right": -92.8125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 51, - "left": -92.8125, - "top": 72.816074, - "right": -91.40625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 51, - "left": -90.0, - "top": 72.816074, - "right": -88.59375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 51, - "left": -88.59375, - "top": 72.816074, - "right": -87.1875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 51, - "left": -87.1875, - "top": 72.816074, - "right": -85.78125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 51, - "left": -85.78125, - "top": 72.816074, - "right": -84.375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 51, - "left": -84.375, - "top": 72.816074, - "right": -82.96875, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 51, - "left": -82.96875, - "top": 72.816074, - "right": -81.5625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 51, - "left": -81.5625, - "top": 72.816074, - "right": -80.15625, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 51, - "left": -80.15625, - "top": 72.816074, - "right": -78.75, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 51, - "left": -78.75, - "top": 72.816074, - "right": -77.34375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 51, - "left": -77.34375, - "top": 72.816074, - "right": -75.9375, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 51, - "left": -75.9375, - "top": 72.816074, - "right": -74.53125, - "bottom": 72.395706, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 52, - "left": -126.5625, - "top": 72.395706, - "right": -125.15625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 52, - "left": -125.15625, - "top": 72.395706, - "right": -123.75, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 52, - "left": -123.75, - "top": 72.395706, - "right": -122.34375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 52, - "left": -122.34375, - "top": 72.395706, - "right": -120.9375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 52, - "left": -120.9375, - "top": 72.395706, - "right": -119.53125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 52, - "left": -119.53125, - "top": 72.395706, - "right": -118.125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 52, - "left": -118.125, - "top": 72.395706, - "right": -116.71875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 52, - "left": -116.71875, - "top": 72.395706, - "right": -115.3125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 52, - "left": -115.3125, - "top": 72.395706, - "right": -113.90625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 52, - "left": -113.90625, - "top": 72.395706, - "right": -112.5, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 52, - "left": -112.5, - "top": 72.395706, - "right": -111.09375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 52, - "left": -111.09375, - "top": 72.395706, - "right": -109.6875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 52, - "left": -109.6875, - "top": 72.395706, - "right": -108.28125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 52, - "left": -108.28125, - "top": 72.395706, - "right": -106.875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 52, - "left": -106.875, - "top": 72.395706, - "right": -105.46875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 52, - "left": -105.46875, - "top": 72.395706, - "right": -104.0625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 52, - "left": -102.65625, - "top": 72.395706, - "right": -101.25, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 52, - "left": -101.25, - "top": 72.395706, - "right": -99.84375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 52, - "left": -99.84375, - "top": 72.395706, - "right": -98.4375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 52, - "left": -98.4375, - "top": 72.395706, - "right": -97.03125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 52, - "left": -97.03125, - "top": 72.395706, - "right": -95.625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 52, - "left": -95.625, - "top": 72.395706, - "right": -94.21875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 52, - "left": -94.21875, - "top": 72.395706, - "right": -92.8125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 52, - "left": -91.40625, - "top": 72.395706, - "right": -90.0, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 52, - "left": -90.0, - "top": 72.395706, - "right": -88.59375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 52, - "left": -88.59375, - "top": 72.395706, - "right": -87.1875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 52, - "left": -87.1875, - "top": 72.395706, - "right": -85.78125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 52, - "left": -85.78125, - "top": 72.395706, - "right": -84.375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 52, - "left": -84.375, - "top": 72.395706, - "right": -82.96875, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 52, - "left": -82.96875, - "top": 72.395706, - "right": -81.5625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 52, - "left": -81.5625, - "top": 72.395706, - "right": -80.15625, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 52, - "left": -80.15625, - "top": 72.395706, - "right": -78.75, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 52, - "left": -78.75, - "top": 72.395706, - "right": -77.34375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 52, - "left": -77.34375, - "top": 72.395706, - "right": -75.9375, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 52, - "left": -75.9375, - "top": 72.395706, - "right": -74.53125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 52, - "left": -74.53125, - "top": 72.395706, - "right": -73.125, - "bottom": 71.965388, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 53, - "left": -126.5625, - "top": 71.965388, - "right": -125.15625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 53, - "left": -125.15625, - "top": 71.965388, - "right": -123.75, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 53, - "left": -123.75, - "top": 71.965388, - "right": -122.34375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 53, - "left": -122.34375, - "top": 71.965388, - "right": -120.9375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 53, - "left": -120.9375, - "top": 71.965388, - "right": -119.53125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 53, - "left": -119.53125, - "top": 71.965388, - "right": -118.125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 53, - "left": -118.125, - "top": 71.965388, - "right": -116.71875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 53, - "left": -116.71875, - "top": 71.965388, - "right": -115.3125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 53, - "left": -115.3125, - "top": 71.965388, - "right": -113.90625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 53, - "left": -113.90625, - "top": 71.965388, - "right": -112.5, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 53, - "left": -112.5, - "top": 71.965388, - "right": -111.09375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 53, - "left": -111.09375, - "top": 71.965388, - "right": -109.6875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 53, - "left": -109.6875, - "top": 71.965388, - "right": -108.28125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 53, - "left": -108.28125, - "top": 71.965388, - "right": -106.875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 53, - "left": -106.875, - "top": 71.965388, - "right": -105.46875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 53, - "left": -105.46875, - "top": 71.965388, - "right": -104.0625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 53, - "left": -101.25, - "top": 71.965388, - "right": -99.84375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 53, - "left": -99.84375, - "top": 71.965388, - "right": -98.4375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 53, - "left": -98.4375, - "top": 71.965388, - "right": -97.03125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 53, - "left": -97.03125, - "top": 71.965388, - "right": -95.625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 53, - "left": -95.625, - "top": 71.965388, - "right": -94.21875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 53, - "left": -94.21875, - "top": 71.965388, - "right": -92.8125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 53, - "left": -91.40625, - "top": 71.965388, - "right": -90.0, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 53, - "left": -90.0, - "top": 71.965388, - "right": -88.59375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 53, - "left": -88.59375, - "top": 71.965388, - "right": -87.1875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 53, - "left": -87.1875, - "top": 71.965388, - "right": -85.78125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 53, - "left": -85.78125, - "top": 71.965388, - "right": -84.375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 53, - "left": -84.375, - "top": 71.965388, - "right": -82.96875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 53, - "left": -82.96875, - "top": 71.965388, - "right": -81.5625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 53, - "left": -81.5625, - "top": 71.965388, - "right": -80.15625, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 53, - "left": -80.15625, - "top": 71.965388, - "right": -78.75, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 53, - "left": -78.75, - "top": 71.965388, - "right": -77.34375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 53, - "left": -77.34375, - "top": 71.965388, - "right": -75.9375, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 53, - "left": -75.9375, - "top": 71.965388, - "right": -74.53125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 53, - "left": -74.53125, - "top": 71.965388, - "right": -73.125, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 53, - "left": -73.125, - "top": 71.965388, - "right": -71.71875, - "bottom": 71.524909, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 54, - "left": -125.15625, - "top": 71.524909, - "right": -123.75, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 54, - "left": -123.75, - "top": 71.524909, - "right": -122.34375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 54, - "left": -122.34375, - "top": 71.524909, - "right": -120.9375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 54, - "left": -120.9375, - "top": 71.524909, - "right": -119.53125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 54, - "left": -119.53125, - "top": 71.524909, - "right": -118.125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 54, - "left": -118.125, - "top": 71.524909, - "right": -116.71875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 54, - "left": -116.71875, - "top": 71.524909, - "right": -115.3125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 54, - "left": -115.3125, - "top": 71.524909, - "right": -113.90625, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 54, - "left": -113.90625, - "top": 71.524909, - "right": -112.5, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 54, - "left": -112.5, - "top": 71.524909, - "right": -111.09375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 54, - "left": -111.09375, - "top": 71.524909, - "right": -109.6875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 54, - "left": -109.6875, - "top": 71.524909, - "right": -108.28125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 54, - "left": -108.28125, - "top": 71.524909, - "right": -106.875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 54, - "left": -106.875, - "top": 71.524909, - "right": -105.46875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 54, - "left": -105.46875, - "top": 71.524909, - "right": -104.0625, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 54, - "left": -99.84375, - "top": 71.524909, - "right": -98.4375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 54, - "left": -98.4375, - "top": 71.524909, - "right": -97.03125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 54, - "left": -97.03125, - "top": 71.524909, - "right": -95.625, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 54, - "left": -95.625, - "top": 71.524909, - "right": -94.21875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 54, - "left": -94.21875, - "top": 71.524909, - "right": -92.8125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 54, - "left": -91.40625, - "top": 71.524909, - "right": -90.0, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 54, - "left": -90.0, - "top": 71.524909, - "right": -88.59375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 54, - "left": -88.59375, - "top": 71.524909, - "right": -87.1875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 54, - "left": -87.1875, - "top": 71.524909, - "right": -85.78125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 54, - "left": -85.78125, - "top": 71.524909, - "right": -84.375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 54, - "left": -84.375, - "top": 71.524909, - "right": -82.96875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 54, - "left": -82.96875, - "top": 71.524909, - "right": -81.5625, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 54, - "left": -81.5625, - "top": 71.524909, - "right": -80.15625, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 54, - "left": -80.15625, - "top": 71.524909, - "right": -78.75, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 54, - "left": -78.75, - "top": 71.524909, - "right": -77.34375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 54, - "left": -77.34375, - "top": 71.524909, - "right": -75.9375, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 54, - "left": -75.9375, - "top": 71.524909, - "right": -74.53125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 54, - "left": -74.53125, - "top": 71.524909, - "right": -73.125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 54, - "left": -73.125, - "top": 71.524909, - "right": -71.71875, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 54, - "left": -71.71875, - "top": 71.524909, - "right": -70.3125, - "bottom": 71.074056, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 55, - "left": -129.375, - "top": 71.074056, - "right": -127.96875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 55, - "left": -119.53125, - "top": 71.074056, - "right": -118.125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 55, - "left": -118.125, - "top": 71.074056, - "right": -116.71875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 55, - "left": -116.71875, - "top": 71.074056, - "right": -115.3125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 55, - "left": -115.3125, - "top": 71.074056, - "right": -113.90625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 55, - "left": -113.90625, - "top": 71.074056, - "right": -112.5, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 55, - "left": -112.5, - "top": 71.074056, - "right": -111.09375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 55, - "left": -111.09375, - "top": 71.074056, - "right": -109.6875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 55, - "left": -109.6875, - "top": 71.074056, - "right": -108.28125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 55, - "left": -108.28125, - "top": 71.074056, - "right": -106.875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 55, - "left": -106.875, - "top": 71.074056, - "right": -105.46875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 55, - "left": -105.46875, - "top": 71.074056, - "right": -104.0625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 55, - "left": -104.0625, - "top": 71.074056, - "right": -102.65625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 55, - "left": -101.25, - "top": 71.074056, - "right": -99.84375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 55, - "left": -97.03125, - "top": 71.074056, - "right": -95.625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 55, - "left": -95.625, - "top": 71.074056, - "right": -94.21875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 55, - "left": -94.21875, - "top": 71.074056, - "right": -92.8125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 55, - "left": -92.8125, - "top": 71.074056, - "right": -91.40625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 55, - "left": -90.0, - "top": 71.074056, - "right": -88.59375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 55, - "left": -88.59375, - "top": 71.074056, - "right": -87.1875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 55, - "left": -87.1875, - "top": 71.074056, - "right": -85.78125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 55, - "left": -85.78125, - "top": 71.074056, - "right": -84.375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 55, - "left": -84.375, - "top": 71.074056, - "right": -82.96875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 55, - "left": -82.96875, - "top": 71.074056, - "right": -81.5625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 55, - "left": -81.5625, - "top": 71.074056, - "right": -80.15625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 55, - "left": -80.15625, - "top": 71.074056, - "right": -78.75, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 55, - "left": -78.75, - "top": 71.074056, - "right": -77.34375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 55, - "left": -77.34375, - "top": 71.074056, - "right": -75.9375, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 55, - "left": -75.9375, - "top": 71.074056, - "right": -74.53125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 55, - "left": -74.53125, - "top": 71.074056, - "right": -73.125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 55, - "left": -73.125, - "top": 71.074056, - "right": -71.71875, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 55, - "left": -71.71875, - "top": 71.074056, - "right": -70.3125, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 55, - "left": -70.3125, - "top": 71.074056, - "right": -68.90625, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 55, - "left": -68.90625, - "top": 71.074056, - "right": -67.5, - "bottom": 70.612614, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 56, - "left": -130.78125, - "top": 70.612614, - "right": -129.375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 56, - "left": -129.375, - "top": 70.612614, - "right": -127.96875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 56, - "left": -127.96875, - "top": 70.612614, - "right": -126.5625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 56, - "left": -125.15625, - "top": 70.612614, - "right": -123.75, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 56, - "left": -118.125, - "top": 70.612614, - "right": -116.71875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 56, - "left": -116.71875, - "top": 70.612614, - "right": -115.3125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 56, - "left": -115.3125, - "top": 70.612614, - "right": -113.90625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 56, - "left": -113.90625, - "top": 70.612614, - "right": -112.5, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 56, - "left": -112.5, - "top": 70.612614, - "right": -111.09375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 56, - "left": -111.09375, - "top": 70.612614, - "right": -109.6875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 56, - "left": -109.6875, - "top": 70.612614, - "right": -108.28125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 56, - "left": -108.28125, - "top": 70.612614, - "right": -106.875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 56, - "left": -106.875, - "top": 70.612614, - "right": -105.46875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 56, - "left": -105.46875, - "top": 70.612614, - "right": -104.0625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 56, - "left": -104.0625, - "top": 70.612614, - "right": -102.65625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 56, - "left": -102.65625, - "top": 70.612614, - "right": -101.25, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 56, - "left": -101.25, - "top": 70.612614, - "right": -99.84375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 56, - "left": -97.03125, - "top": 70.612614, - "right": -95.625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 56, - "left": -95.625, - "top": 70.612614, - "right": -94.21875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 56, - "left": -94.21875, - "top": 70.612614, - "right": -92.8125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 56, - "left": -92.8125, - "top": 70.612614, - "right": -91.40625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 56, - "left": -91.40625, - "top": 70.612614, - "right": -90.0, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 56, - "left": -90.0, - "top": 70.612614, - "right": -88.59375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 56, - "left": -88.59375, - "top": 70.612614, - "right": -87.1875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 56, - "left": -87.1875, - "top": 70.612614, - "right": -85.78125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 56, - "left": -85.78125, - "top": 70.612614, - "right": -84.375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 56, - "left": -84.375, - "top": 70.612614, - "right": -82.96875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 56, - "left": -82.96875, - "top": 70.612614, - "right": -81.5625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 56, - "left": -81.5625, - "top": 70.612614, - "right": -80.15625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 56, - "left": -80.15625, - "top": 70.612614, - "right": -78.75, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 56, - "left": -78.75, - "top": 70.612614, - "right": -77.34375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 56, - "left": -77.34375, - "top": 70.612614, - "right": -75.9375, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 56, - "left": -75.9375, - "top": 70.612614, - "right": -74.53125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 56, - "left": -74.53125, - "top": 70.612614, - "right": -73.125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 56, - "left": -73.125, - "top": 70.612614, - "right": -71.71875, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 56, - "left": -71.71875, - "top": 70.612614, - "right": -70.3125, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 56, - "left": -70.3125, - "top": 70.612614, - "right": -68.90625, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 56, - "left": -68.90625, - "top": 70.612614, - "right": -67.5, - "bottom": 70.140364, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 57, - "left": -135.0, - "top": 70.140364, - "right": -133.59375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 57, - "left": -133.59375, - "top": 70.140364, - "right": -132.1875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 57, - "left": -132.1875, - "top": 70.140364, - "right": -130.78125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 57, - "left": -130.78125, - "top": 70.140364, - "right": -129.375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 57, - "left": -129.375, - "top": 70.140364, - "right": -127.96875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 57, - "left": -127.96875, - "top": 70.140364, - "right": -126.5625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 57, - "left": -126.5625, - "top": 70.140364, - "right": -125.15625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 57, - "left": -125.15625, - "top": 70.140364, - "right": -123.75, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 57, - "left": -123.75, - "top": 70.140364, - "right": -122.34375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 57, - "left": -122.34375, - "top": 70.140364, - "right": -120.9375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 57, - "left": -118.125, - "top": 70.140364, - "right": -116.71875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 57, - "left": -116.71875, - "top": 70.140364, - "right": -115.3125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 57, - "left": -115.3125, - "top": 70.140364, - "right": -113.90625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 57, - "left": -113.90625, - "top": 70.140364, - "right": -112.5, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 57, - "left": -112.5, - "top": 70.140364, - "right": -111.09375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 57, - "left": -111.09375, - "top": 70.140364, - "right": -109.6875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 57, - "left": -109.6875, - "top": 70.140364, - "right": -108.28125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 57, - "left": -108.28125, - "top": 70.140364, - "right": -106.875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 57, - "left": -106.875, - "top": 70.140364, - "right": -105.46875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 57, - "left": -105.46875, - "top": 70.140364, - "right": -104.0625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 57, - "left": -104.0625, - "top": 70.140364, - "right": -102.65625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 57, - "left": -102.65625, - "top": 70.140364, - "right": -101.25, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 57, - "left": -101.25, - "top": 70.140364, - "right": -99.84375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 57, - "left": -98.4375, - "top": 70.140364, - "right": -97.03125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 57, - "left": -97.03125, - "top": 70.140364, - "right": -95.625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 57, - "left": -95.625, - "top": 70.140364, - "right": -94.21875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 57, - "left": -94.21875, - "top": 70.140364, - "right": -92.8125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 57, - "left": -92.8125, - "top": 70.140364, - "right": -91.40625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 57, - "left": -91.40625, - "top": 70.140364, - "right": -90.0, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 57, - "left": -88.59375, - "top": 70.140364, - "right": -87.1875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 57, - "left": -87.1875, - "top": 70.140364, - "right": -85.78125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 57, - "left": -85.78125, - "top": 70.140364, - "right": -84.375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 57, - "left": -84.375, - "top": 70.140364, - "right": -82.96875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 57, - "left": -82.96875, - "top": 70.140364, - "right": -81.5625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 57, - "left": -81.5625, - "top": 70.140364, - "right": -80.15625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 57, - "left": -80.15625, - "top": 70.140364, - "right": -78.75, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 57, - "left": -78.75, - "top": 70.140364, - "right": -77.34375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 57, - "left": -77.34375, - "top": 70.140364, - "right": -75.9375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 57, - "left": -75.9375, - "top": 70.140364, - "right": -74.53125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 57, - "left": -74.53125, - "top": 70.140364, - "right": -73.125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 57, - "left": -73.125, - "top": 70.140364, - "right": -71.71875, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 57, - "left": -71.71875, - "top": 70.140364, - "right": -70.3125, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 57, - "left": -70.3125, - "top": 70.140364, - "right": -68.90625, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 57, - "left": -68.90625, - "top": 70.140364, - "right": -67.5, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 57, - "left": -67.5, - "top": 70.140364, - "right": -66.09375, - "bottom": 69.657086, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 58, - "left": -142.03125, - "top": 69.657086, - "right": -140.625, - "bottom": 69.162558, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 58, - "left": -140.625, - "top": 69.657086, - "right": -139.21875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 58, - "left": -139.21875, - "top": 69.657086, - "right": -137.8125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 58, - "left": -136.40625, - "top": 69.657086, - "right": -135.0, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 58, - "left": -135.0, - "top": 69.657086, - "right": -133.59375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 58, - "left": -133.59375, - "top": 69.657086, - "right": -132.1875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 58, - "left": -132.1875, - "top": 69.657086, - "right": -130.78125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 58, - "left": -130.78125, - "top": 69.657086, - "right": -129.375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 58, - "left": -129.375, - "top": 69.657086, - "right": -127.96875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 58, - "left": -127.96875, - "top": 69.657086, - "right": -126.5625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 58, - "left": -126.5625, - "top": 69.657086, - "right": -125.15625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 58, - "left": -125.15625, - "top": 69.657086, - "right": -123.75, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 58, - "left": -123.75, - "top": 69.657086, - "right": -122.34375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 58, - "left": -122.34375, - "top": 69.657086, - "right": -120.9375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 58, - "left": -120.9375, - "top": 69.657086, - "right": -119.53125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 58, - "left": -119.53125, - "top": 69.657086, - "right": -118.125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 58, - "left": -118.125, - "top": 69.657086, - "right": -116.71875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 58, - "left": -116.71875, - "top": 69.657086, - "right": -115.3125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 58, - "left": -115.3125, - "top": 69.657086, - "right": -113.90625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 58, - "left": -113.90625, - "top": 69.657086, - "right": -112.5, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 58, - "left": -112.5, - "top": 69.657086, - "right": -111.09375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 58, - "left": -111.09375, - "top": 69.657086, - "right": -109.6875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 58, - "left": -109.6875, - "top": 69.657086, - "right": -108.28125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 58, - "left": -108.28125, - "top": 69.657086, - "right": -106.875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 58, - "left": -106.875, - "top": 69.657086, - "right": -105.46875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 58, - "left": -105.46875, - "top": 69.657086, - "right": -104.0625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 58, - "left": -104.0625, - "top": 69.657086, - "right": -102.65625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 58, - "left": -102.65625, - "top": 69.657086, - "right": -101.25, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 58, - "left": -101.25, - "top": 69.657086, - "right": -99.84375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 58, - "left": -99.84375, - "top": 69.657086, - "right": -98.4375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 58, - "left": -98.4375, - "top": 69.657086, - "right": -97.03125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 58, - "left": -97.03125, - "top": 69.657086, - "right": -95.625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 58, - "left": -95.625, - "top": 69.657086, - "right": -94.21875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 58, - "left": -94.21875, - "top": 69.657086, - "right": -92.8125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 58, - "left": -92.8125, - "top": 69.657086, - "right": -91.40625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 58, - "left": -91.40625, - "top": 69.657086, - "right": -90.0, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 58, - "left": -90.0, - "top": 69.657086, - "right": -88.59375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 58, - "left": -85.78125, - "top": 69.657086, - "right": -84.375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 58, - "left": -84.375, - "top": 69.657086, - "right": -82.96875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 58, - "left": -82.96875, - "top": 69.657086, - "right": -81.5625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 58, - "left": -81.5625, - "top": 69.657086, - "right": -80.15625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 58, - "left": -80.15625, - "top": 69.657086, - "right": -78.75, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 58, - "left": -78.75, - "top": 69.657086, - "right": -77.34375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 58, - "left": -77.34375, - "top": 69.657086, - "right": -75.9375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 58, - "left": -75.9375, - "top": 69.657086, - "right": -74.53125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 58, - "left": -74.53125, - "top": 69.657086, - "right": -73.125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 58, - "left": -73.125, - "top": 69.657086, - "right": -71.71875, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 58, - "left": -71.71875, - "top": 69.657086, - "right": -70.3125, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 58, - "left": -70.3125, - "top": 69.657086, - "right": -68.90625, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 58, - "left": -68.90625, - "top": 69.657086, - "right": -67.5, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 58, - "left": -67.5, - "top": 69.657086, - "right": -66.09375, - "bottom": 69.162558, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 59, - "left": -142.03125, - "top": 69.162558, - "right": -140.625, - "bottom": 68.656555, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 59, - "left": -140.625, - "top": 69.162558, - "right": -139.21875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 59, - "left": -139.21875, - "top": 69.162558, - "right": -137.8125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 59, - "left": -137.8125, - "top": 69.162558, - "right": -136.40625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 59, - "left": -136.40625, - "top": 69.162558, - "right": -135.0, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 59, - "left": -135.0, - "top": 69.162558, - "right": -133.59375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 59, - "left": -133.59375, - "top": 69.162558, - "right": -132.1875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 59, - "left": -132.1875, - "top": 69.162558, - "right": -130.78125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 59, - "left": -130.78125, - "top": 69.162558, - "right": -129.375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 59, - "left": -129.375, - "top": 69.162558, - "right": -127.96875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 59, - "left": -127.96875, - "top": 69.162558, - "right": -126.5625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 59, - "left": -126.5625, - "top": 69.162558, - "right": -125.15625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 59, - "left": -125.15625, - "top": 69.162558, - "right": -123.75, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 59, - "left": -123.75, - "top": 69.162558, - "right": -122.34375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 59, - "left": -122.34375, - "top": 69.162558, - "right": -120.9375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 59, - "left": -120.9375, - "top": 69.162558, - "right": -119.53125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 59, - "left": -119.53125, - "top": 69.162558, - "right": -118.125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 59, - "left": -118.125, - "top": 69.162558, - "right": -116.71875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 59, - "left": -116.71875, - "top": 69.162558, - "right": -115.3125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 59, - "left": -115.3125, - "top": 69.162558, - "right": -113.90625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 59, - "left": -113.90625, - "top": 69.162558, - "right": -112.5, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 59, - "left": -112.5, - "top": 69.162558, - "right": -111.09375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 59, - "left": -111.09375, - "top": 69.162558, - "right": -109.6875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 59, - "left": -109.6875, - "top": 69.162558, - "right": -108.28125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 59, - "left": -108.28125, - "top": 69.162558, - "right": -106.875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 59, - "left": -106.875, - "top": 69.162558, - "right": -105.46875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 59, - "left": -105.46875, - "top": 69.162558, - "right": -104.0625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 59, - "left": -104.0625, - "top": 69.162558, - "right": -102.65625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 59, - "left": -102.65625, - "top": 69.162558, - "right": -101.25, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 59, - "left": -101.25, - "top": 69.162558, - "right": -99.84375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 59, - "left": -99.84375, - "top": 69.162558, - "right": -98.4375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 59, - "left": -98.4375, - "top": 69.162558, - "right": -97.03125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 59, - "left": -97.03125, - "top": 69.162558, - "right": -95.625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 59, - "left": -95.625, - "top": 69.162558, - "right": -94.21875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 59, - "left": -94.21875, - "top": 69.162558, - "right": -92.8125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 59, - "left": -92.8125, - "top": 69.162558, - "right": -91.40625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 59, - "left": -91.40625, - "top": 69.162558, - "right": -90.0, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 59, - "left": -90.0, - "top": 69.162558, - "right": -88.59375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 59, - "left": -88.59375, - "top": 69.162558, - "right": -87.1875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 59, - "left": -85.78125, - "top": 69.162558, - "right": -84.375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 59, - "left": -84.375, - "top": 69.162558, - "right": -82.96875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 59, - "left": -82.96875, - "top": 69.162558, - "right": -81.5625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 59, - "left": -81.5625, - "top": 69.162558, - "right": -80.15625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 59, - "left": -80.15625, - "top": 69.162558, - "right": -78.75, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 59, - "left": -78.75, - "top": 69.162558, - "right": -77.34375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 59, - "left": -77.34375, - "top": 69.162558, - "right": -75.9375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 59, - "left": -75.9375, - "top": 69.162558, - "right": -74.53125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 59, - "left": -74.53125, - "top": 69.162558, - "right": -73.125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 59, - "left": -73.125, - "top": 69.162558, - "right": -71.71875, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 59, - "left": -71.71875, - "top": 69.162558, - "right": -70.3125, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 59, - "left": -70.3125, - "top": 69.162558, - "right": -68.90625, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 59, - "left": -68.90625, - "top": 69.162558, - "right": -67.5, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 59, - "left": -67.5, - "top": 69.162558, - "right": -66.09375, - "bottom": 68.656555, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 60, - "left": -142.03125, - "top": 68.656555, - "right": -140.625, - "bottom": 68.138852, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 60, - "left": -140.625, - "top": 68.656555, - "right": -139.21875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 60, - "left": -139.21875, - "top": 68.656555, - "right": -137.8125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 60, - "left": -137.8125, - "top": 68.656555, - "right": -136.40625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 60, - "left": -136.40625, - "top": 68.656555, - "right": -135.0, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 60, - "left": -135.0, - "top": 68.656555, - "right": -133.59375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 60, - "left": -133.59375, - "top": 68.656555, - "right": -132.1875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 60, - "left": -132.1875, - "top": 68.656555, - "right": -130.78125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 60, - "left": -130.78125, - "top": 68.656555, - "right": -129.375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 60, - "left": -129.375, - "top": 68.656555, - "right": -127.96875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 60, - "left": -127.96875, - "top": 68.656555, - "right": -126.5625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 60, - "left": -126.5625, - "top": 68.656555, - "right": -125.15625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 60, - "left": -125.15625, - "top": 68.656555, - "right": -123.75, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 60, - "left": -123.75, - "top": 68.656555, - "right": -122.34375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 60, - "left": -122.34375, - "top": 68.656555, - "right": -120.9375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 60, - "left": -120.9375, - "top": 68.656555, - "right": -119.53125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 60, - "left": -119.53125, - "top": 68.656555, - "right": -118.125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 60, - "left": -118.125, - "top": 68.656555, - "right": -116.71875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 60, - "left": -116.71875, - "top": 68.656555, - "right": -115.3125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 60, - "left": -115.3125, - "top": 68.656555, - "right": -113.90625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 60, - "left": -113.90625, - "top": 68.656555, - "right": -112.5, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 60, - "left": -112.5, - "top": 68.656555, - "right": -111.09375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 60, - "left": -111.09375, - "top": 68.656555, - "right": -109.6875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 60, - "left": -109.6875, - "top": 68.656555, - "right": -108.28125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 60, - "left": -108.28125, - "top": 68.656555, - "right": -106.875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 60, - "left": -106.875, - "top": 68.656555, - "right": -105.46875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 60, - "left": -105.46875, - "top": 68.656555, - "right": -104.0625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 60, - "left": -104.0625, - "top": 68.656555, - "right": -102.65625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 60, - "left": -102.65625, - "top": 68.656555, - "right": -101.25, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 60, - "left": -101.25, - "top": 68.656555, - "right": -99.84375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 60, - "left": -99.84375, - "top": 68.656555, - "right": -98.4375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 60, - "left": -98.4375, - "top": 68.656555, - "right": -97.03125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 60, - "left": -97.03125, - "top": 68.656555, - "right": -95.625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 60, - "left": -95.625, - "top": 68.656555, - "right": -94.21875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 60, - "left": -94.21875, - "top": 68.656555, - "right": -92.8125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 60, - "left": -92.8125, - "top": 68.656555, - "right": -91.40625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 60, - "left": -91.40625, - "top": 68.656555, - "right": -90.0, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 60, - "left": -90.0, - "top": 68.656555, - "right": -88.59375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 60, - "left": -88.59375, - "top": 68.656555, - "right": -87.1875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 60, - "left": -87.1875, - "top": 68.656555, - "right": -85.78125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 60, - "left": -85.78125, - "top": 68.656555, - "right": -84.375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 60, - "left": -84.375, - "top": 68.656555, - "right": -82.96875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 60, - "left": -82.96875, - "top": 68.656555, - "right": -81.5625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 60, - "left": -81.5625, - "top": 68.656555, - "right": -80.15625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 60, - "left": -80.15625, - "top": 68.656555, - "right": -78.75, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 60, - "left": -78.75, - "top": 68.656555, - "right": -77.34375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 60, - "left": -77.34375, - "top": 68.656555, - "right": -75.9375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 60, - "left": -75.9375, - "top": 68.656555, - "right": -74.53125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 60, - "left": -74.53125, - "top": 68.656555, - "right": -73.125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 60, - "left": -73.125, - "top": 68.656555, - "right": -71.71875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 60, - "left": -71.71875, - "top": 68.656555, - "right": -70.3125, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 60, - "left": -70.3125, - "top": 68.656555, - "right": -68.90625, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 60, - "left": -68.90625, - "top": 68.656555, - "right": -67.5, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 60, - "left": -67.5, - "top": 68.656555, - "right": -66.09375, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 60, - "left": -66.09375, - "top": 68.656555, - "right": -64.6875, - "bottom": 68.138852, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 61, - "left": -142.03125, - "top": 68.138852, - "right": -140.625, - "bottom": 67.609221, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 61, - "left": -140.625, - "top": 68.138852, - "right": -139.21875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 61, - "left": -139.21875, - "top": 68.138852, - "right": -137.8125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 61, - "left": -137.8125, - "top": 68.138852, - "right": -136.40625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 61, - "left": -136.40625, - "top": 68.138852, - "right": -135.0, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 61, - "left": -135.0, - "top": 68.138852, - "right": -133.59375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 61, - "left": -133.59375, - "top": 68.138852, - "right": -132.1875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 61, - "left": -132.1875, - "top": 68.138852, - "right": -130.78125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 61, - "left": -130.78125, - "top": 68.138852, - "right": -129.375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 61, - "left": -129.375, - "top": 68.138852, - "right": -127.96875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 61, - "left": -127.96875, - "top": 68.138852, - "right": -126.5625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 61, - "left": -126.5625, - "top": 68.138852, - "right": -125.15625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 61, - "left": -125.15625, - "top": 68.138852, - "right": -123.75, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 61, - "left": -123.75, - "top": 68.138852, - "right": -122.34375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 61, - "left": -122.34375, - "top": 68.138852, - "right": -120.9375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 61, - "left": -120.9375, - "top": 68.138852, - "right": -119.53125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 61, - "left": -119.53125, - "top": 68.138852, - "right": -118.125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 61, - "left": -118.125, - "top": 68.138852, - "right": -116.71875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 61, - "left": -116.71875, - "top": 68.138852, - "right": -115.3125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 61, - "left": -115.3125, - "top": 68.138852, - "right": -113.90625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 61, - "left": -113.90625, - "top": 68.138852, - "right": -112.5, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 61, - "left": -112.5, - "top": 68.138852, - "right": -111.09375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 61, - "left": -111.09375, - "top": 68.138852, - "right": -109.6875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 61, - "left": -109.6875, - "top": 68.138852, - "right": -108.28125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 61, - "left": -108.28125, - "top": 68.138852, - "right": -106.875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 61, - "left": -106.875, - "top": 68.138852, - "right": -105.46875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 61, - "left": -105.46875, - "top": 68.138852, - "right": -104.0625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 61, - "left": -104.0625, - "top": 68.138852, - "right": -102.65625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 61, - "left": -102.65625, - "top": 68.138852, - "right": -101.25, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 61, - "left": -101.25, - "top": 68.138852, - "right": -99.84375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 61, - "left": -99.84375, - "top": 68.138852, - "right": -98.4375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 61, - "left": -98.4375, - "top": 68.138852, - "right": -97.03125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 61, - "left": -97.03125, - "top": 68.138852, - "right": -95.625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 61, - "left": -95.625, - "top": 68.138852, - "right": -94.21875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 61, - "left": -94.21875, - "top": 68.138852, - "right": -92.8125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 61, - "left": -92.8125, - "top": 68.138852, - "right": -91.40625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 61, - "left": -91.40625, - "top": 68.138852, - "right": -90.0, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 61, - "left": -90.0, - "top": 68.138852, - "right": -88.59375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 61, - "left": -88.59375, - "top": 68.138852, - "right": -87.1875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 61, - "left": -87.1875, - "top": 68.138852, - "right": -85.78125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 61, - "left": -85.78125, - "top": 68.138852, - "right": -84.375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 61, - "left": -84.375, - "top": 68.138852, - "right": -82.96875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 61, - "left": -82.96875, - "top": 68.138852, - "right": -81.5625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 61, - "left": -81.5625, - "top": 68.138852, - "right": -80.15625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 61, - "left": -80.15625, - "top": 68.138852, - "right": -78.75, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 61, - "left": -77.34375, - "top": 68.138852, - "right": -75.9375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 61, - "left": -75.9375, - "top": 68.138852, - "right": -74.53125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 61, - "left": -74.53125, - "top": 68.138852, - "right": -73.125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 61, - "left": -73.125, - "top": 68.138852, - "right": -71.71875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 61, - "left": -71.71875, - "top": 68.138852, - "right": -70.3125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 61, - "left": -70.3125, - "top": 68.138852, - "right": -68.90625, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 61, - "left": -68.90625, - "top": 68.138852, - "right": -67.5, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 61, - "left": -67.5, - "top": 68.138852, - "right": -66.09375, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 61, - "left": -66.09375, - "top": 68.138852, - "right": -64.6875, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 61, - "left": -64.6875, - "top": 68.138852, - "right": -63.28125, - "bottom": 67.609221, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 62, - "left": -142.03125, - "top": 67.609221, - "right": -140.625, - "bottom": 67.067433, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 62, - "left": -140.625, - "top": 67.609221, - "right": -139.21875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 62, - "left": -139.21875, - "top": 67.609221, - "right": -137.8125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 62, - "left": -137.8125, - "top": 67.609221, - "right": -136.40625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 62, - "left": -136.40625, - "top": 67.609221, - "right": -135.0, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 62, - "left": -135.0, - "top": 67.609221, - "right": -133.59375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 62, - "left": -133.59375, - "top": 67.609221, - "right": -132.1875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 62, - "left": -132.1875, - "top": 67.609221, - "right": -130.78125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 62, - "left": -130.78125, - "top": 67.609221, - "right": -129.375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 62, - "left": -129.375, - "top": 67.609221, - "right": -127.96875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 62, - "left": -127.96875, - "top": 67.609221, - "right": -126.5625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 62, - "left": -126.5625, - "top": 67.609221, - "right": -125.15625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 62, - "left": -125.15625, - "top": 67.609221, - "right": -123.75, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 62, - "left": -123.75, - "top": 67.609221, - "right": -122.34375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 62, - "left": -122.34375, - "top": 67.609221, - "right": -120.9375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 62, - "left": -120.9375, - "top": 67.609221, - "right": -119.53125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 62, - "left": -119.53125, - "top": 67.609221, - "right": -118.125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 62, - "left": -118.125, - "top": 67.609221, - "right": -116.71875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 62, - "left": -116.71875, - "top": 67.609221, - "right": -115.3125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 62, - "left": -115.3125, - "top": 67.609221, - "right": -113.90625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 62, - "left": -113.90625, - "top": 67.609221, - "right": -112.5, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 62, - "left": -112.5, - "top": 67.609221, - "right": -111.09375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 62, - "left": -111.09375, - "top": 67.609221, - "right": -109.6875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 62, - "left": -109.6875, - "top": 67.609221, - "right": -108.28125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 62, - "left": -108.28125, - "top": 67.609221, - "right": -106.875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 62, - "left": -106.875, - "top": 67.609221, - "right": -105.46875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 62, - "left": -105.46875, - "top": 67.609221, - "right": -104.0625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 62, - "left": -104.0625, - "top": 67.609221, - "right": -102.65625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 62, - "left": -102.65625, - "top": 67.609221, - "right": -101.25, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 62, - "left": -101.25, - "top": 67.609221, - "right": -99.84375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 62, - "left": -99.84375, - "top": 67.609221, - "right": -98.4375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 62, - "left": -98.4375, - "top": 67.609221, - "right": -97.03125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 62, - "left": -97.03125, - "top": 67.609221, - "right": -95.625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 62, - "left": -95.625, - "top": 67.609221, - "right": -94.21875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 62, - "left": -94.21875, - "top": 67.609221, - "right": -92.8125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 62, - "left": -92.8125, - "top": 67.609221, - "right": -91.40625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 62, - "left": -91.40625, - "top": 67.609221, - "right": -90.0, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 62, - "left": -90.0, - "top": 67.609221, - "right": -88.59375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 62, - "left": -88.59375, - "top": 67.609221, - "right": -87.1875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 62, - "left": -87.1875, - "top": 67.609221, - "right": -85.78125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 62, - "left": -85.78125, - "top": 67.609221, - "right": -84.375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 62, - "left": -84.375, - "top": 67.609221, - "right": -82.96875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 62, - "left": -82.96875, - "top": 67.609221, - "right": -81.5625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 62, - "left": -81.5625, - "top": 67.609221, - "right": -80.15625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 62, - "left": -77.34375, - "top": 67.609221, - "right": -75.9375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 62, - "left": -75.9375, - "top": 67.609221, - "right": -74.53125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 62, - "left": -73.125, - "top": 67.609221, - "right": -71.71875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 62, - "left": -71.71875, - "top": 67.609221, - "right": -70.3125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 62, - "left": -70.3125, - "top": 67.609221, - "right": -68.90625, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 62, - "left": -68.90625, - "top": 67.609221, - "right": -67.5, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 62, - "left": -67.5, - "top": 67.609221, - "right": -66.09375, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 62, - "left": -66.09375, - "top": 67.609221, - "right": -64.6875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 62, - "left": -64.6875, - "top": 67.609221, - "right": -63.28125, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 62, - "left": -63.28125, - "top": 67.609221, - "right": -61.875, - "bottom": 67.067433, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 63, - "left": -142.03125, - "top": 67.067433, - "right": -140.625, - "bottom": 66.51326, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 63, - "left": -140.625, - "top": 67.067433, - "right": -139.21875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 63, - "left": -139.21875, - "top": 67.067433, - "right": -137.8125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 63, - "left": -137.8125, - "top": 67.067433, - "right": -136.40625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 63, - "left": -136.40625, - "top": 67.067433, - "right": -135.0, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 63, - "left": -135.0, - "top": 67.067433, - "right": -133.59375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 63, - "left": -133.59375, - "top": 67.067433, - "right": -132.1875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 63, - "left": -132.1875, - "top": 67.067433, - "right": -130.78125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 63, - "left": -130.78125, - "top": 67.067433, - "right": -129.375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 63, - "left": -129.375, - "top": 67.067433, - "right": -127.96875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 63, - "left": -127.96875, - "top": 67.067433, - "right": -126.5625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 63, - "left": -126.5625, - "top": 67.067433, - "right": -125.15625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 63, - "left": -125.15625, - "top": 67.067433, - "right": -123.75, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 63, - "left": -123.75, - "top": 67.067433, - "right": -122.34375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 63, - "left": -122.34375, - "top": 67.067433, - "right": -120.9375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 63, - "left": -120.9375, - "top": 67.067433, - "right": -119.53125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 63, - "left": -119.53125, - "top": 67.067433, - "right": -118.125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 63, - "left": -118.125, - "top": 67.067433, - "right": -116.71875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 63, - "left": -116.71875, - "top": 67.067433, - "right": -115.3125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 63, - "left": -115.3125, - "top": 67.067433, - "right": -113.90625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 63, - "left": -113.90625, - "top": 67.067433, - "right": -112.5, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 63, - "left": -112.5, - "top": 67.067433, - "right": -111.09375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 63, - "left": -111.09375, - "top": 67.067433, - "right": -109.6875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 63, - "left": -109.6875, - "top": 67.067433, - "right": -108.28125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 63, - "left": -108.28125, - "top": 67.067433, - "right": -106.875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 63, - "left": -106.875, - "top": 67.067433, - "right": -105.46875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 63, - "left": -105.46875, - "top": 67.067433, - "right": -104.0625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 63, - "left": -104.0625, - "top": 67.067433, - "right": -102.65625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 63, - "left": -102.65625, - "top": 67.067433, - "right": -101.25, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 63, - "left": -101.25, - "top": 67.067433, - "right": -99.84375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 63, - "left": -99.84375, - "top": 67.067433, - "right": -98.4375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 63, - "left": -98.4375, - "top": 67.067433, - "right": -97.03125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 63, - "left": -97.03125, - "top": 67.067433, - "right": -95.625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 63, - "left": -95.625, - "top": 67.067433, - "right": -94.21875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 63, - "left": -94.21875, - "top": 67.067433, - "right": -92.8125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 63, - "left": -92.8125, - "top": 67.067433, - "right": -91.40625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 63, - "left": -91.40625, - "top": 67.067433, - "right": -90.0, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 63, - "left": -90.0, - "top": 67.067433, - "right": -88.59375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 63, - "left": -88.59375, - "top": 67.067433, - "right": -87.1875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 63, - "left": -87.1875, - "top": 67.067433, - "right": -85.78125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 63, - "left": -85.78125, - "top": 67.067433, - "right": -84.375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 63, - "left": -84.375, - "top": 67.067433, - "right": -82.96875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 63, - "left": -82.96875, - "top": 67.067433, - "right": -81.5625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 63, - "left": -81.5625, - "top": 67.067433, - "right": -80.15625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 63, - "left": -74.53125, - "top": 67.067433, - "right": -73.125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 63, - "left": -73.125, - "top": 67.067433, - "right": -71.71875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 63, - "left": -71.71875, - "top": 67.067433, - "right": -70.3125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 63, - "left": -70.3125, - "top": 67.067433, - "right": -68.90625, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 63, - "left": -68.90625, - "top": 67.067433, - "right": -67.5, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 63, - "left": -67.5, - "top": 67.067433, - "right": -66.09375, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 63, - "left": -66.09375, - "top": 67.067433, - "right": -64.6875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 63, - "left": -64.6875, - "top": 67.067433, - "right": -63.28125, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 63, - "left": -63.28125, - "top": 67.067433, - "right": -61.875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 63, - "left": -61.875, - "top": 67.067433, - "right": -60.46875, - "bottom": 66.51326, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 64, - "left": -142.03125, - "top": 66.51326, - "right": -140.625, - "bottom": 65.946472, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 64, - "left": -140.625, - "top": 66.51326, - "right": -139.21875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 64, - "left": -139.21875, - "top": 66.51326, - "right": -137.8125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 64, - "left": -137.8125, - "top": 66.51326, - "right": -136.40625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 64, - "left": -136.40625, - "top": 66.51326, - "right": -135.0, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 64, - "left": -135.0, - "top": 66.51326, - "right": -133.59375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 64, - "left": -133.59375, - "top": 66.51326, - "right": -132.1875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 64, - "left": -132.1875, - "top": 66.51326, - "right": -130.78125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 64, - "left": -130.78125, - "top": 66.51326, - "right": -129.375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 64, - "left": -129.375, - "top": 66.51326, - "right": -127.96875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 64, - "left": -127.96875, - "top": 66.51326, - "right": -126.5625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 64, - "left": -126.5625, - "top": 66.51326, - "right": -125.15625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 64, - "left": -125.15625, - "top": 66.51326, - "right": -123.75, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 64, - "left": -123.75, - "top": 66.51326, - "right": -122.34375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 64, - "left": -122.34375, - "top": 66.51326, - "right": -120.9375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 64, - "left": -120.9375, - "top": 66.51326, - "right": -119.53125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 64, - "left": -119.53125, - "top": 66.51326, - "right": -118.125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 64, - "left": -118.125, - "top": 66.51326, - "right": -116.71875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 64, - "left": -116.71875, - "top": 66.51326, - "right": -115.3125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 64, - "left": -115.3125, - "top": 66.51326, - "right": -113.90625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 64, - "left": -113.90625, - "top": 66.51326, - "right": -112.5, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 64, - "left": -112.5, - "top": 66.51326, - "right": -111.09375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 64, - "left": -111.09375, - "top": 66.51326, - "right": -109.6875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 64, - "left": -109.6875, - "top": 66.51326, - "right": -108.28125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 64, - "left": -108.28125, - "top": 66.51326, - "right": -106.875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 64, - "left": -106.875, - "top": 66.51326, - "right": -105.46875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 64, - "left": -105.46875, - "top": 66.51326, - "right": -104.0625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 64, - "left": -104.0625, - "top": 66.51326, - "right": -102.65625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 64, - "left": -102.65625, - "top": 66.51326, - "right": -101.25, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 64, - "left": -101.25, - "top": 66.51326, - "right": -99.84375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 64, - "left": -99.84375, - "top": 66.51326, - "right": -98.4375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 64, - "left": -98.4375, - "top": 66.51326, - "right": -97.03125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 64, - "left": -97.03125, - "top": 66.51326, - "right": -95.625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 64, - "left": -95.625, - "top": 66.51326, - "right": -94.21875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 64, - "left": -94.21875, - "top": 66.51326, - "right": -92.8125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 64, - "left": -92.8125, - "top": 66.51326, - "right": -91.40625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 64, - "left": -91.40625, - "top": 66.51326, - "right": -90.0, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 64, - "left": -90.0, - "top": 66.51326, - "right": -88.59375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 64, - "left": -88.59375, - "top": 66.51326, - "right": -87.1875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 64, - "left": -87.1875, - "top": 66.51326, - "right": -85.78125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 64, - "left": -85.78125, - "top": 66.51326, - "right": -84.375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 64, - "left": -84.375, - "top": 66.51326, - "right": -82.96875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 64, - "left": -82.96875, - "top": 66.51326, - "right": -81.5625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 64, - "left": -74.53125, - "top": 66.51326, - "right": -73.125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 64, - "left": -73.125, - "top": 66.51326, - "right": -71.71875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 64, - "left": -71.71875, - "top": 66.51326, - "right": -70.3125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 64, - "left": -70.3125, - "top": 66.51326, - "right": -68.90625, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 64, - "left": -68.90625, - "top": 66.51326, - "right": -67.5, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 64, - "left": -67.5, - "top": 66.51326, - "right": -66.09375, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 64, - "left": -66.09375, - "top": 66.51326, - "right": -64.6875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 64, - "left": -64.6875, - "top": 66.51326, - "right": -63.28125, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 64, - "left": -63.28125, - "top": 66.51326, - "right": -61.875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 64, - "left": -61.875, - "top": 66.51326, - "right": -60.46875, - "bottom": 65.946472, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 65, - "left": -142.03125, - "top": 65.946472, - "right": -140.625, - "bottom": 65.366837, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 65, - "left": -140.625, - "top": 65.946472, - "right": -139.21875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 65, - "left": -139.21875, - "top": 65.946472, - "right": -137.8125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 65, - "left": -137.8125, - "top": 65.946472, - "right": -136.40625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 65, - "left": -136.40625, - "top": 65.946472, - "right": -135.0, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 65, - "left": -135.0, - "top": 65.946472, - "right": -133.59375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 65, - "left": -133.59375, - "top": 65.946472, - "right": -132.1875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 65, - "left": -132.1875, - "top": 65.946472, - "right": -130.78125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 65, - "left": -130.78125, - "top": 65.946472, - "right": -129.375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 65, - "left": -129.375, - "top": 65.946472, - "right": -127.96875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 65, - "left": -127.96875, - "top": 65.946472, - "right": -126.5625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 65, - "left": -126.5625, - "top": 65.946472, - "right": -125.15625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 65, - "left": -125.15625, - "top": 65.946472, - "right": -123.75, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 65, - "left": -123.75, - "top": 65.946472, - "right": -122.34375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 65, - "left": -122.34375, - "top": 65.946472, - "right": -120.9375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 65, - "left": -120.9375, - "top": 65.946472, - "right": -119.53125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 65, - "left": -119.53125, - "top": 65.946472, - "right": -118.125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 65, - "left": -118.125, - "top": 65.946472, - "right": -116.71875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 65, - "left": -116.71875, - "top": 65.946472, - "right": -115.3125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 65, - "left": -115.3125, - "top": 65.946472, - "right": -113.90625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 65, - "left": -113.90625, - "top": 65.946472, - "right": -112.5, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 65, - "left": -112.5, - "top": 65.946472, - "right": -111.09375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 65, - "left": -111.09375, - "top": 65.946472, - "right": -109.6875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 65, - "left": -109.6875, - "top": 65.946472, - "right": -108.28125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 65, - "left": -108.28125, - "top": 65.946472, - "right": -106.875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 65, - "left": -106.875, - "top": 65.946472, - "right": -105.46875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 65, - "left": -105.46875, - "top": 65.946472, - "right": -104.0625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 65, - "left": -104.0625, - "top": 65.946472, - "right": -102.65625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 65, - "left": -102.65625, - "top": 65.946472, - "right": -101.25, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 65, - "left": -101.25, - "top": 65.946472, - "right": -99.84375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 65, - "left": -99.84375, - "top": 65.946472, - "right": -98.4375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 65, - "left": -98.4375, - "top": 65.946472, - "right": -97.03125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 65, - "left": -97.03125, - "top": 65.946472, - "right": -95.625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 65, - "left": -95.625, - "top": 65.946472, - "right": -94.21875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 65, - "left": -94.21875, - "top": 65.946472, - "right": -92.8125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 65, - "left": -92.8125, - "top": 65.946472, - "right": -91.40625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 65, - "left": -91.40625, - "top": 65.946472, - "right": -90.0, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 65, - "left": -90.0, - "top": 65.946472, - "right": -88.59375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 65, - "left": -88.59375, - "top": 65.946472, - "right": -87.1875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 65, - "left": -87.1875, - "top": 65.946472, - "right": -85.78125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 65, - "left": -85.78125, - "top": 65.946472, - "right": -84.375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 65, - "left": -84.375, - "top": 65.946472, - "right": -82.96875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 65, - "left": -78.75, - "top": 65.946472, - "right": -77.34375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 65, - "left": -77.34375, - "top": 65.946472, - "right": -75.9375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 65, - "left": -75.9375, - "top": 65.946472, - "right": -74.53125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 65, - "left": -74.53125, - "top": 65.946472, - "right": -73.125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 65, - "left": -73.125, - "top": 65.946472, - "right": -71.71875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 65, - "left": -71.71875, - "top": 65.946472, - "right": -70.3125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 65, - "left": -70.3125, - "top": 65.946472, - "right": -68.90625, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 65, - "left": -68.90625, - "top": 65.946472, - "right": -67.5, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 65, - "left": -67.5, - "top": 65.946472, - "right": -66.09375, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 65, - "left": -66.09375, - "top": 65.946472, - "right": -64.6875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 65, - "left": -64.6875, - "top": 65.946472, - "right": -63.28125, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 65, - "left": -63.28125, - "top": 65.946472, - "right": -61.875, - "bottom": 65.366837, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 66, - "left": -142.03125, - "top": 65.366837, - "right": -140.625, - "bottom": 64.774125, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 66, - "left": -140.625, - "top": 65.366837, - "right": -139.21875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 66, - "left": -139.21875, - "top": 65.366837, - "right": -137.8125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 66, - "left": -137.8125, - "top": 65.366837, - "right": -136.40625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 66, - "left": -136.40625, - "top": 65.366837, - "right": -135.0, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 66, - "left": -135.0, - "top": 65.366837, - "right": -133.59375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 66, - "left": -133.59375, - "top": 65.366837, - "right": -132.1875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 66, - "left": -132.1875, - "top": 65.366837, - "right": -130.78125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 66, - "left": -130.78125, - "top": 65.366837, - "right": -129.375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 66, - "left": -129.375, - "top": 65.366837, - "right": -127.96875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 66, - "left": -127.96875, - "top": 65.366837, - "right": -126.5625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 66, - "left": -126.5625, - "top": 65.366837, - "right": -125.15625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 66, - "left": -125.15625, - "top": 65.366837, - "right": -123.75, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 66, - "left": -123.75, - "top": 65.366837, - "right": -122.34375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 66, - "left": -122.34375, - "top": 65.366837, - "right": -120.9375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 66, - "left": -120.9375, - "top": 65.366837, - "right": -119.53125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 66, - "left": -119.53125, - "top": 65.366837, - "right": -118.125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 66, - "left": -118.125, - "top": 65.366837, - "right": -116.71875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 66, - "left": -116.71875, - "top": 65.366837, - "right": -115.3125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 66, - "left": -115.3125, - "top": 65.366837, - "right": -113.90625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 66, - "left": -113.90625, - "top": 65.366837, - "right": -112.5, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 66, - "left": -112.5, - "top": 65.366837, - "right": -111.09375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 66, - "left": -111.09375, - "top": 65.366837, - "right": -109.6875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 66, - "left": -109.6875, - "top": 65.366837, - "right": -108.28125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 66, - "left": -108.28125, - "top": 65.366837, - "right": -106.875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 66, - "left": -106.875, - "top": 65.366837, - "right": -105.46875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 66, - "left": -105.46875, - "top": 65.366837, - "right": -104.0625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 66, - "left": -104.0625, - "top": 65.366837, - "right": -102.65625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 66, - "left": -102.65625, - "top": 65.366837, - "right": -101.25, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 66, - "left": -101.25, - "top": 65.366837, - "right": -99.84375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 66, - "left": -99.84375, - "top": 65.366837, - "right": -98.4375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 66, - "left": -98.4375, - "top": 65.366837, - "right": -97.03125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 66, - "left": -97.03125, - "top": 65.366837, - "right": -95.625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 66, - "left": -95.625, - "top": 65.366837, - "right": -94.21875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 66, - "left": -94.21875, - "top": 65.366837, - "right": -92.8125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 66, - "left": -92.8125, - "top": 65.366837, - "right": -91.40625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 66, - "left": -91.40625, - "top": 65.366837, - "right": -90.0, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 66, - "left": -90.0, - "top": 65.366837, - "right": -88.59375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 66, - "left": -88.59375, - "top": 65.366837, - "right": -87.1875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 66, - "left": -87.1875, - "top": 65.366837, - "right": -85.78125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 66, - "left": -85.78125, - "top": 65.366837, - "right": -84.375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 66, - "left": -84.375, - "top": 65.366837, - "right": -82.96875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 66, - "left": -82.96875, - "top": 65.366837, - "right": -81.5625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 66, - "left": -78.75, - "top": 65.366837, - "right": -77.34375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 66, - "left": -77.34375, - "top": 65.366837, - "right": -75.9375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 66, - "left": -75.9375, - "top": 65.366837, - "right": -74.53125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 66, - "left": -74.53125, - "top": 65.366837, - "right": -73.125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 66, - "left": -73.125, - "top": 65.366837, - "right": -71.71875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 66, - "left": -71.71875, - "top": 65.366837, - "right": -70.3125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 66, - "left": -70.3125, - "top": 65.366837, - "right": -68.90625, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 66, - "left": -68.90625, - "top": 65.366837, - "right": -67.5, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 66, - "left": -67.5, - "top": 65.366837, - "right": -66.09375, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 66, - "left": -66.09375, - "top": 65.366837, - "right": -64.6875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 66, - "left": -64.6875, - "top": 65.366837, - "right": -63.28125, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 66, - "left": -63.28125, - "top": 65.366837, - "right": -61.875, - "bottom": 64.774125, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 67, - "left": -142.03125, - "top": 64.774125, - "right": -140.625, - "bottom": 64.168107, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 67, - "left": -140.625, - "top": 64.774125, - "right": -139.21875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 67, - "left": -139.21875, - "top": 64.774125, - "right": -137.8125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 67, - "left": -137.8125, - "top": 64.774125, - "right": -136.40625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 67, - "left": -136.40625, - "top": 64.774125, - "right": -135.0, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 67, - "left": -135.0, - "top": 64.774125, - "right": -133.59375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 67, - "left": -133.59375, - "top": 64.774125, - "right": -132.1875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 67, - "left": -132.1875, - "top": 64.774125, - "right": -130.78125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 67, - "left": -130.78125, - "top": 64.774125, - "right": -129.375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 67, - "left": -129.375, - "top": 64.774125, - "right": -127.96875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 67, - "left": -127.96875, - "top": 64.774125, - "right": -126.5625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 67, - "left": -126.5625, - "top": 64.774125, - "right": -125.15625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 67, - "left": -125.15625, - "top": 64.774125, - "right": -123.75, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 67, - "left": -123.75, - "top": 64.774125, - "right": -122.34375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 67, - "left": -122.34375, - "top": 64.774125, - "right": -120.9375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 67, - "left": -120.9375, - "top": 64.774125, - "right": -119.53125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 67, - "left": -119.53125, - "top": 64.774125, - "right": -118.125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 67, - "left": -118.125, - "top": 64.774125, - "right": -116.71875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 67, - "left": -116.71875, - "top": 64.774125, - "right": -115.3125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 67, - "left": -115.3125, - "top": 64.774125, - "right": -113.90625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 67, - "left": -113.90625, - "top": 64.774125, - "right": -112.5, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 67, - "left": -112.5, - "top": 64.774125, - "right": -111.09375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 67, - "left": -111.09375, - "top": 64.774125, - "right": -109.6875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 67, - "left": -109.6875, - "top": 64.774125, - "right": -108.28125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 67, - "left": -108.28125, - "top": 64.774125, - "right": -106.875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 67, - "left": -106.875, - "top": 64.774125, - "right": -105.46875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 67, - "left": -105.46875, - "top": 64.774125, - "right": -104.0625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 67, - "left": -104.0625, - "top": 64.774125, - "right": -102.65625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 67, - "left": -102.65625, - "top": 64.774125, - "right": -101.25, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 67, - "left": -101.25, - "top": 64.774125, - "right": -99.84375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 67, - "left": -99.84375, - "top": 64.774125, - "right": -98.4375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 67, - "left": -98.4375, - "top": 64.774125, - "right": -97.03125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 67, - "left": -97.03125, - "top": 64.774125, - "right": -95.625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 67, - "left": -95.625, - "top": 64.774125, - "right": -94.21875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 67, - "left": -94.21875, - "top": 64.774125, - "right": -92.8125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 67, - "left": -92.8125, - "top": 64.774125, - "right": -91.40625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 67, - "left": -91.40625, - "top": 64.774125, - "right": -90.0, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 67, - "left": -90.0, - "top": 64.774125, - "right": -88.59375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 67, - "left": -88.59375, - "top": 64.774125, - "right": -87.1875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 67, - "left": -87.1875, - "top": 64.774125, - "right": -85.78125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 67, - "left": -85.78125, - "top": 64.774125, - "right": -84.375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 67, - "left": -84.375, - "top": 64.774125, - "right": -82.96875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 67, - "left": -82.96875, - "top": 64.774125, - "right": -81.5625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 67, - "left": -81.5625, - "top": 64.774125, - "right": -80.15625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 67, - "left": -78.75, - "top": 64.774125, - "right": -77.34375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 67, - "left": -77.34375, - "top": 64.774125, - "right": -75.9375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 67, - "left": -75.9375, - "top": 64.774125, - "right": -74.53125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 67, - "left": -74.53125, - "top": 64.774125, - "right": -73.125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 67, - "left": -73.125, - "top": 64.774125, - "right": -71.71875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 67, - "left": -71.71875, - "top": 64.774125, - "right": -70.3125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 67, - "left": -70.3125, - "top": 64.774125, - "right": -68.90625, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 67, - "left": -68.90625, - "top": 64.774125, - "right": -67.5, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 67, - "left": -67.5, - "top": 64.774125, - "right": -66.09375, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 67, - "left": -66.09375, - "top": 64.774125, - "right": -64.6875, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 67, - "left": -64.6875, - "top": 64.774125, - "right": -63.28125, - "bottom": 64.168107, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 68, - "left": -142.03125, - "top": 64.168107, - "right": -140.625, - "bottom": 63.548552, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 68, - "left": -140.625, - "top": 64.168107, - "right": -139.21875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 68, - "left": -139.21875, - "top": 64.168107, - "right": -137.8125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 68, - "left": -137.8125, - "top": 64.168107, - "right": -136.40625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 68, - "left": -136.40625, - "top": 64.168107, - "right": -135.0, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 68, - "left": -135.0, - "top": 64.168107, - "right": -133.59375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 68, - "left": -133.59375, - "top": 64.168107, - "right": -132.1875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 68, - "left": -132.1875, - "top": 64.168107, - "right": -130.78125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 68, - "left": -130.78125, - "top": 64.168107, - "right": -129.375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 68, - "left": -129.375, - "top": 64.168107, - "right": -127.96875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 68, - "left": -127.96875, - "top": 64.168107, - "right": -126.5625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 68, - "left": -126.5625, - "top": 64.168107, - "right": -125.15625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 68, - "left": -125.15625, - "top": 64.168107, - "right": -123.75, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 68, - "left": -123.75, - "top": 64.168107, - "right": -122.34375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 68, - "left": -122.34375, - "top": 64.168107, - "right": -120.9375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 68, - "left": -120.9375, - "top": 64.168107, - "right": -119.53125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 68, - "left": -119.53125, - "top": 64.168107, - "right": -118.125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 68, - "left": -118.125, - "top": 64.168107, - "right": -116.71875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 68, - "left": -116.71875, - "top": 64.168107, - "right": -115.3125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 68, - "left": -115.3125, - "top": 64.168107, - "right": -113.90625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 68, - "left": -113.90625, - "top": 64.168107, - "right": -112.5, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 68, - "left": -112.5, - "top": 64.168107, - "right": -111.09375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 68, - "left": -111.09375, - "top": 64.168107, - "right": -109.6875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 68, - "left": -109.6875, - "top": 64.168107, - "right": -108.28125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 68, - "left": -108.28125, - "top": 64.168107, - "right": -106.875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 68, - "left": -106.875, - "top": 64.168107, - "right": -105.46875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 68, - "left": -105.46875, - "top": 64.168107, - "right": -104.0625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 68, - "left": -104.0625, - "top": 64.168107, - "right": -102.65625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 68, - "left": -102.65625, - "top": 64.168107, - "right": -101.25, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 68, - "left": -101.25, - "top": 64.168107, - "right": -99.84375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 68, - "left": -99.84375, - "top": 64.168107, - "right": -98.4375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 68, - "left": -98.4375, - "top": 64.168107, - "right": -97.03125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 68, - "left": -97.03125, - "top": 64.168107, - "right": -95.625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 68, - "left": -95.625, - "top": 64.168107, - "right": -94.21875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 68, - "left": -94.21875, - "top": 64.168107, - "right": -92.8125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 68, - "left": -92.8125, - "top": 64.168107, - "right": -91.40625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 68, - "left": -91.40625, - "top": 64.168107, - "right": -90.0, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 68, - "left": -90.0, - "top": 64.168107, - "right": -88.59375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 68, - "left": -88.59375, - "top": 64.168107, - "right": -87.1875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 68, - "left": -87.1875, - "top": 64.168107, - "right": -85.78125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 68, - "left": -85.78125, - "top": 64.168107, - "right": -84.375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 68, - "left": -84.375, - "top": 64.168107, - "right": -82.96875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 68, - "left": -82.96875, - "top": 64.168107, - "right": -81.5625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 68, - "left": -81.5625, - "top": 64.168107, - "right": -80.15625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 68, - "left": -80.15625, - "top": 64.168107, - "right": -78.75, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 68, - "left": -78.75, - "top": 64.168107, - "right": -77.34375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 68, - "left": -77.34375, - "top": 64.168107, - "right": -75.9375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 68, - "left": -74.53125, - "top": 64.168107, - "right": -73.125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 68, - "left": -73.125, - "top": 64.168107, - "right": -71.71875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 68, - "left": -71.71875, - "top": 64.168107, - "right": -70.3125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 68, - "left": -70.3125, - "top": 64.168107, - "right": -68.90625, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 68, - "left": -68.90625, - "top": 64.168107, - "right": -67.5, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 68, - "left": -67.5, - "top": 64.168107, - "right": -66.09375, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 68, - "left": -66.09375, - "top": 64.168107, - "right": -64.6875, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 68, - "left": -64.6875, - "top": 64.168107, - "right": -63.28125, - "bottom": 63.548552, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 69, - "left": -142.03125, - "top": 63.548552, - "right": -140.625, - "bottom": 62.915233, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 69, - "left": -140.625, - "top": 63.548552, - "right": -139.21875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 69, - "left": -139.21875, - "top": 63.548552, - "right": -137.8125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 69, - "left": -137.8125, - "top": 63.548552, - "right": -136.40625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 69, - "left": -136.40625, - "top": 63.548552, - "right": -135.0, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 69, - "left": -135.0, - "top": 63.548552, - "right": -133.59375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 69, - "left": -133.59375, - "top": 63.548552, - "right": -132.1875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 69, - "left": -132.1875, - "top": 63.548552, - "right": -130.78125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 69, - "left": -130.78125, - "top": 63.548552, - "right": -129.375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 69, - "left": -129.375, - "top": 63.548552, - "right": -127.96875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 69, - "left": -127.96875, - "top": 63.548552, - "right": -126.5625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 69, - "left": -126.5625, - "top": 63.548552, - "right": -125.15625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 69, - "left": -125.15625, - "top": 63.548552, - "right": -123.75, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 69, - "left": -123.75, - "top": 63.548552, - "right": -122.34375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 69, - "left": -122.34375, - "top": 63.548552, - "right": -120.9375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 69, - "left": -120.9375, - "top": 63.548552, - "right": -119.53125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 69, - "left": -119.53125, - "top": 63.548552, - "right": -118.125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 69, - "left": -118.125, - "top": 63.548552, - "right": -116.71875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 69, - "left": -116.71875, - "top": 63.548552, - "right": -115.3125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 69, - "left": -115.3125, - "top": 63.548552, - "right": -113.90625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 69, - "left": -113.90625, - "top": 63.548552, - "right": -112.5, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 69, - "left": -112.5, - "top": 63.548552, - "right": -111.09375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 69, - "left": -111.09375, - "top": 63.548552, - "right": -109.6875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 69, - "left": -109.6875, - "top": 63.548552, - "right": -108.28125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 69, - "left": -108.28125, - "top": 63.548552, - "right": -106.875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 69, - "left": -106.875, - "top": 63.548552, - "right": -105.46875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 69, - "left": -105.46875, - "top": 63.548552, - "right": -104.0625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 69, - "left": -104.0625, - "top": 63.548552, - "right": -102.65625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 69, - "left": -102.65625, - "top": 63.548552, - "right": -101.25, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 69, - "left": -101.25, - "top": 63.548552, - "right": -99.84375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 69, - "left": -99.84375, - "top": 63.548552, - "right": -98.4375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 69, - "left": -98.4375, - "top": 63.548552, - "right": -97.03125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 69, - "left": -97.03125, - "top": 63.548552, - "right": -95.625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 69, - "left": -95.625, - "top": 63.548552, - "right": -94.21875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 69, - "left": -94.21875, - "top": 63.548552, - "right": -92.8125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 69, - "left": -92.8125, - "top": 63.548552, - "right": -91.40625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 69, - "left": -91.40625, - "top": 63.548552, - "right": -90.0, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 69, - "left": -85.78125, - "top": 63.548552, - "right": -84.375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 69, - "left": -84.375, - "top": 63.548552, - "right": -82.96875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 69, - "left": -82.96875, - "top": 63.548552, - "right": -81.5625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 69, - "left": -81.5625, - "top": 63.548552, - "right": -80.15625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 69, - "left": -78.75, - "top": 63.548552, - "right": -77.34375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 69, - "left": -77.34375, - "top": 63.548552, - "right": -75.9375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 69, - "left": -73.125, - "top": 63.548552, - "right": -71.71875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 69, - "left": -71.71875, - "top": 63.548552, - "right": -70.3125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 69, - "left": -70.3125, - "top": 63.548552, - "right": -68.90625, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 69, - "left": -68.90625, - "top": 63.548552, - "right": -67.5, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 69, - "left": -67.5, - "top": 63.548552, - "right": -66.09375, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 69, - "left": -66.09375, - "top": 63.548552, - "right": -64.6875, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 69, - "left": -64.6875, - "top": 63.548552, - "right": -63.28125, - "bottom": 62.915233, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 70, - "left": -142.03125, - "top": 62.915233, - "right": -140.625, - "bottom": 62.267923, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 70, - "left": -140.625, - "top": 62.915233, - "right": -139.21875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 70, - "left": -139.21875, - "top": 62.915233, - "right": -137.8125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 70, - "left": -137.8125, - "top": 62.915233, - "right": -136.40625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 70, - "left": -136.40625, - "top": 62.915233, - "right": -135.0, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 70, - "left": -135.0, - "top": 62.915233, - "right": -133.59375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 70, - "left": -133.59375, - "top": 62.915233, - "right": -132.1875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 70, - "left": -132.1875, - "top": 62.915233, - "right": -130.78125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 70, - "left": -130.78125, - "top": 62.915233, - "right": -129.375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 70, - "left": -129.375, - "top": 62.915233, - "right": -127.96875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 70, - "left": -127.96875, - "top": 62.915233, - "right": -126.5625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 70, - "left": -126.5625, - "top": 62.915233, - "right": -125.15625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 70, - "left": -125.15625, - "top": 62.915233, - "right": -123.75, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 70, - "left": -123.75, - "top": 62.915233, - "right": -122.34375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 70, - "left": -122.34375, - "top": 62.915233, - "right": -120.9375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 70, - "left": -120.9375, - "top": 62.915233, - "right": -119.53125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 70, - "left": -119.53125, - "top": 62.915233, - "right": -118.125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 70, - "left": -118.125, - "top": 62.915233, - "right": -116.71875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 70, - "left": -116.71875, - "top": 62.915233, - "right": -115.3125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 70, - "left": -115.3125, - "top": 62.915233, - "right": -113.90625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 70, - "left": -113.90625, - "top": 62.915233, - "right": -112.5, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 70, - "left": -112.5, - "top": 62.915233, - "right": -111.09375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 70, - "left": -111.09375, - "top": 62.915233, - "right": -109.6875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 70, - "left": -109.6875, - "top": 62.915233, - "right": -108.28125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 70, - "left": -108.28125, - "top": 62.915233, - "right": -106.875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 70, - "left": -106.875, - "top": 62.915233, - "right": -105.46875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 70, - "left": -105.46875, - "top": 62.915233, - "right": -104.0625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 70, - "left": -104.0625, - "top": 62.915233, - "right": -102.65625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 70, - "left": -102.65625, - "top": 62.915233, - "right": -101.25, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 70, - "left": -101.25, - "top": 62.915233, - "right": -99.84375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 70, - "left": -99.84375, - "top": 62.915233, - "right": -98.4375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 70, - "left": -98.4375, - "top": 62.915233, - "right": -97.03125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 70, - "left": -97.03125, - "top": 62.915233, - "right": -95.625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 70, - "left": -95.625, - "top": 62.915233, - "right": -94.21875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 70, - "left": -94.21875, - "top": 62.915233, - "right": -92.8125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 70, - "left": -92.8125, - "top": 62.915233, - "right": -91.40625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 70, - "left": -91.40625, - "top": 62.915233, - "right": -90.0, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 70, - "left": -84.375, - "top": 62.915233, - "right": -82.96875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 70, - "left": -82.96875, - "top": 62.915233, - "right": -81.5625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 70, - "left": -80.15625, - "top": 62.915233, - "right": -78.75, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 70, - "left": -78.75, - "top": 62.915233, - "right": -77.34375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 70, - "left": -77.34375, - "top": 62.915233, - "right": -75.9375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 70, - "left": -75.9375, - "top": 62.915233, - "right": -74.53125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 70, - "left": -74.53125, - "top": 62.915233, - "right": -73.125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 70, - "left": -73.125, - "top": 62.915233, - "right": -71.71875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 70, - "left": -71.71875, - "top": 62.915233, - "right": -70.3125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 70, - "left": -70.3125, - "top": 62.915233, - "right": -68.90625, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 70, - "left": -68.90625, - "top": 62.915233, - "right": -67.5, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 70, - "left": -67.5, - "top": 62.915233, - "right": -66.09375, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 70, - "left": -66.09375, - "top": 62.915233, - "right": -64.6875, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 70, - "left": -64.6875, - "top": 62.915233, - "right": -63.28125, - "bottom": 62.267923, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 71, - "left": -142.03125, - "top": 62.267923, - "right": -140.625, - "bottom": 61.606396, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 71, - "left": -140.625, - "top": 62.267923, - "right": -139.21875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 71, - "left": -139.21875, - "top": 62.267923, - "right": -137.8125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 71, - "left": -137.8125, - "top": 62.267923, - "right": -136.40625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 71, - "left": -136.40625, - "top": 62.267923, - "right": -135.0, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 71, - "left": -135.0, - "top": 62.267923, - "right": -133.59375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 71, - "left": -133.59375, - "top": 62.267923, - "right": -132.1875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 71, - "left": -132.1875, - "top": 62.267923, - "right": -130.78125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 71, - "left": -130.78125, - "top": 62.267923, - "right": -129.375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 71, - "left": -129.375, - "top": 62.267923, - "right": -127.96875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 71, - "left": -127.96875, - "top": 62.267923, - "right": -126.5625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 71, - "left": -126.5625, - "top": 62.267923, - "right": -125.15625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 71, - "left": -125.15625, - "top": 62.267923, - "right": -123.75, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 71, - "left": -123.75, - "top": 62.267923, - "right": -122.34375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 71, - "left": -122.34375, - "top": 62.267923, - "right": -120.9375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 71, - "left": -120.9375, - "top": 62.267923, - "right": -119.53125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 71, - "left": -119.53125, - "top": 62.267923, - "right": -118.125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 71, - "left": -118.125, - "top": 62.267923, - "right": -116.71875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 71, - "left": -116.71875, - "top": 62.267923, - "right": -115.3125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 71, - "left": -115.3125, - "top": 62.267923, - "right": -113.90625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 71, - "left": -113.90625, - "top": 62.267923, - "right": -112.5, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 71, - "left": -112.5, - "top": 62.267923, - "right": -111.09375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 71, - "left": -111.09375, - "top": 62.267923, - "right": -109.6875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 71, - "left": -109.6875, - "top": 62.267923, - "right": -108.28125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 71, - "left": -108.28125, - "top": 62.267923, - "right": -106.875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 71, - "left": -106.875, - "top": 62.267923, - "right": -105.46875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 71, - "left": -105.46875, - "top": 62.267923, - "right": -104.0625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 71, - "left": -104.0625, - "top": 62.267923, - "right": -102.65625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 71, - "left": -102.65625, - "top": 62.267923, - "right": -101.25, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 71, - "left": -101.25, - "top": 62.267923, - "right": -99.84375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 71, - "left": -99.84375, - "top": 62.267923, - "right": -98.4375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 71, - "left": -98.4375, - "top": 62.267923, - "right": -97.03125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 71, - "left": -97.03125, - "top": 62.267923, - "right": -95.625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 71, - "left": -95.625, - "top": 62.267923, - "right": -94.21875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 71, - "left": -94.21875, - "top": 62.267923, - "right": -92.8125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 71, - "left": -92.8125, - "top": 62.267923, - "right": -91.40625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 71, - "left": -84.375, - "top": 62.267923, - "right": -82.96875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 71, - "left": -82.96875, - "top": 62.267923, - "right": -81.5625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 71, - "left": -81.5625, - "top": 62.267923, - "right": -80.15625, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 71, - "left": -80.15625, - "top": 62.267923, - "right": -78.75, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 71, - "left": -78.75, - "top": 62.267923, - "right": -77.34375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 71, - "left": -77.34375, - "top": 62.267923, - "right": -75.9375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 71, - "left": -75.9375, - "top": 62.267923, - "right": -74.53125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 71, - "left": -74.53125, - "top": 62.267923, - "right": -73.125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 71, - "left": -73.125, - "top": 62.267923, - "right": -71.71875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 71, - "left": -71.71875, - "top": 62.267923, - "right": -70.3125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 71, - "left": -68.90625, - "top": 62.267923, - "right": -67.5, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 71, - "left": -67.5, - "top": 62.267923, - "right": -66.09375, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 71, - "left": -66.09375, - "top": 62.267923, - "right": -64.6875, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 71, - "left": -64.6875, - "top": 62.267923, - "right": -63.28125, - "bottom": 61.606396, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 72, - "left": -142.03125, - "top": 61.606396, - "right": -140.625, - "bottom": 60.930432, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 72, - "left": -140.625, - "top": 61.606396, - "right": -139.21875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 72, - "left": -139.21875, - "top": 61.606396, - "right": -137.8125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 30, - "y": 72, - "left": -137.8125, - "top": 61.606396, - "right": -136.40625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 72, - "left": -136.40625, - "top": 61.606396, - "right": -135.0, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 72, - "left": -135.0, - "top": 61.606396, - "right": -133.59375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 72, - "left": -133.59375, - "top": 61.606396, - "right": -132.1875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 72, - "left": -132.1875, - "top": 61.606396, - "right": -130.78125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 72, - "left": -130.78125, - "top": 61.606396, - "right": -129.375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 72, - "left": -129.375, - "top": 61.606396, - "right": -127.96875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 72, - "left": -127.96875, - "top": 61.606396, - "right": -126.5625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 72, - "left": -126.5625, - "top": 61.606396, - "right": -125.15625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 72, - "left": -125.15625, - "top": 61.606396, - "right": -123.75, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 72, - "left": -123.75, - "top": 61.606396, - "right": -122.34375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 72, - "left": -122.34375, - "top": 61.606396, - "right": -120.9375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 72, - "left": -120.9375, - "top": 61.606396, - "right": -119.53125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 72, - "left": -119.53125, - "top": 61.606396, - "right": -118.125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 72, - "left": -118.125, - "top": 61.606396, - "right": -116.71875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 72, - "left": -116.71875, - "top": 61.606396, - "right": -115.3125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 72, - "left": -115.3125, - "top": 61.606396, - "right": -113.90625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 72, - "left": -113.90625, - "top": 61.606396, - "right": -112.5, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 72, - "left": -112.5, - "top": 61.606396, - "right": -111.09375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 72, - "left": -111.09375, - "top": 61.606396, - "right": -109.6875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 72, - "left": -109.6875, - "top": 61.606396, - "right": -108.28125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 72, - "left": -108.28125, - "top": 61.606396, - "right": -106.875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 72, - "left": -106.875, - "top": 61.606396, - "right": -105.46875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 72, - "left": -105.46875, - "top": 61.606396, - "right": -104.0625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 72, - "left": -104.0625, - "top": 61.606396, - "right": -102.65625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 72, - "left": -102.65625, - "top": 61.606396, - "right": -101.25, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 72, - "left": -101.25, - "top": 61.606396, - "right": -99.84375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 72, - "left": -99.84375, - "top": 61.606396, - "right": -98.4375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 72, - "left": -98.4375, - "top": 61.606396, - "right": -97.03125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 72, - "left": -97.03125, - "top": 61.606396, - "right": -95.625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 72, - "left": -95.625, - "top": 61.606396, - "right": -94.21875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 72, - "left": -94.21875, - "top": 61.606396, - "right": -92.8125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 72, - "left": -80.15625, - "top": 61.606396, - "right": -78.75, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 72, - "left": -78.75, - "top": 61.606396, - "right": -77.34375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 72, - "left": -77.34375, - "top": 61.606396, - "right": -75.9375, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 72, - "left": -75.9375, - "top": 61.606396, - "right": -74.53125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 72, - "left": -74.53125, - "top": 61.606396, - "right": -73.125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 72, - "left": -73.125, - "top": 61.606396, - "right": -71.71875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 72, - "left": -71.71875, - "top": 61.606396, - "right": -70.3125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 72, - "left": -70.3125, - "top": 61.606396, - "right": -68.90625, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 72, - "left": -66.09375, - "top": 61.606396, - "right": -64.6875, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 72, - "left": -64.6875, - "top": 61.606396, - "right": -63.28125, - "bottom": 60.930432, - "countries": [ - "canada" - ] - }, - { - "x": 27, - "y": 73, - "left": -142.03125, - "top": 60.930432, - "right": -140.625, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 73, - "left": -140.625, - "top": 60.930432, - "right": -139.21875, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 29, - "y": 73, - "left": -139.21875, - "top": 60.930432, - "right": -137.8125, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 30, - "y": 73, - "left": -137.8125, - "top": 60.930432, - "right": -136.40625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 73, - "left": -136.40625, - "top": 60.930432, - "right": -135.0, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 73, - "left": -135.0, - "top": 60.930432, - "right": -133.59375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 73, - "left": -133.59375, - "top": 60.930432, - "right": -132.1875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 73, - "left": -132.1875, - "top": 60.930432, - "right": -130.78125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 73, - "left": -130.78125, - "top": 60.930432, - "right": -129.375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 73, - "left": -129.375, - "top": 60.930432, - "right": -127.96875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 73, - "left": -127.96875, - "top": 60.930432, - "right": -126.5625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 73, - "left": -126.5625, - "top": 60.930432, - "right": -125.15625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 73, - "left": -125.15625, - "top": 60.930432, - "right": -123.75, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 73, - "left": -123.75, - "top": 60.930432, - "right": -122.34375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 73, - "left": -122.34375, - "top": 60.930432, - "right": -120.9375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 73, - "left": -120.9375, - "top": 60.930432, - "right": -119.53125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 73, - "left": -119.53125, - "top": 60.930432, - "right": -118.125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 73, - "left": -118.125, - "top": 60.930432, - "right": -116.71875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 73, - "left": -116.71875, - "top": 60.930432, - "right": -115.3125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 73, - "left": -115.3125, - "top": 60.930432, - "right": -113.90625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 73, - "left": -113.90625, - "top": 60.930432, - "right": -112.5, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 73, - "left": -112.5, - "top": 60.930432, - "right": -111.09375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 73, - "left": -111.09375, - "top": 60.930432, - "right": -109.6875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 73, - "left": -109.6875, - "top": 60.930432, - "right": -108.28125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 73, - "left": -108.28125, - "top": 60.930432, - "right": -106.875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 73, - "left": -106.875, - "top": 60.930432, - "right": -105.46875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 73, - "left": -105.46875, - "top": 60.930432, - "right": -104.0625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 73, - "left": -104.0625, - "top": 60.930432, - "right": -102.65625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 73, - "left": -102.65625, - "top": 60.930432, - "right": -101.25, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 73, - "left": -101.25, - "top": 60.930432, - "right": -99.84375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 73, - "left": -99.84375, - "top": 60.930432, - "right": -98.4375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 73, - "left": -98.4375, - "top": 60.930432, - "right": -97.03125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 73, - "left": -97.03125, - "top": 60.930432, - "right": -95.625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 73, - "left": -95.625, - "top": 60.930432, - "right": -94.21875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 73, - "left": -94.21875, - "top": 60.930432, - "right": -92.8125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 73, - "left": -78.75, - "top": 60.930432, - "right": -77.34375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 73, - "left": -77.34375, - "top": 60.930432, - "right": -75.9375, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 73, - "left": -75.9375, - "top": 60.930432, - "right": -74.53125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 73, - "left": -74.53125, - "top": 60.930432, - "right": -73.125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 73, - "left": -73.125, - "top": 60.930432, - "right": -71.71875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 73, - "left": -71.71875, - "top": 60.930432, - "right": -70.3125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 73, - "left": -70.3125, - "top": 60.930432, - "right": -68.90625, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 73, - "left": -68.90625, - "top": 60.930432, - "right": -67.5, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 73, - "left": -66.09375, - "top": 60.930432, - "right": -64.6875, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 73, - "left": -64.6875, - "top": 60.930432, - "right": -63.28125, - "bottom": 60.239811, - "countries": [ - "canada" - ] - }, - { - "x": 28, - "y": 74, - "left": -140.625, - "top": 60.239811, - "right": -139.21875, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 29, - "y": 74, - "left": -139.21875, - "top": 60.239811, - "right": -137.8125, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 30, - "y": 74, - "left": -137.8125, - "top": 60.239811, - "right": -136.40625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 31, - "y": 74, - "left": -136.40625, - "top": 60.239811, - "right": -135.0, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 32, - "y": 74, - "left": -135.0, - "top": 60.239811, - "right": -133.59375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 74, - "left": -133.59375, - "top": 60.239811, - "right": -132.1875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 74, - "left": -132.1875, - "top": 60.239811, - "right": -130.78125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 74, - "left": -130.78125, - "top": 60.239811, - "right": -129.375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 74, - "left": -129.375, - "top": 60.239811, - "right": -127.96875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 74, - "left": -127.96875, - "top": 60.239811, - "right": -126.5625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 74, - "left": -126.5625, - "top": 60.239811, - "right": -125.15625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 74, - "left": -125.15625, - "top": 60.239811, - "right": -123.75, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 74, - "left": -123.75, - "top": 60.239811, - "right": -122.34375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 74, - "left": -122.34375, - "top": 60.239811, - "right": -120.9375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 74, - "left": -120.9375, - "top": 60.239811, - "right": -119.53125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 74, - "left": -119.53125, - "top": 60.239811, - "right": -118.125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 74, - "left": -118.125, - "top": 60.239811, - "right": -116.71875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 74, - "left": -116.71875, - "top": 60.239811, - "right": -115.3125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 74, - "left": -115.3125, - "top": 60.239811, - "right": -113.90625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 74, - "left": -113.90625, - "top": 60.239811, - "right": -112.5, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 74, - "left": -112.5, - "top": 60.239811, - "right": -111.09375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 74, - "left": -111.09375, - "top": 60.239811, - "right": -109.6875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 74, - "left": -109.6875, - "top": 60.239811, - "right": -108.28125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 74, - "left": -108.28125, - "top": 60.239811, - "right": -106.875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 74, - "left": -106.875, - "top": 60.239811, - "right": -105.46875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 74, - "left": -105.46875, - "top": 60.239811, - "right": -104.0625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 74, - "left": -104.0625, - "top": 60.239811, - "right": -102.65625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 74, - "left": -102.65625, - "top": 60.239811, - "right": -101.25, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 74, - "left": -101.25, - "top": 60.239811, - "right": -99.84375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 74, - "left": -99.84375, - "top": 60.239811, - "right": -98.4375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 74, - "left": -98.4375, - "top": 60.239811, - "right": -97.03125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 74, - "left": -97.03125, - "top": 60.239811, - "right": -95.625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 74, - "left": -95.625, - "top": 60.239811, - "right": -94.21875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 74, - "left": -81.5625, - "top": 60.239811, - "right": -80.15625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 74, - "left": -80.15625, - "top": 60.239811, - "right": -78.75, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 74, - "left": -78.75, - "top": 60.239811, - "right": -77.34375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 74, - "left": -77.34375, - "top": 60.239811, - "right": -75.9375, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 74, - "left": -75.9375, - "top": 60.239811, - "right": -74.53125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 74, - "left": -74.53125, - "top": 60.239811, - "right": -73.125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 74, - "left": -73.125, - "top": 60.239811, - "right": -71.71875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 74, - "left": -71.71875, - "top": 60.239811, - "right": -70.3125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 74, - "left": -70.3125, - "top": 60.239811, - "right": -68.90625, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 74, - "left": -68.90625, - "top": 60.239811, - "right": -67.5, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 74, - "left": -66.09375, - "top": 60.239811, - "right": -64.6875, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 74, - "left": -64.6875, - "top": 60.239811, - "right": -63.28125, - "bottom": 59.534318, - "countries": [ - "canada" - ] - }, - { - "x": 29, - "y": 75, - "left": -139.21875, - "top": 59.534318, - "right": -137.8125, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 30, - "y": 75, - "left": -137.8125, - "top": 59.534318, - "right": -136.40625, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 31, - "y": 75, - "left": -136.40625, - "top": 59.534318, - "right": -135.0, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 32, - "y": 75, - "left": -135.0, - "top": 59.534318, - "right": -133.59375, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 75, - "left": -133.59375, - "top": 59.534318, - "right": -132.1875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 75, - "left": -132.1875, - "top": 59.534318, - "right": -130.78125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 75, - "left": -130.78125, - "top": 59.534318, - "right": -129.375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 75, - "left": -129.375, - "top": 59.534318, - "right": -127.96875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 75, - "left": -127.96875, - "top": 59.534318, - "right": -126.5625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 75, - "left": -126.5625, - "top": 59.534318, - "right": -125.15625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 75, - "left": -125.15625, - "top": 59.534318, - "right": -123.75, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 75, - "left": -123.75, - "top": 59.534318, - "right": -122.34375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 75, - "left": -122.34375, - "top": 59.534318, - "right": -120.9375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 75, - "left": -120.9375, - "top": 59.534318, - "right": -119.53125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 75, - "left": -119.53125, - "top": 59.534318, - "right": -118.125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 75, - "left": -118.125, - "top": 59.534318, - "right": -116.71875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 75, - "left": -116.71875, - "top": 59.534318, - "right": -115.3125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 75, - "left": -115.3125, - "top": 59.534318, - "right": -113.90625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 75, - "left": -113.90625, - "top": 59.534318, - "right": -112.5, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 75, - "left": -112.5, - "top": 59.534318, - "right": -111.09375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 75, - "left": -111.09375, - "top": 59.534318, - "right": -109.6875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 75, - "left": -109.6875, - "top": 59.534318, - "right": -108.28125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 75, - "left": -108.28125, - "top": 59.534318, - "right": -106.875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 75, - "left": -106.875, - "top": 59.534318, - "right": -105.46875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 75, - "left": -105.46875, - "top": 59.534318, - "right": -104.0625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 75, - "left": -104.0625, - "top": 59.534318, - "right": -102.65625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 75, - "left": -102.65625, - "top": 59.534318, - "right": -101.25, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 75, - "left": -101.25, - "top": 59.534318, - "right": -99.84375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 75, - "left": -99.84375, - "top": 59.534318, - "right": -98.4375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 75, - "left": -98.4375, - "top": 59.534318, - "right": -97.03125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 75, - "left": -97.03125, - "top": 59.534318, - "right": -95.625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 75, - "left": -95.625, - "top": 59.534318, - "right": -94.21875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 75, - "left": -94.21875, - "top": 59.534318, - "right": -92.8125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 75, - "left": -81.5625, - "top": 59.534318, - "right": -80.15625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 75, - "left": -80.15625, - "top": 59.534318, - "right": -78.75, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 75, - "left": -78.75, - "top": 59.534318, - "right": -77.34375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 75, - "left": -77.34375, - "top": 59.534318, - "right": -75.9375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 75, - "left": -75.9375, - "top": 59.534318, - "right": -74.53125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 75, - "left": -74.53125, - "top": 59.534318, - "right": -73.125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 75, - "left": -73.125, - "top": 59.534318, - "right": -71.71875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 75, - "left": -71.71875, - "top": 59.534318, - "right": -70.3125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 75, - "left": -70.3125, - "top": 59.534318, - "right": -68.90625, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 75, - "left": -68.90625, - "top": 59.534318, - "right": -67.5, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 75, - "left": -67.5, - "top": 59.534318, - "right": -66.09375, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 75, - "left": -66.09375, - "top": 59.534318, - "right": -64.6875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 75, - "left": -64.6875, - "top": 59.534318, - "right": -63.28125, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 75, - "left": -63.28125, - "top": 59.534318, - "right": -61.875, - "bottom": 58.813742, - "countries": [ - "canada" - ] - }, - { - "x": 32, - "y": 76, - "left": -135.0, - "top": 58.813742, - "right": -133.59375, - "bottom": 58.077876, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 76, - "left": -133.59375, - "top": 58.813742, - "right": -132.1875, - "bottom": 58.077876, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 76, - "left": -132.1875, - "top": 58.813742, - "right": -130.78125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 76, - "left": -130.78125, - "top": 58.813742, - "right": -129.375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 76, - "left": -129.375, - "top": 58.813742, - "right": -127.96875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 76, - "left": -127.96875, - "top": 58.813742, - "right": -126.5625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 76, - "left": -126.5625, - "top": 58.813742, - "right": -125.15625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 76, - "left": -125.15625, - "top": 58.813742, - "right": -123.75, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 76, - "left": -123.75, - "top": 58.813742, - "right": -122.34375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 76, - "left": -122.34375, - "top": 58.813742, - "right": -120.9375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 76, - "left": -120.9375, - "top": 58.813742, - "right": -119.53125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 76, - "left": -119.53125, - "top": 58.813742, - "right": -118.125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 76, - "left": -118.125, - "top": 58.813742, - "right": -116.71875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 76, - "left": -116.71875, - "top": 58.813742, - "right": -115.3125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 76, - "left": -115.3125, - "top": 58.813742, - "right": -113.90625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 76, - "left": -113.90625, - "top": 58.813742, - "right": -112.5, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 76, - "left": -112.5, - "top": 58.813742, - "right": -111.09375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 76, - "left": -111.09375, - "top": 58.813742, - "right": -109.6875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 76, - "left": -109.6875, - "top": 58.813742, - "right": -108.28125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 76, - "left": -108.28125, - "top": 58.813742, - "right": -106.875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 76, - "left": -106.875, - "top": 58.813742, - "right": -105.46875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 76, - "left": -105.46875, - "top": 58.813742, - "right": -104.0625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 76, - "left": -104.0625, - "top": 58.813742, - "right": -102.65625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 76, - "left": -102.65625, - "top": 58.813742, - "right": -101.25, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 76, - "left": -101.25, - "top": 58.813742, - "right": -99.84375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 76, - "left": -99.84375, - "top": 58.813742, - "right": -98.4375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 76, - "left": -98.4375, - "top": 58.813742, - "right": -97.03125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 76, - "left": -97.03125, - "top": 58.813742, - "right": -95.625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 76, - "left": -95.625, - "top": 58.813742, - "right": -94.21875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 76, - "left": -94.21875, - "top": 58.813742, - "right": -92.8125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 76, - "left": -81.5625, - "top": 58.813742, - "right": -80.15625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 76, - "left": -80.15625, - "top": 58.813742, - "right": -78.75, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 76, - "left": -78.75, - "top": 58.813742, - "right": -77.34375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 76, - "left": -77.34375, - "top": 58.813742, - "right": -75.9375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 76, - "left": -75.9375, - "top": 58.813742, - "right": -74.53125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 76, - "left": -74.53125, - "top": 58.813742, - "right": -73.125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 76, - "left": -73.125, - "top": 58.813742, - "right": -71.71875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 76, - "left": -71.71875, - "top": 58.813742, - "right": -70.3125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 76, - "left": -70.3125, - "top": 58.813742, - "right": -68.90625, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 76, - "left": -68.90625, - "top": 58.813742, - "right": -67.5, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 76, - "left": -67.5, - "top": 58.813742, - "right": -66.09375, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 76, - "left": -66.09375, - "top": 58.813742, - "right": -64.6875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 76, - "left": -64.6875, - "top": 58.813742, - "right": -63.28125, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 76, - "left": -63.28125, - "top": 58.813742, - "right": -61.875, - "bottom": 58.077876, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 77, - "left": -133.59375, - "top": 58.077876, - "right": -132.1875, - "bottom": 57.326521, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 77, - "left": -132.1875, - "top": 58.077876, - "right": -130.78125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 77, - "left": -130.78125, - "top": 58.077876, - "right": -129.375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 77, - "left": -129.375, - "top": 58.077876, - "right": -127.96875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 77, - "left": -127.96875, - "top": 58.077876, - "right": -126.5625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 77, - "left": -126.5625, - "top": 58.077876, - "right": -125.15625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 77, - "left": -125.15625, - "top": 58.077876, - "right": -123.75, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 77, - "left": -123.75, - "top": 58.077876, - "right": -122.34375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 77, - "left": -122.34375, - "top": 58.077876, - "right": -120.9375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 77, - "left": -120.9375, - "top": 58.077876, - "right": -119.53125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 77, - "left": -119.53125, - "top": 58.077876, - "right": -118.125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 77, - "left": -118.125, - "top": 58.077876, - "right": -116.71875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 77, - "left": -116.71875, - "top": 58.077876, - "right": -115.3125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 77, - "left": -115.3125, - "top": 58.077876, - "right": -113.90625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 77, - "left": -113.90625, - "top": 58.077876, - "right": -112.5, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 77, - "left": -112.5, - "top": 58.077876, - "right": -111.09375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 77, - "left": -111.09375, - "top": 58.077876, - "right": -109.6875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 77, - "left": -109.6875, - "top": 58.077876, - "right": -108.28125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 77, - "left": -108.28125, - "top": 58.077876, - "right": -106.875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 77, - "left": -106.875, - "top": 58.077876, - "right": -105.46875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 77, - "left": -105.46875, - "top": 58.077876, - "right": -104.0625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 77, - "left": -104.0625, - "top": 58.077876, - "right": -102.65625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 77, - "left": -102.65625, - "top": 58.077876, - "right": -101.25, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 77, - "left": -101.25, - "top": 58.077876, - "right": -99.84375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 77, - "left": -99.84375, - "top": 58.077876, - "right": -98.4375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 77, - "left": -98.4375, - "top": 58.077876, - "right": -97.03125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 77, - "left": -97.03125, - "top": 58.077876, - "right": -95.625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 77, - "left": -95.625, - "top": 58.077876, - "right": -94.21875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 77, - "left": -94.21875, - "top": 58.077876, - "right": -92.8125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 77, - "left": -92.8125, - "top": 58.077876, - "right": -91.40625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 77, - "left": -80.15625, - "top": 58.077876, - "right": -78.75, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 77, - "left": -78.75, - "top": 58.077876, - "right": -77.34375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 77, - "left": -77.34375, - "top": 58.077876, - "right": -75.9375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 77, - "left": -75.9375, - "top": 58.077876, - "right": -74.53125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 77, - "left": -74.53125, - "top": 58.077876, - "right": -73.125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 77, - "left": -73.125, - "top": 58.077876, - "right": -71.71875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 77, - "left": -71.71875, - "top": 58.077876, - "right": -70.3125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 77, - "left": -70.3125, - "top": 58.077876, - "right": -68.90625, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 77, - "left": -68.90625, - "top": 58.077876, - "right": -67.5, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 77, - "left": -67.5, - "top": 58.077876, - "right": -66.09375, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 77, - "left": -66.09375, - "top": 58.077876, - "right": -64.6875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 77, - "left": -64.6875, - "top": 58.077876, - "right": -63.28125, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 77, - "left": -63.28125, - "top": 58.077876, - "right": -61.875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 77, - "left": -61.875, - "top": 58.077876, - "right": -60.46875, - "bottom": 57.326521, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 78, - "left": -133.59375, - "top": 57.326521, - "right": -132.1875, - "bottom": 56.559482, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 78, - "left": -132.1875, - "top": 57.326521, - "right": -130.78125, - "bottom": 56.559482, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 78, - "left": -130.78125, - "top": 57.326521, - "right": -129.375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 78, - "left": -129.375, - "top": 57.326521, - "right": -127.96875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 78, - "left": -127.96875, - "top": 57.326521, - "right": -126.5625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 78, - "left": -126.5625, - "top": 57.326521, - "right": -125.15625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 78, - "left": -125.15625, - "top": 57.326521, - "right": -123.75, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 78, - "left": -123.75, - "top": 57.326521, - "right": -122.34375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 78, - "left": -122.34375, - "top": 57.326521, - "right": -120.9375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 78, - "left": -120.9375, - "top": 57.326521, - "right": -119.53125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 78, - "left": -119.53125, - "top": 57.326521, - "right": -118.125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 78, - "left": -118.125, - "top": 57.326521, - "right": -116.71875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 78, - "left": -116.71875, - "top": 57.326521, - "right": -115.3125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 78, - "left": -115.3125, - "top": 57.326521, - "right": -113.90625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 78, - "left": -113.90625, - "top": 57.326521, - "right": -112.5, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 78, - "left": -112.5, - "top": 57.326521, - "right": -111.09375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 78, - "left": -111.09375, - "top": 57.326521, - "right": -109.6875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 78, - "left": -109.6875, - "top": 57.326521, - "right": -108.28125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 78, - "left": -108.28125, - "top": 57.326521, - "right": -106.875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 78, - "left": -106.875, - "top": 57.326521, - "right": -105.46875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 78, - "left": -105.46875, - "top": 57.326521, - "right": -104.0625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 78, - "left": -104.0625, - "top": 57.326521, - "right": -102.65625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 78, - "left": -102.65625, - "top": 57.326521, - "right": -101.25, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 78, - "left": -101.25, - "top": 57.326521, - "right": -99.84375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 78, - "left": -99.84375, - "top": 57.326521, - "right": -98.4375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 78, - "left": -98.4375, - "top": 57.326521, - "right": -97.03125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 78, - "left": -97.03125, - "top": 57.326521, - "right": -95.625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 78, - "left": -95.625, - "top": 57.326521, - "right": -94.21875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 78, - "left": -94.21875, - "top": 57.326521, - "right": -92.8125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 78, - "left": -92.8125, - "top": 57.326521, - "right": -91.40625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 78, - "left": -91.40625, - "top": 57.326521, - "right": -90.0, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 78, - "left": -90.0, - "top": 57.326521, - "right": -88.59375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 78, - "left": -88.59375, - "top": 57.326521, - "right": -87.1875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 78, - "left": -80.15625, - "top": 57.326521, - "right": -78.75, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 78, - "left": -78.75, - "top": 57.326521, - "right": -77.34375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 78, - "left": -77.34375, - "top": 57.326521, - "right": -75.9375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 78, - "left": -75.9375, - "top": 57.326521, - "right": -74.53125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 78, - "left": -74.53125, - "top": 57.326521, - "right": -73.125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 78, - "left": -73.125, - "top": 57.326521, - "right": -71.71875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 78, - "left": -71.71875, - "top": 57.326521, - "right": -70.3125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 78, - "left": -70.3125, - "top": 57.326521, - "right": -68.90625, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 78, - "left": -68.90625, - "top": 57.326521, - "right": -67.5, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 78, - "left": -67.5, - "top": 57.326521, - "right": -66.09375, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 78, - "left": -66.09375, - "top": 57.326521, - "right": -64.6875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 78, - "left": -64.6875, - "top": 57.326521, - "right": -63.28125, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 78, - "left": -63.28125, - "top": 57.326521, - "right": -61.875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 78, - "left": -61.875, - "top": 57.326521, - "right": -60.46875, - "bottom": 56.559482, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 79, - "left": -132.1875, - "top": 56.559482, - "right": -130.78125, - "bottom": 55.776573, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 79, - "left": -130.78125, - "top": 56.559482, - "right": -129.375, - "bottom": 55.776573, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 36, - "y": 79, - "left": -129.375, - "top": 56.559482, - "right": -127.96875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 79, - "left": -127.96875, - "top": 56.559482, - "right": -126.5625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 79, - "left": -126.5625, - "top": 56.559482, - "right": -125.15625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 79, - "left": -125.15625, - "top": 56.559482, - "right": -123.75, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 79, - "left": -123.75, - "top": 56.559482, - "right": -122.34375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 79, - "left": -122.34375, - "top": 56.559482, - "right": -120.9375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 79, - "left": -120.9375, - "top": 56.559482, - "right": -119.53125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 79, - "left": -119.53125, - "top": 56.559482, - "right": -118.125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 79, - "left": -118.125, - "top": 56.559482, - "right": -116.71875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 79, - "left": -116.71875, - "top": 56.559482, - "right": -115.3125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 79, - "left": -115.3125, - "top": 56.559482, - "right": -113.90625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 79, - "left": -113.90625, - "top": 56.559482, - "right": -112.5, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 79, - "left": -112.5, - "top": 56.559482, - "right": -111.09375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 79, - "left": -111.09375, - "top": 56.559482, - "right": -109.6875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 79, - "left": -109.6875, - "top": 56.559482, - "right": -108.28125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 79, - "left": -108.28125, - "top": 56.559482, - "right": -106.875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 79, - "left": -106.875, - "top": 56.559482, - "right": -105.46875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 79, - "left": -105.46875, - "top": 56.559482, - "right": -104.0625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 79, - "left": -104.0625, - "top": 56.559482, - "right": -102.65625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 79, - "left": -102.65625, - "top": 56.559482, - "right": -101.25, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 79, - "left": -101.25, - "top": 56.559482, - "right": -99.84375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 79, - "left": -99.84375, - "top": 56.559482, - "right": -98.4375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 79, - "left": -98.4375, - "top": 56.559482, - "right": -97.03125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 79, - "left": -97.03125, - "top": 56.559482, - "right": -95.625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 79, - "left": -95.625, - "top": 56.559482, - "right": -94.21875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 79, - "left": -94.21875, - "top": 56.559482, - "right": -92.8125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 79, - "left": -92.8125, - "top": 56.559482, - "right": -91.40625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 79, - "left": -91.40625, - "top": 56.559482, - "right": -90.0, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 79, - "left": -90.0, - "top": 56.559482, - "right": -88.59375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 79, - "left": -88.59375, - "top": 56.559482, - "right": -87.1875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 79, - "left": -87.1875, - "top": 56.559482, - "right": -85.78125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 79, - "left": -80.15625, - "top": 56.559482, - "right": -78.75, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 79, - "left": -78.75, - "top": 56.559482, - "right": -77.34375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 79, - "left": -77.34375, - "top": 56.559482, - "right": -75.9375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 79, - "left": -75.9375, - "top": 56.559482, - "right": -74.53125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 79, - "left": -74.53125, - "top": 56.559482, - "right": -73.125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 79, - "left": -73.125, - "top": 56.559482, - "right": -71.71875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 79, - "left": -71.71875, - "top": 56.559482, - "right": -70.3125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 79, - "left": -70.3125, - "top": 56.559482, - "right": -68.90625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 79, - "left": -68.90625, - "top": 56.559482, - "right": -67.5, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 79, - "left": -67.5, - "top": 56.559482, - "right": -66.09375, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 79, - "left": -66.09375, - "top": 56.559482, - "right": -64.6875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 79, - "left": -64.6875, - "top": 56.559482, - "right": -63.28125, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 79, - "left": -63.28125, - "top": 56.559482, - "right": -61.875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 79, - "left": -61.875, - "top": 56.559482, - "right": -60.46875, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 79, - "left": -60.46875, - "top": 56.559482, - "right": -59.0625, - "bottom": 55.776573, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 80, - "left": -130.78125, - "top": 55.776573, - "right": -129.375, - "bottom": 54.977614, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 36, - "y": 80, - "left": -129.375, - "top": 55.776573, - "right": -127.96875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 80, - "left": -127.96875, - "top": 55.776573, - "right": -126.5625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 80, - "left": -126.5625, - "top": 55.776573, - "right": -125.15625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 80, - "left": -125.15625, - "top": 55.776573, - "right": -123.75, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 80, - "left": -123.75, - "top": 55.776573, - "right": -122.34375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 80, - "left": -122.34375, - "top": 55.776573, - "right": -120.9375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 80, - "left": -120.9375, - "top": 55.776573, - "right": -119.53125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 80, - "left": -119.53125, - "top": 55.776573, - "right": -118.125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 80, - "left": -118.125, - "top": 55.776573, - "right": -116.71875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 80, - "left": -116.71875, - "top": 55.776573, - "right": -115.3125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 80, - "left": -115.3125, - "top": 55.776573, - "right": -113.90625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 80, - "left": -113.90625, - "top": 55.776573, - "right": -112.5, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 80, - "left": -112.5, - "top": 55.776573, - "right": -111.09375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 80, - "left": -111.09375, - "top": 55.776573, - "right": -109.6875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 80, - "left": -109.6875, - "top": 55.776573, - "right": -108.28125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 80, - "left": -108.28125, - "top": 55.776573, - "right": -106.875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 80, - "left": -106.875, - "top": 55.776573, - "right": -105.46875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 80, - "left": -105.46875, - "top": 55.776573, - "right": -104.0625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 80, - "left": -104.0625, - "top": 55.776573, - "right": -102.65625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 80, - "left": -102.65625, - "top": 55.776573, - "right": -101.25, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 80, - "left": -101.25, - "top": 55.776573, - "right": -99.84375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 80, - "left": -99.84375, - "top": 55.776573, - "right": -98.4375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 80, - "left": -98.4375, - "top": 55.776573, - "right": -97.03125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 80, - "left": -97.03125, - "top": 55.776573, - "right": -95.625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 80, - "left": -95.625, - "top": 55.776573, - "right": -94.21875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 80, - "left": -94.21875, - "top": 55.776573, - "right": -92.8125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 80, - "left": -92.8125, - "top": 55.776573, - "right": -91.40625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 80, - "left": -91.40625, - "top": 55.776573, - "right": -90.0, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 80, - "left": -90.0, - "top": 55.776573, - "right": -88.59375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 80, - "left": -88.59375, - "top": 55.776573, - "right": -87.1875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 80, - "left": -87.1875, - "top": 55.776573, - "right": -85.78125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 80, - "left": -85.78125, - "top": 55.776573, - "right": -84.375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 80, - "left": -84.375, - "top": 55.776573, - "right": -82.96875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 80, - "left": -82.96875, - "top": 55.776573, - "right": -81.5625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 80, - "left": -80.15625, - "top": 55.776573, - "right": -78.75, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 80, - "left": -78.75, - "top": 55.776573, - "right": -77.34375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 80, - "left": -77.34375, - "top": 55.776573, - "right": -75.9375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 80, - "left": -75.9375, - "top": 55.776573, - "right": -74.53125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 80, - "left": -74.53125, - "top": 55.776573, - "right": -73.125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 80, - "left": -73.125, - "top": 55.776573, - "right": -71.71875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 80, - "left": -71.71875, - "top": 55.776573, - "right": -70.3125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 80, - "left": -70.3125, - "top": 55.776573, - "right": -68.90625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 80, - "left": -68.90625, - "top": 55.776573, - "right": -67.5, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 80, - "left": -67.5, - "top": 55.776573, - "right": -66.09375, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 80, - "left": -66.09375, - "top": 55.776573, - "right": -64.6875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 80, - "left": -64.6875, - "top": 55.776573, - "right": -63.28125, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 80, - "left": -63.28125, - "top": 55.776573, - "right": -61.875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 80, - "left": -61.875, - "top": 55.776573, - "right": -60.46875, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 80, - "left": -60.46875, - "top": 55.776573, - "right": -59.0625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 80, - "left": -59.0625, - "top": 55.776573, - "right": -57.65625, - "bottom": 54.977614, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 81, - "left": -133.59375, - "top": 54.977614, - "right": -132.1875, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 81, - "left": -132.1875, - "top": 54.977614, - "right": -130.78125, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 81, - "left": -130.78125, - "top": 54.977614, - "right": -129.375, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 36, - "y": 81, - "left": -129.375, - "top": 54.977614, - "right": -127.96875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 81, - "left": -127.96875, - "top": 54.977614, - "right": -126.5625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 81, - "left": -126.5625, - "top": 54.977614, - "right": -125.15625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 81, - "left": -125.15625, - "top": 54.977614, - "right": -123.75, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 81, - "left": -123.75, - "top": 54.977614, - "right": -122.34375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 81, - "left": -122.34375, - "top": 54.977614, - "right": -120.9375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 81, - "left": -120.9375, - "top": 54.977614, - "right": -119.53125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 81, - "left": -119.53125, - "top": 54.977614, - "right": -118.125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 81, - "left": -118.125, - "top": 54.977614, - "right": -116.71875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 81, - "left": -116.71875, - "top": 54.977614, - "right": -115.3125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 81, - "left": -115.3125, - "top": 54.977614, - "right": -113.90625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 81, - "left": -113.90625, - "top": 54.977614, - "right": -112.5, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 81, - "left": -112.5, - "top": 54.977614, - "right": -111.09375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 81, - "left": -111.09375, - "top": 54.977614, - "right": -109.6875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 81, - "left": -109.6875, - "top": 54.977614, - "right": -108.28125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 81, - "left": -108.28125, - "top": 54.977614, - "right": -106.875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 81, - "left": -106.875, - "top": 54.977614, - "right": -105.46875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 81, - "left": -105.46875, - "top": 54.977614, - "right": -104.0625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 81, - "left": -104.0625, - "top": 54.977614, - "right": -102.65625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 81, - "left": -102.65625, - "top": 54.977614, - "right": -101.25, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 81, - "left": -101.25, - "top": 54.977614, - "right": -99.84375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 81, - "left": -99.84375, - "top": 54.977614, - "right": -98.4375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 81, - "left": -98.4375, - "top": 54.977614, - "right": -97.03125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 81, - "left": -97.03125, - "top": 54.977614, - "right": -95.625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 81, - "left": -95.625, - "top": 54.977614, - "right": -94.21875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 81, - "left": -94.21875, - "top": 54.977614, - "right": -92.8125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 81, - "left": -92.8125, - "top": 54.977614, - "right": -91.40625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 81, - "left": -91.40625, - "top": 54.977614, - "right": -90.0, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 81, - "left": -90.0, - "top": 54.977614, - "right": -88.59375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 81, - "left": -88.59375, - "top": 54.977614, - "right": -87.1875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 81, - "left": -87.1875, - "top": 54.977614, - "right": -85.78125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 81, - "left": -85.78125, - "top": 54.977614, - "right": -84.375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 81, - "left": -84.375, - "top": 54.977614, - "right": -82.96875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 81, - "left": -82.96875, - "top": 54.977614, - "right": -81.5625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 81, - "left": -81.5625, - "top": 54.977614, - "right": -80.15625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 81, - "left": -80.15625, - "top": 54.977614, - "right": -78.75, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 81, - "left": -78.75, - "top": 54.977614, - "right": -77.34375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 81, - "left": -77.34375, - "top": 54.977614, - "right": -75.9375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 81, - "left": -75.9375, - "top": 54.977614, - "right": -74.53125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 81, - "left": -74.53125, - "top": 54.977614, - "right": -73.125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 81, - "left": -73.125, - "top": 54.977614, - "right": -71.71875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 81, - "left": -71.71875, - "top": 54.977614, - "right": -70.3125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 81, - "left": -70.3125, - "top": 54.977614, - "right": -68.90625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 81, - "left": -68.90625, - "top": 54.977614, - "right": -67.5, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 81, - "left": -67.5, - "top": 54.977614, - "right": -66.09375, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 81, - "left": -66.09375, - "top": 54.977614, - "right": -64.6875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 81, - "left": -64.6875, - "top": 54.977614, - "right": -63.28125, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 81, - "left": -63.28125, - "top": 54.977614, - "right": -61.875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 81, - "left": -61.875, - "top": 54.977614, - "right": -60.46875, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 81, - "left": -60.46875, - "top": 54.977614, - "right": -59.0625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 81, - "left": -59.0625, - "top": 54.977614, - "right": -57.65625, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 81, - "left": -57.65625, - "top": 54.977614, - "right": -56.25, - "bottom": 54.162434, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 82, - "left": -133.59375, - "top": 54.162434, - "right": -132.1875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 82, - "left": -132.1875, - "top": 54.162434, - "right": -130.78125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 82, - "left": -130.78125, - "top": 54.162434, - "right": -129.375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 82, - "left": -129.375, - "top": 54.162434, - "right": -127.96875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 82, - "left": -127.96875, - "top": 54.162434, - "right": -126.5625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 82, - "left": -126.5625, - "top": 54.162434, - "right": -125.15625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 82, - "left": -125.15625, - "top": 54.162434, - "right": -123.75, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 82, - "left": -123.75, - "top": 54.162434, - "right": -122.34375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 82, - "left": -122.34375, - "top": 54.162434, - "right": -120.9375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 82, - "left": -120.9375, - "top": 54.162434, - "right": -119.53125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 82, - "left": -119.53125, - "top": 54.162434, - "right": -118.125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 82, - "left": -118.125, - "top": 54.162434, - "right": -116.71875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 82, - "left": -116.71875, - "top": 54.162434, - "right": -115.3125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 82, - "left": -115.3125, - "top": 54.162434, - "right": -113.90625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 82, - "left": -113.90625, - "top": 54.162434, - "right": -112.5, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 82, - "left": -112.5, - "top": 54.162434, - "right": -111.09375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 82, - "left": -111.09375, - "top": 54.162434, - "right": -109.6875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 82, - "left": -109.6875, - "top": 54.162434, - "right": -108.28125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 82, - "left": -108.28125, - "top": 54.162434, - "right": -106.875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 82, - "left": -106.875, - "top": 54.162434, - "right": -105.46875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 82, - "left": -105.46875, - "top": 54.162434, - "right": -104.0625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 82, - "left": -104.0625, - "top": 54.162434, - "right": -102.65625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 82, - "left": -102.65625, - "top": 54.162434, - "right": -101.25, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 82, - "left": -101.25, - "top": 54.162434, - "right": -99.84375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 82, - "left": -99.84375, - "top": 54.162434, - "right": -98.4375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 82, - "left": -98.4375, - "top": 54.162434, - "right": -97.03125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 82, - "left": -97.03125, - "top": 54.162434, - "right": -95.625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 82, - "left": -95.625, - "top": 54.162434, - "right": -94.21875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 82, - "left": -94.21875, - "top": 54.162434, - "right": -92.8125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 82, - "left": -92.8125, - "top": 54.162434, - "right": -91.40625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 82, - "left": -91.40625, - "top": 54.162434, - "right": -90.0, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 82, - "left": -90.0, - "top": 54.162434, - "right": -88.59375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 82, - "left": -88.59375, - "top": 54.162434, - "right": -87.1875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 82, - "left": -87.1875, - "top": 54.162434, - "right": -85.78125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 82, - "left": -85.78125, - "top": 54.162434, - "right": -84.375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 82, - "left": -84.375, - "top": 54.162434, - "right": -82.96875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 82, - "left": -82.96875, - "top": 54.162434, - "right": -81.5625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 82, - "left": -80.15625, - "top": 54.162434, - "right": -78.75, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 82, - "left": -78.75, - "top": 54.162434, - "right": -77.34375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 82, - "left": -77.34375, - "top": 54.162434, - "right": -75.9375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 82, - "left": -75.9375, - "top": 54.162434, - "right": -74.53125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 82, - "left": -74.53125, - "top": 54.162434, - "right": -73.125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 82, - "left": -73.125, - "top": 54.162434, - "right": -71.71875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 82, - "left": -71.71875, - "top": 54.162434, - "right": -70.3125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 82, - "left": -70.3125, - "top": 54.162434, - "right": -68.90625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 82, - "left": -68.90625, - "top": 54.162434, - "right": -67.5, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 82, - "left": -67.5, - "top": 54.162434, - "right": -66.09375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 82, - "left": -66.09375, - "top": 54.162434, - "right": -64.6875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 82, - "left": -64.6875, - "top": 54.162434, - "right": -63.28125, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 82, - "left": -63.28125, - "top": 54.162434, - "right": -61.875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 82, - "left": -61.875, - "top": 54.162434, - "right": -60.46875, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 82, - "left": -60.46875, - "top": 54.162434, - "right": -59.0625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 82, - "left": -59.0625, - "top": 54.162434, - "right": -57.65625, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 82, - "left": -57.65625, - "top": 54.162434, - "right": -56.25, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 82, - "left": -56.25, - "top": 54.162434, - "right": -54.84375, - "bottom": 53.330873, - "countries": [ - "canada" - ] - }, - { - "x": 33, - "y": 83, - "left": -133.59375, - "top": 53.330873, - "right": -132.1875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 83, - "left": -132.1875, - "top": 53.330873, - "right": -130.78125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 35, - "y": 83, - "left": -130.78125, - "top": 53.330873, - "right": -129.375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 83, - "left": -129.375, - "top": 53.330873, - "right": -127.96875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 83, - "left": -127.96875, - "top": 53.330873, - "right": -126.5625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 83, - "left": -126.5625, - "top": 53.330873, - "right": -125.15625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 83, - "left": -125.15625, - "top": 53.330873, - "right": -123.75, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 83, - "left": -123.75, - "top": 53.330873, - "right": -122.34375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 83, - "left": -122.34375, - "top": 53.330873, - "right": -120.9375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 83, - "left": -120.9375, - "top": 53.330873, - "right": -119.53125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 83, - "left": -119.53125, - "top": 53.330873, - "right": -118.125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 83, - "left": -118.125, - "top": 53.330873, - "right": -116.71875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 83, - "left": -116.71875, - "top": 53.330873, - "right": -115.3125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 83, - "left": -115.3125, - "top": 53.330873, - "right": -113.90625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 83, - "left": -113.90625, - "top": 53.330873, - "right": -112.5, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 83, - "left": -112.5, - "top": 53.330873, - "right": -111.09375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 83, - "left": -111.09375, - "top": 53.330873, - "right": -109.6875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 83, - "left": -109.6875, - "top": 53.330873, - "right": -108.28125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 83, - "left": -108.28125, - "top": 53.330873, - "right": -106.875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 83, - "left": -106.875, - "top": 53.330873, - "right": -105.46875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 83, - "left": -105.46875, - "top": 53.330873, - "right": -104.0625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 83, - "left": -104.0625, - "top": 53.330873, - "right": -102.65625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 83, - "left": -102.65625, - "top": 53.330873, - "right": -101.25, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 83, - "left": -101.25, - "top": 53.330873, - "right": -99.84375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 83, - "left": -99.84375, - "top": 53.330873, - "right": -98.4375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 83, - "left": -98.4375, - "top": 53.330873, - "right": -97.03125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 83, - "left": -97.03125, - "top": 53.330873, - "right": -95.625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 83, - "left": -95.625, - "top": 53.330873, - "right": -94.21875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 83, - "left": -94.21875, - "top": 53.330873, - "right": -92.8125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 83, - "left": -92.8125, - "top": 53.330873, - "right": -91.40625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 83, - "left": -91.40625, - "top": 53.330873, - "right": -90.0, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 83, - "left": -90.0, - "top": 53.330873, - "right": -88.59375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 83, - "left": -88.59375, - "top": 53.330873, - "right": -87.1875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 83, - "left": -87.1875, - "top": 53.330873, - "right": -85.78125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 83, - "left": -85.78125, - "top": 53.330873, - "right": -84.375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 83, - "left": -84.375, - "top": 53.330873, - "right": -82.96875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 83, - "left": -82.96875, - "top": 53.330873, - "right": -81.5625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 83, - "left": -81.5625, - "top": 53.330873, - "right": -80.15625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 83, - "left": -80.15625, - "top": 53.330873, - "right": -78.75, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 83, - "left": -78.75, - "top": 53.330873, - "right": -77.34375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 83, - "left": -77.34375, - "top": 53.330873, - "right": -75.9375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 83, - "left": -75.9375, - "top": 53.330873, - "right": -74.53125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 83, - "left": -74.53125, - "top": 53.330873, - "right": -73.125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 83, - "left": -73.125, - "top": 53.330873, - "right": -71.71875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 83, - "left": -71.71875, - "top": 53.330873, - "right": -70.3125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 83, - "left": -70.3125, - "top": 53.330873, - "right": -68.90625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 83, - "left": -68.90625, - "top": 53.330873, - "right": -67.5, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 83, - "left": -67.5, - "top": 53.330873, - "right": -66.09375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 83, - "left": -66.09375, - "top": 53.330873, - "right": -64.6875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 83, - "left": -64.6875, - "top": 53.330873, - "right": -63.28125, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 83, - "left": -63.28125, - "top": 53.330873, - "right": -61.875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 83, - "left": -61.875, - "top": 53.330873, - "right": -60.46875, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 83, - "left": -60.46875, - "top": 53.330873, - "right": -59.0625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 83, - "left": -59.0625, - "top": 53.330873, - "right": -57.65625, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 83, - "left": -57.65625, - "top": 53.330873, - "right": -56.25, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 83, - "left": -56.25, - "top": 53.330873, - "right": -54.84375, - "bottom": 52.48278, - "countries": [ - "canada" - ] - }, - { - "x": 34, - "y": 84, - "left": -132.1875, - "top": 52.48278, - "right": -130.78125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 84, - "left": -129.375, - "top": 52.48278, - "right": -127.96875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 84, - "left": -127.96875, - "top": 52.48278, - "right": -126.5625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 84, - "left": -126.5625, - "top": 52.48278, - "right": -125.15625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 84, - "left": -125.15625, - "top": 52.48278, - "right": -123.75, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 84, - "left": -123.75, - "top": 52.48278, - "right": -122.34375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 84, - "left": -122.34375, - "top": 52.48278, - "right": -120.9375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 84, - "left": -120.9375, - "top": 52.48278, - "right": -119.53125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 84, - "left": -119.53125, - "top": 52.48278, - "right": -118.125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 84, - "left": -118.125, - "top": 52.48278, - "right": -116.71875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 84, - "left": -116.71875, - "top": 52.48278, - "right": -115.3125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 84, - "left": -115.3125, - "top": 52.48278, - "right": -113.90625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 84, - "left": -113.90625, - "top": 52.48278, - "right": -112.5, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 84, - "left": -112.5, - "top": 52.48278, - "right": -111.09375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 84, - "left": -111.09375, - "top": 52.48278, - "right": -109.6875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 84, - "left": -109.6875, - "top": 52.48278, - "right": -108.28125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 84, - "left": -108.28125, - "top": 52.48278, - "right": -106.875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 84, - "left": -106.875, - "top": 52.48278, - "right": -105.46875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 84, - "left": -105.46875, - "top": 52.48278, - "right": -104.0625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 84, - "left": -104.0625, - "top": 52.48278, - "right": -102.65625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 84, - "left": -102.65625, - "top": 52.48278, - "right": -101.25, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 84, - "left": -101.25, - "top": 52.48278, - "right": -99.84375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 84, - "left": -99.84375, - "top": 52.48278, - "right": -98.4375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 84, - "left": -98.4375, - "top": 52.48278, - "right": -97.03125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 84, - "left": -97.03125, - "top": 52.48278, - "right": -95.625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 84, - "left": -95.625, - "top": 52.48278, - "right": -94.21875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 84, - "left": -94.21875, - "top": 52.48278, - "right": -92.8125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 84, - "left": -92.8125, - "top": 52.48278, - "right": -91.40625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 84, - "left": -91.40625, - "top": 52.48278, - "right": -90.0, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 84, - "left": -90.0, - "top": 52.48278, - "right": -88.59375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 84, - "left": -88.59375, - "top": 52.48278, - "right": -87.1875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 84, - "left": -87.1875, - "top": 52.48278, - "right": -85.78125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 84, - "left": -85.78125, - "top": 52.48278, - "right": -84.375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 84, - "left": -84.375, - "top": 52.48278, - "right": -82.96875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 84, - "left": -82.96875, - "top": 52.48278, - "right": -81.5625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 84, - "left": -81.5625, - "top": 52.48278, - "right": -80.15625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 84, - "left": -80.15625, - "top": 52.48278, - "right": -78.75, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 84, - "left": -78.75, - "top": 52.48278, - "right": -77.34375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 84, - "left": -77.34375, - "top": 52.48278, - "right": -75.9375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 84, - "left": -75.9375, - "top": 52.48278, - "right": -74.53125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 84, - "left": -74.53125, - "top": 52.48278, - "right": -73.125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 84, - "left": -73.125, - "top": 52.48278, - "right": -71.71875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 84, - "left": -71.71875, - "top": 52.48278, - "right": -70.3125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 84, - "left": -70.3125, - "top": 52.48278, - "right": -68.90625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 84, - "left": -68.90625, - "top": 52.48278, - "right": -67.5, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 84, - "left": -67.5, - "top": 52.48278, - "right": -66.09375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 84, - "left": -66.09375, - "top": 52.48278, - "right": -64.6875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 84, - "left": -64.6875, - "top": 52.48278, - "right": -63.28125, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 84, - "left": -63.28125, - "top": 52.48278, - "right": -61.875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 84, - "left": -61.875, - "top": 52.48278, - "right": -60.46875, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 84, - "left": -60.46875, - "top": 52.48278, - "right": -59.0625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 84, - "left": -59.0625, - "top": 52.48278, - "right": -57.65625, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 84, - "left": -57.65625, - "top": 52.48278, - "right": -56.25, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 84, - "left": -56.25, - "top": 52.48278, - "right": -54.84375, - "bottom": 51.618017, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 85, - "left": -129.375, - "top": 51.618017, - "right": -127.96875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 85, - "left": -127.96875, - "top": 51.618017, - "right": -126.5625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 85, - "left": -126.5625, - "top": 51.618017, - "right": -125.15625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 85, - "left": -125.15625, - "top": 51.618017, - "right": -123.75, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 85, - "left": -123.75, - "top": 51.618017, - "right": -122.34375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 85, - "left": -122.34375, - "top": 51.618017, - "right": -120.9375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 85, - "left": -120.9375, - "top": 51.618017, - "right": -119.53125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 85, - "left": -119.53125, - "top": 51.618017, - "right": -118.125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 85, - "left": -118.125, - "top": 51.618017, - "right": -116.71875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 85, - "left": -116.71875, - "top": 51.618017, - "right": -115.3125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 85, - "left": -115.3125, - "top": 51.618017, - "right": -113.90625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 85, - "left": -113.90625, - "top": 51.618017, - "right": -112.5, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 85, - "left": -112.5, - "top": 51.618017, - "right": -111.09375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 85, - "left": -111.09375, - "top": 51.618017, - "right": -109.6875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 85, - "left": -109.6875, - "top": 51.618017, - "right": -108.28125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 85, - "left": -108.28125, - "top": 51.618017, - "right": -106.875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 85, - "left": -106.875, - "top": 51.618017, - "right": -105.46875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 85, - "left": -105.46875, - "top": 51.618017, - "right": -104.0625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 85, - "left": -104.0625, - "top": 51.618017, - "right": -102.65625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 85, - "left": -102.65625, - "top": 51.618017, - "right": -101.25, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 85, - "left": -101.25, - "top": 51.618017, - "right": -99.84375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 85, - "left": -99.84375, - "top": 51.618017, - "right": -98.4375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 85, - "left": -98.4375, - "top": 51.618017, - "right": -97.03125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 85, - "left": -97.03125, - "top": 51.618017, - "right": -95.625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 85, - "left": -95.625, - "top": 51.618017, - "right": -94.21875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 85, - "left": -94.21875, - "top": 51.618017, - "right": -92.8125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 85, - "left": -92.8125, - "top": 51.618017, - "right": -91.40625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 85, - "left": -91.40625, - "top": 51.618017, - "right": -90.0, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 85, - "left": -90.0, - "top": 51.618017, - "right": -88.59375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 85, - "left": -88.59375, - "top": 51.618017, - "right": -87.1875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 85, - "left": -87.1875, - "top": 51.618017, - "right": -85.78125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 85, - "left": -85.78125, - "top": 51.618017, - "right": -84.375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 85, - "left": -84.375, - "top": 51.618017, - "right": -82.96875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 85, - "left": -82.96875, - "top": 51.618017, - "right": -81.5625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 85, - "left": -81.5625, - "top": 51.618017, - "right": -80.15625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 85, - "left": -80.15625, - "top": 51.618017, - "right": -78.75, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 85, - "left": -78.75, - "top": 51.618017, - "right": -77.34375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 85, - "left": -77.34375, - "top": 51.618017, - "right": -75.9375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 85, - "left": -75.9375, - "top": 51.618017, - "right": -74.53125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 85, - "left": -74.53125, - "top": 51.618017, - "right": -73.125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 85, - "left": -73.125, - "top": 51.618017, - "right": -71.71875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 85, - "left": -71.71875, - "top": 51.618017, - "right": -70.3125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 85, - "left": -70.3125, - "top": 51.618017, - "right": -68.90625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 85, - "left": -68.90625, - "top": 51.618017, - "right": -67.5, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 85, - "left": -67.5, - "top": 51.618017, - "right": -66.09375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 85, - "left": -66.09375, - "top": 51.618017, - "right": -64.6875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 85, - "left": -64.6875, - "top": 51.618017, - "right": -63.28125, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 85, - "left": -63.28125, - "top": 51.618017, - "right": -61.875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 85, - "left": -61.875, - "top": 51.618017, - "right": -60.46875, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 85, - "left": -60.46875, - "top": 51.618017, - "right": -59.0625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 85, - "left": -59.0625, - "top": 51.618017, - "right": -57.65625, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 85, - "left": -57.65625, - "top": 51.618017, - "right": -56.25, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 85, - "left": -56.25, - "top": 51.618017, - "right": -54.84375, - "bottom": 50.736455, - "countries": [ - "canada" - ] - }, - { - "x": 36, - "y": 86, - "left": -129.375, - "top": 50.736455, - "right": -127.96875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 86, - "left": -127.96875, - "top": 50.736455, - "right": -126.5625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 86, - "left": -126.5625, - "top": 50.736455, - "right": -125.15625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 86, - "left": -125.15625, - "top": 50.736455, - "right": -123.75, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 86, - "left": -123.75, - "top": 50.736455, - "right": -122.34375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 41, - "y": 86, - "left": -122.34375, - "top": 50.736455, - "right": -120.9375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 42, - "y": 86, - "left": -120.9375, - "top": 50.736455, - "right": -119.53125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 43, - "y": 86, - "left": -119.53125, - "top": 50.736455, - "right": -118.125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 44, - "y": 86, - "left": -118.125, - "top": 50.736455, - "right": -116.71875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 45, - "y": 86, - "left": -116.71875, - "top": 50.736455, - "right": -115.3125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 46, - "y": 86, - "left": -115.3125, - "top": 50.736455, - "right": -113.90625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 47, - "y": 86, - "left": -113.90625, - "top": 50.736455, - "right": -112.5, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 48, - "y": 86, - "left": -112.5, - "top": 50.736455, - "right": -111.09375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 49, - "y": 86, - "left": -111.09375, - "top": 50.736455, - "right": -109.6875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 50, - "y": 86, - "left": -109.6875, - "top": 50.736455, - "right": -108.28125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 51, - "y": 86, - "left": -108.28125, - "top": 50.736455, - "right": -106.875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 52, - "y": 86, - "left": -106.875, - "top": 50.736455, - "right": -105.46875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 53, - "y": 86, - "left": -105.46875, - "top": 50.736455, - "right": -104.0625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 54, - "y": 86, - "left": -104.0625, - "top": 50.736455, - "right": -102.65625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 55, - "y": 86, - "left": -102.65625, - "top": 50.736455, - "right": -101.25, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 56, - "y": 86, - "left": -101.25, - "top": 50.736455, - "right": -99.84375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 57, - "y": 86, - "left": -99.84375, - "top": 50.736455, - "right": -98.4375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 58, - "y": 86, - "left": -98.4375, - "top": 50.736455, - "right": -97.03125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 59, - "y": 86, - "left": -97.03125, - "top": 50.736455, - "right": -95.625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 60, - "y": 86, - "left": -95.625, - "top": 50.736455, - "right": -94.21875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 61, - "y": 86, - "left": -94.21875, - "top": 50.736455, - "right": -92.8125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 86, - "left": -92.8125, - "top": 50.736455, - "right": -91.40625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 86, - "left": -91.40625, - "top": 50.736455, - "right": -90.0, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 86, - "left": -90.0, - "top": 50.736455, - "right": -88.59375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 86, - "left": -88.59375, - "top": 50.736455, - "right": -87.1875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 86, - "left": -87.1875, - "top": 50.736455, - "right": -85.78125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 86, - "left": -85.78125, - "top": 50.736455, - "right": -84.375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 86, - "left": -84.375, - "top": 50.736455, - "right": -82.96875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 86, - "left": -82.96875, - "top": 50.736455, - "right": -81.5625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 86, - "left": -81.5625, - "top": 50.736455, - "right": -80.15625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 86, - "left": -80.15625, - "top": 50.736455, - "right": -78.75, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 86, - "left": -78.75, - "top": 50.736455, - "right": -77.34375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 86, - "left": -77.34375, - "top": 50.736455, - "right": -75.9375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 86, - "left": -75.9375, - "top": 50.736455, - "right": -74.53125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 86, - "left": -74.53125, - "top": 50.736455, - "right": -73.125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 86, - "left": -73.125, - "top": 50.736455, - "right": -71.71875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 86, - "left": -71.71875, - "top": 50.736455, - "right": -70.3125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 86, - "left": -70.3125, - "top": 50.736455, - "right": -68.90625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 86, - "left": -68.90625, - "top": 50.736455, - "right": -67.5, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 86, - "left": -67.5, - "top": 50.736455, - "right": -66.09375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 86, - "left": -66.09375, - "top": 50.736455, - "right": -64.6875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 86, - "left": -64.6875, - "top": 50.736455, - "right": -63.28125, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 86, - "left": -63.28125, - "top": 50.736455, - "right": -61.875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 86, - "left": -61.875, - "top": 50.736455, - "right": -60.46875, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 86, - "left": -60.46875, - "top": 50.736455, - "right": -59.0625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 86, - "left": -59.0625, - "top": 50.736455, - "right": -57.65625, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 86, - "left": -57.65625, - "top": 50.736455, - "right": -56.25, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 86, - "left": -56.25, - "top": 50.736455, - "right": -54.84375, - "bottom": 49.837982, - "countries": [ - "canada" - ] - }, - { - "x": 37, - "y": 87, - "left": -127.96875, - "top": 49.837982, - "right": -126.5625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 87, - "left": -126.5625, - "top": 49.837982, - "right": -125.15625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 87, - "left": -125.15625, - "top": 49.837982, - "right": -123.75, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 40, - "y": 87, - "left": -123.75, - "top": 49.837982, - "right": -122.34375, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 41, - "y": 87, - "left": -122.34375, - "top": 49.837982, - "right": -120.9375, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 42, - "y": 87, - "left": -120.9375, - "top": 49.837982, - "right": -119.53125, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 43, - "y": 87, - "left": -119.53125, - "top": 49.837982, - "right": -118.125, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 44, - "y": 87, - "left": -118.125, - "top": 49.837982, - "right": -116.71875, - "bottom": 48.922499, - "countries": [ - "idaho", - "washington", - "canada" - ] - }, - { - "x": 45, - "y": 87, - "left": -116.71875, - "top": 49.837982, - "right": -115.3125, - "bottom": 48.922499, - "countries": [ - "idaho", - "montana", - "canada" - ] - }, - { - "x": 46, - "y": 87, - "left": -115.3125, - "top": 49.837982, - "right": -113.90625, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 47, - "y": 87, - "left": -113.90625, - "top": 49.837982, - "right": -112.5, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 48, - "y": 87, - "left": -112.5, - "top": 49.837982, - "right": -111.09375, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 49, - "y": 87, - "left": -111.09375, - "top": 49.837982, - "right": -109.6875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 50, - "y": 87, - "left": -109.6875, - "top": 49.837982, - "right": -108.28125, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 51, - "y": 87, - "left": -108.28125, - "top": 49.837982, - "right": -106.875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 52, - "y": 87, - "left": -106.875, - "top": 49.837982, - "right": -105.46875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 53, - "y": 87, - "left": -105.46875, - "top": 49.837982, - "right": -104.0625, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 54, - "y": 87, - "left": -104.0625, - "top": 49.837982, - "right": -102.65625, - "bottom": 48.922499, - "countries": [ - "montana", - "north_dakota", - "canada" - ] - }, - { - "x": 55, - "y": 87, - "left": -102.65625, - "top": 49.837982, - "right": -101.25, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 56, - "y": 87, - "left": -101.25, - "top": 49.837982, - "right": -99.84375, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 57, - "y": 87, - "left": -99.84375, - "top": 49.837982, - "right": -98.4375, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 58, - "y": 87, - "left": -98.4375, - "top": 49.837982, - "right": -97.03125, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "minnesota", - "canada" - ] - }, - { - "x": 59, - "y": 87, - "left": -97.03125, - "top": 49.837982, - "right": -95.625, - "bottom": 48.922499, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 60, - "y": 87, - "left": -95.625, - "top": 49.837982, - "right": -94.21875, - "bottom": 48.922499, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 61, - "y": 87, - "left": -94.21875, - "top": 49.837982, - "right": -92.8125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 62, - "y": 87, - "left": -92.8125, - "top": 49.837982, - "right": -91.40625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 63, - "y": 87, - "left": -91.40625, - "top": 49.837982, - "right": -90.0, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 87, - "left": -90.0, - "top": 49.837982, - "right": -88.59375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 65, - "y": 87, - "left": -88.59375, - "top": 49.837982, - "right": -87.1875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 66, - "y": 87, - "left": -87.1875, - "top": 49.837982, - "right": -85.78125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 87, - "left": -85.78125, - "top": 49.837982, - "right": -84.375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 87, - "left": -84.375, - "top": 49.837982, - "right": -82.96875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 87, - "left": -82.96875, - "top": 49.837982, - "right": -81.5625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 87, - "left": -81.5625, - "top": 49.837982, - "right": -80.15625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 87, - "left": -80.15625, - "top": 49.837982, - "right": -78.75, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 87, - "left": -78.75, - "top": 49.837982, - "right": -77.34375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 87, - "left": -77.34375, - "top": 49.837982, - "right": -75.9375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 87, - "left": -75.9375, - "top": 49.837982, - "right": -74.53125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 87, - "left": -74.53125, - "top": 49.837982, - "right": -73.125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 87, - "left": -73.125, - "top": 49.837982, - "right": -71.71875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 87, - "left": -71.71875, - "top": 49.837982, - "right": -70.3125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 87, - "left": -70.3125, - "top": 49.837982, - "right": -68.90625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 87, - "left": -68.90625, - "top": 49.837982, - "right": -67.5, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 87, - "left": -67.5, - "top": 49.837982, - "right": -66.09375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 87, - "left": -66.09375, - "top": 49.837982, - "right": -64.6875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 87, - "left": -64.6875, - "top": 49.837982, - "right": -63.28125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 87, - "left": -63.28125, - "top": 49.837982, - "right": -61.875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 87, - "left": -61.875, - "top": 49.837982, - "right": -60.46875, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 87, - "left": -59.0625, - "top": 49.837982, - "right": -57.65625, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 87, - "left": -57.65625, - "top": 49.837982, - "right": -56.25, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 87, - "left": -56.25, - "top": 49.837982, - "right": -54.84375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 89, - "y": 87, - "left": -54.84375, - "top": 49.837982, - "right": -53.4375, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 90, - "y": 87, - "left": -53.4375, - "top": 49.837982, - "right": -52.03125, - "bottom": 48.922499, - "countries": [ - "canada" - ] - }, - { - "x": 38, - "y": 88, - "left": -126.5625, - "top": 48.922499, - "right": -125.15625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 39, - "y": 88, - "left": -125.15625, - "top": 48.922499, - "right": -123.75, - "bottom": 47.989922, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 40, - "y": 88, - "left": -123.75, - "top": 48.922499, - "right": -122.34375, - "bottom": 47.989922, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 60, - "y": 88, - "left": -95.625, - "top": 48.922499, - "right": -94.21875, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 61, - "y": 88, - "left": -94.21875, - "top": 48.922499, - "right": -92.8125, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 62, - "y": 88, - "left": -92.8125, - "top": 48.922499, - "right": -91.40625, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 63, - "y": 88, - "left": -91.40625, - "top": 48.922499, - "right": -90.0, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 64, - "y": 88, - "left": -90.0, - "top": 48.922499, - "right": -88.59375, - "bottom": 47.989922, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 65, - "y": 88, - "left": -88.59375, - "top": 48.922499, - "right": -87.1875, - "bottom": 47.989922, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 66, - "y": 88, - "left": -87.1875, - "top": 48.922499, - "right": -85.78125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 88, - "left": -85.78125, - "top": 48.922499, - "right": -84.375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 88, - "left": -84.375, - "top": 48.922499, - "right": -82.96875, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 88, - "left": -82.96875, - "top": 48.922499, - "right": -81.5625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 88, - "left": -81.5625, - "top": 48.922499, - "right": -80.15625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 88, - "left": -80.15625, - "top": 48.922499, - "right": -78.75, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 88, - "left": -78.75, - "top": 48.922499, - "right": -77.34375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 88, - "left": -77.34375, - "top": 48.922499, - "right": -75.9375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 88, - "left": -75.9375, - "top": 48.922499, - "right": -74.53125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 88, - "left": -74.53125, - "top": 48.922499, - "right": -73.125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 88, - "left": -73.125, - "top": 48.922499, - "right": -71.71875, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 88, - "left": -71.71875, - "top": 48.922499, - "right": -70.3125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 88, - "left": -70.3125, - "top": 48.922499, - "right": -68.90625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 79, - "y": 88, - "left": -68.90625, - "top": 48.922499, - "right": -67.5, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 80, - "y": 88, - "left": -67.5, - "top": 48.922499, - "right": -66.09375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 88, - "left": -66.09375, - "top": 48.922499, - "right": -64.6875, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 88, - "left": -64.6875, - "top": 48.922499, - "right": -63.28125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 88, - "left": -60.46875, - "top": 48.922499, - "right": -59.0625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 88, - "left": -59.0625, - "top": 48.922499, - "right": -57.65625, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 88, - "left": -57.65625, - "top": 48.922499, - "right": -56.25, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 88, - "left": -56.25, - "top": 48.922499, - "right": -54.84375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 89, - "y": 88, - "left": -54.84375, - "top": 48.922499, - "right": -53.4375, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 90, - "y": 88, - "left": -53.4375, - "top": 48.922499, - "right": -52.03125, - "bottom": 47.989922, - "countries": [ - "canada" - ] - }, - { - "x": 64, - "y": 89, - "left": -90.0, - "top": 47.989922, - "right": -88.59375, - "bottom": 47.040182, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 66, - "y": 89, - "left": -87.1875, - "top": 47.989922, - "right": -85.78125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 89, - "left": -85.78125, - "top": 47.989922, - "right": -84.375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 89, - "left": -84.375, - "top": 47.989922, - "right": -82.96875, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 89, - "left": -82.96875, - "top": 47.989922, - "right": -81.5625, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 89, - "left": -81.5625, - "top": 47.989922, - "right": -80.15625, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 89, - "left": -80.15625, - "top": 47.989922, - "right": -78.75, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 89, - "left": -78.75, - "top": 47.989922, - "right": -77.34375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 89, - "left": -77.34375, - "top": 47.989922, - "right": -75.9375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 89, - "left": -75.9375, - "top": 47.989922, - "right": -74.53125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 89, - "left": -74.53125, - "top": 47.989922, - "right": -73.125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 89, - "left": -73.125, - "top": 47.989922, - "right": -71.71875, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 89, - "left": -71.71875, - "top": 47.989922, - "right": -70.3125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 89, - "left": -70.3125, - "top": 47.989922, - "right": -68.90625, - "bottom": 47.040182, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 89, - "left": -68.90625, - "top": 47.989922, - "right": -67.5, - "bottom": 47.040182, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 80, - "y": 89, - "left": -67.5, - "top": 47.989922, - "right": -66.09375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 89, - "left": -66.09375, - "top": 47.989922, - "right": -64.6875, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 89, - "left": -64.6875, - "top": 47.989922, - "right": -63.28125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 89, - "left": -63.28125, - "top": 47.989922, - "right": -61.875, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 89, - "left": -61.875, - "top": 47.989922, - "right": -60.46875, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 89, - "left": -60.46875, - "top": 47.989922, - "right": -59.0625, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 86, - "y": 89, - "left": -59.0625, - "top": 47.989922, - "right": -57.65625, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 87, - "y": 89, - "left": -57.65625, - "top": 47.989922, - "right": -56.25, - "bottom": 47.040182, - "countries": [ - "saint_pierre_and_miquelon", - "canada" - ] - }, - { - "x": 88, - "y": 89, - "left": -56.25, - "top": 47.989922, - "right": -54.84375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 89, - "y": 89, - "left": -54.84375, - "top": 47.989922, - "right": -53.4375, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 90, - "y": 89, - "left": -53.4375, - "top": 47.989922, - "right": -52.03125, - "bottom": 47.040182, - "countries": [ - "canada" - ] - }, - { - "x": 67, - "y": 90, - "left": -85.78125, - "top": 47.040182, - "right": -84.375, - "bottom": 46.073231, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 68, - "y": 90, - "left": -84.375, - "top": 47.040182, - "right": -82.96875, - "bottom": 46.073231, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 69, - "y": 90, - "left": -82.96875, - "top": 47.040182, - "right": -81.5625, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 90, - "left": -81.5625, - "top": 47.040182, - "right": -80.15625, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 90, - "left": -80.15625, - "top": 47.040182, - "right": -78.75, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 90, - "left": -78.75, - "top": 47.040182, - "right": -77.34375, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 90, - "left": -77.34375, - "top": 47.040182, - "right": -75.9375, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 90, - "left": -75.9375, - "top": 47.040182, - "right": -74.53125, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 90, - "left": -74.53125, - "top": 47.040182, - "right": -73.125, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 90, - "left": -73.125, - "top": 47.040182, - "right": -71.71875, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 90, - "left": -71.71875, - "top": 47.040182, - "right": -70.3125, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 78, - "y": 90, - "left": -70.3125, - "top": 47.040182, - "right": -68.90625, - "bottom": 46.073231, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 90, - "left": -68.90625, - "top": 47.040182, - "right": -67.5, - "bottom": 46.073231, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 80, - "y": 90, - "left": -67.5, - "top": 47.040182, - "right": -66.09375, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 90, - "left": -66.09375, - "top": 47.040182, - "right": -64.6875, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 90, - "left": -64.6875, - "top": 47.040182, - "right": -63.28125, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 90, - "left": -63.28125, - "top": 47.040182, - "right": -61.875, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 90, - "left": -61.875, - "top": 47.040182, - "right": -60.46875, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 90, - "left": -60.46875, - "top": 47.040182, - "right": -59.0625, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 88, - "y": 90, - "left": -56.25, - "top": 47.040182, - "right": -54.84375, - "bottom": 46.073231, - "countries": [ - "saint_pierre_and_miquelon", - "canada" - ] - }, - { - "x": 89, - "y": 90, - "left": -54.84375, - "top": 47.040182, - "right": -53.4375, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 90, - "y": 90, - "left": -53.4375, - "top": 47.040182, - "right": -52.03125, - "bottom": 46.073231, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 91, - "left": -84.375, - "top": 46.073231, - "right": -82.96875, - "bottom": 45.089036, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 69, - "y": 91, - "left": -82.96875, - "top": 46.073231, - "right": -81.5625, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 91, - "left": -81.5625, - "top": 46.073231, - "right": -80.15625, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 91, - "left": -80.15625, - "top": 46.073231, - "right": -78.75, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 91, - "left": -78.75, - "top": 46.073231, - "right": -77.34375, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 91, - "left": -77.34375, - "top": 46.073231, - "right": -75.9375, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 74, - "y": 91, - "left": -75.9375, - "top": 46.073231, - "right": -74.53125, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 75, - "y": 91, - "left": -74.53125, - "top": 46.073231, - "right": -73.125, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 76, - "y": 91, - "left": -73.125, - "top": 46.073231, - "right": -71.71875, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 77, - "y": 91, - "left": -71.71875, - "top": 46.073231, - "right": -70.3125, - "bottom": 45.089036, - "countries": [ - "maine", - "new_hampshire", - "canada" - ] - }, - { - "x": 78, - "y": 91, - "left": -70.3125, - "top": 46.073231, - "right": -68.90625, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 91, - "left": -68.90625, - "top": 46.073231, - "right": -67.5, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 80, - "y": 91, - "left": -67.5, - "top": 46.073231, - "right": -66.09375, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 81, - "y": 91, - "left": -66.09375, - "top": 46.073231, - "right": -64.6875, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 91, - "left": -64.6875, - "top": 46.073231, - "right": -63.28125, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 91, - "left": -63.28125, - "top": 46.073231, - "right": -61.875, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 91, - "left": -61.875, - "top": 46.073231, - "right": -60.46875, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 91, - "left": -60.46875, - "top": 46.073231, - "right": -59.0625, - "bottom": 45.089036, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 92, - "left": -82.96875, - "top": 45.089036, - "right": -81.5625, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 70, - "y": 92, - "left": -81.5625, - "top": 45.089036, - "right": -80.15625, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 92, - "left": -80.15625, - "top": 45.089036, - "right": -78.75, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 72, - "y": 92, - "left": -78.75, - "top": 45.089036, - "right": -77.34375, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 73, - "y": 92, - "left": -77.34375, - "top": 45.089036, - "right": -75.9375, - "bottom": 44.087585, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 74, - "y": 92, - "left": -75.9375, - "top": 45.089036, - "right": -74.53125, - "bottom": 44.087585, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 75, - "y": 92, - "left": -74.53125, - "top": 45.089036, - "right": -73.125, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_york", - "canada" - ] - }, - { - "x": 76, - "y": 92, - "left": -73.125, - "top": 45.089036, - "right": -71.71875, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 77, - "y": 92, - "left": -71.71875, - "top": 45.089036, - "right": -70.3125, - "bottom": 44.087585, - "countries": [ - "maine", - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 80, - "y": 92, - "left": -67.5, - "top": 45.089036, - "right": -66.09375, - "bottom": 44.087585, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 81, - "y": 92, - "left": -66.09375, - "top": 45.089036, - "right": -64.6875, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 92, - "left": -64.6875, - "top": 45.089036, - "right": -63.28125, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 83, - "y": 92, - "left": -63.28125, - "top": 45.089036, - "right": -61.875, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 84, - "y": 92, - "left": -61.875, - "top": 45.089036, - "right": -60.46875, - "bottom": 44.087585, - "countries": [ - "canada" - ] - }, - { - "x": 69, - "y": 93, - "left": -82.96875, - "top": 44.087585, - "right": -81.5625, - "bottom": 43.068888, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 70, - "y": 93, - "left": -81.5625, - "top": 44.087585, - "right": -80.15625, - "bottom": 43.068888, - "countries": [ - "canada" - ] - }, - { - "x": 71, - "y": 93, - "left": -80.15625, - "top": 44.087585, - "right": -78.75, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 72, - "y": 93, - "left": -78.75, - "top": 44.087585, - "right": -77.34375, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 73, - "y": 93, - "left": -77.34375, - "top": 44.087585, - "right": -75.9375, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 80, - "y": 93, - "left": -67.5, - "top": 44.087585, - "right": -66.09375, - "bottom": 43.068888, - "countries": [ - "canada" - ] - }, - { - "x": 81, - "y": 93, - "left": -66.09375, - "top": 44.087585, - "right": -64.6875, - "bottom": 43.068888, - "countries": [ - "canada" - ] - }, - { - "x": 82, - "y": 93, - "left": -64.6875, - "top": 44.087585, - "right": -63.28125, - "bottom": 43.068888, - "countries": [ - "canada" - ] - }, - { - "x": 85, - "y": 93, - "left": -60.46875, - "top": 44.087585, - "right": -59.0625, - "bottom": 43.068888, - "countries": [ - "canada" - ] - }, - { - "x": 68, - "y": 94, - "left": -84.375, - "top": 43.068888, - "right": -82.96875, - "bottom": 42.032974, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 69, - "y": 94, - "left": -82.96875, - "top": 43.068888, - "right": -81.5625, - "bottom": 42.032974, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 70, - "y": 94, - "left": -81.5625, - "top": 43.068888, - "right": -80.15625, - "bottom": 42.032974, - "countries": [ - "pennsylvania", - "canada" - ] - }, - { - "x": 71, - "y": 94, - "left": -80.15625, - "top": 43.068888, - "right": -78.75, - "bottom": 42.032974, - "countries": [ - "pennsylvania", - "new_york", - "canada" - ] - }, - { - "x": 68, - "y": 95, - "left": -84.375, - "top": 42.032974, - "right": -82.96875, - "bottom": 40.979898, - "countries": [ - "michigan", - "ohio", - "canada" - ] - }, - { - "x": 69, - "y": 95, - "left": -82.96875, - "top": 42.032974, - "right": -81.5625, - "bottom": 40.979898, - "countries": [ - "ohio", - "canada" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/cayman_islands.json b/wahoomc/resources/json/north_america/cayman_islands.json deleted file mode 100644 index 8ac986e5..00000000 --- a/wahoomc/resources/json/north_america/cayman_islands.json +++ /dev/null @@ -1,35 +0,0 @@ -[ - { - "x": 70, - "y": 113, - "left": -81.5625, - "top": 20.632784, - "right": -80.15625, - "bottom": 19.311143, - "countries": [ - "cayman_islands" - ] - }, - { - "x": 71, - "y": 113, - "left": -80.15625, - "top": 20.632784, - "right": -78.75, - "bottom": 19.311143, - "countries": [ - "cayman_islands" - ] - }, - { - "x": 70, - "y": 114, - "left": -81.5625, - "top": 19.311143, - "right": -80.15625, - "bottom": 17.978733, - "countries": [ - "cayman_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/costa_rica.json b/wahoomc/resources/json/north_america/costa_rica.json deleted file mode 100644 index 8629a1b9..00000000 --- a/wahoomc/resources/json/north_america/costa_rica.json +++ /dev/null @@ -1,130 +0,0 @@ -[ - { - "x": 67, - "y": 119, - "left": -85.78125, - "top": 12.554564, - "right": -84.375, - "bottom": 11.178402, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 66, - "y": 120, - "left": -87.1875, - "top": 11.178402, - "right": -85.78125, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 67, - "y": 120, - "left": -85.78125, - "top": 11.178402, - "right": -84.375, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 68, - "y": 120, - "left": -84.375, - "top": 11.178402, - "right": -82.96875, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 69, - "y": 120, - "left": -82.96875, - "top": 11.178402, - "right": -81.5625, - "bottom": 9.795678, - "countries": [ - "costa_rica" - ] - }, - { - "x": 67, - "y": 121, - "left": -85.78125, - "top": 9.795678, - "right": -84.375, - "bottom": 8.407168, - "countries": [ - "costa_rica" - ] - }, - { - "x": 68, - "y": 121, - "left": -84.375, - "top": 9.795678, - "right": -82.96875, - "bottom": 8.407168, - "countries": [ - "costa_rica" - ] - }, - { - "x": 69, - "y": 121, - "left": -82.96875, - "top": 9.795678, - "right": -81.5625, - "bottom": 8.407168, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 68, - "y": 122, - "left": -84.375, - "top": 8.407168, - "right": -82.96875, - "bottom": 7.013668, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 69, - "y": 122, - "left": -82.96875, - "top": 8.407168, - "right": -81.5625, - "bottom": 7.013668, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 66, - "y": 124, - "left": -87.1875, - "top": 5.615986, - "right": -85.78125, - "bottom": 4.214943, - "countries": [ - "costa_rica" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/cuba.json b/wahoomc/resources/json/north_america/cuba.json deleted file mode 100644 index 85eefdd3..00000000 --- a/wahoomc/resources/json/north_america/cuba.json +++ /dev/null @@ -1,224 +0,0 @@ -[ - { - "x": 70, - "y": 110, - "left": -81.5625, - "top": 24.527135, - "right": -80.15625, - "bottom": 23.241346, - "countries": [ - "cuba", - "bahamas" - ] - }, - { - "x": 71, - "y": 110, - "left": -80.15625, - "top": 24.527135, - "right": -78.75, - "bottom": 23.241346, - "countries": [ - "cuba" - ] - }, - { - "x": 67, - "y": 111, - "left": -85.78125, - "top": 23.241346, - "right": -84.375, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 68, - "y": 111, - "left": -84.375, - "top": 23.241346, - "right": -82.96875, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 69, - "y": 111, - "left": -82.96875, - "top": 23.241346, - "right": -81.5625, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 70, - "y": 111, - "left": -81.5625, - "top": 23.241346, - "right": -80.15625, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 71, - "y": 111, - "left": -80.15625, - "top": 23.241346, - "right": -78.75, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 72, - "y": 111, - "left": -78.75, - "top": 23.241346, - "right": -77.34375, - "bottom": 21.943046, - "countries": [ - "cuba" - ] - }, - { - "x": 67, - "y": 112, - "left": -85.78125, - "top": 21.943046, - "right": -84.375, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 68, - "y": 112, - "left": -84.375, - "top": 21.943046, - "right": -82.96875, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 69, - "y": 112, - "left": -82.96875, - "top": 21.943046, - "right": -81.5625, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 70, - "y": 112, - "left": -81.5625, - "top": 21.943046, - "right": -80.15625, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 71, - "y": 112, - "left": -80.15625, - "top": 21.943046, - "right": -78.75, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 72, - "y": 112, - "left": -78.75, - "top": 21.943046, - "right": -77.34375, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 73, - "y": 112, - "left": -77.34375, - "top": 21.943046, - "right": -75.9375, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 74, - "y": 112, - "left": -75.9375, - "top": 21.943046, - "right": -74.53125, - "bottom": 20.632784, - "countries": [ - "cuba" - ] - }, - { - "x": 72, - "y": 113, - "left": -78.75, - "top": 20.632784, - "right": -77.34375, - "bottom": 19.311143, - "countries": [ - "cuba" - ] - }, - { - "x": 73, - "y": 113, - "left": -77.34375, - "top": 20.632784, - "right": -75.9375, - "bottom": 19.311143, - "countries": [ - "cuba" - ] - }, - { - "x": 74, - "y": 113, - "left": -75.9375, - "top": 20.632784, - "right": -74.53125, - "bottom": 19.311143, - "countries": [ - "cuba" - ] - }, - { - "x": 75, - "y": 113, - "left": -74.53125, - "top": 20.632784, - "right": -73.125, - "bottom": 19.311143, - "countries": [ - "haiti", - "cuba" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/dominica.json b/wahoomc/resources/json/north_america/dominica.json deleted file mode 100644 index 0eca4686..00000000 --- a/wahoomc/resources/json/north_america/dominica.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "x": 84, - "y": 116, - "left": -61.875, - "top": 16.636192, - "right": -60.46875, - "bottom": 15.284185, - "countries": [ - "guadeloupe", - "dominica" - ] - }, - { - "x": 84, - "y": 117, - "left": -61.875, - "top": 15.284185, - "right": -60.46875, - "bottom": 13.923404, - "countries": [ - "martinique", - "dominica", - "saint_lucia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/dominican_republic.json b/wahoomc/resources/json/north_america/dominican_republic.json deleted file mode 100644 index 98b10fd2..00000000 --- a/wahoomc/resources/json/north_america/dominican_republic.json +++ /dev/null @@ -1,95 +0,0 @@ -[ - { - "x": 76, - "y": 113, - "left": -73.125, - "top": 20.632784, - "right": -71.71875, - "bottom": 19.311143, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 77, - "y": 113, - "left": -71.71875, - "top": 20.632784, - "right": -70.3125, - "bottom": 19.311143, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 78, - "y": 113, - "left": -70.3125, - "top": 20.632784, - "right": -68.90625, - "bottom": 19.311143, - "countries": [ - "dominican_republic" - ] - }, - { - "x": 76, - "y": 114, - "left": -73.125, - "top": 19.311143, - "right": -71.71875, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 77, - "y": 114, - "left": -71.71875, - "top": 19.311143, - "right": -70.3125, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 78, - "y": 114, - "left": -70.3125, - "top": 19.311143, - "right": -68.90625, - "bottom": 17.978733, - "countries": [ - "dominican_republic" - ] - }, - { - "x": 79, - "y": 114, - "left": -68.90625, - "top": 19.311143, - "right": -67.5, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "puerto_rico" - ] - }, - { - "x": 77, - "y": 115, - "left": -71.71875, - "top": 17.978733, - "right": -70.3125, - "bottom": 16.636192, - "countries": [ - "dominican_republic" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/el_salvador.json b/wahoomc/resources/json/north_america/el_salvador.json deleted file mode 100644 index e52e6005..00000000 --- a/wahoomc/resources/json/north_america/el_salvador.json +++ /dev/null @@ -1,75 +0,0 @@ -[ - { - "x": 63, - "y": 117, - "left": -91.40625, - "top": 15.284185, - "right": -90.0, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "guatemala" - ] - }, - { - "x": 64, - "y": 117, - "left": -90.0, - "top": 15.284185, - "right": -88.59375, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "guatemala", - "honduras" - ] - }, - { - "x": 65, - "y": 117, - "left": -88.59375, - "top": 15.284185, - "right": -87.1875, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "honduras" - ] - }, - { - "x": 63, - "y": 118, - "left": -91.40625, - "top": 13.923404, - "right": -90.0, - "bottom": 12.554564, - "countries": [ - "el_salvador", - "guatemala" - ] - }, - { - "x": 64, - "y": 118, - "left": -90.0, - "top": 13.923404, - "right": -88.59375, - "bottom": 12.554564, - "countries": [ - "el_salvador" - ] - }, - { - "x": 65, - "y": 118, - "left": -88.59375, - "top": 13.923404, - "right": -87.1875, - "bottom": 12.554564, - "countries": [ - "el_salvador", - "honduras", - "nicaragua" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/greenland.json b/wahoomc/resources/json/north_america/greenland.json deleted file mode 100644 index f2b62573..00000000 --- a/wahoomc/resources/json/north_america/greenland.json +++ /dev/null @@ -1,18471 +0,0 @@ -[ - { - "x": 101, - "y": 10, - "left": -37.96875, - "top": 83.676943, - "right": -36.5625, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 10, - "left": -36.5625, - "top": 83.676943, - "right": -35.15625, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 10, - "left": -35.15625, - "top": 83.676943, - "right": -33.75, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 10, - "left": -33.75, - "top": 83.676943, - "right": -32.34375, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 10, - "left": -32.34375, - "top": 83.676943, - "right": -30.9375, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 10, - "left": -30.9375, - "top": 83.676943, - "right": -29.53125, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 10, - "left": -29.53125, - "top": 83.676943, - "right": -28.125, - "bottom": 83.520162, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 11, - "left": -40.78125, - "top": 83.520162, - "right": -39.375, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 11, - "left": -39.375, - "top": 83.520162, - "right": -37.96875, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 11, - "left": -37.96875, - "top": 83.520162, - "right": -36.5625, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 11, - "left": -36.5625, - "top": 83.520162, - "right": -35.15625, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 11, - "left": -35.15625, - "top": 83.520162, - "right": -33.75, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 11, - "left": -33.75, - "top": 83.520162, - "right": -32.34375, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 11, - "left": -32.34375, - "top": 83.520162, - "right": -30.9375, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 11, - "left": -30.9375, - "top": 83.520162, - "right": -29.53125, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 11, - "left": -29.53125, - "top": 83.520162, - "right": -28.125, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 11, - "left": -28.125, - "top": 83.520162, - "right": -26.71875, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 11, - "left": -26.71875, - "top": 83.520162, - "right": -25.3125, - "bottom": 83.359511, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 12, - "left": -45.0, - "top": 83.359511, - "right": -43.59375, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 12, - "left": -43.59375, - "top": 83.359511, - "right": -42.1875, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 12, - "left": -42.1875, - "top": 83.359511, - "right": -40.78125, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 12, - "left": -40.78125, - "top": 83.359511, - "right": -39.375, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 12, - "left": -39.375, - "top": 83.359511, - "right": -37.96875, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 12, - "left": -37.96875, - "top": 83.359511, - "right": -36.5625, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 12, - "left": -36.5625, - "top": 83.359511, - "right": -35.15625, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 12, - "left": -35.15625, - "top": 83.359511, - "right": -33.75, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 12, - "left": -33.75, - "top": 83.359511, - "right": -32.34375, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 12, - "left": -32.34375, - "top": 83.359511, - "right": -30.9375, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 12, - "left": -30.9375, - "top": 83.359511, - "right": -29.53125, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 12, - "left": -29.53125, - "top": 83.359511, - "right": -28.125, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 12, - "left": -28.125, - "top": 83.359511, - "right": -26.71875, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 12, - "left": -26.71875, - "top": 83.359511, - "right": -25.3125, - "bottom": 83.194896, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 13, - "left": -47.8125, - "top": 83.194896, - "right": -46.40625, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 13, - "left": -46.40625, - "top": 83.194896, - "right": -45.0, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 13, - "left": -45.0, - "top": 83.194896, - "right": -43.59375, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 13, - "left": -43.59375, - "top": 83.194896, - "right": -42.1875, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 13, - "left": -42.1875, - "top": 83.194896, - "right": -40.78125, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 13, - "left": -40.78125, - "top": 83.194896, - "right": -39.375, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 13, - "left": -39.375, - "top": 83.194896, - "right": -37.96875, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 13, - "left": -37.96875, - "top": 83.194896, - "right": -36.5625, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 13, - "left": -36.5625, - "top": 83.194896, - "right": -35.15625, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 13, - "left": -35.15625, - "top": 83.194896, - "right": -33.75, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 13, - "left": -33.75, - "top": 83.194896, - "right": -32.34375, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 13, - "left": -32.34375, - "top": 83.194896, - "right": -30.9375, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 13, - "left": -30.9375, - "top": 83.194896, - "right": -29.53125, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 13, - "left": -29.53125, - "top": 83.194896, - "right": -28.125, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 13, - "left": -28.125, - "top": 83.194896, - "right": -26.71875, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 13, - "left": -26.71875, - "top": 83.194896, - "right": -25.3125, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 13, - "left": -25.3125, - "top": 83.194896, - "right": -23.90625, - "bottom": 83.026219, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 14, - "left": -49.21875, - "top": 83.026219, - "right": -47.8125, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 14, - "left": -47.8125, - "top": 83.026219, - "right": -46.40625, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 14, - "left": -46.40625, - "top": 83.026219, - "right": -45.0, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 14, - "left": -45.0, - "top": 83.026219, - "right": -43.59375, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 14, - "left": -43.59375, - "top": 83.026219, - "right": -42.1875, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 14, - "left": -42.1875, - "top": 83.026219, - "right": -40.78125, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 14, - "left": -40.78125, - "top": 83.026219, - "right": -39.375, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 14, - "left": -39.375, - "top": 83.026219, - "right": -37.96875, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 14, - "left": -37.96875, - "top": 83.026219, - "right": -36.5625, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 14, - "left": -36.5625, - "top": 83.026219, - "right": -35.15625, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 14, - "left": -35.15625, - "top": 83.026219, - "right": -33.75, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 14, - "left": -33.75, - "top": 83.026219, - "right": -32.34375, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 14, - "left": -32.34375, - "top": 83.026219, - "right": -30.9375, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 14, - "left": -30.9375, - "top": 83.026219, - "right": -29.53125, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 14, - "left": -29.53125, - "top": 83.026219, - "right": -28.125, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 14, - "left": -28.125, - "top": 83.026219, - "right": -26.71875, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 14, - "left": -26.71875, - "top": 83.026219, - "right": -25.3125, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 14, - "left": -25.3125, - "top": 83.026219, - "right": -23.90625, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 14, - "left": -23.90625, - "top": 83.026219, - "right": -22.5, - "bottom": 82.853382, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 15, - "left": -50.625, - "top": 82.853382, - "right": -49.21875, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 15, - "left": -49.21875, - "top": 82.853382, - "right": -47.8125, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 15, - "left": -47.8125, - "top": 82.853382, - "right": -46.40625, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 15, - "left": -46.40625, - "top": 82.853382, - "right": -45.0, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 15, - "left": -45.0, - "top": 82.853382, - "right": -43.59375, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 15, - "left": -43.59375, - "top": 82.853382, - "right": -42.1875, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 15, - "left": -42.1875, - "top": 82.853382, - "right": -40.78125, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 15, - "left": -40.78125, - "top": 82.853382, - "right": -39.375, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 15, - "left": -39.375, - "top": 82.853382, - "right": -37.96875, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 15, - "left": -37.96875, - "top": 82.853382, - "right": -36.5625, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 15, - "left": -36.5625, - "top": 82.853382, - "right": -35.15625, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 15, - "left": -35.15625, - "top": 82.853382, - "right": -33.75, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 15, - "left": -33.75, - "top": 82.853382, - "right": -32.34375, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 15, - "left": -32.34375, - "top": 82.853382, - "right": -30.9375, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 15, - "left": -30.9375, - "top": 82.853382, - "right": -29.53125, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 15, - "left": -29.53125, - "top": 82.853382, - "right": -28.125, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 15, - "left": -28.125, - "top": 82.853382, - "right": -26.71875, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 15, - "left": -26.71875, - "top": 82.853382, - "right": -25.3125, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 15, - "left": -25.3125, - "top": 82.853382, - "right": -23.90625, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 15, - "left": -23.90625, - "top": 82.853382, - "right": -22.5, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 15, - "left": -22.5, - "top": 82.853382, - "right": -21.09375, - "bottom": 82.676285, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 16, - "left": -52.03125, - "top": 82.676285, - "right": -50.625, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 16, - "left": -50.625, - "top": 82.676285, - "right": -49.21875, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 16, - "left": -49.21875, - "top": 82.676285, - "right": -47.8125, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 16, - "left": -47.8125, - "top": 82.676285, - "right": -46.40625, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 16, - "left": -46.40625, - "top": 82.676285, - "right": -45.0, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 16, - "left": -45.0, - "top": 82.676285, - "right": -43.59375, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 16, - "left": -43.59375, - "top": 82.676285, - "right": -42.1875, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 16, - "left": -42.1875, - "top": 82.676285, - "right": -40.78125, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 16, - "left": -40.78125, - "top": 82.676285, - "right": -39.375, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 16, - "left": -39.375, - "top": 82.676285, - "right": -37.96875, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 16, - "left": -37.96875, - "top": 82.676285, - "right": -36.5625, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 16, - "left": -36.5625, - "top": 82.676285, - "right": -35.15625, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 16, - "left": -35.15625, - "top": 82.676285, - "right": -33.75, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 16, - "left": -33.75, - "top": 82.676285, - "right": -32.34375, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 16, - "left": -32.34375, - "top": 82.676285, - "right": -30.9375, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 16, - "left": -30.9375, - "top": 82.676285, - "right": -29.53125, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 16, - "left": -29.53125, - "top": 82.676285, - "right": -28.125, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 16, - "left": -28.125, - "top": 82.676285, - "right": -26.71875, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 16, - "left": -26.71875, - "top": 82.676285, - "right": -25.3125, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 16, - "left": -25.3125, - "top": 82.676285, - "right": -23.90625, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 16, - "left": -23.90625, - "top": 82.676285, - "right": -22.5, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 16, - "left": -22.5, - "top": 82.676285, - "right": -21.09375, - "bottom": 82.494824, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 17, - "left": -56.25, - "top": 82.494824, - "right": -54.84375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 17, - "left": -54.84375, - "top": 82.494824, - "right": -53.4375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 17, - "left": -53.4375, - "top": 82.494824, - "right": -52.03125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 17, - "left": -52.03125, - "top": 82.494824, - "right": -50.625, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 17, - "left": -50.625, - "top": 82.494824, - "right": -49.21875, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 17, - "left": -49.21875, - "top": 82.494824, - "right": -47.8125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 17, - "left": -47.8125, - "top": 82.494824, - "right": -46.40625, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 17, - "left": -46.40625, - "top": 82.494824, - "right": -45.0, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 17, - "left": -45.0, - "top": 82.494824, - "right": -43.59375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 17, - "left": -43.59375, - "top": 82.494824, - "right": -42.1875, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 17, - "left": -42.1875, - "top": 82.494824, - "right": -40.78125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 17, - "left": -40.78125, - "top": 82.494824, - "right": -39.375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 17, - "left": -39.375, - "top": 82.494824, - "right": -37.96875, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 17, - "left": -37.96875, - "top": 82.494824, - "right": -36.5625, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 17, - "left": -36.5625, - "top": 82.494824, - "right": -35.15625, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 17, - "left": -35.15625, - "top": 82.494824, - "right": -33.75, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 17, - "left": -33.75, - "top": 82.494824, - "right": -32.34375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 17, - "left": -32.34375, - "top": 82.494824, - "right": -30.9375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 17, - "left": -30.9375, - "top": 82.494824, - "right": -29.53125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 17, - "left": -29.53125, - "top": 82.494824, - "right": -28.125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 17, - "left": -28.125, - "top": 82.494824, - "right": -26.71875, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 17, - "left": -26.71875, - "top": 82.494824, - "right": -25.3125, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 17, - "left": -25.3125, - "top": 82.494824, - "right": -23.90625, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 17, - "left": -23.90625, - "top": 82.494824, - "right": -22.5, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 17, - "left": -22.5, - "top": 82.494824, - "right": -21.09375, - "bottom": 82.308893, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 18, - "left": -59.0625, - "top": 82.308893, - "right": -57.65625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 18, - "left": -57.65625, - "top": 82.308893, - "right": -56.25, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 18, - "left": -56.25, - "top": 82.308893, - "right": -54.84375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 18, - "left": -54.84375, - "top": 82.308893, - "right": -53.4375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 18, - "left": -53.4375, - "top": 82.308893, - "right": -52.03125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 18, - "left": -52.03125, - "top": 82.308893, - "right": -50.625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 18, - "left": -50.625, - "top": 82.308893, - "right": -49.21875, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 18, - "left": -49.21875, - "top": 82.308893, - "right": -47.8125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 18, - "left": -47.8125, - "top": 82.308893, - "right": -46.40625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 18, - "left": -46.40625, - "top": 82.308893, - "right": -45.0, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 18, - "left": -45.0, - "top": 82.308893, - "right": -43.59375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 18, - "left": -43.59375, - "top": 82.308893, - "right": -42.1875, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 18, - "left": -42.1875, - "top": 82.308893, - "right": -40.78125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 18, - "left": -40.78125, - "top": 82.308893, - "right": -39.375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 18, - "left": -39.375, - "top": 82.308893, - "right": -37.96875, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 18, - "left": -37.96875, - "top": 82.308893, - "right": -36.5625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 18, - "left": -36.5625, - "top": 82.308893, - "right": -35.15625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 18, - "left": -35.15625, - "top": 82.308893, - "right": -33.75, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 18, - "left": -33.75, - "top": 82.308893, - "right": -32.34375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 18, - "left": -32.34375, - "top": 82.308893, - "right": -30.9375, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 18, - "left": -30.9375, - "top": 82.308893, - "right": -29.53125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 18, - "left": -29.53125, - "top": 82.308893, - "right": -28.125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 18, - "left": -28.125, - "top": 82.308893, - "right": -26.71875, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 18, - "left": -26.71875, - "top": 82.308893, - "right": -25.3125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 18, - "left": -25.3125, - "top": 82.308893, - "right": -23.90625, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 18, - "left": -23.90625, - "top": 82.308893, - "right": -22.5, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 18, - "left": -19.6875, - "top": 82.308893, - "right": -18.28125, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 18, - "left": -18.28125, - "top": 82.308893, - "right": -16.875, - "bottom": 82.118384, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 19, - "left": -60.46875, - "top": 82.118384, - "right": -59.0625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 19, - "left": -59.0625, - "top": 82.118384, - "right": -57.65625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 19, - "left": -57.65625, - "top": 82.118384, - "right": -56.25, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 19, - "left": -56.25, - "top": 82.118384, - "right": -54.84375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 19, - "left": -54.84375, - "top": 82.118384, - "right": -53.4375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 19, - "left": -53.4375, - "top": 82.118384, - "right": -52.03125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 19, - "left": -52.03125, - "top": 82.118384, - "right": -50.625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 19, - "left": -50.625, - "top": 82.118384, - "right": -49.21875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 19, - "left": -49.21875, - "top": 82.118384, - "right": -47.8125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 19, - "left": -47.8125, - "top": 82.118384, - "right": -46.40625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 19, - "left": -46.40625, - "top": 82.118384, - "right": -45.0, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 19, - "left": -45.0, - "top": 82.118384, - "right": -43.59375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 19, - "left": -43.59375, - "top": 82.118384, - "right": -42.1875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 19, - "left": -42.1875, - "top": 82.118384, - "right": -40.78125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 19, - "left": -40.78125, - "top": 82.118384, - "right": -39.375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 19, - "left": -39.375, - "top": 82.118384, - "right": -37.96875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 19, - "left": -37.96875, - "top": 82.118384, - "right": -36.5625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 19, - "left": -36.5625, - "top": 82.118384, - "right": -35.15625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 19, - "left": -35.15625, - "top": 82.118384, - "right": -33.75, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 19, - "left": -33.75, - "top": 82.118384, - "right": -32.34375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 19, - "left": -32.34375, - "top": 82.118384, - "right": -30.9375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 19, - "left": -30.9375, - "top": 82.118384, - "right": -29.53125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 19, - "left": -29.53125, - "top": 82.118384, - "right": -28.125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 19, - "left": -28.125, - "top": 82.118384, - "right": -26.71875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 19, - "left": -26.71875, - "top": 82.118384, - "right": -25.3125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 19, - "left": -25.3125, - "top": 82.118384, - "right": -23.90625, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 19, - "left": -23.90625, - "top": 82.118384, - "right": -22.5, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 19, - "left": -22.5, - "top": 82.118384, - "right": -21.09375, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 19, - "left": -21.09375, - "top": 82.118384, - "right": -19.6875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 19, - "left": -19.6875, - "top": 82.118384, - "right": -18.28125, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 19, - "left": -18.28125, - "top": 82.118384, - "right": -16.875, - "bottom": 81.923186, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 20, - "left": -61.875, - "top": 81.923186, - "right": -60.46875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 20, - "left": -60.46875, - "top": 81.923186, - "right": -59.0625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 20, - "left": -59.0625, - "top": 81.923186, - "right": -57.65625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 20, - "left": -57.65625, - "top": 81.923186, - "right": -56.25, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 20, - "left": -56.25, - "top": 81.923186, - "right": -54.84375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 20, - "left": -54.84375, - "top": 81.923186, - "right": -53.4375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 20, - "left": -53.4375, - "top": 81.923186, - "right": -52.03125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 20, - "left": -52.03125, - "top": 81.923186, - "right": -50.625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 20, - "left": -50.625, - "top": 81.923186, - "right": -49.21875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 20, - "left": -49.21875, - "top": 81.923186, - "right": -47.8125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 20, - "left": -47.8125, - "top": 81.923186, - "right": -46.40625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 20, - "left": -46.40625, - "top": 81.923186, - "right": -45.0, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 20, - "left": -45.0, - "top": 81.923186, - "right": -43.59375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 20, - "left": -43.59375, - "top": 81.923186, - "right": -42.1875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 20, - "left": -42.1875, - "top": 81.923186, - "right": -40.78125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 20, - "left": -40.78125, - "top": 81.923186, - "right": -39.375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 20, - "left": -39.375, - "top": 81.923186, - "right": -37.96875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 20, - "left": -37.96875, - "top": 81.923186, - "right": -36.5625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 20, - "left": -36.5625, - "top": 81.923186, - "right": -35.15625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 20, - "left": -35.15625, - "top": 81.923186, - "right": -33.75, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 20, - "left": -33.75, - "top": 81.923186, - "right": -32.34375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 20, - "left": -32.34375, - "top": 81.923186, - "right": -30.9375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 20, - "left": -30.9375, - "top": 81.923186, - "right": -29.53125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 20, - "left": -29.53125, - "top": 81.923186, - "right": -28.125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 20, - "left": -28.125, - "top": 81.923186, - "right": -26.71875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 20, - "left": -26.71875, - "top": 81.923186, - "right": -25.3125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 20, - "left": -25.3125, - "top": 81.923186, - "right": -23.90625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 20, - "left": -23.90625, - "top": 81.923186, - "right": -22.5, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 20, - "left": -22.5, - "top": 81.923186, - "right": -21.09375, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 20, - "left": -21.09375, - "top": 81.923186, - "right": -19.6875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 20, - "left": -19.6875, - "top": 81.923186, - "right": -18.28125, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 20, - "left": -18.28125, - "top": 81.923186, - "right": -16.875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 20, - "left": -16.875, - "top": 81.923186, - "right": -15.46875, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 20, - "left": -15.46875, - "top": 81.923186, - "right": -14.0625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 20, - "left": -14.0625, - "top": 81.923186, - "right": -12.65625, - "bottom": 81.723188, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 21, - "left": -61.875, - "top": 81.723188, - "right": -60.46875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 21, - "left": -60.46875, - "top": 81.723188, - "right": -59.0625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 21, - "left": -59.0625, - "top": 81.723188, - "right": -57.65625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 21, - "left": -57.65625, - "top": 81.723188, - "right": -56.25, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 21, - "left": -56.25, - "top": 81.723188, - "right": -54.84375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 21, - "left": -54.84375, - "top": 81.723188, - "right": -53.4375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 21, - "left": -53.4375, - "top": 81.723188, - "right": -52.03125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 21, - "left": -52.03125, - "top": 81.723188, - "right": -50.625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 21, - "left": -50.625, - "top": 81.723188, - "right": -49.21875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 21, - "left": -49.21875, - "top": 81.723188, - "right": -47.8125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 21, - "left": -47.8125, - "top": 81.723188, - "right": -46.40625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 21, - "left": -46.40625, - "top": 81.723188, - "right": -45.0, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 21, - "left": -45.0, - "top": 81.723188, - "right": -43.59375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 21, - "left": -43.59375, - "top": 81.723188, - "right": -42.1875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 21, - "left": -42.1875, - "top": 81.723188, - "right": -40.78125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 21, - "left": -40.78125, - "top": 81.723188, - "right": -39.375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 21, - "left": -39.375, - "top": 81.723188, - "right": -37.96875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 21, - "left": -37.96875, - "top": 81.723188, - "right": -36.5625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 21, - "left": -36.5625, - "top": 81.723188, - "right": -35.15625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 21, - "left": -35.15625, - "top": 81.723188, - "right": -33.75, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 21, - "left": -33.75, - "top": 81.723188, - "right": -32.34375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 21, - "left": -32.34375, - "top": 81.723188, - "right": -30.9375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 21, - "left": -30.9375, - "top": 81.723188, - "right": -29.53125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 21, - "left": -29.53125, - "top": 81.723188, - "right": -28.125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 21, - "left": -28.125, - "top": 81.723188, - "right": -26.71875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 21, - "left": -26.71875, - "top": 81.723188, - "right": -25.3125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 21, - "left": -25.3125, - "top": 81.723188, - "right": -23.90625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 21, - "left": -23.90625, - "top": 81.723188, - "right": -22.5, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 21, - "left": -22.5, - "top": 81.723188, - "right": -21.09375, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 21, - "left": -21.09375, - "top": 81.723188, - "right": -19.6875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 21, - "left": -19.6875, - "top": 81.723188, - "right": -18.28125, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 21, - "left": -18.28125, - "top": 81.723188, - "right": -16.875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 21, - "left": -16.875, - "top": 81.723188, - "right": -15.46875, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 21, - "left": -15.46875, - "top": 81.723188, - "right": -14.0625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 21, - "left": -14.0625, - "top": 81.723188, - "right": -12.65625, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 119, - "y": 21, - "left": -12.65625, - "top": 81.723188, - "right": -11.25, - "bottom": 81.518272, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 22, - "left": -61.875, - "top": 81.518272, - "right": -60.46875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 22, - "left": -60.46875, - "top": 81.518272, - "right": -59.0625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 22, - "left": -59.0625, - "top": 81.518272, - "right": -57.65625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 22, - "left": -57.65625, - "top": 81.518272, - "right": -56.25, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 22, - "left": -56.25, - "top": 81.518272, - "right": -54.84375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 22, - "left": -54.84375, - "top": 81.518272, - "right": -53.4375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 22, - "left": -53.4375, - "top": 81.518272, - "right": -52.03125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 22, - "left": -52.03125, - "top": 81.518272, - "right": -50.625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 22, - "left": -50.625, - "top": 81.518272, - "right": -49.21875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 22, - "left": -49.21875, - "top": 81.518272, - "right": -47.8125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 22, - "left": -47.8125, - "top": 81.518272, - "right": -46.40625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 22, - "left": -46.40625, - "top": 81.518272, - "right": -45.0, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 22, - "left": -45.0, - "top": 81.518272, - "right": -43.59375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 22, - "left": -43.59375, - "top": 81.518272, - "right": -42.1875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 22, - "left": -42.1875, - "top": 81.518272, - "right": -40.78125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 22, - "left": -40.78125, - "top": 81.518272, - "right": -39.375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 22, - "left": -39.375, - "top": 81.518272, - "right": -37.96875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 22, - "left": -37.96875, - "top": 81.518272, - "right": -36.5625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 22, - "left": -36.5625, - "top": 81.518272, - "right": -35.15625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 22, - "left": -35.15625, - "top": 81.518272, - "right": -33.75, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 22, - "left": -33.75, - "top": 81.518272, - "right": -32.34375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 22, - "left": -32.34375, - "top": 81.518272, - "right": -30.9375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 22, - "left": -30.9375, - "top": 81.518272, - "right": -29.53125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 22, - "left": -29.53125, - "top": 81.518272, - "right": -28.125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 22, - "left": -28.125, - "top": 81.518272, - "right": -26.71875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 22, - "left": -26.71875, - "top": 81.518272, - "right": -25.3125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 22, - "left": -25.3125, - "top": 81.518272, - "right": -23.90625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 22, - "left": -23.90625, - "top": 81.518272, - "right": -22.5, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 22, - "left": -22.5, - "top": 81.518272, - "right": -21.09375, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 22, - "left": -21.09375, - "top": 81.518272, - "right": -19.6875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 22, - "left": -19.6875, - "top": 81.518272, - "right": -18.28125, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 22, - "left": -18.28125, - "top": 81.518272, - "right": -16.875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 22, - "left": -16.875, - "top": 81.518272, - "right": -15.46875, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 22, - "left": -15.46875, - "top": 81.518272, - "right": -14.0625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 22, - "left": -14.0625, - "top": 81.518272, - "right": -12.65625, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 119, - "y": 22, - "left": -12.65625, - "top": 81.518272, - "right": -11.25, - "bottom": 81.308321, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 23, - "left": -64.6875, - "top": 81.308321, - "right": -63.28125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 23, - "left": -63.28125, - "top": 81.308321, - "right": -61.875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 23, - "left": -61.875, - "top": 81.308321, - "right": -60.46875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 23, - "left": -60.46875, - "top": 81.308321, - "right": -59.0625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 23, - "left": -59.0625, - "top": 81.308321, - "right": -57.65625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 23, - "left": -57.65625, - "top": 81.308321, - "right": -56.25, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 23, - "left": -56.25, - "top": 81.308321, - "right": -54.84375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 23, - "left": -54.84375, - "top": 81.308321, - "right": -53.4375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 23, - "left": -53.4375, - "top": 81.308321, - "right": -52.03125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 23, - "left": -52.03125, - "top": 81.308321, - "right": -50.625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 23, - "left": -50.625, - "top": 81.308321, - "right": -49.21875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 23, - "left": -49.21875, - "top": 81.308321, - "right": -47.8125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 23, - "left": -47.8125, - "top": 81.308321, - "right": -46.40625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 23, - "left": -46.40625, - "top": 81.308321, - "right": -45.0, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 23, - "left": -45.0, - "top": 81.308321, - "right": -43.59375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 23, - "left": -43.59375, - "top": 81.308321, - "right": -42.1875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 23, - "left": -42.1875, - "top": 81.308321, - "right": -40.78125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 23, - "left": -40.78125, - "top": 81.308321, - "right": -39.375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 23, - "left": -39.375, - "top": 81.308321, - "right": -37.96875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 23, - "left": -37.96875, - "top": 81.308321, - "right": -36.5625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 23, - "left": -36.5625, - "top": 81.308321, - "right": -35.15625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 23, - "left": -35.15625, - "top": 81.308321, - "right": -33.75, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 23, - "left": -33.75, - "top": 81.308321, - "right": -32.34375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 23, - "left": -32.34375, - "top": 81.308321, - "right": -30.9375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 23, - "left": -30.9375, - "top": 81.308321, - "right": -29.53125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 23, - "left": -29.53125, - "top": 81.308321, - "right": -28.125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 23, - "left": -28.125, - "top": 81.308321, - "right": -26.71875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 23, - "left": -26.71875, - "top": 81.308321, - "right": -25.3125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 23, - "left": -25.3125, - "top": 81.308321, - "right": -23.90625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 23, - "left": -23.90625, - "top": 81.308321, - "right": -22.5, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 23, - "left": -22.5, - "top": 81.308321, - "right": -21.09375, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 23, - "left": -21.09375, - "top": 81.308321, - "right": -19.6875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 23, - "left": -19.6875, - "top": 81.308321, - "right": -18.28125, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 23, - "left": -18.28125, - "top": 81.308321, - "right": -16.875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 23, - "left": -16.875, - "top": 81.308321, - "right": -15.46875, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 23, - "left": -15.46875, - "top": 81.308321, - "right": -14.0625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 23, - "left": -14.0625, - "top": 81.308321, - "right": -12.65625, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 119, - "y": 23, - "left": -12.65625, - "top": 81.308321, - "right": -11.25, - "bottom": 81.093214, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 24, - "left": -66.09375, - "top": 81.093214, - "right": -64.6875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 24, - "left": -64.6875, - "top": 81.093214, - "right": -63.28125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 24, - "left": -63.28125, - "top": 81.093214, - "right": -61.875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 24, - "left": -61.875, - "top": 81.093214, - "right": -60.46875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 24, - "left": -60.46875, - "top": 81.093214, - "right": -59.0625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 24, - "left": -59.0625, - "top": 81.093214, - "right": -57.65625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 24, - "left": -57.65625, - "top": 81.093214, - "right": -56.25, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 24, - "left": -56.25, - "top": 81.093214, - "right": -54.84375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 24, - "left": -54.84375, - "top": 81.093214, - "right": -53.4375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 24, - "left": -53.4375, - "top": 81.093214, - "right": -52.03125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 24, - "left": -52.03125, - "top": 81.093214, - "right": -50.625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 24, - "left": -50.625, - "top": 81.093214, - "right": -49.21875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 24, - "left": -49.21875, - "top": 81.093214, - "right": -47.8125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 24, - "left": -47.8125, - "top": 81.093214, - "right": -46.40625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 24, - "left": -46.40625, - "top": 81.093214, - "right": -45.0, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 24, - "left": -45.0, - "top": 81.093214, - "right": -43.59375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 24, - "left": -43.59375, - "top": 81.093214, - "right": -42.1875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 24, - "left": -42.1875, - "top": 81.093214, - "right": -40.78125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 24, - "left": -40.78125, - "top": 81.093214, - "right": -39.375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 24, - "left": -39.375, - "top": 81.093214, - "right": -37.96875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 24, - "left": -37.96875, - "top": 81.093214, - "right": -36.5625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 24, - "left": -36.5625, - "top": 81.093214, - "right": -35.15625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 24, - "left": -35.15625, - "top": 81.093214, - "right": -33.75, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 24, - "left": -33.75, - "top": 81.093214, - "right": -32.34375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 24, - "left": -32.34375, - "top": 81.093214, - "right": -30.9375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 24, - "left": -30.9375, - "top": 81.093214, - "right": -29.53125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 24, - "left": -29.53125, - "top": 81.093214, - "right": -28.125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 24, - "left": -28.125, - "top": 81.093214, - "right": -26.71875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 24, - "left": -26.71875, - "top": 81.093214, - "right": -25.3125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 24, - "left": -25.3125, - "top": 81.093214, - "right": -23.90625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 24, - "left": -23.90625, - "top": 81.093214, - "right": -22.5, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 24, - "left": -22.5, - "top": 81.093214, - "right": -21.09375, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 24, - "left": -21.09375, - "top": 81.093214, - "right": -19.6875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 24, - "left": -19.6875, - "top": 81.093214, - "right": -18.28125, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 24, - "left": -18.28125, - "top": 81.093214, - "right": -16.875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 24, - "left": -16.875, - "top": 81.093214, - "right": -15.46875, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 24, - "left": -15.46875, - "top": 81.093214, - "right": -14.0625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 24, - "left": -14.0625, - "top": 81.093214, - "right": -12.65625, - "bottom": 80.872827, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 25, - "left": -67.5, - "top": 80.872827, - "right": -66.09375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 25, - "left": -66.09375, - "top": 80.872827, - "right": -64.6875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 25, - "left": -64.6875, - "top": 80.872827, - "right": -63.28125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 25, - "left": -63.28125, - "top": 80.872827, - "right": -61.875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 25, - "left": -61.875, - "top": 80.872827, - "right": -60.46875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 25, - "left": -60.46875, - "top": 80.872827, - "right": -59.0625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 25, - "left": -59.0625, - "top": 80.872827, - "right": -57.65625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 25, - "left": -57.65625, - "top": 80.872827, - "right": -56.25, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 25, - "left": -56.25, - "top": 80.872827, - "right": -54.84375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 25, - "left": -54.84375, - "top": 80.872827, - "right": -53.4375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 25, - "left": -53.4375, - "top": 80.872827, - "right": -52.03125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 25, - "left": -52.03125, - "top": 80.872827, - "right": -50.625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 25, - "left": -50.625, - "top": 80.872827, - "right": -49.21875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 25, - "left": -49.21875, - "top": 80.872827, - "right": -47.8125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 25, - "left": -47.8125, - "top": 80.872827, - "right": -46.40625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 25, - "left": -46.40625, - "top": 80.872827, - "right": -45.0, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 25, - "left": -45.0, - "top": 80.872827, - "right": -43.59375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 25, - "left": -43.59375, - "top": 80.872827, - "right": -42.1875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 25, - "left": -42.1875, - "top": 80.872827, - "right": -40.78125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 25, - "left": -40.78125, - "top": 80.872827, - "right": -39.375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 25, - "left": -39.375, - "top": 80.872827, - "right": -37.96875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 25, - "left": -37.96875, - "top": 80.872827, - "right": -36.5625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 25, - "left": -36.5625, - "top": 80.872827, - "right": -35.15625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 25, - "left": -35.15625, - "top": 80.872827, - "right": -33.75, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 25, - "left": -33.75, - "top": 80.872827, - "right": -32.34375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 25, - "left": -32.34375, - "top": 80.872827, - "right": -30.9375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 25, - "left": -30.9375, - "top": 80.872827, - "right": -29.53125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 25, - "left": -29.53125, - "top": 80.872827, - "right": -28.125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 25, - "left": -28.125, - "top": 80.872827, - "right": -26.71875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 25, - "left": -26.71875, - "top": 80.872827, - "right": -25.3125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 25, - "left": -25.3125, - "top": 80.872827, - "right": -23.90625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 25, - "left": -23.90625, - "top": 80.872827, - "right": -22.5, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 25, - "left": -22.5, - "top": 80.872827, - "right": -21.09375, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 25, - "left": -21.09375, - "top": 80.872827, - "right": -19.6875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 25, - "left": -19.6875, - "top": 80.872827, - "right": -18.28125, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 25, - "left": -18.28125, - "top": 80.872827, - "right": -16.875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 25, - "left": -16.875, - "top": 80.872827, - "right": -15.46875, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 25, - "left": -15.46875, - "top": 80.872827, - "right": -14.0625, - "bottom": 80.647035, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 26, - "left": -67.5, - "top": 80.647035, - "right": -66.09375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 26, - "left": -66.09375, - "top": 80.647035, - "right": -64.6875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 26, - "left": -64.6875, - "top": 80.647035, - "right": -63.28125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 26, - "left": -63.28125, - "top": 80.647035, - "right": -61.875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 26, - "left": -61.875, - "top": 80.647035, - "right": -60.46875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 26, - "left": -60.46875, - "top": 80.647035, - "right": -59.0625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 26, - "left": -59.0625, - "top": 80.647035, - "right": -57.65625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 26, - "left": -57.65625, - "top": 80.647035, - "right": -56.25, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 26, - "left": -56.25, - "top": 80.647035, - "right": -54.84375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 26, - "left": -54.84375, - "top": 80.647035, - "right": -53.4375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 26, - "left": -53.4375, - "top": 80.647035, - "right": -52.03125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 26, - "left": -52.03125, - "top": 80.647035, - "right": -50.625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 26, - "left": -50.625, - "top": 80.647035, - "right": -49.21875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 26, - "left": -49.21875, - "top": 80.647035, - "right": -47.8125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 26, - "left": -47.8125, - "top": 80.647035, - "right": -46.40625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 26, - "left": -46.40625, - "top": 80.647035, - "right": -45.0, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 26, - "left": -45.0, - "top": 80.647035, - "right": -43.59375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 26, - "left": -43.59375, - "top": 80.647035, - "right": -42.1875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 26, - "left": -42.1875, - "top": 80.647035, - "right": -40.78125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 26, - "left": -40.78125, - "top": 80.647035, - "right": -39.375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 26, - "left": -39.375, - "top": 80.647035, - "right": -37.96875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 26, - "left": -37.96875, - "top": 80.647035, - "right": -36.5625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 26, - "left": -36.5625, - "top": 80.647035, - "right": -35.15625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 26, - "left": -35.15625, - "top": 80.647035, - "right": -33.75, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 26, - "left": -33.75, - "top": 80.647035, - "right": -32.34375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 26, - "left": -32.34375, - "top": 80.647035, - "right": -30.9375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 26, - "left": -30.9375, - "top": 80.647035, - "right": -29.53125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 26, - "left": -29.53125, - "top": 80.647035, - "right": -28.125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 26, - "left": -28.125, - "top": 80.647035, - "right": -26.71875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 26, - "left": -26.71875, - "top": 80.647035, - "right": -25.3125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 26, - "left": -25.3125, - "top": 80.647035, - "right": -23.90625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 26, - "left": -23.90625, - "top": 80.647035, - "right": -22.5, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 26, - "left": -22.5, - "top": 80.647035, - "right": -21.09375, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 26, - "left": -21.09375, - "top": 80.647035, - "right": -19.6875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 26, - "left": -19.6875, - "top": 80.647035, - "right": -18.28125, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 26, - "left": -18.28125, - "top": 80.647035, - "right": -16.875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 26, - "left": -16.875, - "top": 80.647035, - "right": -15.46875, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 117, - "y": 26, - "left": -15.46875, - "top": 80.647035, - "right": -14.0625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 118, - "y": 26, - "left": -14.0625, - "top": 80.647035, - "right": -12.65625, - "bottom": 80.415707, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 27, - "left": -67.5, - "top": 80.415707, - "right": -66.09375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 27, - "left": -66.09375, - "top": 80.415707, - "right": -64.6875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 27, - "left": -64.6875, - "top": 80.415707, - "right": -63.28125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 27, - "left": -63.28125, - "top": 80.415707, - "right": -61.875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 27, - "left": -61.875, - "top": 80.415707, - "right": -60.46875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 27, - "left": -60.46875, - "top": 80.415707, - "right": -59.0625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 27, - "left": -59.0625, - "top": 80.415707, - "right": -57.65625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 27, - "left": -57.65625, - "top": 80.415707, - "right": -56.25, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 27, - "left": -56.25, - "top": 80.415707, - "right": -54.84375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 27, - "left": -54.84375, - "top": 80.415707, - "right": -53.4375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 27, - "left": -53.4375, - "top": 80.415707, - "right": -52.03125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 27, - "left": -52.03125, - "top": 80.415707, - "right": -50.625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 27, - "left": -50.625, - "top": 80.415707, - "right": -49.21875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 27, - "left": -49.21875, - "top": 80.415707, - "right": -47.8125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 27, - "left": -47.8125, - "top": 80.415707, - "right": -46.40625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 27, - "left": -46.40625, - "top": 80.415707, - "right": -45.0, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 27, - "left": -45.0, - "top": 80.415707, - "right": -43.59375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 27, - "left": -43.59375, - "top": 80.415707, - "right": -42.1875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 27, - "left": -42.1875, - "top": 80.415707, - "right": -40.78125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 27, - "left": -40.78125, - "top": 80.415707, - "right": -39.375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 27, - "left": -39.375, - "top": 80.415707, - "right": -37.96875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 27, - "left": -37.96875, - "top": 80.415707, - "right": -36.5625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 27, - "left": -36.5625, - "top": 80.415707, - "right": -35.15625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 27, - "left": -35.15625, - "top": 80.415707, - "right": -33.75, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 27, - "left": -33.75, - "top": 80.415707, - "right": -32.34375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 27, - "left": -32.34375, - "top": 80.415707, - "right": -30.9375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 27, - "left": -30.9375, - "top": 80.415707, - "right": -29.53125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 27, - "left": -29.53125, - "top": 80.415707, - "right": -28.125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 27, - "left": -28.125, - "top": 80.415707, - "right": -26.71875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 27, - "left": -26.71875, - "top": 80.415707, - "right": -25.3125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 27, - "left": -25.3125, - "top": 80.415707, - "right": -23.90625, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 27, - "left": -23.90625, - "top": 80.415707, - "right": -22.5, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 27, - "left": -22.5, - "top": 80.415707, - "right": -21.09375, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 27, - "left": -21.09375, - "top": 80.415707, - "right": -19.6875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 27, - "left": -19.6875, - "top": 80.415707, - "right": -18.28125, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 27, - "left": -18.28125, - "top": 80.415707, - "right": -16.875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 27, - "left": -16.875, - "top": 80.415707, - "right": -15.46875, - "bottom": 80.178713, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 28, - "left": -67.5, - "top": 80.178713, - "right": -66.09375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 28, - "left": -66.09375, - "top": 80.178713, - "right": -64.6875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 28, - "left": -64.6875, - "top": 80.178713, - "right": -63.28125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 28, - "left": -63.28125, - "top": 80.178713, - "right": -61.875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 28, - "left": -61.875, - "top": 80.178713, - "right": -60.46875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 28, - "left": -60.46875, - "top": 80.178713, - "right": -59.0625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 28, - "left": -59.0625, - "top": 80.178713, - "right": -57.65625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 28, - "left": -57.65625, - "top": 80.178713, - "right": -56.25, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 28, - "left": -56.25, - "top": 80.178713, - "right": -54.84375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 28, - "left": -54.84375, - "top": 80.178713, - "right": -53.4375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 28, - "left": -53.4375, - "top": 80.178713, - "right": -52.03125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 28, - "left": -52.03125, - "top": 80.178713, - "right": -50.625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 28, - "left": -50.625, - "top": 80.178713, - "right": -49.21875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 28, - "left": -49.21875, - "top": 80.178713, - "right": -47.8125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 28, - "left": -47.8125, - "top": 80.178713, - "right": -46.40625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 28, - "left": -46.40625, - "top": 80.178713, - "right": -45.0, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 28, - "left": -45.0, - "top": 80.178713, - "right": -43.59375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 28, - "left": -43.59375, - "top": 80.178713, - "right": -42.1875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 28, - "left": -42.1875, - "top": 80.178713, - "right": -40.78125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 28, - "left": -40.78125, - "top": 80.178713, - "right": -39.375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 28, - "left": -39.375, - "top": 80.178713, - "right": -37.96875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 28, - "left": -37.96875, - "top": 80.178713, - "right": -36.5625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 28, - "left": -36.5625, - "top": 80.178713, - "right": -35.15625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 28, - "left": -35.15625, - "top": 80.178713, - "right": -33.75, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 28, - "left": -33.75, - "top": 80.178713, - "right": -32.34375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 28, - "left": -32.34375, - "top": 80.178713, - "right": -30.9375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 28, - "left": -30.9375, - "top": 80.178713, - "right": -29.53125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 28, - "left": -29.53125, - "top": 80.178713, - "right": -28.125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 28, - "left": -28.125, - "top": 80.178713, - "right": -26.71875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 28, - "left": -26.71875, - "top": 80.178713, - "right": -25.3125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 28, - "left": -25.3125, - "top": 80.178713, - "right": -23.90625, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 28, - "left": -23.90625, - "top": 80.178713, - "right": -22.5, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 28, - "left": -22.5, - "top": 80.178713, - "right": -21.09375, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 28, - "left": -21.09375, - "top": 80.178713, - "right": -19.6875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 28, - "left": -19.6875, - "top": 80.178713, - "right": -18.28125, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 28, - "left": -18.28125, - "top": 80.178713, - "right": -16.875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 116, - "y": 28, - "left": -16.875, - "top": 80.178713, - "right": -15.46875, - "bottom": 79.935918, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 29, - "left": -66.09375, - "top": 79.935918, - "right": -64.6875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 29, - "left": -64.6875, - "top": 79.935918, - "right": -63.28125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 29, - "left": -63.28125, - "top": 79.935918, - "right": -61.875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 29, - "left": -61.875, - "top": 79.935918, - "right": -60.46875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 29, - "left": -60.46875, - "top": 79.935918, - "right": -59.0625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 29, - "left": -59.0625, - "top": 79.935918, - "right": -57.65625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 29, - "left": -57.65625, - "top": 79.935918, - "right": -56.25, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 29, - "left": -56.25, - "top": 79.935918, - "right": -54.84375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 29, - "left": -54.84375, - "top": 79.935918, - "right": -53.4375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 29, - "left": -53.4375, - "top": 79.935918, - "right": -52.03125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 29, - "left": -52.03125, - "top": 79.935918, - "right": -50.625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 29, - "left": -50.625, - "top": 79.935918, - "right": -49.21875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 29, - "left": -49.21875, - "top": 79.935918, - "right": -47.8125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 29, - "left": -47.8125, - "top": 79.935918, - "right": -46.40625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 29, - "left": -46.40625, - "top": 79.935918, - "right": -45.0, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 29, - "left": -45.0, - "top": 79.935918, - "right": -43.59375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 29, - "left": -43.59375, - "top": 79.935918, - "right": -42.1875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 29, - "left": -42.1875, - "top": 79.935918, - "right": -40.78125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 29, - "left": -40.78125, - "top": 79.935918, - "right": -39.375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 29, - "left": -39.375, - "top": 79.935918, - "right": -37.96875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 29, - "left": -37.96875, - "top": 79.935918, - "right": -36.5625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 29, - "left": -36.5625, - "top": 79.935918, - "right": -35.15625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 29, - "left": -35.15625, - "top": 79.935918, - "right": -33.75, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 29, - "left": -33.75, - "top": 79.935918, - "right": -32.34375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 29, - "left": -32.34375, - "top": 79.935918, - "right": -30.9375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 29, - "left": -30.9375, - "top": 79.935918, - "right": -29.53125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 29, - "left": -29.53125, - "top": 79.935918, - "right": -28.125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 29, - "left": -28.125, - "top": 79.935918, - "right": -26.71875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 29, - "left": -26.71875, - "top": 79.935918, - "right": -25.3125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 29, - "left": -25.3125, - "top": 79.935918, - "right": -23.90625, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 29, - "left": -23.90625, - "top": 79.935918, - "right": -22.5, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 29, - "left": -22.5, - "top": 79.935918, - "right": -21.09375, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 29, - "left": -21.09375, - "top": 79.935918, - "right": -19.6875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 29, - "left": -19.6875, - "top": 79.935918, - "right": -18.28125, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 29, - "left": -18.28125, - "top": 79.935918, - "right": -16.875, - "bottom": 79.687184, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 30, - "left": -66.09375, - "top": 79.687184, - "right": -64.6875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 30, - "left": -64.6875, - "top": 79.687184, - "right": -63.28125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 30, - "left": -63.28125, - "top": 79.687184, - "right": -61.875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 30, - "left": -61.875, - "top": 79.687184, - "right": -60.46875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 30, - "left": -60.46875, - "top": 79.687184, - "right": -59.0625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 30, - "left": -59.0625, - "top": 79.687184, - "right": -57.65625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 30, - "left": -57.65625, - "top": 79.687184, - "right": -56.25, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 30, - "left": -56.25, - "top": 79.687184, - "right": -54.84375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 30, - "left": -54.84375, - "top": 79.687184, - "right": -53.4375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 30, - "left": -53.4375, - "top": 79.687184, - "right": -52.03125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 30, - "left": -52.03125, - "top": 79.687184, - "right": -50.625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 30, - "left": -50.625, - "top": 79.687184, - "right": -49.21875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 30, - "left": -49.21875, - "top": 79.687184, - "right": -47.8125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 30, - "left": -47.8125, - "top": 79.687184, - "right": -46.40625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 30, - "left": -46.40625, - "top": 79.687184, - "right": -45.0, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 30, - "left": -45.0, - "top": 79.687184, - "right": -43.59375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 30, - "left": -43.59375, - "top": 79.687184, - "right": -42.1875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 30, - "left": -42.1875, - "top": 79.687184, - "right": -40.78125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 30, - "left": -40.78125, - "top": 79.687184, - "right": -39.375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 30, - "left": -39.375, - "top": 79.687184, - "right": -37.96875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 30, - "left": -37.96875, - "top": 79.687184, - "right": -36.5625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 30, - "left": -36.5625, - "top": 79.687184, - "right": -35.15625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 30, - "left": -35.15625, - "top": 79.687184, - "right": -33.75, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 30, - "left": -33.75, - "top": 79.687184, - "right": -32.34375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 30, - "left": -32.34375, - "top": 79.687184, - "right": -30.9375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 30, - "left": -30.9375, - "top": 79.687184, - "right": -29.53125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 30, - "left": -29.53125, - "top": 79.687184, - "right": -28.125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 30, - "left": -28.125, - "top": 79.687184, - "right": -26.71875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 30, - "left": -26.71875, - "top": 79.687184, - "right": -25.3125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 30, - "left": -25.3125, - "top": 79.687184, - "right": -23.90625, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 30, - "left": -23.90625, - "top": 79.687184, - "right": -22.5, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 30, - "left": -22.5, - "top": 79.687184, - "right": -21.09375, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 30, - "left": -21.09375, - "top": 79.687184, - "right": -19.6875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 30, - "left": -19.6875, - "top": 79.687184, - "right": -18.28125, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 30, - "left": -18.28125, - "top": 79.687184, - "right": -16.875, - "bottom": 79.432371, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 31, - "left": -67.5, - "top": 79.432371, - "right": -66.09375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 31, - "left": -66.09375, - "top": 79.432371, - "right": -64.6875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 31, - "left": -64.6875, - "top": 79.432371, - "right": -63.28125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 31, - "left": -63.28125, - "top": 79.432371, - "right": -61.875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 31, - "left": -61.875, - "top": 79.432371, - "right": -60.46875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 31, - "left": -60.46875, - "top": 79.432371, - "right": -59.0625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 31, - "left": -59.0625, - "top": 79.432371, - "right": -57.65625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 31, - "left": -57.65625, - "top": 79.432371, - "right": -56.25, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 31, - "left": -56.25, - "top": 79.432371, - "right": -54.84375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 31, - "left": -54.84375, - "top": 79.432371, - "right": -53.4375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 31, - "left": -53.4375, - "top": 79.432371, - "right": -52.03125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 31, - "left": -52.03125, - "top": 79.432371, - "right": -50.625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 31, - "left": -50.625, - "top": 79.432371, - "right": -49.21875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 31, - "left": -49.21875, - "top": 79.432371, - "right": -47.8125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 31, - "left": -47.8125, - "top": 79.432371, - "right": -46.40625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 31, - "left": -46.40625, - "top": 79.432371, - "right": -45.0, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 31, - "left": -45.0, - "top": 79.432371, - "right": -43.59375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 31, - "left": -43.59375, - "top": 79.432371, - "right": -42.1875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 31, - "left": -42.1875, - "top": 79.432371, - "right": -40.78125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 31, - "left": -40.78125, - "top": 79.432371, - "right": -39.375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 31, - "left": -39.375, - "top": 79.432371, - "right": -37.96875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 31, - "left": -37.96875, - "top": 79.432371, - "right": -36.5625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 31, - "left": -36.5625, - "top": 79.432371, - "right": -35.15625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 31, - "left": -35.15625, - "top": 79.432371, - "right": -33.75, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 31, - "left": -33.75, - "top": 79.432371, - "right": -32.34375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 31, - "left": -32.34375, - "top": 79.432371, - "right": -30.9375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 31, - "left": -30.9375, - "top": 79.432371, - "right": -29.53125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 31, - "left": -29.53125, - "top": 79.432371, - "right": -28.125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 31, - "left": -28.125, - "top": 79.432371, - "right": -26.71875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 31, - "left": -26.71875, - "top": 79.432371, - "right": -25.3125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 31, - "left": -25.3125, - "top": 79.432371, - "right": -23.90625, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 31, - "left": -23.90625, - "top": 79.432371, - "right": -22.5, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 31, - "left": -22.5, - "top": 79.432371, - "right": -21.09375, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 31, - "left": -21.09375, - "top": 79.432371, - "right": -19.6875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 31, - "left": -19.6875, - "top": 79.432371, - "right": -18.28125, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 31, - "left": -18.28125, - "top": 79.432371, - "right": -16.875, - "bottom": 79.171335, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 32, - "left": -70.3125, - "top": 79.171335, - "right": -68.90625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 32, - "left": -68.90625, - "top": 79.171335, - "right": -67.5, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 32, - "left": -67.5, - "top": 79.171335, - "right": -66.09375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 32, - "left": -66.09375, - "top": 79.171335, - "right": -64.6875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 32, - "left": -64.6875, - "top": 79.171335, - "right": -63.28125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 32, - "left": -63.28125, - "top": 79.171335, - "right": -61.875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 32, - "left": -61.875, - "top": 79.171335, - "right": -60.46875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 32, - "left": -60.46875, - "top": 79.171335, - "right": -59.0625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 32, - "left": -59.0625, - "top": 79.171335, - "right": -57.65625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 32, - "left": -57.65625, - "top": 79.171335, - "right": -56.25, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 32, - "left": -56.25, - "top": 79.171335, - "right": -54.84375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 32, - "left": -54.84375, - "top": 79.171335, - "right": -53.4375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 32, - "left": -53.4375, - "top": 79.171335, - "right": -52.03125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 32, - "left": -52.03125, - "top": 79.171335, - "right": -50.625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 32, - "left": -50.625, - "top": 79.171335, - "right": -49.21875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 32, - "left": -49.21875, - "top": 79.171335, - "right": -47.8125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 32, - "left": -47.8125, - "top": 79.171335, - "right": -46.40625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 32, - "left": -46.40625, - "top": 79.171335, - "right": -45.0, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 32, - "left": -45.0, - "top": 79.171335, - "right": -43.59375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 32, - "left": -43.59375, - "top": 79.171335, - "right": -42.1875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 32, - "left": -42.1875, - "top": 79.171335, - "right": -40.78125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 32, - "left": -40.78125, - "top": 79.171335, - "right": -39.375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 32, - "left": -39.375, - "top": 79.171335, - "right": -37.96875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 32, - "left": -37.96875, - "top": 79.171335, - "right": -36.5625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 32, - "left": -36.5625, - "top": 79.171335, - "right": -35.15625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 32, - "left": -35.15625, - "top": 79.171335, - "right": -33.75, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 32, - "left": -33.75, - "top": 79.171335, - "right": -32.34375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 32, - "left": -32.34375, - "top": 79.171335, - "right": -30.9375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 32, - "left": -30.9375, - "top": 79.171335, - "right": -29.53125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 32, - "left": -29.53125, - "top": 79.171335, - "right": -28.125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 32, - "left": -28.125, - "top": 79.171335, - "right": -26.71875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 32, - "left": -26.71875, - "top": 79.171335, - "right": -25.3125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 32, - "left": -25.3125, - "top": 79.171335, - "right": -23.90625, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 32, - "left": -23.90625, - "top": 79.171335, - "right": -22.5, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 32, - "left": -22.5, - "top": 79.171335, - "right": -21.09375, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 32, - "left": -21.09375, - "top": 79.171335, - "right": -19.6875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 32, - "left": -19.6875, - "top": 79.171335, - "right": -18.28125, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 32, - "left": -18.28125, - "top": 79.171335, - "right": -16.875, - "bottom": 78.903929, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 33, - "left": -71.71875, - "top": 78.903929, - "right": -70.3125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 33, - "left": -70.3125, - "top": 78.903929, - "right": -68.90625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 33, - "left": -68.90625, - "top": 78.903929, - "right": -67.5, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 33, - "left": -67.5, - "top": 78.903929, - "right": -66.09375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 33, - "left": -66.09375, - "top": 78.903929, - "right": -64.6875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 33, - "left": -64.6875, - "top": 78.903929, - "right": -63.28125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 33, - "left": -63.28125, - "top": 78.903929, - "right": -61.875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 33, - "left": -61.875, - "top": 78.903929, - "right": -60.46875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 33, - "left": -60.46875, - "top": 78.903929, - "right": -59.0625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 33, - "left": -59.0625, - "top": 78.903929, - "right": -57.65625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 33, - "left": -57.65625, - "top": 78.903929, - "right": -56.25, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 33, - "left": -56.25, - "top": 78.903929, - "right": -54.84375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 33, - "left": -54.84375, - "top": 78.903929, - "right": -53.4375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 33, - "left": -53.4375, - "top": 78.903929, - "right": -52.03125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 33, - "left": -52.03125, - "top": 78.903929, - "right": -50.625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 33, - "left": -50.625, - "top": 78.903929, - "right": -49.21875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 33, - "left": -49.21875, - "top": 78.903929, - "right": -47.8125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 33, - "left": -47.8125, - "top": 78.903929, - "right": -46.40625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 33, - "left": -46.40625, - "top": 78.903929, - "right": -45.0, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 33, - "left": -45.0, - "top": 78.903929, - "right": -43.59375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 33, - "left": -43.59375, - "top": 78.903929, - "right": -42.1875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 33, - "left": -42.1875, - "top": 78.903929, - "right": -40.78125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 33, - "left": -40.78125, - "top": 78.903929, - "right": -39.375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 33, - "left": -39.375, - "top": 78.903929, - "right": -37.96875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 33, - "left": -37.96875, - "top": 78.903929, - "right": -36.5625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 33, - "left": -36.5625, - "top": 78.903929, - "right": -35.15625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 33, - "left": -35.15625, - "top": 78.903929, - "right": -33.75, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 33, - "left": -33.75, - "top": 78.903929, - "right": -32.34375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 33, - "left": -32.34375, - "top": 78.903929, - "right": -30.9375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 33, - "left": -30.9375, - "top": 78.903929, - "right": -29.53125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 33, - "left": -29.53125, - "top": 78.903929, - "right": -28.125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 33, - "left": -28.125, - "top": 78.903929, - "right": -26.71875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 33, - "left": -26.71875, - "top": 78.903929, - "right": -25.3125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 33, - "left": -25.3125, - "top": 78.903929, - "right": -23.90625, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 33, - "left": -23.90625, - "top": 78.903929, - "right": -22.5, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 33, - "left": -22.5, - "top": 78.903929, - "right": -21.09375, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 33, - "left": -21.09375, - "top": 78.903929, - "right": -19.6875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 33, - "left": -19.6875, - "top": 78.903929, - "right": -18.28125, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 33, - "left": -18.28125, - "top": 78.903929, - "right": -16.875, - "bottom": 78.630006, - "countries": [ - "greenland" - ] - }, - { - "x": 76, - "y": 34, - "left": -73.125, - "top": 78.630006, - "right": -71.71875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 34, - "left": -71.71875, - "top": 78.630006, - "right": -70.3125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 34, - "left": -70.3125, - "top": 78.630006, - "right": -68.90625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 34, - "left": -68.90625, - "top": 78.630006, - "right": -67.5, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 34, - "left": -67.5, - "top": 78.630006, - "right": -66.09375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 34, - "left": -66.09375, - "top": 78.630006, - "right": -64.6875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 34, - "left": -64.6875, - "top": 78.630006, - "right": -63.28125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 34, - "left": -63.28125, - "top": 78.630006, - "right": -61.875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 34, - "left": -61.875, - "top": 78.630006, - "right": -60.46875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 34, - "left": -60.46875, - "top": 78.630006, - "right": -59.0625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 34, - "left": -59.0625, - "top": 78.630006, - "right": -57.65625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 34, - "left": -57.65625, - "top": 78.630006, - "right": -56.25, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 34, - "left": -56.25, - "top": 78.630006, - "right": -54.84375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 34, - "left": -54.84375, - "top": 78.630006, - "right": -53.4375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 34, - "left": -53.4375, - "top": 78.630006, - "right": -52.03125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 34, - "left": -52.03125, - "top": 78.630006, - "right": -50.625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 34, - "left": -50.625, - "top": 78.630006, - "right": -49.21875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 34, - "left": -49.21875, - "top": 78.630006, - "right": -47.8125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 34, - "left": -47.8125, - "top": 78.630006, - "right": -46.40625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 34, - "left": -46.40625, - "top": 78.630006, - "right": -45.0, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 34, - "left": -45.0, - "top": 78.630006, - "right": -43.59375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 34, - "left": -43.59375, - "top": 78.630006, - "right": -42.1875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 34, - "left": -42.1875, - "top": 78.630006, - "right": -40.78125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 34, - "left": -40.78125, - "top": 78.630006, - "right": -39.375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 34, - "left": -39.375, - "top": 78.630006, - "right": -37.96875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 34, - "left": -37.96875, - "top": 78.630006, - "right": -36.5625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 34, - "left": -36.5625, - "top": 78.630006, - "right": -35.15625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 34, - "left": -35.15625, - "top": 78.630006, - "right": -33.75, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 34, - "left": -33.75, - "top": 78.630006, - "right": -32.34375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 34, - "left": -32.34375, - "top": 78.630006, - "right": -30.9375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 34, - "left": -30.9375, - "top": 78.630006, - "right": -29.53125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 34, - "left": -29.53125, - "top": 78.630006, - "right": -28.125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 34, - "left": -28.125, - "top": 78.630006, - "right": -26.71875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 34, - "left": -26.71875, - "top": 78.630006, - "right": -25.3125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 34, - "left": -25.3125, - "top": 78.630006, - "right": -23.90625, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 34, - "left": -23.90625, - "top": 78.630006, - "right": -22.5, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 34, - "left": -22.5, - "top": 78.630006, - "right": -21.09375, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 34, - "left": -21.09375, - "top": 78.630006, - "right": -19.6875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 34, - "left": -19.6875, - "top": 78.630006, - "right": -18.28125, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 34, - "left": -18.28125, - "top": 78.630006, - "right": -16.875, - "bottom": 78.349411, - "countries": [ - "greenland" - ] - }, - { - "x": 76, - "y": 35, - "left": -73.125, - "top": 78.349411, - "right": -71.71875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 35, - "left": -71.71875, - "top": 78.349411, - "right": -70.3125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 35, - "left": -70.3125, - "top": 78.349411, - "right": -68.90625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 35, - "left": -68.90625, - "top": 78.349411, - "right": -67.5, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 35, - "left": -67.5, - "top": 78.349411, - "right": -66.09375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 35, - "left": -66.09375, - "top": 78.349411, - "right": -64.6875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 35, - "left": -64.6875, - "top": 78.349411, - "right": -63.28125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 35, - "left": -63.28125, - "top": 78.349411, - "right": -61.875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 35, - "left": -61.875, - "top": 78.349411, - "right": -60.46875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 35, - "left": -60.46875, - "top": 78.349411, - "right": -59.0625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 35, - "left": -59.0625, - "top": 78.349411, - "right": -57.65625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 35, - "left": -57.65625, - "top": 78.349411, - "right": -56.25, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 35, - "left": -56.25, - "top": 78.349411, - "right": -54.84375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 35, - "left": -54.84375, - "top": 78.349411, - "right": -53.4375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 35, - "left": -53.4375, - "top": 78.349411, - "right": -52.03125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 35, - "left": -52.03125, - "top": 78.349411, - "right": -50.625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 35, - "left": -50.625, - "top": 78.349411, - "right": -49.21875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 35, - "left": -49.21875, - "top": 78.349411, - "right": -47.8125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 35, - "left": -47.8125, - "top": 78.349411, - "right": -46.40625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 35, - "left": -46.40625, - "top": 78.349411, - "right": -45.0, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 35, - "left": -45.0, - "top": 78.349411, - "right": -43.59375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 35, - "left": -43.59375, - "top": 78.349411, - "right": -42.1875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 35, - "left": -42.1875, - "top": 78.349411, - "right": -40.78125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 35, - "left": -40.78125, - "top": 78.349411, - "right": -39.375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 35, - "left": -39.375, - "top": 78.349411, - "right": -37.96875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 35, - "left": -37.96875, - "top": 78.349411, - "right": -36.5625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 35, - "left": -36.5625, - "top": 78.349411, - "right": -35.15625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 35, - "left": -35.15625, - "top": 78.349411, - "right": -33.75, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 35, - "left": -33.75, - "top": 78.349411, - "right": -32.34375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 35, - "left": -32.34375, - "top": 78.349411, - "right": -30.9375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 35, - "left": -30.9375, - "top": 78.349411, - "right": -29.53125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 35, - "left": -29.53125, - "top": 78.349411, - "right": -28.125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 35, - "left": -28.125, - "top": 78.349411, - "right": -26.71875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 35, - "left": -26.71875, - "top": 78.349411, - "right": -25.3125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 35, - "left": -25.3125, - "top": 78.349411, - "right": -23.90625, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 35, - "left": -23.90625, - "top": 78.349411, - "right": -22.5, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 35, - "left": -22.5, - "top": 78.349411, - "right": -21.09375, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 35, - "left": -21.09375, - "top": 78.349411, - "right": -19.6875, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 35, - "left": -19.6875, - "top": 78.349411, - "right": -18.28125, - "bottom": 78.061989, - "countries": [ - "greenland" - ] - }, - { - "x": 76, - "y": 36, - "left": -73.125, - "top": 78.061989, - "right": -71.71875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 36, - "left": -71.71875, - "top": 78.061989, - "right": -70.3125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 36, - "left": -70.3125, - "top": 78.061989, - "right": -68.90625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 36, - "left": -68.90625, - "top": 78.061989, - "right": -67.5, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 36, - "left": -67.5, - "top": 78.061989, - "right": -66.09375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 36, - "left": -66.09375, - "top": 78.061989, - "right": -64.6875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 36, - "left": -64.6875, - "top": 78.061989, - "right": -63.28125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 36, - "left": -63.28125, - "top": 78.061989, - "right": -61.875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 36, - "left": -61.875, - "top": 78.061989, - "right": -60.46875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 36, - "left": -60.46875, - "top": 78.061989, - "right": -59.0625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 36, - "left": -59.0625, - "top": 78.061989, - "right": -57.65625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 36, - "left": -57.65625, - "top": 78.061989, - "right": -56.25, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 36, - "left": -56.25, - "top": 78.061989, - "right": -54.84375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 36, - "left": -54.84375, - "top": 78.061989, - "right": -53.4375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 36, - "left": -53.4375, - "top": 78.061989, - "right": -52.03125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 36, - "left": -52.03125, - "top": 78.061989, - "right": -50.625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 36, - "left": -50.625, - "top": 78.061989, - "right": -49.21875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 36, - "left": -49.21875, - "top": 78.061989, - "right": -47.8125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 36, - "left": -47.8125, - "top": 78.061989, - "right": -46.40625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 36, - "left": -46.40625, - "top": 78.061989, - "right": -45.0, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 36, - "left": -45.0, - "top": 78.061989, - "right": -43.59375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 36, - "left": -43.59375, - "top": 78.061989, - "right": -42.1875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 36, - "left": -42.1875, - "top": 78.061989, - "right": -40.78125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 36, - "left": -40.78125, - "top": 78.061989, - "right": -39.375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 36, - "left": -39.375, - "top": 78.061989, - "right": -37.96875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 36, - "left": -37.96875, - "top": 78.061989, - "right": -36.5625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 36, - "left": -36.5625, - "top": 78.061989, - "right": -35.15625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 36, - "left": -35.15625, - "top": 78.061989, - "right": -33.75, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 36, - "left": -33.75, - "top": 78.061989, - "right": -32.34375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 36, - "left": -32.34375, - "top": 78.061989, - "right": -30.9375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 36, - "left": -30.9375, - "top": 78.061989, - "right": -29.53125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 36, - "left": -29.53125, - "top": 78.061989, - "right": -28.125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 36, - "left": -28.125, - "top": 78.061989, - "right": -26.71875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 36, - "left": -26.71875, - "top": 78.061989, - "right": -25.3125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 36, - "left": -25.3125, - "top": 78.061989, - "right": -23.90625, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 36, - "left": -23.90625, - "top": 78.061989, - "right": -22.5, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 36, - "left": -22.5, - "top": 78.061989, - "right": -21.09375, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 36, - "left": -21.09375, - "top": 78.061989, - "right": -19.6875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 36, - "left": -19.6875, - "top": 78.061989, - "right": -18.28125, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 36, - "left": -18.28125, - "top": 78.061989, - "right": -16.875, - "bottom": 77.767582, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 37, - "left": -71.71875, - "top": 77.767582, - "right": -70.3125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 37, - "left": -70.3125, - "top": 77.767582, - "right": -68.90625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 37, - "left": -68.90625, - "top": 77.767582, - "right": -67.5, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 37, - "left": -67.5, - "top": 77.767582, - "right": -66.09375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 37, - "left": -66.09375, - "top": 77.767582, - "right": -64.6875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 37, - "left": -64.6875, - "top": 77.767582, - "right": -63.28125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 37, - "left": -63.28125, - "top": 77.767582, - "right": -61.875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 37, - "left": -61.875, - "top": 77.767582, - "right": -60.46875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 37, - "left": -60.46875, - "top": 77.767582, - "right": -59.0625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 37, - "left": -59.0625, - "top": 77.767582, - "right": -57.65625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 37, - "left": -57.65625, - "top": 77.767582, - "right": -56.25, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 37, - "left": -56.25, - "top": 77.767582, - "right": -54.84375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 37, - "left": -54.84375, - "top": 77.767582, - "right": -53.4375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 37, - "left": -53.4375, - "top": 77.767582, - "right": -52.03125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 37, - "left": -52.03125, - "top": 77.767582, - "right": -50.625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 37, - "left": -50.625, - "top": 77.767582, - "right": -49.21875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 37, - "left": -49.21875, - "top": 77.767582, - "right": -47.8125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 37, - "left": -47.8125, - "top": 77.767582, - "right": -46.40625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 37, - "left": -46.40625, - "top": 77.767582, - "right": -45.0, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 37, - "left": -45.0, - "top": 77.767582, - "right": -43.59375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 37, - "left": -43.59375, - "top": 77.767582, - "right": -42.1875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 37, - "left": -42.1875, - "top": 77.767582, - "right": -40.78125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 37, - "left": -40.78125, - "top": 77.767582, - "right": -39.375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 37, - "left": -39.375, - "top": 77.767582, - "right": -37.96875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 37, - "left": -37.96875, - "top": 77.767582, - "right": -36.5625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 37, - "left": -36.5625, - "top": 77.767582, - "right": -35.15625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 37, - "left": -35.15625, - "top": 77.767582, - "right": -33.75, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 37, - "left": -33.75, - "top": 77.767582, - "right": -32.34375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 37, - "left": -32.34375, - "top": 77.767582, - "right": -30.9375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 37, - "left": -30.9375, - "top": 77.767582, - "right": -29.53125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 37, - "left": -29.53125, - "top": 77.767582, - "right": -28.125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 37, - "left": -28.125, - "top": 77.767582, - "right": -26.71875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 37, - "left": -26.71875, - "top": 77.767582, - "right": -25.3125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 37, - "left": -25.3125, - "top": 77.767582, - "right": -23.90625, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 37, - "left": -23.90625, - "top": 77.767582, - "right": -22.5, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 37, - "left": -22.5, - "top": 77.767582, - "right": -21.09375, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 37, - "left": -21.09375, - "top": 77.767582, - "right": -19.6875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 37, - "left": -19.6875, - "top": 77.767582, - "right": -18.28125, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 37, - "left": -18.28125, - "top": 77.767582, - "right": -16.875, - "bottom": 77.466028, - "countries": [ - "greenland" - ] - }, - { - "x": 76, - "y": 38, - "left": -73.125, - "top": 77.466028, - "right": -71.71875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 38, - "left": -71.71875, - "top": 77.466028, - "right": -70.3125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 38, - "left": -70.3125, - "top": 77.466028, - "right": -68.90625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 38, - "left": -68.90625, - "top": 77.466028, - "right": -67.5, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 38, - "left": -67.5, - "top": 77.466028, - "right": -66.09375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 38, - "left": -66.09375, - "top": 77.466028, - "right": -64.6875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 38, - "left": -64.6875, - "top": 77.466028, - "right": -63.28125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 38, - "left": -63.28125, - "top": 77.466028, - "right": -61.875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 38, - "left": -61.875, - "top": 77.466028, - "right": -60.46875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 38, - "left": -60.46875, - "top": 77.466028, - "right": -59.0625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 38, - "left": -59.0625, - "top": 77.466028, - "right": -57.65625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 38, - "left": -57.65625, - "top": 77.466028, - "right": -56.25, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 38, - "left": -56.25, - "top": 77.466028, - "right": -54.84375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 38, - "left": -54.84375, - "top": 77.466028, - "right": -53.4375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 38, - "left": -53.4375, - "top": 77.466028, - "right": -52.03125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 38, - "left": -52.03125, - "top": 77.466028, - "right": -50.625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 38, - "left": -50.625, - "top": 77.466028, - "right": -49.21875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 38, - "left": -49.21875, - "top": 77.466028, - "right": -47.8125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 38, - "left": -47.8125, - "top": 77.466028, - "right": -46.40625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 38, - "left": -46.40625, - "top": 77.466028, - "right": -45.0, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 38, - "left": -45.0, - "top": 77.466028, - "right": -43.59375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 38, - "left": -43.59375, - "top": 77.466028, - "right": -42.1875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 38, - "left": -42.1875, - "top": 77.466028, - "right": -40.78125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 38, - "left": -40.78125, - "top": 77.466028, - "right": -39.375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 38, - "left": -39.375, - "top": 77.466028, - "right": -37.96875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 38, - "left": -37.96875, - "top": 77.466028, - "right": -36.5625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 38, - "left": -36.5625, - "top": 77.466028, - "right": -35.15625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 38, - "left": -35.15625, - "top": 77.466028, - "right": -33.75, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 38, - "left": -33.75, - "top": 77.466028, - "right": -32.34375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 38, - "left": -32.34375, - "top": 77.466028, - "right": -30.9375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 38, - "left": -30.9375, - "top": 77.466028, - "right": -29.53125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 38, - "left": -29.53125, - "top": 77.466028, - "right": -28.125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 38, - "left": -28.125, - "top": 77.466028, - "right": -26.71875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 38, - "left": -26.71875, - "top": 77.466028, - "right": -25.3125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 38, - "left": -25.3125, - "top": 77.466028, - "right": -23.90625, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 38, - "left": -23.90625, - "top": 77.466028, - "right": -22.5, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 38, - "left": -22.5, - "top": 77.466028, - "right": -21.09375, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 38, - "left": -21.09375, - "top": 77.466028, - "right": -19.6875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 38, - "left": -19.6875, - "top": 77.466028, - "right": -18.28125, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 38, - "left": -18.28125, - "top": 77.466028, - "right": -16.875, - "bottom": 77.157163, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 39, - "left": -71.71875, - "top": 77.157163, - "right": -70.3125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 39, - "left": -70.3125, - "top": 77.157163, - "right": -68.90625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 39, - "left": -68.90625, - "top": 77.157163, - "right": -67.5, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 39, - "left": -67.5, - "top": 77.157163, - "right": -66.09375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 39, - "left": -66.09375, - "top": 77.157163, - "right": -64.6875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 39, - "left": -64.6875, - "top": 77.157163, - "right": -63.28125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 39, - "left": -63.28125, - "top": 77.157163, - "right": -61.875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 39, - "left": -61.875, - "top": 77.157163, - "right": -60.46875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 39, - "left": -60.46875, - "top": 77.157163, - "right": -59.0625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 39, - "left": -59.0625, - "top": 77.157163, - "right": -57.65625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 39, - "left": -57.65625, - "top": 77.157163, - "right": -56.25, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 39, - "left": -56.25, - "top": 77.157163, - "right": -54.84375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 39, - "left": -54.84375, - "top": 77.157163, - "right": -53.4375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 39, - "left": -53.4375, - "top": 77.157163, - "right": -52.03125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 39, - "left": -52.03125, - "top": 77.157163, - "right": -50.625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 39, - "left": -50.625, - "top": 77.157163, - "right": -49.21875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 39, - "left": -49.21875, - "top": 77.157163, - "right": -47.8125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 39, - "left": -47.8125, - "top": 77.157163, - "right": -46.40625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 39, - "left": -46.40625, - "top": 77.157163, - "right": -45.0, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 39, - "left": -45.0, - "top": 77.157163, - "right": -43.59375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 39, - "left": -43.59375, - "top": 77.157163, - "right": -42.1875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 39, - "left": -42.1875, - "top": 77.157163, - "right": -40.78125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 39, - "left": -40.78125, - "top": 77.157163, - "right": -39.375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 39, - "left": -39.375, - "top": 77.157163, - "right": -37.96875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 39, - "left": -37.96875, - "top": 77.157163, - "right": -36.5625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 39, - "left": -36.5625, - "top": 77.157163, - "right": -35.15625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 39, - "left": -35.15625, - "top": 77.157163, - "right": -33.75, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 39, - "left": -33.75, - "top": 77.157163, - "right": -32.34375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 39, - "left": -32.34375, - "top": 77.157163, - "right": -30.9375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 39, - "left": -30.9375, - "top": 77.157163, - "right": -29.53125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 39, - "left": -29.53125, - "top": 77.157163, - "right": -28.125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 39, - "left": -28.125, - "top": 77.157163, - "right": -26.71875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 39, - "left": -26.71875, - "top": 77.157163, - "right": -25.3125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 39, - "left": -25.3125, - "top": 77.157163, - "right": -23.90625, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 39, - "left": -23.90625, - "top": 77.157163, - "right": -22.5, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 39, - "left": -22.5, - "top": 77.157163, - "right": -21.09375, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 39, - "left": -21.09375, - "top": 77.157163, - "right": -19.6875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 39, - "left": -19.6875, - "top": 77.157163, - "right": -18.28125, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 39, - "left": -18.28125, - "top": 77.157163, - "right": -16.875, - "bottom": 76.840816, - "countries": [ - "greenland" - ] - }, - { - "x": 75, - "y": 40, - "left": -74.53125, - "top": 76.840816, - "right": -73.125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 76, - "y": 40, - "left": -73.125, - "top": 76.840816, - "right": -71.71875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 77, - "y": 40, - "left": -71.71875, - "top": 76.840816, - "right": -70.3125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 40, - "left": -70.3125, - "top": 76.840816, - "right": -68.90625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 40, - "left": -68.90625, - "top": 76.840816, - "right": -67.5, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 40, - "left": -67.5, - "top": 76.840816, - "right": -66.09375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 40, - "left": -66.09375, - "top": 76.840816, - "right": -64.6875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 40, - "left": -64.6875, - "top": 76.840816, - "right": -63.28125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 40, - "left": -63.28125, - "top": 76.840816, - "right": -61.875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 40, - "left": -61.875, - "top": 76.840816, - "right": -60.46875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 40, - "left": -60.46875, - "top": 76.840816, - "right": -59.0625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 40, - "left": -59.0625, - "top": 76.840816, - "right": -57.65625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 40, - "left": -57.65625, - "top": 76.840816, - "right": -56.25, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 40, - "left": -56.25, - "top": 76.840816, - "right": -54.84375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 40, - "left": -54.84375, - "top": 76.840816, - "right": -53.4375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 40, - "left": -53.4375, - "top": 76.840816, - "right": -52.03125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 40, - "left": -52.03125, - "top": 76.840816, - "right": -50.625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 40, - "left": -50.625, - "top": 76.840816, - "right": -49.21875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 40, - "left": -49.21875, - "top": 76.840816, - "right": -47.8125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 40, - "left": -47.8125, - "top": 76.840816, - "right": -46.40625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 40, - "left": -46.40625, - "top": 76.840816, - "right": -45.0, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 40, - "left": -45.0, - "top": 76.840816, - "right": -43.59375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 40, - "left": -43.59375, - "top": 76.840816, - "right": -42.1875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 40, - "left": -42.1875, - "top": 76.840816, - "right": -40.78125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 40, - "left": -40.78125, - "top": 76.840816, - "right": -39.375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 40, - "left": -39.375, - "top": 76.840816, - "right": -37.96875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 40, - "left": -37.96875, - "top": 76.840816, - "right": -36.5625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 40, - "left": -36.5625, - "top": 76.840816, - "right": -35.15625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 40, - "left": -35.15625, - "top": 76.840816, - "right": -33.75, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 40, - "left": -33.75, - "top": 76.840816, - "right": -32.34375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 40, - "left": -32.34375, - "top": 76.840816, - "right": -30.9375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 40, - "left": -30.9375, - "top": 76.840816, - "right": -29.53125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 40, - "left": -29.53125, - "top": 76.840816, - "right": -28.125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 40, - "left": -28.125, - "top": 76.840816, - "right": -26.71875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 40, - "left": -26.71875, - "top": 76.840816, - "right": -25.3125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 40, - "left": -25.3125, - "top": 76.840816, - "right": -23.90625, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 40, - "left": -23.90625, - "top": 76.840816, - "right": -22.5, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 40, - "left": -22.5, - "top": 76.840816, - "right": -21.09375, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 40, - "left": -21.09375, - "top": 76.840816, - "right": -19.6875, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 40, - "left": -19.6875, - "top": 76.840816, - "right": -18.28125, - "bottom": 76.516819, - "countries": [ - "greenland" - ] - }, - { - "x": 78, - "y": 41, - "left": -70.3125, - "top": 76.516819, - "right": -68.90625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 41, - "left": -68.90625, - "top": 76.516819, - "right": -67.5, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 41, - "left": -67.5, - "top": 76.516819, - "right": -66.09375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 41, - "left": -66.09375, - "top": 76.516819, - "right": -64.6875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 41, - "left": -64.6875, - "top": 76.516819, - "right": -63.28125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 41, - "left": -63.28125, - "top": 76.516819, - "right": -61.875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 41, - "left": -61.875, - "top": 76.516819, - "right": -60.46875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 41, - "left": -60.46875, - "top": 76.516819, - "right": -59.0625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 41, - "left": -59.0625, - "top": 76.516819, - "right": -57.65625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 41, - "left": -57.65625, - "top": 76.516819, - "right": -56.25, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 41, - "left": -56.25, - "top": 76.516819, - "right": -54.84375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 41, - "left": -54.84375, - "top": 76.516819, - "right": -53.4375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 41, - "left": -53.4375, - "top": 76.516819, - "right": -52.03125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 41, - "left": -52.03125, - "top": 76.516819, - "right": -50.625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 41, - "left": -50.625, - "top": 76.516819, - "right": -49.21875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 41, - "left": -49.21875, - "top": 76.516819, - "right": -47.8125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 41, - "left": -47.8125, - "top": 76.516819, - "right": -46.40625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 41, - "left": -46.40625, - "top": 76.516819, - "right": -45.0, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 41, - "left": -45.0, - "top": 76.516819, - "right": -43.59375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 41, - "left": -43.59375, - "top": 76.516819, - "right": -42.1875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 41, - "left": -42.1875, - "top": 76.516819, - "right": -40.78125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 41, - "left": -40.78125, - "top": 76.516819, - "right": -39.375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 41, - "left": -39.375, - "top": 76.516819, - "right": -37.96875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 41, - "left": -37.96875, - "top": 76.516819, - "right": -36.5625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 41, - "left": -36.5625, - "top": 76.516819, - "right": -35.15625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 41, - "left": -35.15625, - "top": 76.516819, - "right": -33.75, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 41, - "left": -33.75, - "top": 76.516819, - "right": -32.34375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 41, - "left": -32.34375, - "top": 76.516819, - "right": -30.9375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 41, - "left": -30.9375, - "top": 76.516819, - "right": -29.53125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 41, - "left": -29.53125, - "top": 76.516819, - "right": -28.125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 41, - "left": -28.125, - "top": 76.516819, - "right": -26.71875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 41, - "left": -26.71875, - "top": 76.516819, - "right": -25.3125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 41, - "left": -25.3125, - "top": 76.516819, - "right": -23.90625, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 41, - "left": -23.90625, - "top": 76.516819, - "right": -22.5, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 41, - "left": -22.5, - "top": 76.516819, - "right": -21.09375, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 41, - "left": -21.09375, - "top": 76.516819, - "right": -19.6875, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 41, - "left": -19.6875, - "top": 76.516819, - "right": -18.28125, - "bottom": 76.184995, - "countries": [ - "greenland" - ] - }, - { - "x": 79, - "y": 42, - "left": -68.90625, - "top": 76.184995, - "right": -67.5, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 80, - "y": 42, - "left": -67.5, - "top": 76.184995, - "right": -66.09375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 81, - "y": 42, - "left": -66.09375, - "top": 76.184995, - "right": -64.6875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 82, - "y": 42, - "left": -64.6875, - "top": 76.184995, - "right": -63.28125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 83, - "y": 42, - "left": -63.28125, - "top": 76.184995, - "right": -61.875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 84, - "y": 42, - "left": -61.875, - "top": 76.184995, - "right": -60.46875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 42, - "left": -60.46875, - "top": 76.184995, - "right": -59.0625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 42, - "left": -59.0625, - "top": 76.184995, - "right": -57.65625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 42, - "left": -57.65625, - "top": 76.184995, - "right": -56.25, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 42, - "left": -56.25, - "top": 76.184995, - "right": -54.84375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 42, - "left": -54.84375, - "top": 76.184995, - "right": -53.4375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 42, - "left": -53.4375, - "top": 76.184995, - "right": -52.03125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 42, - "left": -52.03125, - "top": 76.184995, - "right": -50.625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 42, - "left": -50.625, - "top": 76.184995, - "right": -49.21875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 42, - "left": -49.21875, - "top": 76.184995, - "right": -47.8125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 42, - "left": -47.8125, - "top": 76.184995, - "right": -46.40625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 42, - "left": -46.40625, - "top": 76.184995, - "right": -45.0, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 42, - "left": -45.0, - "top": 76.184995, - "right": -43.59375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 42, - "left": -43.59375, - "top": 76.184995, - "right": -42.1875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 42, - "left": -42.1875, - "top": 76.184995, - "right": -40.78125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 42, - "left": -40.78125, - "top": 76.184995, - "right": -39.375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 42, - "left": -39.375, - "top": 76.184995, - "right": -37.96875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 42, - "left": -37.96875, - "top": 76.184995, - "right": -36.5625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 42, - "left": -36.5625, - "top": 76.184995, - "right": -35.15625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 42, - "left": -35.15625, - "top": 76.184995, - "right": -33.75, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 42, - "left": -33.75, - "top": 76.184995, - "right": -32.34375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 42, - "left": -32.34375, - "top": 76.184995, - "right": -30.9375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 42, - "left": -30.9375, - "top": 76.184995, - "right": -29.53125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 42, - "left": -29.53125, - "top": 76.184995, - "right": -28.125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 42, - "left": -28.125, - "top": 76.184995, - "right": -26.71875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 42, - "left": -26.71875, - "top": 76.184995, - "right": -25.3125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 42, - "left": -25.3125, - "top": 76.184995, - "right": -23.90625, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 42, - "left": -23.90625, - "top": 76.184995, - "right": -22.5, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 42, - "left": -22.5, - "top": 76.184995, - "right": -21.09375, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 42, - "left": -21.09375, - "top": 76.184995, - "right": -19.6875, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 42, - "left": -19.6875, - "top": 76.184995, - "right": -18.28125, - "bottom": 75.845169, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 43, - "left": -60.46875, - "top": 75.845169, - "right": -59.0625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 43, - "left": -59.0625, - "top": 75.845169, - "right": -57.65625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 43, - "left": -57.65625, - "top": 75.845169, - "right": -56.25, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 43, - "left": -56.25, - "top": 75.845169, - "right": -54.84375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 43, - "left": -54.84375, - "top": 75.845169, - "right": -53.4375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 43, - "left": -53.4375, - "top": 75.845169, - "right": -52.03125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 43, - "left": -52.03125, - "top": 75.845169, - "right": -50.625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 43, - "left": -50.625, - "top": 75.845169, - "right": -49.21875, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 43, - "left": -49.21875, - "top": 75.845169, - "right": -47.8125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 43, - "left": -47.8125, - "top": 75.845169, - "right": -46.40625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 43, - "left": -46.40625, - "top": 75.845169, - "right": -45.0, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 43, - "left": -45.0, - "top": 75.845169, - "right": -43.59375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 43, - "left": -43.59375, - "top": 75.845169, - "right": -42.1875, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 43, - "left": -42.1875, - "top": 75.845169, - "right": -40.78125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 43, - "left": -40.78125, - "top": 75.845169, - "right": -39.375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 43, - "left": -39.375, - "top": 75.845169, - "right": -37.96875, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 43, - "left": -37.96875, - "top": 75.845169, - "right": -36.5625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 43, - "left": -36.5625, - "top": 75.845169, - "right": -35.15625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 43, - "left": -35.15625, - "top": 75.845169, - "right": -33.75, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 43, - "left": -33.75, - "top": 75.845169, - "right": -32.34375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 43, - "left": -32.34375, - "top": 75.845169, - "right": -30.9375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 43, - "left": -30.9375, - "top": 75.845169, - "right": -29.53125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 43, - "left": -29.53125, - "top": 75.845169, - "right": -28.125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 43, - "left": -28.125, - "top": 75.845169, - "right": -26.71875, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 43, - "left": -26.71875, - "top": 75.845169, - "right": -25.3125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 43, - "left": -25.3125, - "top": 75.845169, - "right": -23.90625, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 43, - "left": -23.90625, - "top": 75.845169, - "right": -22.5, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 43, - "left": -22.5, - "top": 75.845169, - "right": -21.09375, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 43, - "left": -21.09375, - "top": 75.845169, - "right": -19.6875, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 43, - "left": -19.6875, - "top": 75.845169, - "right": -18.28125, - "bottom": 75.497157, - "countries": [ - "greenland" - ] - }, - { - "x": 85, - "y": 44, - "left": -60.46875, - "top": 75.497157, - "right": -59.0625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 44, - "left": -59.0625, - "top": 75.497157, - "right": -57.65625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 44, - "left": -57.65625, - "top": 75.497157, - "right": -56.25, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 44, - "left": -56.25, - "top": 75.497157, - "right": -54.84375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 44, - "left": -54.84375, - "top": 75.497157, - "right": -53.4375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 44, - "left": -53.4375, - "top": 75.497157, - "right": -52.03125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 44, - "left": -52.03125, - "top": 75.497157, - "right": -50.625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 44, - "left": -50.625, - "top": 75.497157, - "right": -49.21875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 44, - "left": -49.21875, - "top": 75.497157, - "right": -47.8125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 44, - "left": -47.8125, - "top": 75.497157, - "right": -46.40625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 44, - "left": -46.40625, - "top": 75.497157, - "right": -45.0, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 44, - "left": -45.0, - "top": 75.497157, - "right": -43.59375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 44, - "left": -43.59375, - "top": 75.497157, - "right": -42.1875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 44, - "left": -42.1875, - "top": 75.497157, - "right": -40.78125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 44, - "left": -40.78125, - "top": 75.497157, - "right": -39.375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 44, - "left": -39.375, - "top": 75.497157, - "right": -37.96875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 44, - "left": -37.96875, - "top": 75.497157, - "right": -36.5625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 44, - "left": -36.5625, - "top": 75.497157, - "right": -35.15625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 44, - "left": -35.15625, - "top": 75.497157, - "right": -33.75, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 44, - "left": -33.75, - "top": 75.497157, - "right": -32.34375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 44, - "left": -32.34375, - "top": 75.497157, - "right": -30.9375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 44, - "left": -30.9375, - "top": 75.497157, - "right": -29.53125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 44, - "left": -29.53125, - "top": 75.497157, - "right": -28.125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 44, - "left": -28.125, - "top": 75.497157, - "right": -26.71875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 44, - "left": -26.71875, - "top": 75.497157, - "right": -25.3125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 44, - "left": -25.3125, - "top": 75.497157, - "right": -23.90625, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 44, - "left": -23.90625, - "top": 75.497157, - "right": -22.5, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 44, - "left": -22.5, - "top": 75.497157, - "right": -21.09375, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 44, - "left": -21.09375, - "top": 75.497157, - "right": -19.6875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 44, - "left": -19.6875, - "top": 75.497157, - "right": -18.28125, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 44, - "left": -18.28125, - "top": 75.497157, - "right": -16.875, - "bottom": 75.140778, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 45, - "left": -59.0625, - "top": 75.140778, - "right": -57.65625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 45, - "left": -57.65625, - "top": 75.140778, - "right": -56.25, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 45, - "left": -56.25, - "top": 75.140778, - "right": -54.84375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 45, - "left": -54.84375, - "top": 75.140778, - "right": -53.4375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 45, - "left": -53.4375, - "top": 75.140778, - "right": -52.03125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 45, - "left": -52.03125, - "top": 75.140778, - "right": -50.625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 45, - "left": -50.625, - "top": 75.140778, - "right": -49.21875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 45, - "left": -49.21875, - "top": 75.140778, - "right": -47.8125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 45, - "left": -47.8125, - "top": 75.140778, - "right": -46.40625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 45, - "left": -46.40625, - "top": 75.140778, - "right": -45.0, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 45, - "left": -45.0, - "top": 75.140778, - "right": -43.59375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 45, - "left": -43.59375, - "top": 75.140778, - "right": -42.1875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 45, - "left": -42.1875, - "top": 75.140778, - "right": -40.78125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 45, - "left": -40.78125, - "top": 75.140778, - "right": -39.375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 45, - "left": -39.375, - "top": 75.140778, - "right": -37.96875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 45, - "left": -37.96875, - "top": 75.140778, - "right": -36.5625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 45, - "left": -36.5625, - "top": 75.140778, - "right": -35.15625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 45, - "left": -35.15625, - "top": 75.140778, - "right": -33.75, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 45, - "left": -33.75, - "top": 75.140778, - "right": -32.34375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 45, - "left": -32.34375, - "top": 75.140778, - "right": -30.9375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 45, - "left": -30.9375, - "top": 75.140778, - "right": -29.53125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 45, - "left": -29.53125, - "top": 75.140778, - "right": -28.125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 45, - "left": -28.125, - "top": 75.140778, - "right": -26.71875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 45, - "left": -26.71875, - "top": 75.140778, - "right": -25.3125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 45, - "left": -25.3125, - "top": 75.140778, - "right": -23.90625, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 45, - "left": -23.90625, - "top": 75.140778, - "right": -22.5, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 45, - "left": -22.5, - "top": 75.140778, - "right": -21.09375, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 45, - "left": -21.09375, - "top": 75.140778, - "right": -19.6875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 45, - "left": -19.6875, - "top": 75.140778, - "right": -18.28125, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 115, - "y": 45, - "left": -18.28125, - "top": 75.140778, - "right": -16.875, - "bottom": 74.775843, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 46, - "left": -59.0625, - "top": 74.775843, - "right": -57.65625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 46, - "left": -57.65625, - "top": 74.775843, - "right": -56.25, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 46, - "left": -56.25, - "top": 74.775843, - "right": -54.84375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 46, - "left": -54.84375, - "top": 74.775843, - "right": -53.4375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 46, - "left": -53.4375, - "top": 74.775843, - "right": -52.03125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 46, - "left": -52.03125, - "top": 74.775843, - "right": -50.625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 46, - "left": -50.625, - "top": 74.775843, - "right": -49.21875, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 46, - "left": -49.21875, - "top": 74.775843, - "right": -47.8125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 46, - "left": -47.8125, - "top": 74.775843, - "right": -46.40625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 46, - "left": -46.40625, - "top": 74.775843, - "right": -45.0, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 46, - "left": -45.0, - "top": 74.775843, - "right": -43.59375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 46, - "left": -43.59375, - "top": 74.775843, - "right": -42.1875, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 46, - "left": -42.1875, - "top": 74.775843, - "right": -40.78125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 46, - "left": -40.78125, - "top": 74.775843, - "right": -39.375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 46, - "left": -39.375, - "top": 74.775843, - "right": -37.96875, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 46, - "left": -37.96875, - "top": 74.775843, - "right": -36.5625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 46, - "left": -36.5625, - "top": 74.775843, - "right": -35.15625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 46, - "left": -35.15625, - "top": 74.775843, - "right": -33.75, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 46, - "left": -33.75, - "top": 74.775843, - "right": -32.34375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 46, - "left": -32.34375, - "top": 74.775843, - "right": -30.9375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 46, - "left": -30.9375, - "top": 74.775843, - "right": -29.53125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 46, - "left": -29.53125, - "top": 74.775843, - "right": -28.125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 46, - "left": -28.125, - "top": 74.775843, - "right": -26.71875, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 46, - "left": -26.71875, - "top": 74.775843, - "right": -25.3125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 46, - "left": -25.3125, - "top": 74.775843, - "right": -23.90625, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 46, - "left": -23.90625, - "top": 74.775843, - "right": -22.5, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 46, - "left": -22.5, - "top": 74.775843, - "right": -21.09375, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 46, - "left": -21.09375, - "top": 74.775843, - "right": -19.6875, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 46, - "left": -19.6875, - "top": 74.775843, - "right": -18.28125, - "bottom": 74.402163, - "countries": [ - "greenland" - ] - }, - { - "x": 86, - "y": 47, - "left": -59.0625, - "top": 74.402163, - "right": -57.65625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 47, - "left": -57.65625, - "top": 74.402163, - "right": -56.25, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 47, - "left": -56.25, - "top": 74.402163, - "right": -54.84375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 47, - "left": -54.84375, - "top": 74.402163, - "right": -53.4375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 47, - "left": -53.4375, - "top": 74.402163, - "right": -52.03125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 47, - "left": -52.03125, - "top": 74.402163, - "right": -50.625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 47, - "left": -50.625, - "top": 74.402163, - "right": -49.21875, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 47, - "left": -49.21875, - "top": 74.402163, - "right": -47.8125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 47, - "left": -47.8125, - "top": 74.402163, - "right": -46.40625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 47, - "left": -46.40625, - "top": 74.402163, - "right": -45.0, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 47, - "left": -45.0, - "top": 74.402163, - "right": -43.59375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 47, - "left": -43.59375, - "top": 74.402163, - "right": -42.1875, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 47, - "left": -42.1875, - "top": 74.402163, - "right": -40.78125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 47, - "left": -40.78125, - "top": 74.402163, - "right": -39.375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 47, - "left": -39.375, - "top": 74.402163, - "right": -37.96875, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 47, - "left": -37.96875, - "top": 74.402163, - "right": -36.5625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 47, - "left": -36.5625, - "top": 74.402163, - "right": -35.15625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 47, - "left": -35.15625, - "top": 74.402163, - "right": -33.75, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 47, - "left": -33.75, - "top": 74.402163, - "right": -32.34375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 47, - "left": -32.34375, - "top": 74.402163, - "right": -30.9375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 47, - "left": -30.9375, - "top": 74.402163, - "right": -29.53125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 47, - "left": -29.53125, - "top": 74.402163, - "right": -28.125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 47, - "left": -28.125, - "top": 74.402163, - "right": -26.71875, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 47, - "left": -26.71875, - "top": 74.402163, - "right": -25.3125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 47, - "left": -25.3125, - "top": 74.402163, - "right": -23.90625, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 47, - "left": -23.90625, - "top": 74.402163, - "right": -22.5, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 47, - "left": -22.5, - "top": 74.402163, - "right": -21.09375, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 47, - "left": -21.09375, - "top": 74.402163, - "right": -19.6875, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 114, - "y": 47, - "left": -19.6875, - "top": 74.402163, - "right": -18.28125, - "bottom": 74.019543, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 48, - "left": -57.65625, - "top": 74.019543, - "right": -56.25, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 48, - "left": -56.25, - "top": 74.019543, - "right": -54.84375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 48, - "left": -54.84375, - "top": 74.019543, - "right": -53.4375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 48, - "left": -53.4375, - "top": 74.019543, - "right": -52.03125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 48, - "left": -52.03125, - "top": 74.019543, - "right": -50.625, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 48, - "left": -50.625, - "top": 74.019543, - "right": -49.21875, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 48, - "left": -49.21875, - "top": 74.019543, - "right": -47.8125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 48, - "left": -47.8125, - "top": 74.019543, - "right": -46.40625, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 48, - "left": -46.40625, - "top": 74.019543, - "right": -45.0, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 48, - "left": -45.0, - "top": 74.019543, - "right": -43.59375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 48, - "left": -43.59375, - "top": 74.019543, - "right": -42.1875, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 48, - "left": -42.1875, - "top": 74.019543, - "right": -40.78125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 48, - "left": -40.78125, - "top": 74.019543, - "right": -39.375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 48, - "left": -39.375, - "top": 74.019543, - "right": -37.96875, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 48, - "left": -37.96875, - "top": 74.019543, - "right": -36.5625, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 48, - "left": -36.5625, - "top": 74.019543, - "right": -35.15625, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 48, - "left": -35.15625, - "top": 74.019543, - "right": -33.75, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 48, - "left": -33.75, - "top": 74.019543, - "right": -32.34375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 48, - "left": -32.34375, - "top": 74.019543, - "right": -30.9375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 48, - "left": -30.9375, - "top": 74.019543, - "right": -29.53125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 48, - "left": -29.53125, - "top": 74.019543, - "right": -28.125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 48, - "left": -28.125, - "top": 74.019543, - "right": -26.71875, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 48, - "left": -26.71875, - "top": 74.019543, - "right": -25.3125, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 48, - "left": -25.3125, - "top": 74.019543, - "right": -23.90625, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 48, - "left": -23.90625, - "top": 74.019543, - "right": -22.5, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 48, - "left": -22.5, - "top": 74.019543, - "right": -21.09375, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 48, - "left": -21.09375, - "top": 74.019543, - "right": -19.6875, - "bottom": 73.627789, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 49, - "left": -57.65625, - "top": 73.627789, - "right": -56.25, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 49, - "left": -56.25, - "top": 73.627789, - "right": -54.84375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 49, - "left": -54.84375, - "top": 73.627789, - "right": -53.4375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 49, - "left": -53.4375, - "top": 73.627789, - "right": -52.03125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 49, - "left": -52.03125, - "top": 73.627789, - "right": -50.625, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 49, - "left": -50.625, - "top": 73.627789, - "right": -49.21875, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 49, - "left": -49.21875, - "top": 73.627789, - "right": -47.8125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 49, - "left": -47.8125, - "top": 73.627789, - "right": -46.40625, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 49, - "left": -46.40625, - "top": 73.627789, - "right": -45.0, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 49, - "left": -45.0, - "top": 73.627789, - "right": -43.59375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 49, - "left": -43.59375, - "top": 73.627789, - "right": -42.1875, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 49, - "left": -42.1875, - "top": 73.627789, - "right": -40.78125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 49, - "left": -40.78125, - "top": 73.627789, - "right": -39.375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 49, - "left": -39.375, - "top": 73.627789, - "right": -37.96875, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 49, - "left": -37.96875, - "top": 73.627789, - "right": -36.5625, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 49, - "left": -36.5625, - "top": 73.627789, - "right": -35.15625, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 49, - "left": -35.15625, - "top": 73.627789, - "right": -33.75, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 49, - "left": -33.75, - "top": 73.627789, - "right": -32.34375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 49, - "left": -32.34375, - "top": 73.627789, - "right": -30.9375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 49, - "left": -30.9375, - "top": 73.627789, - "right": -29.53125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 49, - "left": -29.53125, - "top": 73.627789, - "right": -28.125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 49, - "left": -28.125, - "top": 73.627789, - "right": -26.71875, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 49, - "left": -26.71875, - "top": 73.627789, - "right": -25.3125, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 49, - "left": -25.3125, - "top": 73.627789, - "right": -23.90625, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 49, - "left": -23.90625, - "top": 73.627789, - "right": -22.5, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 49, - "left": -22.5, - "top": 73.627789, - "right": -21.09375, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 113, - "y": 49, - "left": -21.09375, - "top": 73.627789, - "right": -19.6875, - "bottom": 73.2267, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 50, - "left": -57.65625, - "top": 73.2267, - "right": -56.25, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 50, - "left": -56.25, - "top": 73.2267, - "right": -54.84375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 50, - "left": -54.84375, - "top": 73.2267, - "right": -53.4375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 50, - "left": -53.4375, - "top": 73.2267, - "right": -52.03125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 50, - "left": -52.03125, - "top": 73.2267, - "right": -50.625, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 50, - "left": -50.625, - "top": 73.2267, - "right": -49.21875, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 50, - "left": -49.21875, - "top": 73.2267, - "right": -47.8125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 50, - "left": -47.8125, - "top": 73.2267, - "right": -46.40625, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 50, - "left": -46.40625, - "top": 73.2267, - "right": -45.0, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 50, - "left": -45.0, - "top": 73.2267, - "right": -43.59375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 50, - "left": -43.59375, - "top": 73.2267, - "right": -42.1875, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 50, - "left": -42.1875, - "top": 73.2267, - "right": -40.78125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 50, - "left": -40.78125, - "top": 73.2267, - "right": -39.375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 50, - "left": -39.375, - "top": 73.2267, - "right": -37.96875, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 50, - "left": -37.96875, - "top": 73.2267, - "right": -36.5625, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 50, - "left": -36.5625, - "top": 73.2267, - "right": -35.15625, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 50, - "left": -35.15625, - "top": 73.2267, - "right": -33.75, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 50, - "left": -33.75, - "top": 73.2267, - "right": -32.34375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 50, - "left": -32.34375, - "top": 73.2267, - "right": -30.9375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 50, - "left": -30.9375, - "top": 73.2267, - "right": -29.53125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 50, - "left": -29.53125, - "top": 73.2267, - "right": -28.125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 50, - "left": -28.125, - "top": 73.2267, - "right": -26.71875, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 50, - "left": -26.71875, - "top": 73.2267, - "right": -25.3125, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 50, - "left": -25.3125, - "top": 73.2267, - "right": -23.90625, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 50, - "left": -23.90625, - "top": 73.2267, - "right": -22.5, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 50, - "left": -22.5, - "top": 73.2267, - "right": -21.09375, - "bottom": 72.816074, - "countries": [ - "greenland" - ] - }, - { - "x": 87, - "y": 51, - "left": -57.65625, - "top": 72.816074, - "right": -56.25, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 51, - "left": -56.25, - "top": 72.816074, - "right": -54.84375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 51, - "left": -54.84375, - "top": 72.816074, - "right": -53.4375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 51, - "left": -53.4375, - "top": 72.816074, - "right": -52.03125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 51, - "left": -52.03125, - "top": 72.816074, - "right": -50.625, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 51, - "left": -50.625, - "top": 72.816074, - "right": -49.21875, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 51, - "left": -49.21875, - "top": 72.816074, - "right": -47.8125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 51, - "left": -47.8125, - "top": 72.816074, - "right": -46.40625, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 51, - "left": -46.40625, - "top": 72.816074, - "right": -45.0, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 51, - "left": -45.0, - "top": 72.816074, - "right": -43.59375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 51, - "left": -43.59375, - "top": 72.816074, - "right": -42.1875, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 51, - "left": -42.1875, - "top": 72.816074, - "right": -40.78125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 51, - "left": -40.78125, - "top": 72.816074, - "right": -39.375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 51, - "left": -39.375, - "top": 72.816074, - "right": -37.96875, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 51, - "left": -37.96875, - "top": 72.816074, - "right": -36.5625, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 51, - "left": -36.5625, - "top": 72.816074, - "right": -35.15625, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 51, - "left": -35.15625, - "top": 72.816074, - "right": -33.75, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 51, - "left": -33.75, - "top": 72.816074, - "right": -32.34375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 51, - "left": -32.34375, - "top": 72.816074, - "right": -30.9375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 51, - "left": -30.9375, - "top": 72.816074, - "right": -29.53125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 51, - "left": -29.53125, - "top": 72.816074, - "right": -28.125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 51, - "left": -28.125, - "top": 72.816074, - "right": -26.71875, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 51, - "left": -26.71875, - "top": 72.816074, - "right": -25.3125, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 51, - "left": -25.3125, - "top": 72.816074, - "right": -23.90625, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 51, - "left": -23.90625, - "top": 72.816074, - "right": -22.5, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 51, - "left": -22.5, - "top": 72.816074, - "right": -21.09375, - "bottom": 72.395706, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 52, - "left": -56.25, - "top": 72.395706, - "right": -54.84375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 52, - "left": -54.84375, - "top": 72.395706, - "right": -53.4375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 52, - "left": -53.4375, - "top": 72.395706, - "right": -52.03125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 52, - "left": -52.03125, - "top": 72.395706, - "right": -50.625, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 52, - "left": -50.625, - "top": 72.395706, - "right": -49.21875, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 52, - "left": -49.21875, - "top": 72.395706, - "right": -47.8125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 52, - "left": -47.8125, - "top": 72.395706, - "right": -46.40625, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 52, - "left": -46.40625, - "top": 72.395706, - "right": -45.0, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 52, - "left": -45.0, - "top": 72.395706, - "right": -43.59375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 52, - "left": -43.59375, - "top": 72.395706, - "right": -42.1875, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 52, - "left": -42.1875, - "top": 72.395706, - "right": -40.78125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 52, - "left": -40.78125, - "top": 72.395706, - "right": -39.375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 52, - "left": -39.375, - "top": 72.395706, - "right": -37.96875, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 52, - "left": -37.96875, - "top": 72.395706, - "right": -36.5625, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 52, - "left": -36.5625, - "top": 72.395706, - "right": -35.15625, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 52, - "left": -35.15625, - "top": 72.395706, - "right": -33.75, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 52, - "left": -33.75, - "top": 72.395706, - "right": -32.34375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 52, - "left": -32.34375, - "top": 72.395706, - "right": -30.9375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 52, - "left": -30.9375, - "top": 72.395706, - "right": -29.53125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 52, - "left": -29.53125, - "top": 72.395706, - "right": -28.125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 52, - "left": -28.125, - "top": 72.395706, - "right": -26.71875, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 52, - "left": -26.71875, - "top": 72.395706, - "right": -25.3125, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 52, - "left": -25.3125, - "top": 72.395706, - "right": -23.90625, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 52, - "left": -23.90625, - "top": 72.395706, - "right": -22.5, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 52, - "left": -22.5, - "top": 72.395706, - "right": -21.09375, - "bottom": 71.965388, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 53, - "left": -56.25, - "top": 71.965388, - "right": -54.84375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 53, - "left": -54.84375, - "top": 71.965388, - "right": -53.4375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 53, - "left": -53.4375, - "top": 71.965388, - "right": -52.03125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 53, - "left": -52.03125, - "top": 71.965388, - "right": -50.625, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 53, - "left": -50.625, - "top": 71.965388, - "right": -49.21875, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 53, - "left": -49.21875, - "top": 71.965388, - "right": -47.8125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 53, - "left": -47.8125, - "top": 71.965388, - "right": -46.40625, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 53, - "left": -46.40625, - "top": 71.965388, - "right": -45.0, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 53, - "left": -45.0, - "top": 71.965388, - "right": -43.59375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 53, - "left": -43.59375, - "top": 71.965388, - "right": -42.1875, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 53, - "left": -42.1875, - "top": 71.965388, - "right": -40.78125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 53, - "left": -40.78125, - "top": 71.965388, - "right": -39.375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 53, - "left": -39.375, - "top": 71.965388, - "right": -37.96875, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 53, - "left": -37.96875, - "top": 71.965388, - "right": -36.5625, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 53, - "left": -36.5625, - "top": 71.965388, - "right": -35.15625, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 53, - "left": -35.15625, - "top": 71.965388, - "right": -33.75, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 53, - "left": -33.75, - "top": 71.965388, - "right": -32.34375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 53, - "left": -32.34375, - "top": 71.965388, - "right": -30.9375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 53, - "left": -30.9375, - "top": 71.965388, - "right": -29.53125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 53, - "left": -29.53125, - "top": 71.965388, - "right": -28.125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 53, - "left": -28.125, - "top": 71.965388, - "right": -26.71875, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 53, - "left": -26.71875, - "top": 71.965388, - "right": -25.3125, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 53, - "left": -25.3125, - "top": 71.965388, - "right": -23.90625, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 53, - "left": -23.90625, - "top": 71.965388, - "right": -22.5, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 53, - "left": -22.5, - "top": 71.965388, - "right": -21.09375, - "bottom": 71.524909, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 54, - "left": -56.25, - "top": 71.524909, - "right": -54.84375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 54, - "left": -54.84375, - "top": 71.524909, - "right": -53.4375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 54, - "left": -53.4375, - "top": 71.524909, - "right": -52.03125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 54, - "left": -52.03125, - "top": 71.524909, - "right": -50.625, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 54, - "left": -50.625, - "top": 71.524909, - "right": -49.21875, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 54, - "left": -49.21875, - "top": 71.524909, - "right": -47.8125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 54, - "left": -47.8125, - "top": 71.524909, - "right": -46.40625, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 54, - "left": -46.40625, - "top": 71.524909, - "right": -45.0, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 54, - "left": -45.0, - "top": 71.524909, - "right": -43.59375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 54, - "left": -43.59375, - "top": 71.524909, - "right": -42.1875, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 54, - "left": -42.1875, - "top": 71.524909, - "right": -40.78125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 54, - "left": -40.78125, - "top": 71.524909, - "right": -39.375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 54, - "left": -39.375, - "top": 71.524909, - "right": -37.96875, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 54, - "left": -37.96875, - "top": 71.524909, - "right": -36.5625, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 54, - "left": -36.5625, - "top": 71.524909, - "right": -35.15625, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 54, - "left": -35.15625, - "top": 71.524909, - "right": -33.75, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 54, - "left": -33.75, - "top": 71.524909, - "right": -32.34375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 54, - "left": -32.34375, - "top": 71.524909, - "right": -30.9375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 54, - "left": -30.9375, - "top": 71.524909, - "right": -29.53125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 54, - "left": -29.53125, - "top": 71.524909, - "right": -28.125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 54, - "left": -28.125, - "top": 71.524909, - "right": -26.71875, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 54, - "left": -26.71875, - "top": 71.524909, - "right": -25.3125, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 54, - "left": -25.3125, - "top": 71.524909, - "right": -23.90625, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 54, - "left": -23.90625, - "top": 71.524909, - "right": -22.5, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 54, - "left": -22.5, - "top": 71.524909, - "right": -21.09375, - "bottom": 71.074056, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 55, - "left": -54.84375, - "top": 71.074056, - "right": -53.4375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 55, - "left": -53.4375, - "top": 71.074056, - "right": -52.03125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 55, - "left": -52.03125, - "top": 71.074056, - "right": -50.625, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 55, - "left": -50.625, - "top": 71.074056, - "right": -49.21875, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 55, - "left": -49.21875, - "top": 71.074056, - "right": -47.8125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 55, - "left": -47.8125, - "top": 71.074056, - "right": -46.40625, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 55, - "left": -46.40625, - "top": 71.074056, - "right": -45.0, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 55, - "left": -45.0, - "top": 71.074056, - "right": -43.59375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 55, - "left": -43.59375, - "top": 71.074056, - "right": -42.1875, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 55, - "left": -42.1875, - "top": 71.074056, - "right": -40.78125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 55, - "left": -40.78125, - "top": 71.074056, - "right": -39.375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 55, - "left": -39.375, - "top": 71.074056, - "right": -37.96875, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 55, - "left": -37.96875, - "top": 71.074056, - "right": -36.5625, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 55, - "left": -36.5625, - "top": 71.074056, - "right": -35.15625, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 55, - "left": -35.15625, - "top": 71.074056, - "right": -33.75, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 55, - "left": -33.75, - "top": 71.074056, - "right": -32.34375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 55, - "left": -32.34375, - "top": 71.074056, - "right": -30.9375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 55, - "left": -30.9375, - "top": 71.074056, - "right": -29.53125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 55, - "left": -29.53125, - "top": 71.074056, - "right": -28.125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 55, - "left": -28.125, - "top": 71.074056, - "right": -26.71875, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 55, - "left": -26.71875, - "top": 71.074056, - "right": -25.3125, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 55, - "left": -25.3125, - "top": 71.074056, - "right": -23.90625, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 55, - "left": -23.90625, - "top": 71.074056, - "right": -22.5, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 55, - "left": -22.5, - "top": 71.074056, - "right": -21.09375, - "bottom": 70.612614, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 56, - "left": -56.25, - "top": 70.612614, - "right": -54.84375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 56, - "left": -54.84375, - "top": 70.612614, - "right": -53.4375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 56, - "left": -53.4375, - "top": 70.612614, - "right": -52.03125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 56, - "left": -52.03125, - "top": 70.612614, - "right": -50.625, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 56, - "left": -50.625, - "top": 70.612614, - "right": -49.21875, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 56, - "left": -49.21875, - "top": 70.612614, - "right": -47.8125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 56, - "left": -47.8125, - "top": 70.612614, - "right": -46.40625, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 56, - "left": -46.40625, - "top": 70.612614, - "right": -45.0, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 56, - "left": -45.0, - "top": 70.612614, - "right": -43.59375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 56, - "left": -43.59375, - "top": 70.612614, - "right": -42.1875, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 56, - "left": -42.1875, - "top": 70.612614, - "right": -40.78125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 56, - "left": -40.78125, - "top": 70.612614, - "right": -39.375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 56, - "left": -39.375, - "top": 70.612614, - "right": -37.96875, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 56, - "left": -37.96875, - "top": 70.612614, - "right": -36.5625, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 56, - "left": -36.5625, - "top": 70.612614, - "right": -35.15625, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 56, - "left": -35.15625, - "top": 70.612614, - "right": -33.75, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 56, - "left": -33.75, - "top": 70.612614, - "right": -32.34375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 56, - "left": -32.34375, - "top": 70.612614, - "right": -30.9375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 56, - "left": -30.9375, - "top": 70.612614, - "right": -29.53125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 56, - "left": -29.53125, - "top": 70.612614, - "right": -28.125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 56, - "left": -28.125, - "top": 70.612614, - "right": -26.71875, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 56, - "left": -26.71875, - "top": 70.612614, - "right": -25.3125, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 56, - "left": -25.3125, - "top": 70.612614, - "right": -23.90625, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 56, - "left": -23.90625, - "top": 70.612614, - "right": -22.5, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 56, - "left": -22.5, - "top": 70.612614, - "right": -21.09375, - "bottom": 70.140364, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 57, - "left": -56.25, - "top": 70.140364, - "right": -54.84375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 57, - "left": -54.84375, - "top": 70.140364, - "right": -53.4375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 57, - "left": -53.4375, - "top": 70.140364, - "right": -52.03125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 57, - "left": -52.03125, - "top": 70.140364, - "right": -50.625, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 57, - "left": -50.625, - "top": 70.140364, - "right": -49.21875, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 57, - "left": -49.21875, - "top": 70.140364, - "right": -47.8125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 57, - "left": -47.8125, - "top": 70.140364, - "right": -46.40625, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 57, - "left": -46.40625, - "top": 70.140364, - "right": -45.0, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 57, - "left": -45.0, - "top": 70.140364, - "right": -43.59375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 57, - "left": -43.59375, - "top": 70.140364, - "right": -42.1875, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 57, - "left": -42.1875, - "top": 70.140364, - "right": -40.78125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 57, - "left": -40.78125, - "top": 70.140364, - "right": -39.375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 57, - "left": -39.375, - "top": 70.140364, - "right": -37.96875, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 57, - "left": -37.96875, - "top": 70.140364, - "right": -36.5625, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 57, - "left": -36.5625, - "top": 70.140364, - "right": -35.15625, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 57, - "left": -35.15625, - "top": 70.140364, - "right": -33.75, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 57, - "left": -33.75, - "top": 70.140364, - "right": -32.34375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 57, - "left": -32.34375, - "top": 70.140364, - "right": -30.9375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 57, - "left": -30.9375, - "top": 70.140364, - "right": -29.53125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 57, - "left": -29.53125, - "top": 70.140364, - "right": -28.125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 57, - "left": -28.125, - "top": 70.140364, - "right": -26.71875, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 57, - "left": -26.71875, - "top": 70.140364, - "right": -25.3125, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 57, - "left": -25.3125, - "top": 70.140364, - "right": -23.90625, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 57, - "left": -23.90625, - "top": 70.140364, - "right": -22.5, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 112, - "y": 57, - "left": -22.5, - "top": 70.140364, - "right": -21.09375, - "bottom": 69.657086, - "countries": [ - "greenland" - ] - }, - { - "x": 88, - "y": 58, - "left": -56.25, - "top": 69.657086, - "right": -54.84375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 58, - "left": -54.84375, - "top": 69.657086, - "right": -53.4375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 58, - "left": -53.4375, - "top": 69.657086, - "right": -52.03125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 58, - "left": -52.03125, - "top": 69.657086, - "right": -50.625, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 58, - "left": -50.625, - "top": 69.657086, - "right": -49.21875, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 58, - "left": -49.21875, - "top": 69.657086, - "right": -47.8125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 58, - "left": -47.8125, - "top": 69.657086, - "right": -46.40625, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 58, - "left": -46.40625, - "top": 69.657086, - "right": -45.0, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 58, - "left": -45.0, - "top": 69.657086, - "right": -43.59375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 58, - "left": -43.59375, - "top": 69.657086, - "right": -42.1875, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 58, - "left": -42.1875, - "top": 69.657086, - "right": -40.78125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 58, - "left": -40.78125, - "top": 69.657086, - "right": -39.375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 58, - "left": -39.375, - "top": 69.657086, - "right": -37.96875, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 58, - "left": -37.96875, - "top": 69.657086, - "right": -36.5625, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 58, - "left": -36.5625, - "top": 69.657086, - "right": -35.15625, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 58, - "left": -35.15625, - "top": 69.657086, - "right": -33.75, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 58, - "left": -33.75, - "top": 69.657086, - "right": -32.34375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 58, - "left": -32.34375, - "top": 69.657086, - "right": -30.9375, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 58, - "left": -30.9375, - "top": 69.657086, - "right": -29.53125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 58, - "left": -29.53125, - "top": 69.657086, - "right": -28.125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 58, - "left": -28.125, - "top": 69.657086, - "right": -26.71875, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 58, - "left": -26.71875, - "top": 69.657086, - "right": -25.3125, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 58, - "left": -25.3125, - "top": 69.657086, - "right": -23.90625, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 111, - "y": 58, - "left": -23.90625, - "top": 69.657086, - "right": -22.5, - "bottom": 69.162558, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 59, - "left": -54.84375, - "top": 69.162558, - "right": -53.4375, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 59, - "left": -53.4375, - "top": 69.162558, - "right": -52.03125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 59, - "left": -52.03125, - "top": 69.162558, - "right": -50.625, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 59, - "left": -50.625, - "top": 69.162558, - "right": -49.21875, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 59, - "left": -49.21875, - "top": 69.162558, - "right": -47.8125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 59, - "left": -47.8125, - "top": 69.162558, - "right": -46.40625, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 59, - "left": -46.40625, - "top": 69.162558, - "right": -45.0, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 59, - "left": -45.0, - "top": 69.162558, - "right": -43.59375, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 59, - "left": -43.59375, - "top": 69.162558, - "right": -42.1875, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 59, - "left": -42.1875, - "top": 69.162558, - "right": -40.78125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 59, - "left": -40.78125, - "top": 69.162558, - "right": -39.375, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 59, - "left": -39.375, - "top": 69.162558, - "right": -37.96875, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 59, - "left": -37.96875, - "top": 69.162558, - "right": -36.5625, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 59, - "left": -36.5625, - "top": 69.162558, - "right": -35.15625, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 59, - "left": -35.15625, - "top": 69.162558, - "right": -33.75, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 59, - "left": -33.75, - "top": 69.162558, - "right": -32.34375, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 59, - "left": -32.34375, - "top": 69.162558, - "right": -30.9375, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 59, - "left": -30.9375, - "top": 69.162558, - "right": -29.53125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 59, - "left": -29.53125, - "top": 69.162558, - "right": -28.125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 59, - "left": -28.125, - "top": 69.162558, - "right": -26.71875, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 59, - "left": -26.71875, - "top": 69.162558, - "right": -25.3125, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 110, - "y": 59, - "left": -25.3125, - "top": 69.162558, - "right": -23.90625, - "bottom": 68.656555, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 60, - "left": -54.84375, - "top": 68.656555, - "right": -53.4375, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 60, - "left": -53.4375, - "top": 68.656555, - "right": -52.03125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 60, - "left": -52.03125, - "top": 68.656555, - "right": -50.625, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 60, - "left": -50.625, - "top": 68.656555, - "right": -49.21875, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 60, - "left": -49.21875, - "top": 68.656555, - "right": -47.8125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 60, - "left": -47.8125, - "top": 68.656555, - "right": -46.40625, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 60, - "left": -46.40625, - "top": 68.656555, - "right": -45.0, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 60, - "left": -45.0, - "top": 68.656555, - "right": -43.59375, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 60, - "left": -43.59375, - "top": 68.656555, - "right": -42.1875, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 60, - "left": -42.1875, - "top": 68.656555, - "right": -40.78125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 60, - "left": -40.78125, - "top": 68.656555, - "right": -39.375, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 60, - "left": -39.375, - "top": 68.656555, - "right": -37.96875, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 60, - "left": -37.96875, - "top": 68.656555, - "right": -36.5625, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 60, - "left": -36.5625, - "top": 68.656555, - "right": -35.15625, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 60, - "left": -35.15625, - "top": 68.656555, - "right": -33.75, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 60, - "left": -33.75, - "top": 68.656555, - "right": -32.34375, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 60, - "left": -32.34375, - "top": 68.656555, - "right": -30.9375, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 60, - "left": -30.9375, - "top": 68.656555, - "right": -29.53125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 107, - "y": 60, - "left": -29.53125, - "top": 68.656555, - "right": -28.125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 108, - "y": 60, - "left": -28.125, - "top": 68.656555, - "right": -26.71875, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 109, - "y": 60, - "left": -26.71875, - "top": 68.656555, - "right": -25.3125, - "bottom": 68.138852, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 61, - "left": -54.84375, - "top": 68.138852, - "right": -53.4375, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 61, - "left": -53.4375, - "top": 68.138852, - "right": -52.03125, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 61, - "left": -52.03125, - "top": 68.138852, - "right": -50.625, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 61, - "left": -50.625, - "top": 68.138852, - "right": -49.21875, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 61, - "left": -49.21875, - "top": 68.138852, - "right": -47.8125, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 61, - "left": -47.8125, - "top": 68.138852, - "right": -46.40625, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 61, - "left": -46.40625, - "top": 68.138852, - "right": -45.0, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 61, - "left": -45.0, - "top": 68.138852, - "right": -43.59375, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 61, - "left": -43.59375, - "top": 68.138852, - "right": -42.1875, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 61, - "left": -42.1875, - "top": 68.138852, - "right": -40.78125, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 61, - "left": -40.78125, - "top": 68.138852, - "right": -39.375, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 61, - "left": -39.375, - "top": 68.138852, - "right": -37.96875, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 61, - "left": -37.96875, - "top": 68.138852, - "right": -36.5625, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 61, - "left": -36.5625, - "top": 68.138852, - "right": -35.15625, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 61, - "left": -35.15625, - "top": 68.138852, - "right": -33.75, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 61, - "left": -33.75, - "top": 68.138852, - "right": -32.34375, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 105, - "y": 61, - "left": -32.34375, - "top": 68.138852, - "right": -30.9375, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 106, - "y": 61, - "left": -30.9375, - "top": 68.138852, - "right": -29.53125, - "bottom": 67.609221, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 62, - "left": -54.84375, - "top": 67.609221, - "right": -53.4375, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 62, - "left": -53.4375, - "top": 67.609221, - "right": -52.03125, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 62, - "left": -52.03125, - "top": 67.609221, - "right": -50.625, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 62, - "left": -50.625, - "top": 67.609221, - "right": -49.21875, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 62, - "left": -49.21875, - "top": 67.609221, - "right": -47.8125, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 62, - "left": -47.8125, - "top": 67.609221, - "right": -46.40625, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 62, - "left": -46.40625, - "top": 67.609221, - "right": -45.0, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 62, - "left": -45.0, - "top": 67.609221, - "right": -43.59375, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 62, - "left": -43.59375, - "top": 67.609221, - "right": -42.1875, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 62, - "left": -42.1875, - "top": 67.609221, - "right": -40.78125, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 62, - "left": -40.78125, - "top": 67.609221, - "right": -39.375, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 62, - "left": -39.375, - "top": 67.609221, - "right": -37.96875, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 62, - "left": -37.96875, - "top": 67.609221, - "right": -36.5625, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 62, - "left": -36.5625, - "top": 67.609221, - "right": -35.15625, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 62, - "left": -35.15625, - "top": 67.609221, - "right": -33.75, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 62, - "left": -33.75, - "top": 67.609221, - "right": -32.34375, - "bottom": 67.067433, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 63, - "left": -54.84375, - "top": 67.067433, - "right": -53.4375, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 63, - "left": -53.4375, - "top": 67.067433, - "right": -52.03125, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 63, - "left": -52.03125, - "top": 67.067433, - "right": -50.625, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 63, - "left": -50.625, - "top": 67.067433, - "right": -49.21875, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 63, - "left": -49.21875, - "top": 67.067433, - "right": -47.8125, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 63, - "left": -47.8125, - "top": 67.067433, - "right": -46.40625, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 63, - "left": -46.40625, - "top": 67.067433, - "right": -45.0, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 63, - "left": -45.0, - "top": 67.067433, - "right": -43.59375, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 63, - "left": -43.59375, - "top": 67.067433, - "right": -42.1875, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 63, - "left": -42.1875, - "top": 67.067433, - "right": -40.78125, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 63, - "left": -40.78125, - "top": 67.067433, - "right": -39.375, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 63, - "left": -39.375, - "top": 67.067433, - "right": -37.96875, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 63, - "left": -37.96875, - "top": 67.067433, - "right": -36.5625, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 63, - "left": -36.5625, - "top": 67.067433, - "right": -35.15625, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 63, - "left": -35.15625, - "top": 67.067433, - "right": -33.75, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 104, - "y": 63, - "left": -33.75, - "top": 67.067433, - "right": -32.34375, - "bottom": 66.51326, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 64, - "left": -54.84375, - "top": 66.51326, - "right": -53.4375, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 64, - "left": -53.4375, - "top": 66.51326, - "right": -52.03125, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 64, - "left": -52.03125, - "top": 66.51326, - "right": -50.625, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 64, - "left": -50.625, - "top": 66.51326, - "right": -49.21875, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 64, - "left": -49.21875, - "top": 66.51326, - "right": -47.8125, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 64, - "left": -47.8125, - "top": 66.51326, - "right": -46.40625, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 64, - "left": -46.40625, - "top": 66.51326, - "right": -45.0, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 64, - "left": -45.0, - "top": 66.51326, - "right": -43.59375, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 64, - "left": -43.59375, - "top": 66.51326, - "right": -42.1875, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 64, - "left": -42.1875, - "top": 66.51326, - "right": -40.78125, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 64, - "left": -40.78125, - "top": 66.51326, - "right": -39.375, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 64, - "left": -39.375, - "top": 66.51326, - "right": -37.96875, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 64, - "left": -37.96875, - "top": 66.51326, - "right": -36.5625, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 64, - "left": -36.5625, - "top": 66.51326, - "right": -35.15625, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 103, - "y": 64, - "left": -35.15625, - "top": 66.51326, - "right": -33.75, - "bottom": 65.946472, - "countries": [ - "greenland" - ] - }, - { - "x": 89, - "y": 65, - "left": -54.84375, - "top": 65.946472, - "right": -53.4375, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 65, - "left": -53.4375, - "top": 65.946472, - "right": -52.03125, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 65, - "left": -52.03125, - "top": 65.946472, - "right": -50.625, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 65, - "left": -50.625, - "top": 65.946472, - "right": -49.21875, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 65, - "left": -49.21875, - "top": 65.946472, - "right": -47.8125, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 65, - "left": -47.8125, - "top": 65.946472, - "right": -46.40625, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 65, - "left": -46.40625, - "top": 65.946472, - "right": -45.0, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 65, - "left": -45.0, - "top": 65.946472, - "right": -43.59375, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 65, - "left": -43.59375, - "top": 65.946472, - "right": -42.1875, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 65, - "left": -42.1875, - "top": 65.946472, - "right": -40.78125, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 65, - "left": -40.78125, - "top": 65.946472, - "right": -39.375, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 100, - "y": 65, - "left": -39.375, - "top": 65.946472, - "right": -37.96875, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 101, - "y": 65, - "left": -37.96875, - "top": 65.946472, - "right": -36.5625, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 102, - "y": 65, - "left": -36.5625, - "top": 65.946472, - "right": -35.15625, - "bottom": 65.366837, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 66, - "left": -53.4375, - "top": 65.366837, - "right": -52.03125, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 66, - "left": -52.03125, - "top": 65.366837, - "right": -50.625, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 66, - "left": -50.625, - "top": 65.366837, - "right": -49.21875, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 66, - "left": -49.21875, - "top": 65.366837, - "right": -47.8125, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 66, - "left": -47.8125, - "top": 65.366837, - "right": -46.40625, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 66, - "left": -46.40625, - "top": 65.366837, - "right": -45.0, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 66, - "left": -45.0, - "top": 65.366837, - "right": -43.59375, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 66, - "left": -43.59375, - "top": 65.366837, - "right": -42.1875, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 66, - "left": -42.1875, - "top": 65.366837, - "right": -40.78125, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 66, - "left": -40.78125, - "top": 65.366837, - "right": -39.375, - "bottom": 64.774125, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 67, - "left": -53.4375, - "top": 64.774125, - "right": -52.03125, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 67, - "left": -52.03125, - "top": 64.774125, - "right": -50.625, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 67, - "left": -50.625, - "top": 64.774125, - "right": -49.21875, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 67, - "left": -49.21875, - "top": 64.774125, - "right": -47.8125, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 67, - "left": -47.8125, - "top": 64.774125, - "right": -46.40625, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 67, - "left": -46.40625, - "top": 64.774125, - "right": -45.0, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 67, - "left": -45.0, - "top": 64.774125, - "right": -43.59375, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 67, - "left": -43.59375, - "top": 64.774125, - "right": -42.1875, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 67, - "left": -42.1875, - "top": 64.774125, - "right": -40.78125, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 67, - "left": -40.78125, - "top": 64.774125, - "right": -39.375, - "bottom": 64.168107, - "countries": [ - "greenland" - ] - }, - { - "x": 90, - "y": 68, - "left": -53.4375, - "top": 64.168107, - "right": -52.03125, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 68, - "left": -52.03125, - "top": 64.168107, - "right": -50.625, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 68, - "left": -50.625, - "top": 64.168107, - "right": -49.21875, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 68, - "left": -49.21875, - "top": 64.168107, - "right": -47.8125, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 68, - "left": -47.8125, - "top": 64.168107, - "right": -46.40625, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 68, - "left": -46.40625, - "top": 64.168107, - "right": -45.0, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 68, - "left": -45.0, - "top": 64.168107, - "right": -43.59375, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 68, - "left": -43.59375, - "top": 64.168107, - "right": -42.1875, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 68, - "left": -42.1875, - "top": 64.168107, - "right": -40.78125, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 68, - "left": -40.78125, - "top": 64.168107, - "right": -39.375, - "bottom": 63.548552, - "countries": [ - "greenland" - ] - }, - { - "x": 91, - "y": 69, - "left": -52.03125, - "top": 63.548552, - "right": -50.625, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 69, - "left": -50.625, - "top": 63.548552, - "right": -49.21875, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 69, - "left": -49.21875, - "top": 63.548552, - "right": -47.8125, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 69, - "left": -47.8125, - "top": 63.548552, - "right": -46.40625, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 69, - "left": -46.40625, - "top": 63.548552, - "right": -45.0, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 69, - "left": -45.0, - "top": 63.548552, - "right": -43.59375, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 69, - "left": -43.59375, - "top": 63.548552, - "right": -42.1875, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 69, - "left": -42.1875, - "top": 63.548552, - "right": -40.78125, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 99, - "y": 69, - "left": -40.78125, - "top": 63.548552, - "right": -39.375, - "bottom": 62.915233, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 70, - "left": -50.625, - "top": 62.915233, - "right": -49.21875, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 70, - "left": -49.21875, - "top": 62.915233, - "right": -47.8125, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 70, - "left": -47.8125, - "top": 62.915233, - "right": -46.40625, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 70, - "left": -46.40625, - "top": 62.915233, - "right": -45.0, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 70, - "left": -45.0, - "top": 62.915233, - "right": -43.59375, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 70, - "left": -43.59375, - "top": 62.915233, - "right": -42.1875, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 70, - "left": -42.1875, - "top": 62.915233, - "right": -40.78125, - "bottom": 62.267923, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 71, - "left": -50.625, - "top": 62.267923, - "right": -49.21875, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 71, - "left": -49.21875, - "top": 62.267923, - "right": -47.8125, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 71, - "left": -47.8125, - "top": 62.267923, - "right": -46.40625, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 71, - "left": -46.40625, - "top": 62.267923, - "right": -45.0, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 71, - "left": -45.0, - "top": 62.267923, - "right": -43.59375, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 71, - "left": -43.59375, - "top": 62.267923, - "right": -42.1875, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 98, - "y": 71, - "left": -42.1875, - "top": 62.267923, - "right": -40.78125, - "bottom": 61.606396, - "countries": [ - "greenland" - ] - }, - { - "x": 92, - "y": 72, - "left": -50.625, - "top": 61.606396, - "right": -49.21875, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 72, - "left": -49.21875, - "top": 61.606396, - "right": -47.8125, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 72, - "left": -47.8125, - "top": 61.606396, - "right": -46.40625, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 72, - "left": -46.40625, - "top": 61.606396, - "right": -45.0, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 72, - "left": -45.0, - "top": 61.606396, - "right": -43.59375, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 72, - "left": -43.59375, - "top": 61.606396, - "right": -42.1875, - "bottom": 60.930432, - "countries": [ - "greenland" - ] - }, - { - "x": 93, - "y": 73, - "left": -49.21875, - "top": 60.930432, - "right": -47.8125, - "bottom": 60.239811, - "countries": [ - "greenland" - ] - }, - { - "x": 94, - "y": 73, - "left": -47.8125, - "top": 60.930432, - "right": -46.40625, - "bottom": 60.239811, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 73, - "left": -46.40625, - "top": 60.930432, - "right": -45.0, - "bottom": 60.239811, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 73, - "left": -45.0, - "top": 60.930432, - "right": -43.59375, - "bottom": 60.239811, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 73, - "left": -43.59375, - "top": 60.930432, - "right": -42.1875, - "bottom": 60.239811, - "countries": [ - "greenland" - ] - }, - { - "x": 95, - "y": 74, - "left": -46.40625, - "top": 60.239811, - "right": -45.0, - "bottom": 59.534318, - "countries": [ - "greenland" - ] - }, - { - "x": 96, - "y": 74, - "left": -45.0, - "top": 60.239811, - "right": -43.59375, - "bottom": 59.534318, - "countries": [ - "greenland" - ] - }, - { - "x": 97, - "y": 74, - "left": -43.59375, - "top": 60.239811, - "right": -42.1875, - "bottom": 59.534318, - "countries": [ - "greenland" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/grenada.json b/wahoomc/resources/json/north_america/grenada.json deleted file mode 100644 index 4e4f6edd..00000000 --- a/wahoomc/resources/json/north_america/grenada.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 84, - "y": 119, - "left": -61.875, - "top": 12.554564, - "right": -60.46875, - "bottom": 11.178402, - "countries": [ - "grenada", - "saint_vincent_and_the_grenadines", - "trinidad_and_tobago" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/guadeloupe.json b/wahoomc/resources/json/north_america/guadeloupe.json deleted file mode 100644 index 88df9320..00000000 --- a/wahoomc/resources/json/north_america/guadeloupe.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "x": 84, - "y": 116, - "left": -61.875, - "top": 16.636192, - "right": -60.46875, - "bottom": 15.284185, - "countries": [ - "guadeloupe", - "dominica" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/guatemala.json b/wahoomc/resources/json/north_america/guatemala.json deleted file mode 100644 index 1d84dacf..00000000 --- a/wahoomc/resources/json/north_america/guatemala.json +++ /dev/null @@ -1,138 +0,0 @@ -[ - { - "x": 64, - "y": 115, - "left": -90.0, - "top": 17.978733, - "right": -88.59375, - "bottom": 16.636192, - "countries": [ - "belize", - "guatemala", - "mexico" - ] - }, - { - "x": 64, - "y": 116, - "left": -90.0, - "top": 16.636192, - "right": -88.59375, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - }, - { - "x": 65, - "y": 116, - "left": -88.59375, - "top": 16.636192, - "right": -87.1875, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - }, - { - "x": 63, - "y": 117, - "left": -91.40625, - "top": 15.284185, - "right": -90.0, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "guatemala" - ] - }, - { - "x": 64, - "y": 117, - "left": -90.0, - "top": 15.284185, - "right": -88.59375, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "guatemala", - "honduras" - ] - }, - { - "x": 63, - "y": 118, - "left": -91.40625, - "top": 13.923404, - "right": -90.0, - "bottom": 12.554564, - "countries": [ - "el_salvador", - "guatemala" - ] - }, - { - "x": 62, - "y": 115, - "left": -92.8125, - "top": 17.978733, - "right": -91.40625, - "bottom": 16.636192, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 63, - "y": 115, - "left": -91.40625, - "top": 17.978733, - "right": -90.0, - "bottom": 16.636192, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 62, - "y": 116, - "left": -92.8125, - "top": 16.636192, - "right": -91.40625, - "bottom": 15.284185, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 63, - "y": 116, - "left": -91.40625, - "top": 16.636192, - "right": -90.0, - "bottom": 15.284185, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 62, - "y": 117, - "left": -92.8125, - "top": 15.284185, - "right": -91.40625, - "bottom": 13.923404, - "countries": [ - "guatemala", - "mexico" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/haiti.json b/wahoomc/resources/json/north_america/haiti.json deleted file mode 100644 index e2d5a7ad..00000000 --- a/wahoomc/resources/json/north_america/haiti.json +++ /dev/null @@ -1,73 +0,0 @@ -[ - { - "x": 75, - "y": 113, - "left": -74.53125, - "top": 20.632784, - "right": -73.125, - "bottom": 19.311143, - "countries": [ - "haiti", - "cuba" - ] - }, - { - "x": 76, - "y": 113, - "left": -73.125, - "top": 20.632784, - "right": -71.71875, - "bottom": 19.311143, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 77, - "y": 113, - "left": -71.71875, - "top": 20.632784, - "right": -70.3125, - "bottom": 19.311143, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 76, - "y": 114, - "left": -73.125, - "top": 19.311143, - "right": -71.71875, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 77, - "y": 114, - "left": -71.71875, - "top": 19.311143, - "right": -70.3125, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "haiti" - ] - }, - { - "x": 75, - "y": 114, - "left": -74.53125, - "top": 19.311143, - "right": -73.125, - "bottom": 17.978733, - "countries": [ - "haiti" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/honduras.json b/wahoomc/resources/json/north_america/honduras.json deleted file mode 100644 index 5103af84..00000000 --- a/wahoomc/resources/json/north_america/honduras.json +++ /dev/null @@ -1,170 +0,0 @@ -[ - { - "x": 64, - "y": 116, - "left": -90.0, - "top": 16.636192, - "right": -88.59375, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - }, - { - "x": 65, - "y": 116, - "left": -88.59375, - "top": 16.636192, - "right": -87.1875, - "bottom": 15.284185, - "countries": [ - "belize", - "guatemala", - "honduras" - ] - }, - { - "x": 64, - "y": 117, - "left": -90.0, - "top": 15.284185, - "right": -88.59375, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "guatemala", - "honduras" - ] - }, - { - "x": 65, - "y": 117, - "left": -88.59375, - "top": 15.284185, - "right": -87.1875, - "bottom": 13.923404, - "countries": [ - "el_salvador", - "honduras" - ] - }, - { - "x": 65, - "y": 118, - "left": -88.59375, - "top": 13.923404, - "right": -87.1875, - "bottom": 12.554564, - "countries": [ - "el_salvador", - "honduras", - "nicaragua" - ] - }, - { - "x": 68, - "y": 115, - "left": -84.375, - "top": 17.978733, - "right": -82.96875, - "bottom": 16.636192, - "countries": [ - "honduras" - ] - }, - { - "x": 66, - "y": 116, - "left": -87.1875, - "top": 16.636192, - "right": -85.78125, - "bottom": 15.284185, - "countries": [ - "honduras" - ] - }, - { - "x": 67, - "y": 116, - "left": -85.78125, - "top": 16.636192, - "right": -84.375, - "bottom": 15.284185, - "countries": [ - "honduras" - ] - }, - { - "x": 68, - "y": 116, - "left": -84.375, - "top": 16.636192, - "right": -82.96875, - "bottom": 15.284185, - "countries": [ - "honduras" - ] - }, - { - "x": 66, - "y": 117, - "left": -87.1875, - "top": 15.284185, - "right": -85.78125, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 67, - "y": 117, - "left": -85.78125, - "top": 15.284185, - "right": -84.375, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 68, - "y": 117, - "left": -84.375, - "top": 15.284185, - "right": -82.96875, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 66, - "y": 118, - "left": -87.1875, - "top": 13.923404, - "right": -85.78125, - "bottom": 12.554564, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 67, - "y": 118, - "left": -85.78125, - "top": 13.923404, - "right": -84.375, - "bottom": 12.554564, - "countries": [ - "honduras", - "nicaragua" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/jamaica.json b/wahoomc/resources/json/north_america/jamaica.json deleted file mode 100644 index 6d4b0d81..00000000 --- a/wahoomc/resources/json/north_america/jamaica.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "x": 72, - "y": 114, - "left": -78.75, - "top": 19.311143, - "right": -77.34375, - "bottom": 17.978733, - "countries": [ - "jamaica" - ] - }, - { - "x": 73, - "y": 114, - "left": -77.34375, - "top": 19.311143, - "right": -75.9375, - "bottom": 17.978733, - "countries": [ - "jamaica" - ] - }, - { - "x": 72, - "y": 115, - "left": -78.75, - "top": 17.978733, - "right": -77.34375, - "bottom": 16.636192, - "countries": [ - "jamaica" - ] - }, - { - "x": 73, - "y": 115, - "left": -77.34375, - "top": 17.978733, - "right": -75.9375, - "bottom": 16.636192, - "countries": [ - "jamaica" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/martinique.json b/wahoomc/resources/json/north_america/martinique.json deleted file mode 100644 index 3bca67a0..00000000 --- a/wahoomc/resources/json/north_america/martinique.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 84, - "y": 117, - "left": -61.875, - "top": 15.284185, - "right": -60.46875, - "bottom": 13.923404, - "countries": [ - "martinique", - "dominica", - "saint_lucia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/mexico.json b/wahoomc/resources/json/north_america/mexico.json deleted file mode 100644 index 78dfdcf4..00000000 --- a/wahoomc/resources/json/north_america/mexico.json +++ /dev/null @@ -1,1775 +0,0 @@ -[ - { - "x": 64, - "y": 114, - "left": -90.0, - "top": 19.311143, - "right": -88.59375, - "bottom": 17.978733, - "countries": [ - "belize", - "mexico" - ] - }, - { - "x": 65, - "y": 114, - "left": -88.59375, - "top": 19.311143, - "right": -87.1875, - "bottom": 17.978733, - "countries": [ - "belize", - "mexico" - ] - }, - { - "x": 64, - "y": 115, - "left": -90.0, - "top": 17.978733, - "right": -88.59375, - "bottom": 16.636192, - "countries": [ - "belize", - "guatemala", - "mexico" - ] - }, - { - "x": 62, - "y": 115, - "left": -92.8125, - "top": 17.978733, - "right": -91.40625, - "bottom": 16.636192, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 63, - "y": 115, - "left": -91.40625, - "top": 17.978733, - "right": -90.0, - "bottom": 16.636192, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 62, - "y": 116, - "left": -92.8125, - "top": 16.636192, - "right": -91.40625, - "bottom": 15.284185, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 63, - "y": 116, - "left": -91.40625, - "top": 16.636192, - "right": -90.0, - "bottom": 15.284185, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 62, - "y": 117, - "left": -92.8125, - "top": 15.284185, - "right": -91.40625, - "bottom": 13.923404, - "countries": [ - "guatemala", - "mexico" - ] - }, - { - "x": 44, - "y": 103, - "left": -118.125, - "top": 33.137551, - "right": -116.71875, - "bottom": 31.952162, - "countries": [ - "california", - "mexico" - ] - }, - { - "x": 45, - "y": 103, - "left": -116.71875, - "top": 33.137551, - "right": -115.3125, - "bottom": 31.952162, - "countries": [ - "california", - "mexico" - ] - }, - { - "x": 46, - "y": 103, - "left": -115.3125, - "top": 33.137551, - "right": -113.90625, - "bottom": 31.952162, - "countries": [ - "california", - "mexico", - "arizona" - ] - }, - { - "x": 47, - "y": 103, - "left": -113.90625, - "top": 33.137551, - "right": -112.5, - "bottom": 31.952162, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 44, - "y": 104, - "left": -118.125, - "top": 31.952162, - "right": -116.71875, - "bottom": 30.751278, - "countries": [ - "mexico" - ] - }, - { - "x": 45, - "y": 104, - "left": -116.71875, - "top": 31.952162, - "right": -115.3125, - "bottom": 30.751278, - "countries": [ - "mexico" - ] - }, - { - "x": 46, - "y": 104, - "left": -115.3125, - "top": 31.952162, - "right": -113.90625, - "bottom": 30.751278, - "countries": [ - "mexico" - ] - }, - { - "x": 47, - "y": 104, - "left": -113.90625, - "top": 31.952162, - "right": -112.5, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 48, - "y": 104, - "left": -112.5, - "top": 31.952162, - "right": -111.09375, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 49, - "y": 104, - "left": -111.09375, - "top": 31.952162, - "right": -109.6875, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 50, - "y": 104, - "left": -109.6875, - "top": 31.952162, - "right": -108.28125, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "mexico", - "arizona" - ] - }, - { - "x": 51, - "y": 104, - "left": -108.28125, - "top": 31.952162, - "right": -106.875, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "mexico" - ] - }, - { - "x": 52, - "y": 104, - "left": -106.875, - "top": 31.952162, - "right": -105.46875, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "texas", - "mexico" - ] - }, - { - "x": 53, - "y": 104, - "left": -105.46875, - "top": 31.952162, - "right": -104.0625, - "bottom": 30.751278, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 45, - "y": 105, - "left": -116.71875, - "top": 30.751278, - "right": -115.3125, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 46, - "y": 105, - "left": -115.3125, - "top": 30.751278, - "right": -113.90625, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 47, - "y": 105, - "left": -113.90625, - "top": 30.751278, - "right": -112.5, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 105, - "left": -112.5, - "top": 30.751278, - "right": -111.09375, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 105, - "left": -111.09375, - "top": 30.751278, - "right": -109.6875, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 105, - "left": -109.6875, - "top": 30.751278, - "right": -108.28125, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 105, - "left": -108.28125, - "top": 30.751278, - "right": -106.875, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 105, - "left": -106.875, - "top": 30.751278, - "right": -105.46875, - "bottom": 29.53523, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 105, - "left": -105.46875, - "top": 30.751278, - "right": -104.0625, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 54, - "y": 105, - "left": -104.0625, - "top": 30.751278, - "right": -102.65625, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 55, - "y": 105, - "left": -102.65625, - "top": 30.751278, - "right": -101.25, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 56, - "y": 105, - "left": -101.25, - "top": 30.751278, - "right": -99.84375, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 43, - "y": 106, - "left": -119.53125, - "top": 29.53523, - "right": -118.125, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 45, - "y": 106, - "left": -116.71875, - "top": 29.53523, - "right": -115.3125, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 46, - "y": 106, - "left": -115.3125, - "top": 29.53523, - "right": -113.90625, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 47, - "y": 106, - "left": -113.90625, - "top": 29.53523, - "right": -112.5, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 106, - "left": -112.5, - "top": 29.53523, - "right": -111.09375, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 106, - "left": -111.09375, - "top": 29.53523, - "right": -109.6875, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 106, - "left": -109.6875, - "top": 29.53523, - "right": -108.28125, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 106, - "left": -108.28125, - "top": 29.53523, - "right": -106.875, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 106, - "left": -106.875, - "top": 29.53523, - "right": -105.46875, - "bottom": 28.304381, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 106, - "left": -105.46875, - "top": 29.53523, - "right": -104.0625, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 54, - "y": 106, - "left": -104.0625, - "top": 29.53523, - "right": -102.65625, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 55, - "y": 106, - "left": -102.65625, - "top": 29.53523, - "right": -101.25, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 56, - "y": 106, - "left": -101.25, - "top": 29.53523, - "right": -99.84375, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 45, - "y": 107, - "left": -116.71875, - "top": 28.304381, - "right": -115.3125, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 46, - "y": 107, - "left": -115.3125, - "top": 28.304381, - "right": -113.90625, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 47, - "y": 107, - "left": -113.90625, - "top": 28.304381, - "right": -112.5, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 107, - "left": -112.5, - "top": 28.304381, - "right": -111.09375, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 107, - "left": -111.09375, - "top": 28.304381, - "right": -109.6875, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 107, - "left": -109.6875, - "top": 28.304381, - "right": -108.28125, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 107, - "left": -108.28125, - "top": 28.304381, - "right": -106.875, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 107, - "left": -106.875, - "top": 28.304381, - "right": -105.46875, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 107, - "left": -105.46875, - "top": 28.304381, - "right": -104.0625, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 107, - "left": -104.0625, - "top": 28.304381, - "right": -102.65625, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 107, - "left": -102.65625, - "top": 28.304381, - "right": -101.25, - "bottom": 27.059126, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 107, - "left": -101.25, - "top": 28.304381, - "right": -99.84375, - "bottom": 27.059126, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 57, - "y": 107, - "left": -99.84375, - "top": 28.304381, - "right": -98.4375, - "bottom": 27.059126, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 46, - "y": 108, - "left": -115.3125, - "top": 27.059126, - "right": -113.90625, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 47, - "y": 108, - "left": -113.90625, - "top": 27.059126, - "right": -112.5, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 108, - "left": -112.5, - "top": 27.059126, - "right": -111.09375, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 108, - "left": -111.09375, - "top": 27.059126, - "right": -109.6875, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 108, - "left": -109.6875, - "top": 27.059126, - "right": -108.28125, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 108, - "left": -108.28125, - "top": 27.059126, - "right": -106.875, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 108, - "left": -106.875, - "top": 27.059126, - "right": -105.46875, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 108, - "left": -105.46875, - "top": 27.059126, - "right": -104.0625, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 108, - "left": -104.0625, - "top": 27.059126, - "right": -102.65625, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 108, - "left": -102.65625, - "top": 27.059126, - "right": -101.25, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 108, - "left": -101.25, - "top": 27.059126, - "right": -99.84375, - "bottom": 25.799891, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 108, - "left": -99.84375, - "top": 27.059126, - "right": -98.4375, - "bottom": 25.799891, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 58, - "y": 108, - "left": -98.4375, - "top": 27.059126, - "right": -97.03125, - "bottom": 25.799891, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 48, - "y": 109, - "left": -112.5, - "top": 25.799891, - "right": -111.09375, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 109, - "left": -111.09375, - "top": 25.799891, - "right": -109.6875, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 109, - "left": -109.6875, - "top": 25.799891, - "right": -108.28125, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 109, - "left": -108.28125, - "top": 25.799891, - "right": -106.875, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 109, - "left": -106.875, - "top": 25.799891, - "right": -105.46875, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 109, - "left": -105.46875, - "top": 25.799891, - "right": -104.0625, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 109, - "left": -104.0625, - "top": 25.799891, - "right": -102.65625, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 109, - "left": -102.65625, - "top": 25.799891, - "right": -101.25, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 109, - "left": -101.25, - "top": 25.799891, - "right": -99.84375, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 109, - "left": -99.84375, - "top": 25.799891, - "right": -98.4375, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 109, - "left": -98.4375, - "top": 25.799891, - "right": -97.03125, - "bottom": 24.527135, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 110, - "left": -112.5, - "top": 24.527135, - "right": -111.09375, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 110, - "left": -111.09375, - "top": 24.527135, - "right": -109.6875, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 110, - "left": -109.6875, - "top": 24.527135, - "right": -108.28125, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 51, - "y": 110, - "left": -108.28125, - "top": 24.527135, - "right": -106.875, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 110, - "left": -106.875, - "top": 24.527135, - "right": -105.46875, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 110, - "left": -105.46875, - "top": 24.527135, - "right": -104.0625, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 110, - "left": -104.0625, - "top": 24.527135, - "right": -102.65625, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 110, - "left": -102.65625, - "top": 24.527135, - "right": -101.25, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 110, - "left": -101.25, - "top": 24.527135, - "right": -99.84375, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 110, - "left": -99.84375, - "top": 24.527135, - "right": -98.4375, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 110, - "left": -98.4375, - "top": 24.527135, - "right": -97.03125, - "bottom": 23.241346, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 111, - "left": -111.09375, - "top": 23.241346, - "right": -109.6875, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 50, - "y": 111, - "left": -109.6875, - "top": 23.241346, - "right": -108.28125, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 111, - "left": -106.875, - "top": 23.241346, - "right": -105.46875, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 111, - "left": -105.46875, - "top": 23.241346, - "right": -104.0625, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 111, - "left": -104.0625, - "top": 23.241346, - "right": -102.65625, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 111, - "left": -102.65625, - "top": 23.241346, - "right": -101.25, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 111, - "left": -101.25, - "top": 23.241346, - "right": -99.84375, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 111, - "left": -99.84375, - "top": 23.241346, - "right": -98.4375, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 111, - "left": -98.4375, - "top": 23.241346, - "right": -97.03125, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 62, - "y": 111, - "left": -92.8125, - "top": 23.241346, - "right": -91.40625, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 63, - "y": 111, - "left": -91.40625, - "top": 23.241346, - "right": -90.0, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 64, - "y": 111, - "left": -90.0, - "top": 23.241346, - "right": -88.59375, - "bottom": 21.943046, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 112, - "left": -106.875, - "top": 21.943046, - "right": -105.46875, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 112, - "left": -105.46875, - "top": 21.943046, - "right": -104.0625, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 112, - "left": -104.0625, - "top": 21.943046, - "right": -102.65625, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 112, - "left": -102.65625, - "top": 21.943046, - "right": -101.25, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 112, - "left": -101.25, - "top": 21.943046, - "right": -99.84375, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 112, - "left": -99.84375, - "top": 21.943046, - "right": -98.4375, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 112, - "left": -98.4375, - "top": 21.943046, - "right": -97.03125, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 63, - "y": 112, - "left": -91.40625, - "top": 21.943046, - "right": -90.0, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 64, - "y": 112, - "left": -90.0, - "top": 21.943046, - "right": -88.59375, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 65, - "y": 112, - "left": -88.59375, - "top": 21.943046, - "right": -87.1875, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 66, - "y": 112, - "left": -87.1875, - "top": 21.943046, - "right": -85.78125, - "bottom": 20.632784, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 113, - "left": -111.09375, - "top": 20.632784, - "right": -109.6875, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 52, - "y": 113, - "left": -106.875, - "top": 20.632784, - "right": -105.46875, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 113, - "left": -105.46875, - "top": 20.632784, - "right": -104.0625, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 113, - "left": -104.0625, - "top": 20.632784, - "right": -102.65625, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 113, - "left": -102.65625, - "top": 20.632784, - "right": -101.25, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 113, - "left": -101.25, - "top": 20.632784, - "right": -99.84375, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 113, - "left": -99.84375, - "top": 20.632784, - "right": -98.4375, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 113, - "left": -98.4375, - "top": 20.632784, - "right": -97.03125, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 59, - "y": 113, - "left": -97.03125, - "top": 20.632784, - "right": -95.625, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 63, - "y": 113, - "left": -91.40625, - "top": 20.632784, - "right": -90.0, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 64, - "y": 113, - "left": -90.0, - "top": 20.632784, - "right": -88.59375, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 65, - "y": 113, - "left": -88.59375, - "top": 20.632784, - "right": -87.1875, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 66, - "y": 113, - "left": -87.1875, - "top": 20.632784, - "right": -85.78125, - "bottom": 19.311143, - "countries": [ - "mexico" - ] - }, - { - "x": 46, - "y": 114, - "left": -115.3125, - "top": 19.311143, - "right": -113.90625, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 48, - "y": 114, - "left": -112.5, - "top": 19.311143, - "right": -111.09375, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 49, - "y": 114, - "left": -111.09375, - "top": 19.311143, - "right": -109.6875, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 53, - "y": 114, - "left": -105.46875, - "top": 19.311143, - "right": -104.0625, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 54, - "y": 114, - "left": -104.0625, - "top": 19.311143, - "right": -102.65625, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 114, - "left": -102.65625, - "top": 19.311143, - "right": -101.25, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 114, - "left": -101.25, - "top": 19.311143, - "right": -99.84375, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 114, - "left": -99.84375, - "top": 19.311143, - "right": -98.4375, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 114, - "left": -98.4375, - "top": 19.311143, - "right": -97.03125, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 59, - "y": 114, - "left": -97.03125, - "top": 19.311143, - "right": -95.625, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 60, - "y": 114, - "left": -95.625, - "top": 19.311143, - "right": -94.21875, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 61, - "y": 114, - "left": -94.21875, - "top": 19.311143, - "right": -92.8125, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 62, - "y": 114, - "left": -92.8125, - "top": 19.311143, - "right": -91.40625, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 63, - "y": 114, - "left": -91.40625, - "top": 19.311143, - "right": -90.0, - "bottom": 17.978733, - "countries": [ - "mexico" - ] - }, - { - "x": 55, - "y": 115, - "left": -102.65625, - "top": 17.978733, - "right": -101.25, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 56, - "y": 115, - "left": -101.25, - "top": 17.978733, - "right": -99.84375, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 115, - "left": -99.84375, - "top": 17.978733, - "right": -98.4375, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 115, - "left": -98.4375, - "top": 17.978733, - "right": -97.03125, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 59, - "y": 115, - "left": -97.03125, - "top": 17.978733, - "right": -95.625, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 60, - "y": 115, - "left": -95.625, - "top": 17.978733, - "right": -94.21875, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 61, - "y": 115, - "left": -94.21875, - "top": 17.978733, - "right": -92.8125, - "bottom": 16.636192, - "countries": [ - "mexico" - ] - }, - { - "x": 57, - "y": 116, - "left": -99.84375, - "top": 16.636192, - "right": -98.4375, - "bottom": 15.284185, - "countries": [ - "mexico" - ] - }, - { - "x": 58, - "y": 116, - "left": -98.4375, - "top": 16.636192, - "right": -97.03125, - "bottom": 15.284185, - "countries": [ - "mexico" - ] - }, - { - "x": 59, - "y": 116, - "left": -97.03125, - "top": 16.636192, - "right": -95.625, - "bottom": 15.284185, - "countries": [ - "mexico" - ] - }, - { - "x": 60, - "y": 116, - "left": -95.625, - "top": 16.636192, - "right": -94.21875, - "bottom": 15.284185, - "countries": [ - "mexico" - ] - }, - { - "x": 61, - "y": 116, - "left": -94.21875, - "top": 16.636192, - "right": -92.8125, - "bottom": 15.284185, - "countries": [ - "mexico" - ] - }, - { - "x": 61, - "y": 117, - "left": -94.21875, - "top": 15.284185, - "right": -92.8125, - "bottom": 13.923404, - "countries": [ - "mexico" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/montserrat.json b/wahoomc/resources/json/north_america/montserrat.json deleted file mode 100644 index e66ace7a..00000000 --- a/wahoomc/resources/json/north_america/montserrat.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "x": 83, - "y": 115, - "left": -63.28125, - "top": 17.978733, - "right": -61.875, - "bottom": 16.636192, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "saint_kitts_and_nevis", - "antigua_and_barbuda", - "saint-barth\u00e9lemy", - "montserrat" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/nicaragua.json b/wahoomc/resources/json/north_america/nicaragua.json deleted file mode 100644 index 92b6515c..00000000 --- a/wahoomc/resources/json/north_america/nicaragua.json +++ /dev/null @@ -1,178 +0,0 @@ -[ - { - "x": 67, - "y": 119, - "left": -85.78125, - "top": 12.554564, - "right": -84.375, - "bottom": 11.178402, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 66, - "y": 120, - "left": -87.1875, - "top": 11.178402, - "right": -85.78125, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 67, - "y": 120, - "left": -85.78125, - "top": 11.178402, - "right": -84.375, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 68, - "y": 120, - "left": -84.375, - "top": 11.178402, - "right": -82.96875, - "bottom": 9.795678, - "countries": [ - "costa_rica", - "nicaragua" - ] - }, - { - "x": 65, - "y": 118, - "left": -88.59375, - "top": 13.923404, - "right": -87.1875, - "bottom": 12.554564, - "countries": [ - "el_salvador", - "honduras", - "nicaragua" - ] - }, - { - "x": 66, - "y": 117, - "left": -87.1875, - "top": 15.284185, - "right": -85.78125, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 67, - "y": 117, - "left": -85.78125, - "top": 15.284185, - "right": -84.375, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 68, - "y": 117, - "left": -84.375, - "top": 15.284185, - "right": -82.96875, - "bottom": 13.923404, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 66, - "y": 118, - "left": -87.1875, - "top": 13.923404, - "right": -85.78125, - "bottom": 12.554564, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 67, - "y": 118, - "left": -85.78125, - "top": 13.923404, - "right": -84.375, - "bottom": 12.554564, - "countries": [ - "honduras", - "nicaragua" - ] - }, - { - "x": 69, - "y": 117, - "left": -82.96875, - "top": 15.284185, - "right": -81.5625, - "bottom": 13.923404, - "countries": [ - "nicaragua" - ] - }, - { - "x": 68, - "y": 118, - "left": -84.375, - "top": 13.923404, - "right": -82.96875, - "bottom": 12.554564, - "countries": [ - "nicaragua" - ] - }, - { - "x": 65, - "y": 119, - "left": -88.59375, - "top": 12.554564, - "right": -87.1875, - "bottom": 11.178402, - "countries": [ - "nicaragua" - ] - }, - { - "x": 66, - "y": 119, - "left": -87.1875, - "top": 12.554564, - "right": -85.78125, - "bottom": 11.178402, - "countries": [ - "nicaragua" - ] - }, - { - "x": 68, - "y": 119, - "left": -84.375, - "top": 12.554564, - "right": -82.96875, - "bottom": 11.178402, - "countries": [ - "nicaragua" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/panama.json b/wahoomc/resources/json/north_america/panama.json deleted file mode 100644 index 3f95817c..00000000 --- a/wahoomc/resources/json/north_america/panama.json +++ /dev/null @@ -1,118 +0,0 @@ -[ - { - "x": 69, - "y": 121, - "left": -82.96875, - "top": 9.795678, - "right": -81.5625, - "bottom": 8.407168, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 68, - "y": 122, - "left": -84.375, - "top": 8.407168, - "right": -82.96875, - "bottom": 7.013668, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 69, - "y": 122, - "left": -82.96875, - "top": 8.407168, - "right": -81.5625, - "bottom": 7.013668, - "countries": [ - "costa_rica", - "panama" - ] - }, - { - "x": 70, - "y": 121, - "left": -81.5625, - "top": 9.795678, - "right": -80.15625, - "bottom": 8.407168, - "countries": [ - "panama" - ] - }, - { - "x": 71, - "y": 121, - "left": -80.15625, - "top": 9.795678, - "right": -78.75, - "bottom": 8.407168, - "countries": [ - "panama" - ] - }, - { - "x": 72, - "y": 121, - "left": -78.75, - "top": 9.795678, - "right": -77.34375, - "bottom": 8.407168, - "countries": [ - "panama", - "colombia" - ] - }, - { - "x": 70, - "y": 122, - "left": -81.5625, - "top": 8.407168, - "right": -80.15625, - "bottom": 7.013668, - "countries": [ - "panama" - ] - }, - { - "x": 71, - "y": 122, - "left": -80.15625, - "top": 8.407168, - "right": -78.75, - "bottom": 7.013668, - "countries": [ - "panama" - ] - }, - { - "x": 72, - "y": 122, - "left": -78.75, - "top": 8.407168, - "right": -77.34375, - "bottom": 7.013668, - "countries": [ - "panama", - "colombia" - ] - }, - { - "x": 73, - "y": 122, - "left": -77.34375, - "top": 8.407168, - "right": -75.9375, - "bottom": 7.013668, - "countries": [ - "panama", - "colombia" - ] - } -] \ No newline at end of file diff --git "a/wahoomc/resources/json/north_america/saint-barth\303\251lemy.json" "b/wahoomc/resources/json/north_america/saint-barth\303\251lemy.json" deleted file mode 100644 index e66ace7a..00000000 --- "a/wahoomc/resources/json/north_america/saint-barth\303\251lemy.json" +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "x": 83, - "y": 115, - "left": -63.28125, - "top": 17.978733, - "right": -61.875, - "bottom": 16.636192, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "saint_kitts_and_nevis", - "antigua_and_barbuda", - "saint-barth\u00e9lemy", - "montserrat" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/saint-martin.json b/wahoomc/resources/json/north_america/saint-martin.json deleted file mode 100644 index 4dfc493e..00000000 --- a/wahoomc/resources/json/north_america/saint-martin.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 83, - "y": 114, - "left": -63.28125, - "top": 19.311143, - "right": -61.875, - "bottom": 17.978733, - "countries": [ - "anguilla", - "saint-martin", - "sint_maarten" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/saint_kitts_and_nevis.json b/wahoomc/resources/json/north_america/saint_kitts_and_nevis.json deleted file mode 100644 index e66ace7a..00000000 --- a/wahoomc/resources/json/north_america/saint_kitts_and_nevis.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "x": 83, - "y": 115, - "left": -63.28125, - "top": 17.978733, - "right": -61.875, - "bottom": 16.636192, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "saint_kitts_and_nevis", - "antigua_and_barbuda", - "saint-barth\u00e9lemy", - "montserrat" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/saint_lucia.json b/wahoomc/resources/json/north_america/saint_lucia.json deleted file mode 100644 index 199b3482..00000000 --- a/wahoomc/resources/json/north_america/saint_lucia.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "x": 84, - "y": 117, - "left": -61.875, - "top": 15.284185, - "right": -60.46875, - "bottom": 13.923404, - "countries": [ - "martinique", - "dominica", - "saint_lucia" - ] - }, - { - "x": 84, - "y": 118, - "left": -61.875, - "top": 13.923404, - "right": -60.46875, - "bottom": 12.554564, - "countries": [ - "saint_vincent_and_the_grenadines", - "saint_lucia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/saint_vincent_and_the_grenadines.json b/wahoomc/resources/json/north_america/saint_vincent_and_the_grenadines.json deleted file mode 100644 index 33127d78..00000000 --- a/wahoomc/resources/json/north_america/saint_vincent_and_the_grenadines.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "x": 84, - "y": 119, - "left": -61.875, - "top": 12.554564, - "right": -60.46875, - "bottom": 11.178402, - "countries": [ - "grenada", - "saint_vincent_and_the_grenadines", - "trinidad_and_tobago" - ] - }, - { - "x": 84, - "y": 118, - "left": -61.875, - "top": 13.923404, - "right": -60.46875, - "bottom": 12.554564, - "countries": [ - "saint_vincent_and_the_grenadines", - "saint_lucia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/sint_maarten.json b/wahoomc/resources/json/north_america/sint_maarten.json deleted file mode 100644 index 4dfc493e..00000000 --- a/wahoomc/resources/json/north_america/sint_maarten.json +++ /dev/null @@ -1,15 +0,0 @@ -[ - { - "x": 83, - "y": 114, - "left": -63.28125, - "top": 19.311143, - "right": -61.875, - "bottom": 17.978733, - "countries": [ - "anguilla", - "saint-martin", - "sint_maarten" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/turks_and_caicos_islands.json b/wahoomc/resources/json/north_america/turks_and_caicos_islands.json deleted file mode 100644 index 2c5dbce3..00000000 --- a/wahoomc/resources/json/north_america/turks_and_caicos_islands.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "x": 76, - "y": 111, - "left": -73.125, - "top": 23.241346, - "right": -71.71875, - "bottom": 21.943046, - "countries": [ - "turks_and_caicos_islands", - "bahamas" - ] - }, - { - "x": 76, - "y": 112, - "left": -73.125, - "top": 21.943046, - "right": -71.71875, - "bottom": 20.632784, - "countries": [ - "turks_and_caicos_islands", - "bahamas" - ] - }, - { - "x": 77, - "y": 112, - "left": -71.71875, - "top": 21.943046, - "right": -70.3125, - "bottom": 20.632784, - "countries": [ - "turks_and_caicos_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/north_america/virgin_islands_u.s..json b/wahoomc/resources/json/north_america/virgin_islands_u.s..json deleted file mode 100644 index d2ee11a1..00000000 --- a/wahoomc/resources/json/north_america/virgin_islands_u.s..json +++ /dev/null @@ -1,55 +0,0 @@ -[ - { - "x": 82, - "y": 114, - "left": -64.6875, - "top": 19.311143, - "right": -63.28125, - "bottom": 17.978733, - "countries": [ - "anguilla", - "virgin_islands_u.s.", - "united_states_virgin_islands", - "british_virgin_islands" - ] - }, - { - "x": 81, - "y": 114, - "left": -66.09375, - "top": 19.311143, - "right": -64.6875, - "bottom": 17.978733, - "countries": [ - "british_virgin_islands", - "puerto_rico", - "united_states_virgin_islands", - "virgin_islands_u.s." - ] - }, - { - "x": 81, - "y": 115, - "left": -66.09375, - "top": 17.978733, - "right": -64.6875, - "bottom": 16.636192, - "countries": [ - "puerto_rico", - "virgin_islands_u.s.", - "united_states_virgin_islands" - ] - }, - { - "x": 82, - "y": 115, - "left": -64.6875, - "top": 17.978733, - "right": -63.28125, - "bottom": 16.636192, - "countries": [ - "virgin_islands_u.s.", - "united_states_virgin_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/australia.json b/wahoomc/resources/json/oceania/australia.json deleted file mode 100644 index 5a779c21..00000000 --- a/wahoomc/resources/json/oceania/australia.json +++ /dev/null @@ -1,5517 +0,0 @@ -[ - { - "x": 228, - "y": 134, - "left": 140.625, - "top": -8.407168, - "right": 142.03125, - "bottom": -9.795678, - "countries": [ - "indonesia", - "papua_new_guinea", - "australia" - ] - }, - { - "x": 215, - "y": 136, - "left": 122.34375, - "top": -11.178402, - "right": 123.75, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 134, - "left": 142.03125, - "top": -8.407168, - "right": 143.4375, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea", - "australia" - ] - }, - { - "x": 230, - "y": 134, - "left": 143.4375, - "top": -8.407168, - "right": 144.84375, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea", - "australia" - ] - }, - { - "x": 220, - "y": 135, - "left": 129.375, - "top": -9.795678, - "right": 130.78125, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 135, - "left": 130.78125, - "top": -9.795678, - "right": 132.1875, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 135, - "left": 132.1875, - "top": -9.795678, - "right": 133.59375, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 135, - "left": 136.40625, - "top": -9.795678, - "right": 137.8125, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 135, - "left": 142.03125, - "top": -9.795678, - "right": 143.4375, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 135, - "left": 143.4375, - "top": -9.795678, - "right": 144.84375, - "bottom": -11.178402, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 136, - "left": 129.375, - "top": -11.178402, - "right": 130.78125, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 136, - "left": 130.78125, - "top": -11.178402, - "right": 132.1875, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 136, - "left": 132.1875, - "top": -11.178402, - "right": 133.59375, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 136, - "left": 133.59375, - "top": -11.178402, - "right": 135.0, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 136, - "left": 135.0, - "top": -11.178402, - "right": 136.40625, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 136, - "left": 136.40625, - "top": -11.178402, - "right": 137.8125, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 136, - "left": 140.625, - "top": -11.178402, - "right": 142.03125, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 136, - "left": 142.03125, - "top": -11.178402, - "right": 143.4375, - "bottom": -12.554564, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 137, - "left": 125.15625, - "top": -12.554564, - "right": 126.5625, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 137, - "left": 126.5625, - "top": -12.554564, - "right": 127.96875, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 137, - "left": 129.375, - "top": -12.554564, - "right": 130.78125, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 137, - "left": 130.78125, - "top": -12.554564, - "right": 132.1875, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 137, - "left": 132.1875, - "top": -12.554564, - "right": 133.59375, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 137, - "left": 133.59375, - "top": -12.554564, - "right": 135.0, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 137, - "left": 135.0, - "top": -12.554564, - "right": 136.40625, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 137, - "left": 136.40625, - "top": -12.554564, - "right": 137.8125, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 137, - "left": 140.625, - "top": -12.554564, - "right": 142.03125, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 137, - "left": 142.03125, - "top": -12.554564, - "right": 143.4375, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 137, - "left": 143.4375, - "top": -12.554564, - "right": 144.84375, - "bottom": -13.923404, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 138, - "left": 122.34375, - "top": -13.923404, - "right": 123.75, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 138, - "left": 123.75, - "top": -13.923404, - "right": 125.15625, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 138, - "left": 125.15625, - "top": -13.923404, - "right": 126.5625, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 138, - "left": 126.5625, - "top": -13.923404, - "right": 127.96875, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 138, - "left": 127.96875, - "top": -13.923404, - "right": 129.375, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 138, - "left": 129.375, - "top": -13.923404, - "right": 130.78125, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 138, - "left": 130.78125, - "top": -13.923404, - "right": 132.1875, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 138, - "left": 132.1875, - "top": -13.923404, - "right": 133.59375, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 138, - "left": 133.59375, - "top": -13.923404, - "right": 135.0, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 138, - "left": 135.0, - "top": -13.923404, - "right": 136.40625, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 138, - "left": 136.40625, - "top": -13.923404, - "right": 137.8125, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 138, - "left": 140.625, - "top": -13.923404, - "right": 142.03125, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 138, - "left": 142.03125, - "top": -13.923404, - "right": 143.4375, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 138, - "left": 143.4375, - "top": -13.923404, - "right": 144.84375, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 138, - "left": 144.84375, - "top": -13.923404, - "right": 146.25, - "bottom": -15.284185, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 139, - "left": 122.34375, - "top": -15.284185, - "right": 123.75, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 139, - "left": 123.75, - "top": -15.284185, - "right": 125.15625, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 139, - "left": 125.15625, - "top": -15.284185, - "right": 126.5625, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 139, - "left": 126.5625, - "top": -15.284185, - "right": 127.96875, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 139, - "left": 127.96875, - "top": -15.284185, - "right": 129.375, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 139, - "left": 129.375, - "top": -15.284185, - "right": 130.78125, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 139, - "left": 130.78125, - "top": -15.284185, - "right": 132.1875, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 139, - "left": 132.1875, - "top": -15.284185, - "right": 133.59375, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 139, - "left": 133.59375, - "top": -15.284185, - "right": 135.0, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 139, - "left": 135.0, - "top": -15.284185, - "right": 136.40625, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 139, - "left": 136.40625, - "top": -15.284185, - "right": 137.8125, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 139, - "left": 137.8125, - "top": -15.284185, - "right": 139.21875, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 139, - "left": 139.21875, - "top": -15.284185, - "right": 140.625, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 139, - "left": 140.625, - "top": -15.284185, - "right": 142.03125, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 139, - "left": 142.03125, - "top": -15.284185, - "right": 143.4375, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 139, - "left": 143.4375, - "top": -15.284185, - "right": 144.84375, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 139, - "left": 144.84375, - "top": -15.284185, - "right": 146.25, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 140, - "left": 120.9375, - "top": -16.636192, - "right": 122.34375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 140, - "left": 122.34375, - "top": -16.636192, - "right": 123.75, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 140, - "left": 123.75, - "top": -16.636192, - "right": 125.15625, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 140, - "left": 125.15625, - "top": -16.636192, - "right": 126.5625, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 140, - "left": 126.5625, - "top": -16.636192, - "right": 127.96875, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 140, - "left": 127.96875, - "top": -16.636192, - "right": 129.375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 140, - "left": 129.375, - "top": -16.636192, - "right": 130.78125, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 140, - "left": 130.78125, - "top": -16.636192, - "right": 132.1875, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 140, - "left": 132.1875, - "top": -16.636192, - "right": 133.59375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 140, - "left": 133.59375, - "top": -16.636192, - "right": 135.0, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 140, - "left": 135.0, - "top": -16.636192, - "right": 136.40625, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 140, - "left": 136.40625, - "top": -16.636192, - "right": 137.8125, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 140, - "left": 137.8125, - "top": -16.636192, - "right": 139.21875, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 140, - "left": 139.21875, - "top": -16.636192, - "right": 140.625, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 140, - "left": 140.625, - "top": -16.636192, - "right": 142.03125, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 140, - "left": 142.03125, - "top": -16.636192, - "right": 143.4375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 140, - "left": 143.4375, - "top": -16.636192, - "right": 144.84375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 140, - "left": 144.84375, - "top": -16.636192, - "right": 146.25, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 141, - "left": 120.9375, - "top": -17.978733, - "right": 122.34375, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 141, - "left": 122.34375, - "top": -17.978733, - "right": 123.75, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 141, - "left": 123.75, - "top": -17.978733, - "right": 125.15625, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 141, - "left": 125.15625, - "top": -17.978733, - "right": 126.5625, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 141, - "left": 126.5625, - "top": -17.978733, - "right": 127.96875, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 141, - "left": 127.96875, - "top": -17.978733, - "right": 129.375, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 141, - "left": 129.375, - "top": -17.978733, - "right": 130.78125, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 141, - "left": 130.78125, - "top": -17.978733, - "right": 132.1875, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 141, - "left": 132.1875, - "top": -17.978733, - "right": 133.59375, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 141, - "left": 133.59375, - "top": -17.978733, - "right": 135.0, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 141, - "left": 135.0, - "top": -17.978733, - "right": 136.40625, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 141, - "left": 136.40625, - "top": -17.978733, - "right": 137.8125, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 141, - "left": 137.8125, - "top": -17.978733, - "right": 139.21875, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 141, - "left": 139.21875, - "top": -17.978733, - "right": 140.625, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 141, - "left": 140.625, - "top": -17.978733, - "right": 142.03125, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 141, - "left": 142.03125, - "top": -17.978733, - "right": 143.4375, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 141, - "left": 143.4375, - "top": -17.978733, - "right": 144.84375, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 141, - "left": 144.84375, - "top": -17.978733, - "right": 146.25, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 141, - "left": 146.25, - "top": -17.978733, - "right": 147.65625, - "bottom": -19.311143, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 142, - "left": 115.3125, - "top": -19.311143, - "right": 116.71875, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 142, - "left": 116.71875, - "top": -19.311143, - "right": 118.125, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 142, - "left": 118.125, - "top": -19.311143, - "right": 119.53125, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 142, - "left": 119.53125, - "top": -19.311143, - "right": 120.9375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 142, - "left": 120.9375, - "top": -19.311143, - "right": 122.34375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 142, - "left": 122.34375, - "top": -19.311143, - "right": 123.75, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 142, - "left": 123.75, - "top": -19.311143, - "right": 125.15625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 142, - "left": 125.15625, - "top": -19.311143, - "right": 126.5625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 142, - "left": 126.5625, - "top": -19.311143, - "right": 127.96875, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 142, - "left": 127.96875, - "top": -19.311143, - "right": 129.375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 142, - "left": 129.375, - "top": -19.311143, - "right": 130.78125, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 142, - "left": 130.78125, - "top": -19.311143, - "right": 132.1875, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 142, - "left": 132.1875, - "top": -19.311143, - "right": 133.59375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 142, - "left": 133.59375, - "top": -19.311143, - "right": 135.0, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 142, - "left": 135.0, - "top": -19.311143, - "right": 136.40625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 142, - "left": 136.40625, - "top": -19.311143, - "right": 137.8125, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 142, - "left": 137.8125, - "top": -19.311143, - "right": 139.21875, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 142, - "left": 139.21875, - "top": -19.311143, - "right": 140.625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 142, - "left": 140.625, - "top": -19.311143, - "right": 142.03125, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 142, - "left": 142.03125, - "top": -19.311143, - "right": 143.4375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 142, - "left": 143.4375, - "top": -19.311143, - "right": 144.84375, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 142, - "left": 144.84375, - "top": -19.311143, - "right": 146.25, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 142, - "left": 146.25, - "top": -19.311143, - "right": 147.65625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 142, - "left": 147.65625, - "top": -19.311143, - "right": 149.0625, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 142, - "left": 149.0625, - "top": -19.311143, - "right": 150.46875, - "bottom": -20.632784, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 143, - "left": 113.90625, - "top": -20.632784, - "right": 115.3125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 143, - "left": 115.3125, - "top": -20.632784, - "right": 116.71875, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 143, - "left": 116.71875, - "top": -20.632784, - "right": 118.125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 143, - "left": 118.125, - "top": -20.632784, - "right": 119.53125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 143, - "left": 119.53125, - "top": -20.632784, - "right": 120.9375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 143, - "left": 120.9375, - "top": -20.632784, - "right": 122.34375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 143, - "left": 122.34375, - "top": -20.632784, - "right": 123.75, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 143, - "left": 123.75, - "top": -20.632784, - "right": 125.15625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 143, - "left": 125.15625, - "top": -20.632784, - "right": 126.5625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 143, - "left": 126.5625, - "top": -20.632784, - "right": 127.96875, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 143, - "left": 127.96875, - "top": -20.632784, - "right": 129.375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 143, - "left": 129.375, - "top": -20.632784, - "right": 130.78125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 143, - "left": 130.78125, - "top": -20.632784, - "right": 132.1875, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 143, - "left": 132.1875, - "top": -20.632784, - "right": 133.59375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 143, - "left": 133.59375, - "top": -20.632784, - "right": 135.0, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 143, - "left": 135.0, - "top": -20.632784, - "right": 136.40625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 143, - "left": 136.40625, - "top": -20.632784, - "right": 137.8125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 143, - "left": 137.8125, - "top": -20.632784, - "right": 139.21875, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 143, - "left": 139.21875, - "top": -20.632784, - "right": 140.625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 143, - "left": 140.625, - "top": -20.632784, - "right": 142.03125, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 143, - "left": 142.03125, - "top": -20.632784, - "right": 143.4375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 143, - "left": 143.4375, - "top": -20.632784, - "right": 144.84375, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 143, - "left": 144.84375, - "top": -20.632784, - "right": 146.25, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 143, - "left": 146.25, - "top": -20.632784, - "right": 147.65625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 143, - "left": 147.65625, - "top": -20.632784, - "right": 149.0625, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 143, - "left": 149.0625, - "top": -20.632784, - "right": 150.46875, - "bottom": -21.943046, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 144, - "left": 112.5, - "top": -21.943046, - "right": 113.90625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 144, - "left": 113.90625, - "top": -21.943046, - "right": 115.3125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 144, - "left": 115.3125, - "top": -21.943046, - "right": 116.71875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 144, - "left": 116.71875, - "top": -21.943046, - "right": 118.125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 144, - "left": 118.125, - "top": -21.943046, - "right": 119.53125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 144, - "left": 119.53125, - "top": -21.943046, - "right": 120.9375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 144, - "left": 120.9375, - "top": -21.943046, - "right": 122.34375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 144, - "left": 122.34375, - "top": -21.943046, - "right": 123.75, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 144, - "left": 123.75, - "top": -21.943046, - "right": 125.15625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 144, - "left": 125.15625, - "top": -21.943046, - "right": 126.5625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 144, - "left": 126.5625, - "top": -21.943046, - "right": 127.96875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 144, - "left": 127.96875, - "top": -21.943046, - "right": 129.375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 144, - "left": 129.375, - "top": -21.943046, - "right": 130.78125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 144, - "left": 130.78125, - "top": -21.943046, - "right": 132.1875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 144, - "left": 132.1875, - "top": -21.943046, - "right": 133.59375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 144, - "left": 133.59375, - "top": -21.943046, - "right": 135.0, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 144, - "left": 135.0, - "top": -21.943046, - "right": 136.40625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 144, - "left": 136.40625, - "top": -21.943046, - "right": 137.8125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 144, - "left": 137.8125, - "top": -21.943046, - "right": 139.21875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 144, - "left": 139.21875, - "top": -21.943046, - "right": 140.625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 144, - "left": 140.625, - "top": -21.943046, - "right": 142.03125, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 144, - "left": 142.03125, - "top": -21.943046, - "right": 143.4375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 144, - "left": 143.4375, - "top": -21.943046, - "right": 144.84375, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 144, - "left": 144.84375, - "top": -21.943046, - "right": 146.25, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 144, - "left": 146.25, - "top": -21.943046, - "right": 147.65625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 144, - "left": 147.65625, - "top": -21.943046, - "right": 149.0625, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 144, - "left": 149.0625, - "top": -21.943046, - "right": 150.46875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 144, - "left": 150.46875, - "top": -21.943046, - "right": 151.875, - "bottom": -23.241346, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 145, - "left": 112.5, - "top": -23.241346, - "right": 113.90625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 145, - "left": 113.90625, - "top": -23.241346, - "right": 115.3125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 145, - "left": 115.3125, - "top": -23.241346, - "right": 116.71875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 145, - "left": 116.71875, - "top": -23.241346, - "right": 118.125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 145, - "left": 118.125, - "top": -23.241346, - "right": 119.53125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 145, - "left": 119.53125, - "top": -23.241346, - "right": 120.9375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 145, - "left": 120.9375, - "top": -23.241346, - "right": 122.34375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 145, - "left": 122.34375, - "top": -23.241346, - "right": 123.75, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 145, - "left": 123.75, - "top": -23.241346, - "right": 125.15625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 145, - "left": 125.15625, - "top": -23.241346, - "right": 126.5625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 145, - "left": 126.5625, - "top": -23.241346, - "right": 127.96875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 145, - "left": 127.96875, - "top": -23.241346, - "right": 129.375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 145, - "left": 129.375, - "top": -23.241346, - "right": 130.78125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 145, - "left": 130.78125, - "top": -23.241346, - "right": 132.1875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 145, - "left": 132.1875, - "top": -23.241346, - "right": 133.59375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 145, - "left": 133.59375, - "top": -23.241346, - "right": 135.0, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 145, - "left": 135.0, - "top": -23.241346, - "right": 136.40625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 145, - "left": 136.40625, - "top": -23.241346, - "right": 137.8125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 145, - "left": 137.8125, - "top": -23.241346, - "right": 139.21875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 145, - "left": 139.21875, - "top": -23.241346, - "right": 140.625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 145, - "left": 140.625, - "top": -23.241346, - "right": 142.03125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 145, - "left": 142.03125, - "top": -23.241346, - "right": 143.4375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 145, - "left": 143.4375, - "top": -23.241346, - "right": 144.84375, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 145, - "left": 144.84375, - "top": -23.241346, - "right": 146.25, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 145, - "left": 146.25, - "top": -23.241346, - "right": 147.65625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 145, - "left": 147.65625, - "top": -23.241346, - "right": 149.0625, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 145, - "left": 149.0625, - "top": -23.241346, - "right": 150.46875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 145, - "left": 150.46875, - "top": -23.241346, - "right": 151.875, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 145, - "left": 151.875, - "top": -23.241346, - "right": 153.28125, - "bottom": -24.527135, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 146, - "left": 112.5, - "top": -24.527135, - "right": 113.90625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 146, - "left": 113.90625, - "top": -24.527135, - "right": 115.3125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 146, - "left": 115.3125, - "top": -24.527135, - "right": 116.71875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 146, - "left": 116.71875, - "top": -24.527135, - "right": 118.125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 146, - "left": 118.125, - "top": -24.527135, - "right": 119.53125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 146, - "left": 119.53125, - "top": -24.527135, - "right": 120.9375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 146, - "left": 120.9375, - "top": -24.527135, - "right": 122.34375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 146, - "left": 122.34375, - "top": -24.527135, - "right": 123.75, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 146, - "left": 123.75, - "top": -24.527135, - "right": 125.15625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 146, - "left": 125.15625, - "top": -24.527135, - "right": 126.5625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 146, - "left": 126.5625, - "top": -24.527135, - "right": 127.96875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 146, - "left": 127.96875, - "top": -24.527135, - "right": 129.375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 146, - "left": 129.375, - "top": -24.527135, - "right": 130.78125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 146, - "left": 130.78125, - "top": -24.527135, - "right": 132.1875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 146, - "left": 132.1875, - "top": -24.527135, - "right": 133.59375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 146, - "left": 133.59375, - "top": -24.527135, - "right": 135.0, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 146, - "left": 135.0, - "top": -24.527135, - "right": 136.40625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 146, - "left": 136.40625, - "top": -24.527135, - "right": 137.8125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 146, - "left": 137.8125, - "top": -24.527135, - "right": 139.21875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 146, - "left": 139.21875, - "top": -24.527135, - "right": 140.625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 146, - "left": 140.625, - "top": -24.527135, - "right": 142.03125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 146, - "left": 142.03125, - "top": -24.527135, - "right": 143.4375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 146, - "left": 143.4375, - "top": -24.527135, - "right": 144.84375, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 146, - "left": 144.84375, - "top": -24.527135, - "right": 146.25, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 146, - "left": 146.25, - "top": -24.527135, - "right": 147.65625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 146, - "left": 147.65625, - "top": -24.527135, - "right": 149.0625, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 146, - "left": 149.0625, - "top": -24.527135, - "right": 150.46875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 146, - "left": 150.46875, - "top": -24.527135, - "right": 151.875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 146, - "left": 151.875, - "top": -24.527135, - "right": 153.28125, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 237, - "y": 146, - "left": 153.28125, - "top": -24.527135, - "right": 154.6875, - "bottom": -25.799891, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 147, - "left": 112.5, - "top": -25.799891, - "right": 113.90625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 147, - "left": 113.90625, - "top": -25.799891, - "right": 115.3125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 147, - "left": 115.3125, - "top": -25.799891, - "right": 116.71875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 147, - "left": 116.71875, - "top": -25.799891, - "right": 118.125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 147, - "left": 118.125, - "top": -25.799891, - "right": 119.53125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 147, - "left": 119.53125, - "top": -25.799891, - "right": 120.9375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 147, - "left": 120.9375, - "top": -25.799891, - "right": 122.34375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 147, - "left": 122.34375, - "top": -25.799891, - "right": 123.75, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 147, - "left": 123.75, - "top": -25.799891, - "right": 125.15625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 147, - "left": 125.15625, - "top": -25.799891, - "right": 126.5625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 147, - "left": 126.5625, - "top": -25.799891, - "right": 127.96875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 147, - "left": 127.96875, - "top": -25.799891, - "right": 129.375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 147, - "left": 129.375, - "top": -25.799891, - "right": 130.78125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 147, - "left": 130.78125, - "top": -25.799891, - "right": 132.1875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 147, - "left": 132.1875, - "top": -25.799891, - "right": 133.59375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 147, - "left": 133.59375, - "top": -25.799891, - "right": 135.0, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 147, - "left": 135.0, - "top": -25.799891, - "right": 136.40625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 147, - "left": 136.40625, - "top": -25.799891, - "right": 137.8125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 147, - "left": 137.8125, - "top": -25.799891, - "right": 139.21875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 147, - "left": 139.21875, - "top": -25.799891, - "right": 140.625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 147, - "left": 140.625, - "top": -25.799891, - "right": 142.03125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 147, - "left": 142.03125, - "top": -25.799891, - "right": 143.4375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 147, - "left": 143.4375, - "top": -25.799891, - "right": 144.84375, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 147, - "left": 144.84375, - "top": -25.799891, - "right": 146.25, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 147, - "left": 146.25, - "top": -25.799891, - "right": 147.65625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 147, - "left": 147.65625, - "top": -25.799891, - "right": 149.0625, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 147, - "left": 149.0625, - "top": -25.799891, - "right": 150.46875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 147, - "left": 150.46875, - "top": -25.799891, - "right": 151.875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 147, - "left": 151.875, - "top": -25.799891, - "right": 153.28125, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 237, - "y": 147, - "left": 153.28125, - "top": -25.799891, - "right": 154.6875, - "bottom": -27.059126, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 148, - "left": 112.5, - "top": -27.059126, - "right": 113.90625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 148, - "left": 113.90625, - "top": -27.059126, - "right": 115.3125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 148, - "left": 115.3125, - "top": -27.059126, - "right": 116.71875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 148, - "left": 116.71875, - "top": -27.059126, - "right": 118.125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 148, - "left": 118.125, - "top": -27.059126, - "right": 119.53125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 148, - "left": 119.53125, - "top": -27.059126, - "right": 120.9375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 148, - "left": 120.9375, - "top": -27.059126, - "right": 122.34375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 148, - "left": 122.34375, - "top": -27.059126, - "right": 123.75, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 148, - "left": 123.75, - "top": -27.059126, - "right": 125.15625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 148, - "left": 125.15625, - "top": -27.059126, - "right": 126.5625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 148, - "left": 126.5625, - "top": -27.059126, - "right": 127.96875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 148, - "left": 127.96875, - "top": -27.059126, - "right": 129.375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 148, - "left": 129.375, - "top": -27.059126, - "right": 130.78125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 148, - "left": 130.78125, - "top": -27.059126, - "right": 132.1875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 148, - "left": 132.1875, - "top": -27.059126, - "right": 133.59375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 148, - "left": 133.59375, - "top": -27.059126, - "right": 135.0, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 148, - "left": 135.0, - "top": -27.059126, - "right": 136.40625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 148, - "left": 136.40625, - "top": -27.059126, - "right": 137.8125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 148, - "left": 137.8125, - "top": -27.059126, - "right": 139.21875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 148, - "left": 139.21875, - "top": -27.059126, - "right": 140.625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 148, - "left": 140.625, - "top": -27.059126, - "right": 142.03125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 148, - "left": 142.03125, - "top": -27.059126, - "right": 143.4375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 148, - "left": 143.4375, - "top": -27.059126, - "right": 144.84375, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 148, - "left": 144.84375, - "top": -27.059126, - "right": 146.25, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 148, - "left": 146.25, - "top": -27.059126, - "right": 147.65625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 148, - "left": 147.65625, - "top": -27.059126, - "right": 149.0625, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 148, - "left": 149.0625, - "top": -27.059126, - "right": 150.46875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 148, - "left": 150.46875, - "top": -27.059126, - "right": 151.875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 148, - "left": 151.875, - "top": -27.059126, - "right": 153.28125, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 237, - "y": 148, - "left": 153.28125, - "top": -27.059126, - "right": 154.6875, - "bottom": -28.304381, - "countries": [ - "australia" - ] - }, - { - "x": 208, - "y": 149, - "left": 112.5, - "top": -28.304381, - "right": 113.90625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 149, - "left": 113.90625, - "top": -28.304381, - "right": 115.3125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 149, - "left": 115.3125, - "top": -28.304381, - "right": 116.71875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 149, - "left": 116.71875, - "top": -28.304381, - "right": 118.125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 149, - "left": 118.125, - "top": -28.304381, - "right": 119.53125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 149, - "left": 119.53125, - "top": -28.304381, - "right": 120.9375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 149, - "left": 120.9375, - "top": -28.304381, - "right": 122.34375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 149, - "left": 122.34375, - "top": -28.304381, - "right": 123.75, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 149, - "left": 123.75, - "top": -28.304381, - "right": 125.15625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 149, - "left": 125.15625, - "top": -28.304381, - "right": 126.5625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 149, - "left": 126.5625, - "top": -28.304381, - "right": 127.96875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 149, - "left": 127.96875, - "top": -28.304381, - "right": 129.375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 149, - "left": 129.375, - "top": -28.304381, - "right": 130.78125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 149, - "left": 130.78125, - "top": -28.304381, - "right": 132.1875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 149, - "left": 132.1875, - "top": -28.304381, - "right": 133.59375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 149, - "left": 133.59375, - "top": -28.304381, - "right": 135.0, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 149, - "left": 135.0, - "top": -28.304381, - "right": 136.40625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 149, - "left": 136.40625, - "top": -28.304381, - "right": 137.8125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 149, - "left": 137.8125, - "top": -28.304381, - "right": 139.21875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 149, - "left": 139.21875, - "top": -28.304381, - "right": 140.625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 149, - "left": 140.625, - "top": -28.304381, - "right": 142.03125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 149, - "left": 142.03125, - "top": -28.304381, - "right": 143.4375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 149, - "left": 143.4375, - "top": -28.304381, - "right": 144.84375, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 149, - "left": 144.84375, - "top": -28.304381, - "right": 146.25, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 149, - "left": 146.25, - "top": -28.304381, - "right": 147.65625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 149, - "left": 147.65625, - "top": -28.304381, - "right": 149.0625, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 149, - "left": 149.0625, - "top": -28.304381, - "right": 150.46875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 149, - "left": 150.46875, - "top": -28.304381, - "right": 151.875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 149, - "left": 151.875, - "top": -28.304381, - "right": 153.28125, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 237, - "y": 149, - "left": 153.28125, - "top": -28.304381, - "right": 154.6875, - "bottom": -29.53523, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 150, - "left": 113.90625, - "top": -29.53523, - "right": 115.3125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 150, - "left": 115.3125, - "top": -29.53523, - "right": 116.71875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 150, - "left": 116.71875, - "top": -29.53523, - "right": 118.125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 150, - "left": 118.125, - "top": -29.53523, - "right": 119.53125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 150, - "left": 119.53125, - "top": -29.53523, - "right": 120.9375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 150, - "left": 120.9375, - "top": -29.53523, - "right": 122.34375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 150, - "left": 122.34375, - "top": -29.53523, - "right": 123.75, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 150, - "left": 123.75, - "top": -29.53523, - "right": 125.15625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 150, - "left": 125.15625, - "top": -29.53523, - "right": 126.5625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 150, - "left": 126.5625, - "top": -29.53523, - "right": 127.96875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 150, - "left": 127.96875, - "top": -29.53523, - "right": 129.375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 150, - "left": 129.375, - "top": -29.53523, - "right": 130.78125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 150, - "left": 130.78125, - "top": -29.53523, - "right": 132.1875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 150, - "left": 132.1875, - "top": -29.53523, - "right": 133.59375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 150, - "left": 133.59375, - "top": -29.53523, - "right": 135.0, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 150, - "left": 135.0, - "top": -29.53523, - "right": 136.40625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 150, - "left": 136.40625, - "top": -29.53523, - "right": 137.8125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 150, - "left": 137.8125, - "top": -29.53523, - "right": 139.21875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 150, - "left": 139.21875, - "top": -29.53523, - "right": 140.625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 150, - "left": 140.625, - "top": -29.53523, - "right": 142.03125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 150, - "left": 142.03125, - "top": -29.53523, - "right": 143.4375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 150, - "left": 143.4375, - "top": -29.53523, - "right": 144.84375, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 150, - "left": 144.84375, - "top": -29.53523, - "right": 146.25, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 150, - "left": 146.25, - "top": -29.53523, - "right": 147.65625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 150, - "left": 147.65625, - "top": -29.53523, - "right": 149.0625, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 150, - "left": 149.0625, - "top": -29.53523, - "right": 150.46875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 150, - "left": 150.46875, - "top": -29.53523, - "right": 151.875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 150, - "left": 151.875, - "top": -29.53523, - "right": 153.28125, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 237, - "y": 150, - "left": 153.28125, - "top": -29.53523, - "right": 154.6875, - "bottom": -30.751278, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 151, - "left": 113.90625, - "top": -30.751278, - "right": 115.3125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 151, - "left": 115.3125, - "top": -30.751278, - "right": 116.71875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 151, - "left": 116.71875, - "top": -30.751278, - "right": 118.125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 151, - "left": 118.125, - "top": -30.751278, - "right": 119.53125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 151, - "left": 119.53125, - "top": -30.751278, - "right": 120.9375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 151, - "left": 120.9375, - "top": -30.751278, - "right": 122.34375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 151, - "left": 122.34375, - "top": -30.751278, - "right": 123.75, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 151, - "left": 123.75, - "top": -30.751278, - "right": 125.15625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 151, - "left": 125.15625, - "top": -30.751278, - "right": 126.5625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 151, - "left": 126.5625, - "top": -30.751278, - "right": 127.96875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 151, - "left": 127.96875, - "top": -30.751278, - "right": 129.375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 220, - "y": 151, - "left": 129.375, - "top": -30.751278, - "right": 130.78125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 151, - "left": 130.78125, - "top": -30.751278, - "right": 132.1875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 151, - "left": 132.1875, - "top": -30.751278, - "right": 133.59375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 151, - "left": 133.59375, - "top": -30.751278, - "right": 135.0, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 151, - "left": 135.0, - "top": -30.751278, - "right": 136.40625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 151, - "left": 136.40625, - "top": -30.751278, - "right": 137.8125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 151, - "left": 137.8125, - "top": -30.751278, - "right": 139.21875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 151, - "left": 139.21875, - "top": -30.751278, - "right": 140.625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 151, - "left": 140.625, - "top": -30.751278, - "right": 142.03125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 151, - "left": 142.03125, - "top": -30.751278, - "right": 143.4375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 151, - "left": 143.4375, - "top": -30.751278, - "right": 144.84375, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 151, - "left": 144.84375, - "top": -30.751278, - "right": 146.25, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 151, - "left": 146.25, - "top": -30.751278, - "right": 147.65625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 151, - "left": 147.65625, - "top": -30.751278, - "right": 149.0625, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 151, - "left": 149.0625, - "top": -30.751278, - "right": 150.46875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 151, - "left": 150.46875, - "top": -30.751278, - "right": 151.875, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 151, - "left": 151.875, - "top": -30.751278, - "right": 153.28125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 241, - "y": 151, - "left": 158.90625, - "top": -30.751278, - "right": 160.3125, - "bottom": -31.952162, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 152, - "left": 115.3125, - "top": -31.952162, - "right": 116.71875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 152, - "left": 116.71875, - "top": -31.952162, - "right": 118.125, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 152, - "left": 118.125, - "top": -31.952162, - "right": 119.53125, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 152, - "left": 119.53125, - "top": -31.952162, - "right": 120.9375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 152, - "left": 120.9375, - "top": -31.952162, - "right": 122.34375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 152, - "left": 122.34375, - "top": -31.952162, - "right": 123.75, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 152, - "left": 123.75, - "top": -31.952162, - "right": 125.15625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 217, - "y": 152, - "left": 125.15625, - "top": -31.952162, - "right": 126.5625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 218, - "y": 152, - "left": 126.5625, - "top": -31.952162, - "right": 127.96875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 219, - "y": 152, - "left": 127.96875, - "top": -31.952162, - "right": 129.375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 221, - "y": 152, - "left": 130.78125, - "top": -31.952162, - "right": 132.1875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 222, - "y": 152, - "left": 132.1875, - "top": -31.952162, - "right": 133.59375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 152, - "left": 133.59375, - "top": -31.952162, - "right": 135.0, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 152, - "left": 135.0, - "top": -31.952162, - "right": 136.40625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 152, - "left": 136.40625, - "top": -31.952162, - "right": 137.8125, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 152, - "left": 137.8125, - "top": -31.952162, - "right": 139.21875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 152, - "left": 139.21875, - "top": -31.952162, - "right": 140.625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 152, - "left": 140.625, - "top": -31.952162, - "right": 142.03125, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 152, - "left": 142.03125, - "top": -31.952162, - "right": 143.4375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 152, - "left": 143.4375, - "top": -31.952162, - "right": 144.84375, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 152, - "left": 144.84375, - "top": -31.952162, - "right": 146.25, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 152, - "left": 146.25, - "top": -31.952162, - "right": 147.65625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 152, - "left": 147.65625, - "top": -31.952162, - "right": 149.0625, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 152, - "left": 149.0625, - "top": -31.952162, - "right": 150.46875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 152, - "left": 150.46875, - "top": -31.952162, - "right": 151.875, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 152, - "left": 151.875, - "top": -31.952162, - "right": 153.28125, - "bottom": -33.137551, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 153, - "left": 113.90625, - "top": -33.137551, - "right": 115.3125, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 153, - "left": 115.3125, - "top": -33.137551, - "right": 116.71875, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 153, - "left": 116.71875, - "top": -33.137551, - "right": 118.125, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 153, - "left": 118.125, - "top": -33.137551, - "right": 119.53125, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 153, - "left": 119.53125, - "top": -33.137551, - "right": 120.9375, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 214, - "y": 153, - "left": 120.9375, - "top": -33.137551, - "right": 122.34375, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 153, - "left": 122.34375, - "top": -33.137551, - "right": 123.75, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 216, - "y": 153, - "left": 123.75, - "top": -33.137551, - "right": 125.15625, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 153, - "left": 133.59375, - "top": -33.137551, - "right": 135.0, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 153, - "left": 135.0, - "top": -33.137551, - "right": 136.40625, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 153, - "left": 136.40625, - "top": -33.137551, - "right": 137.8125, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 153, - "left": 137.8125, - "top": -33.137551, - "right": 139.21875, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 153, - "left": 139.21875, - "top": -33.137551, - "right": 140.625, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 153, - "left": 140.625, - "top": -33.137551, - "right": 142.03125, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 153, - "left": 142.03125, - "top": -33.137551, - "right": 143.4375, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 153, - "left": 143.4375, - "top": -33.137551, - "right": 144.84375, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 153, - "left": 144.84375, - "top": -33.137551, - "right": 146.25, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 153, - "left": 146.25, - "top": -33.137551, - "right": 147.65625, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 153, - "left": 147.65625, - "top": -33.137551, - "right": 149.0625, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 153, - "left": 149.0625, - "top": -33.137551, - "right": 150.46875, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 153, - "left": 150.46875, - "top": -33.137551, - "right": 151.875, - "bottom": -34.307144, - "countries": [ - "australia" - ] - }, - { - "x": 209, - "y": 154, - "left": 113.90625, - "top": -34.307144, - "right": 115.3125, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 210, - "y": 154, - "left": 115.3125, - "top": -34.307144, - "right": 116.71875, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 211, - "y": 154, - "left": 116.71875, - "top": -34.307144, - "right": 118.125, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 212, - "y": 154, - "left": 118.125, - "top": -34.307144, - "right": 119.53125, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 213, - "y": 154, - "left": 119.53125, - "top": -34.307144, - "right": 120.9375, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 215, - "y": 154, - "left": 122.34375, - "top": -34.307144, - "right": 123.75, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 223, - "y": 154, - "left": 133.59375, - "top": -34.307144, - "right": 135.0, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 224, - "y": 154, - "left": 135.0, - "top": -34.307144, - "right": 136.40625, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 154, - "left": 136.40625, - "top": -34.307144, - "right": 137.8125, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 154, - "left": 137.8125, - "top": -34.307144, - "right": 139.21875, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 154, - "left": 139.21875, - "top": -34.307144, - "right": 140.625, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 154, - "left": 140.625, - "top": -34.307144, - "right": 142.03125, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 154, - "left": 142.03125, - "top": -34.307144, - "right": 143.4375, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 154, - "left": 143.4375, - "top": -34.307144, - "right": 144.84375, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 154, - "left": 144.84375, - "top": -34.307144, - "right": 146.25, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 154, - "left": 146.25, - "top": -34.307144, - "right": 147.65625, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 154, - "left": 147.65625, - "top": -34.307144, - "right": 149.0625, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 154, - "left": 149.0625, - "top": -34.307144, - "right": 150.46875, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 154, - "left": 150.46875, - "top": -34.307144, - "right": 151.875, - "bottom": -35.46067, - "countries": [ - "australia" - ] - }, - { - "x": 225, - "y": 155, - "left": 136.40625, - "top": -35.46067, - "right": 137.8125, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 226, - "y": 155, - "left": 137.8125, - "top": -35.46067, - "right": 139.21875, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 155, - "left": 139.21875, - "top": -35.46067, - "right": 140.625, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 155, - "left": 140.625, - "top": -35.46067, - "right": 142.03125, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 155, - "left": 142.03125, - "top": -35.46067, - "right": 143.4375, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 155, - "left": 143.4375, - "top": -35.46067, - "right": 144.84375, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 155, - "left": 144.84375, - "top": -35.46067, - "right": 146.25, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 155, - "left": 146.25, - "top": -35.46067, - "right": 147.65625, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 155, - "left": 147.65625, - "top": -35.46067, - "right": 149.0625, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 155, - "left": 149.0625, - "top": -35.46067, - "right": 150.46875, - "bottom": -36.597889, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 156, - "left": 139.21875, - "top": -36.597889, - "right": 140.625, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 156, - "left": 140.625, - "top": -36.597889, - "right": 142.03125, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 156, - "left": 142.03125, - "top": -36.597889, - "right": 143.4375, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 156, - "left": 143.4375, - "top": -36.597889, - "right": 144.84375, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 156, - "left": 144.84375, - "top": -36.597889, - "right": 146.25, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 156, - "left": 146.25, - "top": -36.597889, - "right": 147.65625, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 156, - "left": 147.65625, - "top": -36.597889, - "right": 149.0625, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 156, - "left": 149.0625, - "top": -36.597889, - "right": 150.46875, - "bottom": -37.71859, - "countries": [ - "australia" - ] - }, - { - "x": 227, - "y": 157, - "left": 139.21875, - "top": -37.71859, - "right": 140.625, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 228, - "y": 157, - "left": 140.625, - "top": -37.71859, - "right": 142.03125, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 229, - "y": 157, - "left": 142.03125, - "top": -37.71859, - "right": 143.4375, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 157, - "left": 143.4375, - "top": -37.71859, - "right": 144.84375, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 157, - "left": 144.84375, - "top": -37.71859, - "right": 146.25, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 157, - "left": 146.25, - "top": -37.71859, - "right": 147.65625, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 157, - "left": 147.65625, - "top": -37.71859, - "right": 149.0625, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 157, - "left": 149.0625, - "top": -37.71859, - "right": 150.46875, - "bottom": -38.822591, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 158, - "left": 143.4375, - "top": -38.822591, - "right": 144.84375, - "bottom": -39.909736, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 158, - "left": 144.84375, - "top": -38.822591, - "right": 146.25, - "bottom": -39.909736, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 158, - "left": 146.25, - "top": -38.822591, - "right": 147.65625, - "bottom": -39.909736, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 158, - "left": 147.65625, - "top": -38.822591, - "right": 149.0625, - "bottom": -39.909736, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 159, - "left": 143.4375, - "top": -39.909736, - "right": 144.84375, - "bottom": -40.979898, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 159, - "left": 144.84375, - "top": -39.909736, - "right": 146.25, - "bottom": -40.979898, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 159, - "left": 146.25, - "top": -39.909736, - "right": 147.65625, - "bottom": -40.979898, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 159, - "left": 147.65625, - "top": -39.909736, - "right": 149.0625, - "bottom": -40.979898, - "countries": [ - "australia" - ] - }, - { - "x": 230, - "y": 160, - "left": 143.4375, - "top": -40.979898, - "right": 144.84375, - "bottom": -42.032974, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 160, - "left": 144.84375, - "top": -40.979898, - "right": 146.25, - "bottom": -42.032974, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 160, - "left": 146.25, - "top": -40.979898, - "right": 147.65625, - "bottom": -42.032974, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 160, - "left": 147.65625, - "top": -40.979898, - "right": 149.0625, - "bottom": -42.032974, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 161, - "left": 144.84375, - "top": -42.032974, - "right": 146.25, - "bottom": -43.068888, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 161, - "left": 146.25, - "top": -42.032974, - "right": 147.65625, - "bottom": -43.068888, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 161, - "left": 147.65625, - "top": -42.032974, - "right": 149.0625, - "bottom": -43.068888, - "countries": [ - "australia" - ] - }, - { - "x": 231, - "y": 162, - "left": 144.84375, - "top": -43.068888, - "right": 146.25, - "bottom": -44.087585, - "countries": [ - "australia" - ] - }, - { - "x": 232, - "y": 162, - "left": 146.25, - "top": -43.068888, - "right": 147.65625, - "bottom": -44.087585, - "countries": [ - "australia" - ] - }, - { - "x": 233, - "y": 162, - "left": 147.65625, - "top": -43.068888, - "right": 149.0625, - "bottom": -44.087585, - "countries": [ - "australia" - ] - }, - { - "x": 240, - "y": 174, - "left": 157.5, - "top": -54.162434, - "right": 158.90625, - "bottom": -54.977614, - "countries": [ - "australia" - ] - }, - { - "x": 241, - "y": 174, - "left": 158.90625, - "top": -54.162434, - "right": 160.3125, - "bottom": -54.977614, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 139, - "left": 149.0625, - "top": -15.284185, - "right": 150.46875, - "bottom": -16.636192, - "countries": [ - "australia" - ] - }, - { - "x": 234, - "y": 140, - "left": 149.0625, - "top": -16.636192, - "right": 150.46875, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 235, - "y": 140, - "left": 150.46875, - "top": -16.636192, - "right": 151.875, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 236, - "y": 140, - "left": 151.875, - "top": -16.636192, - "right": 153.28125, - "bottom": -17.978733, - "countries": [ - "australia" - ] - }, - { - "x": 238, - "y": 140, - "left": 154.6875, - "top": -16.636192, - "right": 156.09375, - "bottom": -17.978733, - "countries": [ - "australia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/cook_islands.json b/wahoomc/resources/json/oceania/cook_islands.json deleted file mode 100644 index 7d77af00..00000000 --- a/wahoomc/resources/json/oceania/cook_islands.json +++ /dev/null @@ -1,145 +0,0 @@ -[ - { - "x": 15, - "y": 134, - "left": -158.90625, - "top": -8.407168, - "right": -157.5, - "bottom": -9.795678, - "countries": [ - "cook_islands" - ] - }, - { - "x": 10, - "y": 135, - "left": -165.9375, - "top": -9.795678, - "right": -164.53125, - "bottom": -11.178402, - "countries": [ - "cook_islands" - ] - }, - { - "x": 13, - "y": 135, - "left": -161.71875, - "top": -9.795678, - "right": -160.3125, - "bottom": -11.178402, - "countries": [ - "cook_islands" - ] - }, - { - "x": 10, - "y": 136, - "left": -165.9375, - "top": -11.178402, - "right": -164.53125, - "bottom": -12.554564, - "countries": [ - "cook_islands" - ] - }, - { - "x": 11, - "y": 137, - "left": -164.53125, - "top": -12.554564, - "right": -163.125, - "bottom": -13.923404, - "countries": [ - "cook_islands" - ] - }, - { - "x": 12, - "y": 137, - "left": -163.125, - "top": -12.554564, - "right": -161.71875, - "bottom": -13.923404, - "countries": [ - "cook_islands" - ] - }, - { - "x": 14, - "y": 141, - "left": -160.3125, - "top": -17.978733, - "right": -158.90625, - "bottom": -19.311143, - "countries": [ - "cook_islands" - ] - }, - { - "x": 15, - "y": 141, - "left": -158.90625, - "top": -17.978733, - "right": -157.5, - "bottom": -19.311143, - "countries": [ - "cook_islands" - ] - }, - { - "x": 15, - "y": 142, - "left": -158.90625, - "top": -19.311143, - "right": -157.5, - "bottom": -20.632784, - "countries": [ - "cook_islands" - ] - }, - { - "x": 16, - "y": 142, - "left": -157.5, - "top": -19.311143, - "right": -156.09375, - "bottom": -20.632784, - "countries": [ - "cook_islands" - ] - }, - { - "x": 14, - "y": 143, - "left": -160.3125, - "top": -20.632784, - "right": -158.90625, - "bottom": -21.943046, - "countries": [ - "cook_islands" - ] - }, - { - "x": 15, - "y": 143, - "left": -158.90625, - "top": -20.632784, - "right": -157.5, - "bottom": -21.943046, - "countries": [ - "cook_islands" - ] - }, - { - "x": 15, - "y": 144, - "left": -158.90625, - "top": -21.943046, - "right": -157.5, - "bottom": -23.241346, - "countries": [ - "cook_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/fiji.json b/wahoomc/resources/json/oceania/fiji.json deleted file mode 100644 index 5685fe86..00000000 --- a/wahoomc/resources/json/oceania/fiji.json +++ /dev/null @@ -1,156 +0,0 @@ -[ - { - "x": 253, - "y": 136, - "left": 175.78125, - "top": -11.178402, - "right": 177.1875, - "bottom": -12.554564, - "countries": [ - "fiji" - ] - }, - { - "x": 0, - "y": 139, - "left": -180.0, - "top": -15.284185, - "right": -178.59375, - "bottom": -16.636192, - "countries": [ - "fiji" - ] - }, - { - "x": 254, - "y": 139, - "left": 177.1875, - "top": -15.284185, - "right": 178.59375, - "bottom": -16.636192, - "countries": [ - "fiji" - ] - }, - { - "x": 255, - "y": 139, - "left": 178.59375, - "top": -15.284185, - "right": 180.0, - "bottom": -16.636192, - "countries": [ - "fiji" - ] - }, - { - "x": 0, - "y": 140, - "left": -180.0, - "top": -16.636192, - "right": -178.59375, - "bottom": -17.978733, - "countries": [ - "fiji" - ] - }, - { - "x": 253, - "y": 140, - "left": 175.78125, - "top": -16.636192, - "right": 177.1875, - "bottom": -17.978733, - "countries": [ - "fiji" - ] - }, - { - "x": 254, - "y": 140, - "left": 177.1875, - "top": -16.636192, - "right": 178.59375, - "bottom": -17.978733, - "countries": [ - "fiji" - ] - }, - { - "x": 255, - "y": 140, - "left": 178.59375, - "top": -16.636192, - "right": 180.0, - "bottom": -17.978733, - "countries": [ - "fiji" - ] - }, - { - "x": 0, - "y": 141, - "left": -180.0, - "top": -17.978733, - "right": -178.59375, - "bottom": -19.311143, - "countries": [ - "fiji" - ] - }, - { - "x": 1, - "y": 141, - "left": -178.59375, - "top": -17.978733, - "right": -177.1875, - "bottom": -19.311143, - "countries": [ - "fiji" - ] - }, - { - "x": 254, - "y": 141, - "left": 177.1875, - "top": -17.978733, - "right": 178.59375, - "bottom": -19.311143, - "countries": [ - "fiji" - ] - }, - { - "x": 255, - "y": 141, - "left": 178.59375, - "top": -17.978733, - "right": 180.0, - "bottom": -19.311143, - "countries": [ - "fiji" - ] - }, - { - "x": 1, - "y": 142, - "left": -178.59375, - "top": -19.311143, - "right": -177.1875, - "bottom": -20.632784, - "countries": [ - "fiji" - ] - }, - { - "x": 0, - "y": 143, - "left": -180.0, - "top": -20.632784, - "right": -178.59375, - "bottom": -21.943046, - "countries": [ - "fiji" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/french_polynesia.json b/wahoomc/resources/json/oceania/french_polynesia.json deleted file mode 100644 index c40a065d..00000000 --- a/wahoomc/resources/json/oceania/french_polynesia.json +++ /dev/null @@ -1,640 +0,0 @@ -[ - { - "x": 27, - "y": 133, - "left": -142.03125, - "top": -7.013668, - "right": -140.625, - "bottom": -8.407168, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 133, - "left": -140.625, - "top": -7.013668, - "right": -139.21875, - "bottom": -8.407168, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 134, - "left": -140.625, - "top": -8.407168, - "right": -139.21875, - "bottom": -9.795678, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 134, - "left": -139.21875, - "top": -8.407168, - "right": -137.8125, - "bottom": -9.795678, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 135, - "left": -139.21875, - "top": -9.795678, - "right": -137.8125, - "bottom": -11.178402, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 22, - "y": 138, - "left": -149.0625, - "top": -13.923404, - "right": -147.65625, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 23, - "y": 138, - "left": -147.65625, - "top": -13.923404, - "right": -146.25, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 24, - "y": 138, - "left": -146.25, - "top": -13.923404, - "right": -144.84375, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 25, - "y": 138, - "left": -144.84375, - "top": -13.923404, - "right": -143.4375, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 27, - "y": 138, - "left": -142.03125, - "top": -13.923404, - "right": -140.625, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 138, - "left": -139.21875, - "top": -13.923404, - "right": -137.8125, - "bottom": -15.284185, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 17, - "y": 139, - "left": -156.09375, - "top": -15.284185, - "right": -154.6875, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 18, - "y": 139, - "left": -154.6875, - "top": -15.284185, - "right": -153.28125, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 19, - "y": 139, - "left": -153.28125, - "top": -15.284185, - "right": -151.875, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 20, - "y": 139, - "left": -151.875, - "top": -15.284185, - "right": -150.46875, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 22, - "y": 139, - "left": -149.0625, - "top": -15.284185, - "right": -147.65625, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 23, - "y": 139, - "left": -147.65625, - "top": -15.284185, - "right": -146.25, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 24, - "y": 139, - "left": -146.25, - "top": -15.284185, - "right": -144.84375, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 25, - "y": 139, - "left": -144.84375, - "top": -15.284185, - "right": -143.4375, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 26, - "y": 139, - "left": -143.4375, - "top": -15.284185, - "right": -142.03125, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 27, - "y": 139, - "left": -142.03125, - "top": -15.284185, - "right": -140.625, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 139, - "left": -140.625, - "top": -15.284185, - "right": -139.21875, - "bottom": -16.636192, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 18, - "y": 140, - "left": -154.6875, - "top": -16.636192, - "right": -153.28125, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 20, - "y": 140, - "left": -151.875, - "top": -16.636192, - "right": -150.46875, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 21, - "y": 140, - "left": -150.46875, - "top": -16.636192, - "right": -149.0625, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 22, - "y": 140, - "left": -149.0625, - "top": -16.636192, - "right": -147.65625, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 24, - "y": 140, - "left": -146.25, - "top": -16.636192, - "right": -144.84375, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 25, - "y": 140, - "left": -144.84375, - "top": -16.636192, - "right": -143.4375, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 26, - "y": 140, - "left": -143.4375, - "top": -16.636192, - "right": -142.03125, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 27, - "y": 140, - "left": -142.03125, - "top": -16.636192, - "right": -140.625, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 140, - "left": -140.625, - "top": -16.636192, - "right": -139.21875, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 140, - "left": -139.21875, - "top": -16.636192, - "right": -137.8125, - "bottom": -17.978733, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 26, - "y": 141, - "left": -143.4375, - "top": -17.978733, - "right": -142.03125, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 27, - "y": 141, - "left": -142.03125, - "top": -17.978733, - "right": -140.625, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 141, - "left": -140.625, - "top": -17.978733, - "right": -139.21875, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 141, - "left": -139.21875, - "top": -17.978733, - "right": -137.8125, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 30, - "y": 141, - "left": -137.8125, - "top": -17.978733, - "right": -136.40625, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 31, - "y": 141, - "left": -136.40625, - "top": -17.978733, - "right": -135.0, - "bottom": -19.311143, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 24, - "y": 142, - "left": -146.25, - "top": -19.311143, - "right": -144.84375, - "bottom": -20.632784, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 25, - "y": 142, - "left": -144.84375, - "top": -19.311143, - "right": -143.4375, - "bottom": -20.632784, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 26, - "y": 142, - "left": -143.4375, - "top": -19.311143, - "right": -142.03125, - "bottom": -20.632784, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 142, - "left": -140.625, - "top": -19.311143, - "right": -139.21875, - "bottom": -20.632784, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 142, - "left": -139.21875, - "top": -19.311143, - "right": -137.8125, - "bottom": -20.632784, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 18, - "y": 143, - "left": -154.6875, - "top": -20.632784, - "right": -153.28125, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 26, - "y": 143, - "left": -143.4375, - "top": -20.632784, - "right": -142.03125, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 27, - "y": 143, - "left": -142.03125, - "top": -20.632784, - "right": -140.625, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 28, - "y": 143, - "left": -140.625, - "top": -20.632784, - "right": -139.21875, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 29, - "y": 143, - "left": -139.21875, - "top": -20.632784, - "right": -137.8125, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 30, - "y": 143, - "left": -137.8125, - "top": -20.632784, - "right": -136.40625, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 31, - "y": 143, - "left": -136.40625, - "top": -20.632784, - "right": -135.0, - "bottom": -21.943046, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 19, - "y": 144, - "left": -153.28125, - "top": -21.943046, - "right": -151.875, - "bottom": -23.241346, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 20, - "y": 144, - "left": -151.875, - "top": -21.943046, - "right": -150.46875, - "bottom": -23.241346, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 31, - "y": 144, - "left": -136.40625, - "top": -21.943046, - "right": -135.0, - "bottom": -23.241346, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 32, - "y": 144, - "left": -135.0, - "top": -21.943046, - "right": -133.59375, - "bottom": -23.241346, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 21, - "y": 145, - "left": -150.46875, - "top": -23.241346, - "right": -149.0625, - "bottom": -24.527135, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 22, - "y": 145, - "left": -149.0625, - "top": -23.241346, - "right": -147.65625, - "bottom": -24.527135, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 23, - "y": 145, - "left": -147.65625, - "top": -23.241346, - "right": -146.25, - "bottom": -24.527135, - "countries": [ - "french_polynesia" - ] - }, - { - "x": 25, - "y": 148, - "left": -144.84375, - "top": -27.059126, - "right": -143.4375, - "bottom": -28.304381, - "countries": [ - "french_polynesia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/kiribati.json b/wahoomc/resources/json/oceania/kiribati.json deleted file mode 100644 index 25dff5f8..00000000 --- a/wahoomc/resources/json/oceania/kiribati.json +++ /dev/null @@ -1,310 +0,0 @@ -[ - { - "x": 13, - "y": 124, - "left": -161.71875, - "top": 5.615986, - "right": -160.3125, - "bottom": 4.214943, - "countries": [ - "kiribati" - ] - }, - { - "x": 14, - "y": 125, - "left": -160.3125, - "top": 4.214943, - "right": -158.90625, - "bottom": 2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 250, - "y": 125, - "left": 171.5625, - "top": 4.214943, - "right": 172.96875, - "bottom": 2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 251, - "y": 125, - "left": 172.96875, - "top": 4.214943, - "right": 174.375, - "bottom": 2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 15, - "y": 126, - "left": -158.90625, - "top": 2.811371, - "right": -157.5, - "bottom": 1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 16, - "y": 126, - "left": -157.5, - "top": 2.811371, - "right": -156.09375, - "bottom": 1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 250, - "y": 126, - "left": 171.5625, - "top": 2.811371, - "right": 172.96875, - "bottom": 1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 251, - "y": 126, - "left": 172.96875, - "top": 2.811371, - "right": 174.375, - "bottom": 1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 250, - "y": 127, - "left": 171.5625, - "top": 1.406109, - "right": 172.96875, - "bottom": 0.0, - "countries": [ - "kiribati" - ] - }, - { - "x": 251, - "y": 127, - "left": 172.96875, - "top": 1.406109, - "right": 174.375, - "bottom": 0.0, - "countries": [ - "kiribati" - ] - }, - { - "x": 248, - "y": 128, - "left": 168.75, - "top": 0.0, - "right": 170.15625, - "bottom": -1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 251, - "y": 128, - "left": 172.96875, - "top": 0.0, - "right": 174.375, - "bottom": -1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 252, - "y": 128, - "left": 174.375, - "top": 0.0, - "right": 175.78125, - "bottom": -1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 253, - "y": 128, - "left": 175.78125, - "top": 0.0, - "right": 177.1875, - "bottom": -1.406109, - "countries": [ - "kiribati" - ] - }, - { - "x": 5, - "y": 129, - "left": -172.96875, - "top": -1.406109, - "right": -171.5625, - "bottom": -2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 252, - "y": 129, - "left": 174.375, - "top": -1.406109, - "right": 175.78125, - "bottom": -2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 253, - "y": 129, - "left": 175.78125, - "top": -1.406109, - "right": 177.1875, - "bottom": -2.811371, - "countries": [ - "kiribati" - ] - }, - { - "x": 4, - "y": 130, - "left": -174.375, - "top": -2.811371, - "right": -172.96875, - "bottom": -4.214943, - "countries": [ - "kiribati" - ] - }, - { - "x": 5, - "y": 130, - "left": -172.96875, - "top": -2.811371, - "right": -171.5625, - "bottom": -4.214943, - "countries": [ - "kiribati" - ] - }, - { - "x": 6, - "y": 130, - "left": -171.5625, - "top": -2.811371, - "right": -170.15625, - "bottom": -4.214943, - "countries": [ - "kiribati" - ] - }, - { - "x": 17, - "y": 130, - "left": -156.09375, - "top": -2.811371, - "right": -154.6875, - "bottom": -4.214943, - "countries": [ - "kiribati" - ] - }, - { - "x": 3, - "y": 131, - "left": -175.78125, - "top": -4.214943, - "right": -174.375, - "bottom": -5.615986, - "countries": [ - "kiribati" - ] - }, - { - "x": 5, - "y": 131, - "left": -172.96875, - "top": -4.214943, - "right": -171.5625, - "bottom": -5.615986, - "countries": [ - "kiribati" - ] - }, - { - "x": 6, - "y": 131, - "left": -171.5625, - "top": -4.214943, - "right": -170.15625, - "bottom": -5.615986, - "countries": [ - "kiribati" - ] - }, - { - "x": 17, - "y": 131, - "left": -156.09375, - "top": -4.214943, - "right": -154.6875, - "bottom": -5.615986, - "countries": [ - "kiribati" - ] - }, - { - "x": 17, - "y": 132, - "left": -156.09375, - "top": -5.615986, - "right": -154.6875, - "bottom": -7.013668, - "countries": [ - "kiribati" - ] - }, - { - "x": 21, - "y": 135, - "left": -150.46875, - "top": -9.795678, - "right": -149.0625, - "bottom": -11.178402, - "countries": [ - "kiribati" - ] - }, - { - "x": 20, - "y": 136, - "left": -151.875, - "top": -11.178402, - "right": -150.46875, - "bottom": -12.554564, - "countries": [ - "kiribati" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/marshall_islands.json b/wahoomc/resources/json/oceania/marshall_islands.json deleted file mode 100644 index 9df763c4..00000000 --- a/wahoomc/resources/json/oceania/marshall_islands.json +++ /dev/null @@ -1,255 +0,0 @@ -[ - { - "x": 248, - "y": 117, - "left": 168.75, - "top": 15.284185, - "right": 170.15625, - "bottom": 13.923404, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 245, - "y": 119, - "left": 164.53125, - "top": 12.554564, - "right": 165.9375, - "bottom": 11.178402, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 246, - "y": 119, - "left": 165.9375, - "top": 12.554564, - "right": 167.34375, - "bottom": 11.178402, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 247, - "y": 119, - "left": 167.34375, - "top": 12.554564, - "right": 168.75, - "bottom": 11.178402, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 119, - "left": 168.75, - "top": 12.554564, - "right": 170.15625, - "bottom": 11.178402, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 245, - "y": 120, - "left": 164.53125, - "top": 11.178402, - "right": 165.9375, - "bottom": 9.795678, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 246, - "y": 120, - "left": 165.9375, - "top": 11.178402, - "right": 167.34375, - "bottom": 9.795678, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 120, - "left": 168.75, - "top": 11.178402, - "right": 170.15625, - "bottom": 9.795678, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 249, - "y": 120, - "left": 170.15625, - "top": 11.178402, - "right": 171.5625, - "bottom": 9.795678, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 245, - "y": 121, - "left": 164.53125, - "top": 9.795678, - "right": 165.9375, - "bottom": 8.407168, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 246, - "y": 121, - "left": 165.9375, - "top": 9.795678, - "right": 167.34375, - "bottom": 8.407168, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 247, - "y": 121, - "left": 167.34375, - "top": 9.795678, - "right": 168.75, - "bottom": 8.407168, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 121, - "left": 168.75, - "top": 9.795678, - "right": 170.15625, - "bottom": 8.407168, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 249, - "y": 121, - "left": 170.15625, - "top": 9.795678, - "right": 171.5625, - "bottom": 8.407168, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 247, - "y": 122, - "left": 167.34375, - "top": 8.407168, - "right": 168.75, - "bottom": 7.013668, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 122, - "left": 168.75, - "top": 8.407168, - "right": 170.15625, - "bottom": 7.013668, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 249, - "y": 122, - "left": 170.15625, - "top": 8.407168, - "right": 171.5625, - "bottom": 7.013668, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 250, - "y": 122, - "left": 171.5625, - "top": 8.407168, - "right": 172.96875, - "bottom": 7.013668, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 247, - "y": 123, - "left": 167.34375, - "top": 7.013668, - "right": 168.75, - "bottom": 5.615986, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 123, - "left": 168.75, - "top": 7.013668, - "right": 170.15625, - "bottom": 5.615986, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 250, - "y": 123, - "left": 171.5625, - "top": 7.013668, - "right": 172.96875, - "bottom": 5.615986, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 247, - "y": 124, - "left": 167.34375, - "top": 5.615986, - "right": 168.75, - "bottom": 4.214943, - "countries": [ - "marshall_islands" - ] - }, - { - "x": 248, - "y": 124, - "left": 168.75, - "top": 5.615986, - "right": 170.15625, - "bottom": 4.214943, - "countries": [ - "marshall_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/micronesia.json b/wahoomc/resources/json/oceania/micronesia.json deleted file mode 100644 index 913dc0f9..00000000 --- a/wahoomc/resources/json/oceania/micronesia.json +++ /dev/null @@ -1,233 +0,0 @@ -[ - { - "x": 243, - "y": 119, - "left": 161.71875, - "top": 12.554564, - "right": 163.125, - "bottom": 11.178402, - "countries": [ - "micronesia" - ] - }, - { - "x": 227, - "y": 120, - "left": 139.21875, - "top": 11.178402, - "right": 140.625, - "bottom": 9.795678, - "countries": [ - "micronesia" - ] - }, - { - "x": 242, - "y": 120, - "left": 160.3125, - "top": 11.178402, - "right": 161.71875, - "bottom": 9.795678, - "countries": [ - "micronesia" - ] - }, - { - "x": 226, - "y": 121, - "left": 137.8125, - "top": 9.795678, - "right": 139.21875, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 227, - "y": 121, - "left": 139.21875, - "top": 9.795678, - "right": 140.625, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 234, - "y": 121, - "left": 149.0625, - "top": 9.795678, - "right": 150.46875, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 235, - "y": 121, - "left": 150.46875, - "top": 9.795678, - "right": 151.875, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 236, - "y": 121, - "left": 151.875, - "top": 9.795678, - "right": 153.28125, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 242, - "y": 121, - "left": 160.3125, - "top": 9.795678, - "right": 161.71875, - "bottom": 8.407168, - "countries": [ - "micronesia" - ] - }, - { - "x": 230, - "y": 122, - "left": 143.4375, - "top": 8.407168, - "right": 144.84375, - "bottom": 7.013668, - "countries": [ - "micronesia" - ] - }, - { - "x": 232, - "y": 122, - "left": 146.25, - "top": 8.407168, - "right": 147.65625, - "bottom": 7.013668, - "countries": [ - "micronesia" - ] - }, - { - "x": 235, - "y": 122, - "left": 150.46875, - "top": 8.407168, - "right": 151.875, - "bottom": 7.013668, - "countries": [ - "micronesia" - ] - }, - { - "x": 236, - "y": 122, - "left": 151.875, - "top": 8.407168, - "right": 153.28125, - "bottom": 7.013668, - "countries": [ - "micronesia" - ] - }, - { - "x": 240, - "y": 122, - "left": 157.5, - "top": 8.407168, - "right": 158.90625, - "bottom": 7.013668, - "countries": [ - "micronesia" - ] - }, - { - "x": 234, - "y": 123, - "left": 149.0625, - "top": 7.013668, - "right": 150.46875, - "bottom": 5.615986, - "countries": [ - "micronesia" - ] - }, - { - "x": 239, - "y": 123, - "left": 156.09375, - "top": 7.013668, - "right": 157.5, - "bottom": 5.615986, - "countries": [ - "micronesia" - ] - }, - { - "x": 240, - "y": 123, - "left": 157.5, - "top": 7.013668, - "right": 158.90625, - "bottom": 5.615986, - "countries": [ - "micronesia" - ] - }, - { - "x": 241, - "y": 123, - "left": 158.90625, - "top": 7.013668, - "right": 160.3125, - "bottom": 5.615986, - "countries": [ - "micronesia" - ] - }, - { - "x": 242, - "y": 123, - "left": 160.3125, - "top": 7.013668, - "right": 161.71875, - "bottom": 5.615986, - "countries": [ - "micronesia" - ] - }, - { - "x": 237, - "y": 124, - "left": 153.28125, - "top": 5.615986, - "right": 154.6875, - "bottom": 4.214943, - "countries": [ - "micronesia" - ] - }, - { - "x": 243, - "y": 124, - "left": 161.71875, - "top": 5.615986, - "right": 163.125, - "bottom": 4.214943, - "countries": [ - "micronesia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/nauru.json b/wahoomc/resources/json/oceania/nauru.json deleted file mode 100644 index 271b7575..00000000 --- a/wahoomc/resources/json/oceania/nauru.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 246, - "y": 128, - "left": 165.9375, - "top": 0.0, - "right": 167.34375, - "bottom": -1.406109, - "countries": [ - "nauru" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/new_caledonia.json b/wahoomc/resources/json/oceania/new_caledonia.json deleted file mode 100644 index 7188f686..00000000 --- a/wahoomc/resources/json/oceania/new_caledonia.json +++ /dev/null @@ -1,189 +0,0 @@ -[ - { - "x": 240, - "y": 141, - "left": 157.5, - "top": -17.978733, - "right": 158.90625, - "bottom": -19.311143, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 241, - "y": 141, - "left": 158.90625, - "top": -17.978733, - "right": 160.3125, - "bottom": -19.311143, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 240, - "y": 142, - "left": 157.5, - "top": -19.311143, - "right": 158.90625, - "bottom": -20.632784, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 241, - "y": 142, - "left": 158.90625, - "top": -19.311143, - "right": 160.3125, - "bottom": -20.632784, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 244, - "y": 142, - "left": 163.125, - "top": -19.311143, - "right": 164.53125, - "bottom": -20.632784, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 245, - "y": 142, - "left": 164.53125, - "top": -19.311143, - "right": 165.9375, - "bottom": -20.632784, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 246, - "y": 142, - "left": 165.9375, - "top": -19.311143, - "right": 167.34375, - "bottom": -20.632784, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 244, - "y": 143, - "left": 163.125, - "top": -20.632784, - "right": 164.53125, - "bottom": -21.943046, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 245, - "y": 143, - "left": 164.53125, - "top": -20.632784, - "right": 165.9375, - "bottom": -21.943046, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 246, - "y": 143, - "left": 165.9375, - "top": -20.632784, - "right": 167.34375, - "bottom": -21.943046, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 247, - "y": 143, - "left": 167.34375, - "top": -20.632784, - "right": 168.75, - "bottom": -21.943046, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 245, - "y": 144, - "left": 164.53125, - "top": -21.943046, - "right": 165.9375, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 246, - "y": 144, - "left": 165.9375, - "top": -21.943046, - "right": 167.34375, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 247, - "y": 144, - "left": 167.34375, - "top": -21.943046, - "right": 168.75, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 248, - "y": 144, - "left": 168.75, - "top": -21.943046, - "right": 170.15625, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 249, - "y": 144, - "left": 170.15625, - "top": -21.943046, - "right": 171.5625, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - }, - { - "x": 250, - "y": 144, - "left": 171.5625, - "top": -21.943046, - "right": 172.96875, - "bottom": -23.241346, - "countries": [ - "new_caledonia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/new_zealand.json b/wahoomc/resources/json/oceania/new_zealand.json deleted file mode 100644 index ff0a7e04..00000000 --- a/wahoomc/resources/json/oceania/new_zealand.json +++ /dev/null @@ -1,684 +0,0 @@ -[ - { - "x": 1, - "y": 149, - "left": -178.59375, - "top": -28.304381, - "right": -177.1875, - "bottom": -29.53523, - "countries": [ - "new_zealand" - ] - }, - { - "x": 0, - "y": 150, - "left": -180.0, - "top": -29.53523, - "right": -178.59375, - "bottom": -30.751278, - "countries": [ - "new_zealand" - ] - }, - { - "x": 1, - "y": 150, - "left": -178.59375, - "top": -29.53523, - "right": -177.1875, - "bottom": -30.751278, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 153, - "left": 171.5625, - "top": -33.137551, - "right": 172.96875, - "bottom": -34.307144, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 154, - "left": 171.5625, - "top": -34.307144, - "right": 172.96875, - "bottom": -35.46067, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 154, - "left": 172.96875, - "top": -34.307144, - "right": 174.375, - "bottom": -35.46067, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 154, - "left": 174.375, - "top": -34.307144, - "right": 175.78125, - "bottom": -35.46067, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 155, - "left": 172.96875, - "top": -35.46067, - "right": 174.375, - "bottom": -36.597889, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 155, - "left": 174.375, - "top": -35.46067, - "right": 175.78125, - "bottom": -36.597889, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 155, - "left": 175.78125, - "top": -35.46067, - "right": 177.1875, - "bottom": -36.597889, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 156, - "left": 172.96875, - "top": -36.597889, - "right": 174.375, - "bottom": -37.71859, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 156, - "left": 174.375, - "top": -36.597889, - "right": 175.78125, - "bottom": -37.71859, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 156, - "left": 175.78125, - "top": -36.597889, - "right": 177.1875, - "bottom": -37.71859, - "countries": [ - "new_zealand" - ] - }, - { - "x": 254, - "y": 156, - "left": 177.1875, - "top": -36.597889, - "right": 178.59375, - "bottom": -37.71859, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 157, - "left": 174.375, - "top": -37.71859, - "right": 175.78125, - "bottom": -38.822591, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 157, - "left": 175.78125, - "top": -37.71859, - "right": 177.1875, - "bottom": -38.822591, - "countries": [ - "new_zealand" - ] - }, - { - "x": 254, - "y": 157, - "left": 177.1875, - "top": -37.71859, - "right": 178.59375, - "bottom": -38.822591, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 158, - "left": 172.96875, - "top": -38.822591, - "right": 174.375, - "bottom": -39.909736, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 158, - "left": 174.375, - "top": -38.822591, - "right": 175.78125, - "bottom": -39.909736, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 158, - "left": 175.78125, - "top": -38.822591, - "right": 177.1875, - "bottom": -39.909736, - "countries": [ - "new_zealand" - ] - }, - { - "x": 254, - "y": 158, - "left": 177.1875, - "top": -38.822591, - "right": 178.59375, - "bottom": -39.909736, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 159, - "left": 171.5625, - "top": -39.909736, - "right": 172.96875, - "bottom": -40.979898, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 159, - "left": 172.96875, - "top": -39.909736, - "right": 174.375, - "bottom": -40.979898, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 159, - "left": 174.375, - "top": -39.909736, - "right": 175.78125, - "bottom": -40.979898, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 159, - "left": 175.78125, - "top": -39.909736, - "right": 177.1875, - "bottom": -40.979898, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 160, - "left": 170.15625, - "top": -40.979898, - "right": 171.5625, - "bottom": -42.032974, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 160, - "left": 171.5625, - "top": -40.979898, - "right": 172.96875, - "bottom": -42.032974, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 160, - "left": 172.96875, - "top": -40.979898, - "right": 174.375, - "bottom": -42.032974, - "countries": [ - "new_zealand" - ] - }, - { - "x": 252, - "y": 160, - "left": 174.375, - "top": -40.979898, - "right": 175.78125, - "bottom": -42.032974, - "countries": [ - "new_zealand" - ] - }, - { - "x": 253, - "y": 160, - "left": 175.78125, - "top": -40.979898, - "right": 177.1875, - "bottom": -42.032974, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 161, - "left": 170.15625, - "top": -42.032974, - "right": 171.5625, - "bottom": -43.068888, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 161, - "left": 171.5625, - "top": -42.032974, - "right": 172.96875, - "bottom": -43.068888, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 161, - "left": 172.96875, - "top": -42.032974, - "right": 174.375, - "bottom": -43.068888, - "countries": [ - "new_zealand" - ] - }, - { - "x": 2, - "y": 162, - "left": -177.1875, - "top": -43.068888, - "right": -175.78125, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 247, - "y": 162, - "left": 167.34375, - "top": -43.068888, - "right": 168.75, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 162, - "left": 168.75, - "top": -43.068888, - "right": 170.15625, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 162, - "left": 170.15625, - "top": -43.068888, - "right": 171.5625, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 162, - "left": 171.5625, - "top": -43.068888, - "right": 172.96875, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 251, - "y": 162, - "left": 172.96875, - "top": -43.068888, - "right": 174.375, - "bottom": -44.087585, - "countries": [ - "new_zealand" - ] - }, - { - "x": 2, - "y": 163, - "left": -177.1875, - "top": -44.087585, - "right": -175.78125, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 163, - "left": 165.9375, - "top": -44.087585, - "right": 167.34375, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 247, - "y": 163, - "left": 167.34375, - "top": -44.087585, - "right": 168.75, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 163, - "left": 168.75, - "top": -44.087585, - "right": 170.15625, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 163, - "left": 170.15625, - "top": -44.087585, - "right": 171.5625, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 250, - "y": 163, - "left": 171.5625, - "top": -44.087585, - "right": 172.96875, - "bottom": -45.089036, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 164, - "left": 165.9375, - "top": -45.089036, - "right": 167.34375, - "bottom": -46.073231, - "countries": [ - "new_zealand" - ] - }, - { - "x": 247, - "y": 164, - "left": 167.34375, - "top": -45.089036, - "right": 168.75, - "bottom": -46.073231, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 164, - "left": 168.75, - "top": -45.089036, - "right": 170.15625, - "bottom": -46.073231, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 164, - "left": 170.15625, - "top": -45.089036, - "right": 171.5625, - "bottom": -46.073231, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 165, - "left": 165.9375, - "top": -46.073231, - "right": 167.34375, - "bottom": -47.040182, - "countries": [ - "new_zealand" - ] - }, - { - "x": 247, - "y": 165, - "left": 167.34375, - "top": -46.073231, - "right": 168.75, - "bottom": -47.040182, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 165, - "left": 168.75, - "top": -46.073231, - "right": 170.15625, - "bottom": -47.040182, - "countries": [ - "new_zealand" - ] - }, - { - "x": 249, - "y": 165, - "left": 170.15625, - "top": -46.073231, - "right": 171.5625, - "bottom": -47.040182, - "countries": [ - "new_zealand" - ] - }, - { - "x": 247, - "y": 166, - "left": 167.34375, - "top": -47.040182, - "right": 168.75, - "bottom": -47.989922, - "countries": [ - "new_zealand" - ] - }, - { - "x": 255, - "y": 166, - "left": 178.59375, - "top": -47.040182, - "right": 180.0, - "bottom": -47.989922, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 167, - "left": 165.9375, - "top": -47.989922, - "right": 167.34375, - "bottom": -48.922499, - "countries": [ - "new_zealand" - ] - }, - { - "x": 255, - "y": 168, - "left": 178.59375, - "top": -48.922499, - "right": 180.0, - "bottom": -49.837982, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 169, - "left": 165.9375, - "top": -49.837982, - "right": 167.34375, - "bottom": -50.736455, - "countries": [ - "new_zealand" - ] - }, - { - "x": 245, - "y": 170, - "left": 164.53125, - "top": -50.736455, - "right": 165.9375, - "bottom": -51.618017, - "countries": [ - "new_zealand" - ] - }, - { - "x": 246, - "y": 170, - "left": 165.9375, - "top": -50.736455, - "right": 167.34375, - "bottom": -51.618017, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 171, - "left": 168.75, - "top": -51.618017, - "right": 170.15625, - "bottom": -52.48278, - "countries": [ - "new_zealand" - ] - }, - { - "x": 248, - "y": 172, - "left": 168.75, - "top": -52.48278, - "right": 170.15625, - "bottom": -53.330873, - "countries": [ - "new_zealand" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/niue.json b/wahoomc/resources/json/oceania/niue.json deleted file mode 100644 index 72830ee8..00000000 --- a/wahoomc/resources/json/oceania/niue.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 7, - "y": 141, - "left": -170.15625, - "top": -17.978733, - "right": -168.75, - "bottom": -19.311143, - "countries": [ - "niue" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/norfolk_island.json b/wahoomc/resources/json/oceania/norfolk_island.json deleted file mode 100644 index 41631669..00000000 --- a/wahoomc/resources/json/oceania/norfolk_island.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 247, - "y": 149, - "left": 167.34375, - "top": -28.304381, - "right": 168.75, - "bottom": -29.53523, - "countries": [ - "norfolk_island" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/northern_mariana_islands.json b/wahoomc/resources/json/oceania/northern_mariana_islands.json deleted file mode 100644 index 8cffeda3..00000000 --- a/wahoomc/resources/json/oceania/northern_mariana_islands.json +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "x": 231, - "y": 113, - "left": 144.84375, - "top": 20.632784, - "right": 146.25, - "bottom": 19.311143, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 114, - "left": 144.84375, - "top": 19.311143, - "right": 146.25, - "bottom": 17.978733, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 115, - "left": 144.84375, - "top": 17.978733, - "right": 146.25, - "bottom": 16.636192, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 116, - "left": 144.84375, - "top": 16.636192, - "right": 146.25, - "bottom": 15.284185, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 117, - "left": 144.84375, - "top": 15.284185, - "right": 146.25, - "bottom": 13.923404, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/palau.json b/wahoomc/resources/json/oceania/palau.json deleted file mode 100644 index 25a1780b..00000000 --- a/wahoomc/resources/json/oceania/palau.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "x": 223, - "y": 122, - "left": 133.59375, - "top": 8.407168, - "right": 135.0, - "bottom": 7.013668, - "countries": [ - "palau" - ] - }, - { - "x": 223, - "y": 123, - "left": 133.59375, - "top": 7.013668, - "right": 135.0, - "bottom": 5.615986, - "countries": [ - "palau" - ] - }, - { - "x": 221, - "y": 124, - "left": 130.78125, - "top": 5.615986, - "right": 132.1875, - "bottom": 4.214943, - "countries": [ - "palau" - ] - }, - { - "x": 222, - "y": 124, - "left": 132.1875, - "top": 5.615986, - "right": 133.59375, - "bottom": 4.214943, - "countries": [ - "palau" - ] - }, - { - "x": 221, - "y": 125, - "left": 130.78125, - "top": 4.214943, - "right": 132.1875, - "bottom": 2.811371, - "countries": [ - "palau" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/papua_new_guinea.json b/wahoomc/resources/json/oceania/papua_new_guinea.json deleted file mode 100644 index cfe74d70..00000000 --- a/wahoomc/resources/json/oceania/papua_new_guinea.json +++ /dev/null @@ -1,728 +0,0 @@ -[ - { - "x": 228, - "y": 129, - "left": 140.625, - "top": -1.406109, - "right": 142.03125, - "bottom": -2.811371, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 228, - "y": 130, - "left": 140.625, - "top": -2.811371, - "right": 142.03125, - "bottom": -4.214943, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 228, - "y": 131, - "left": 140.625, - "top": -4.214943, - "right": 142.03125, - "bottom": -5.615986, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 228, - "y": 132, - "left": 140.625, - "top": -5.615986, - "right": 142.03125, - "bottom": -7.013668, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 228, - "y": 133, - "left": 140.625, - "top": -7.013668, - "right": 142.03125, - "bottom": -8.407168, - "countries": [ - "indonesia", - "papua_new_guinea" - ] - }, - { - "x": 228, - "y": 134, - "left": 140.625, - "top": -8.407168, - "right": 142.03125, - "bottom": -9.795678, - "countries": [ - "indonesia", - "papua_new_guinea", - "australia" - ] - }, - { - "x": 229, - "y": 134, - "left": 142.03125, - "top": -8.407168, - "right": 143.4375, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea", - "australia" - ] - }, - { - "x": 230, - "y": 134, - "left": 143.4375, - "top": -8.407168, - "right": 144.84375, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea", - "australia" - ] - }, - { - "x": 230, - "y": 128, - "left": 143.4375, - "top": 0.0, - "right": 144.84375, - "bottom": -1.406109, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 128, - "left": 144.84375, - "top": 0.0, - "right": 146.25, - "bottom": -1.406109, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 128, - "left": 149.0625, - "top": 0.0, - "right": 150.46875, - "bottom": -1.406109, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 229, - "y": 129, - "left": 142.03125, - "top": -1.406109, - "right": 143.4375, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 230, - "y": 129, - "left": 143.4375, - "top": -1.406109, - "right": 144.84375, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 129, - "left": 144.84375, - "top": -1.406109, - "right": 146.25, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 129, - "left": 146.25, - "top": -1.406109, - "right": 147.65625, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 129, - "left": 147.65625, - "top": -1.406109, - "right": 149.0625, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 129, - "left": 149.0625, - "top": -1.406109, - "right": 150.46875, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 129, - "left": 150.46875, - "top": -1.406109, - "right": 151.875, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 129, - "left": 151.875, - "top": -1.406109, - "right": 153.28125, - "bottom": -2.811371, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 229, - "y": 130, - "left": 142.03125, - "top": -2.811371, - "right": 143.4375, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 230, - "y": 130, - "left": 143.4375, - "top": -2.811371, - "right": 144.84375, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 130, - "left": 144.84375, - "top": -2.811371, - "right": 146.25, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 130, - "left": 150.46875, - "top": -2.811371, - "right": 151.875, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 130, - "left": 151.875, - "top": -2.811371, - "right": 153.28125, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 237, - "y": 130, - "left": 153.28125, - "top": -2.811371, - "right": 154.6875, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 238, - "y": 130, - "left": 154.6875, - "top": -2.811371, - "right": 156.09375, - "bottom": -4.214943, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 229, - "y": 131, - "left": 142.03125, - "top": -4.214943, - "right": 143.4375, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 230, - "y": 131, - "left": 143.4375, - "top": -4.214943, - "right": 144.84375, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 131, - "left": 144.84375, - "top": -4.214943, - "right": 146.25, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 131, - "left": 146.25, - "top": -4.214943, - "right": 147.65625, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 131, - "left": 147.65625, - "top": -4.214943, - "right": 149.0625, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 131, - "left": 149.0625, - "top": -4.214943, - "right": 150.46875, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 131, - "left": 150.46875, - "top": -4.214943, - "right": 151.875, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 131, - "left": 151.875, - "top": -4.214943, - "right": 153.28125, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 237, - "y": 131, - "left": 153.28125, - "top": -4.214943, - "right": 154.6875, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 238, - "y": 131, - "left": 154.6875, - "top": -4.214943, - "right": 156.09375, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 239, - "y": 131, - "left": 156.09375, - "top": -4.214943, - "right": 157.5, - "bottom": -5.615986, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 241, - "y": 131, - "left": 158.90625, - "top": -4.214943, - "right": 160.3125, - "bottom": -5.615986, - "countries": [ - "solomon_islands", - "papua_new_guinea" - ] - }, - { - "x": 229, - "y": 132, - "left": 142.03125, - "top": -5.615986, - "right": 143.4375, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 230, - "y": 132, - "left": 143.4375, - "top": -5.615986, - "right": 144.84375, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 132, - "left": 144.84375, - "top": -5.615986, - "right": 146.25, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 132, - "left": 146.25, - "top": -5.615986, - "right": 147.65625, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 132, - "left": 147.65625, - "top": -5.615986, - "right": 149.0625, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 132, - "left": 149.0625, - "top": -5.615986, - "right": 150.46875, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 132, - "left": 150.46875, - "top": -5.615986, - "right": 151.875, - "bottom": -7.013668, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 238, - "y": 132, - "left": 154.6875, - "top": -5.615986, - "right": 156.09375, - "bottom": -7.013668, - "countries": [ - "solomon_islands", - "papua_new_guinea" - ] - }, - { - "x": 229, - "y": 133, - "left": 142.03125, - "top": -7.013668, - "right": 143.4375, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 230, - "y": 133, - "left": 143.4375, - "top": -7.013668, - "right": 144.84375, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 231, - "y": 133, - "left": 144.84375, - "top": -7.013668, - "right": 146.25, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 133, - "left": 146.25, - "top": -7.013668, - "right": 147.65625, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 133, - "left": 147.65625, - "top": -7.013668, - "right": 149.0625, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 133, - "left": 150.46875, - "top": -7.013668, - "right": 151.875, - "bottom": -8.407168, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 134, - "left": 146.25, - "top": -8.407168, - "right": 147.65625, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 134, - "left": 147.65625, - "top": -8.407168, - "right": 149.0625, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 134, - "left": 149.0625, - "top": -8.407168, - "right": 150.46875, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 134, - "left": 150.46875, - "top": -8.407168, - "right": 151.875, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 134, - "left": 151.875, - "top": -8.407168, - "right": 153.28125, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 237, - "y": 134, - "left": 153.28125, - "top": -8.407168, - "right": 154.6875, - "bottom": -9.795678, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 232, - "y": 135, - "left": 146.25, - "top": -9.795678, - "right": 147.65625, - "bottom": -11.178402, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 233, - "y": 135, - "left": 147.65625, - "top": -9.795678, - "right": 149.0625, - "bottom": -11.178402, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 234, - "y": 135, - "left": 149.0625, - "top": -9.795678, - "right": 150.46875, - "bottom": -11.178402, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 235, - "y": 135, - "left": 150.46875, - "top": -9.795678, - "right": 151.875, - "bottom": -11.178402, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 135, - "left": 151.875, - "top": -9.795678, - "right": 153.28125, - "bottom": -11.178402, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 236, - "y": 136, - "left": 151.875, - "top": -11.178402, - "right": 153.28125, - "bottom": -12.554564, - "countries": [ - "papua_new_guinea" - ] - }, - { - "x": 237, - "y": 136, - "left": 153.28125, - "top": -11.178402, - "right": 154.6875, - "bottom": -12.554564, - "countries": [ - "papua_new_guinea" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/pitcairn_islands.json b/wahoomc/resources/json/oceania/pitcairn_islands.json deleted file mode 100644 index 6a1f8af0..00000000 --- a/wahoomc/resources/json/oceania/pitcairn_islands.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "x": 35, - "y": 145, - "left": -130.78125, - "top": -23.241346, - "right": -129.375, - "bottom": -24.527135, - "countries": [ - "pitcairn_islands" - ] - }, - { - "x": 36, - "y": 145, - "left": -129.375, - "top": -23.241346, - "right": -127.96875, - "bottom": -24.527135, - "countries": [ - "pitcairn_islands" - ] - }, - { - "x": 35, - "y": 146, - "left": -130.78125, - "top": -24.527135, - "right": -129.375, - "bottom": -25.799891, - "countries": [ - "pitcairn_islands" - ] - }, - { - "x": 39, - "y": 146, - "left": -125.15625, - "top": -24.527135, - "right": -123.75, - "bottom": -25.799891, - "countries": [ - "pitcairn_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/samoa.json b/wahoomc/resources/json/oceania/samoa.json deleted file mode 100644 index 81c61e89..00000000 --- a/wahoomc/resources/json/oceania/samoa.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "x": 6, - "y": 138, - "left": -171.5625, - "top": -13.923404, - "right": -170.15625, - "bottom": -15.284185, - "countries": [ - "american_samoa", - "samoa" - ] - }, - { - "x": 5, - "y": 137, - "left": -172.96875, - "top": -12.554564, - "right": -171.5625, - "bottom": -13.923404, - "countries": [ - "samoa" - ] - }, - { - "x": 6, - "y": 137, - "left": -171.5625, - "top": -12.554564, - "right": -170.15625, - "bottom": -13.923404, - "countries": [ - "samoa" - ] - }, - { - "x": 5, - "y": 138, - "left": -172.96875, - "top": -13.923404, - "right": -171.5625, - "bottom": -15.284185, - "countries": [ - "samoa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/solomon_islands.json b/wahoomc/resources/json/oceania/solomon_islands.json deleted file mode 100644 index 9b32f057..00000000 --- a/wahoomc/resources/json/oceania/solomon_islands.json +++ /dev/null @@ -1,257 +0,0 @@ -[ - { - "x": 241, - "y": 131, - "left": 158.90625, - "top": -4.214943, - "right": 160.3125, - "bottom": -5.615986, - "countries": [ - "solomon_islands", - "papua_new_guinea" - ] - }, - { - "x": 238, - "y": 132, - "left": 154.6875, - "top": -5.615986, - "right": 156.09375, - "bottom": -7.013668, - "countries": [ - "solomon_islands", - "papua_new_guinea" - ] - }, - { - "x": 239, - "y": 132, - "left": 156.09375, - "top": -5.615986, - "right": 157.5, - "bottom": -7.013668, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 238, - "y": 133, - "left": 154.6875, - "top": -7.013668, - "right": 156.09375, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 239, - "y": 133, - "left": 156.09375, - "top": -7.013668, - "right": 157.5, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 240, - "y": 133, - "left": 157.5, - "top": -7.013668, - "right": 158.90625, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 241, - "y": 133, - "left": 158.90625, - "top": -7.013668, - "right": 160.3125, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 242, - "y": 133, - "left": 160.3125, - "top": -7.013668, - "right": 161.71875, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 243, - "y": 133, - "left": 161.71875, - "top": -7.013668, - "right": 163.125, - "bottom": -8.407168, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 239, - "y": 134, - "left": 156.09375, - "top": -8.407168, - "right": 157.5, - "bottom": -9.795678, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 240, - "y": 134, - "left": 157.5, - "top": -8.407168, - "right": 158.90625, - "bottom": -9.795678, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 241, - "y": 134, - "left": 158.90625, - "top": -8.407168, - "right": 160.3125, - "bottom": -9.795678, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 242, - "y": 134, - "left": 160.3125, - "top": -8.407168, - "right": 161.71875, - "bottom": -9.795678, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 243, - "y": 134, - "left": 161.71875, - "top": -8.407168, - "right": 163.125, - "bottom": -9.795678, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 241, - "y": 135, - "left": 158.90625, - "top": -9.795678, - "right": 160.3125, - "bottom": -11.178402, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 242, - "y": 135, - "left": 160.3125, - "top": -9.795678, - "right": 161.71875, - "bottom": -11.178402, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 243, - "y": 135, - "left": 161.71875, - "top": -9.795678, - "right": 163.125, - "bottom": -11.178402, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 245, - "y": 135, - "left": 164.53125, - "top": -9.795678, - "right": 165.9375, - "bottom": -11.178402, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 246, - "y": 135, - "left": 165.9375, - "top": -9.795678, - "right": 167.34375, - "bottom": -11.178402, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 241, - "y": 136, - "left": 158.90625, - "top": -11.178402, - "right": 160.3125, - "bottom": -12.554564, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 242, - "y": 136, - "left": 160.3125, - "top": -11.178402, - "right": 161.71875, - "bottom": -12.554564, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 246, - "y": 136, - "left": 165.9375, - "top": -11.178402, - "right": 167.34375, - "bottom": -12.554564, - "countries": [ - "solomon_islands" - ] - }, - { - "x": 248, - "y": 136, - "left": 168.75, - "top": -11.178402, - "right": 170.15625, - "bottom": -12.554564, - "countries": [ - "solomon_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/tokelau.json b/wahoomc/resources/json/oceania/tokelau.json deleted file mode 100644 index c9f3f47b..00000000 --- a/wahoomc/resources/json/oceania/tokelau.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 5, - "y": 134, - "left": -172.96875, - "top": -8.407168, - "right": -171.5625, - "bottom": -9.795678, - "countries": [ - "tokelau" - ] - }, - { - "x": 6, - "y": 134, - "left": -171.5625, - "top": -8.407168, - "right": -170.15625, - "bottom": -9.795678, - "countries": [ - "tokelau" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/tonga.json b/wahoomc/resources/json/oceania/tonga.json deleted file mode 100644 index 49e704f0..00000000 --- a/wahoomc/resources/json/oceania/tonga.json +++ /dev/null @@ -1,90 +0,0 @@ -[ - { - "x": 3, - "y": 139, - "left": -175.78125, - "top": -15.284185, - "right": -174.375, - "bottom": -16.636192, - "countries": [ - "tonga" - ] - }, - { - "x": 4, - "y": 139, - "left": -174.375, - "top": -15.284185, - "right": -172.96875, - "bottom": -16.636192, - "countries": [ - "tonga" - ] - }, - { - "x": 3, - "y": 141, - "left": -175.78125, - "top": -17.978733, - "right": -174.375, - "bottom": -19.311143, - "countries": [ - "tonga" - ] - }, - { - "x": 4, - "y": 141, - "left": -174.375, - "top": -17.978733, - "right": -172.96875, - "bottom": -19.311143, - "countries": [ - "tonga" - ] - }, - { - "x": 3, - "y": 142, - "left": -175.78125, - "top": -19.311143, - "right": -174.375, - "bottom": -20.632784, - "countries": [ - "tonga" - ] - }, - { - "x": 4, - "y": 142, - "left": -174.375, - "top": -19.311143, - "right": -172.96875, - "bottom": -20.632784, - "countries": [ - "tonga" - ] - }, - { - "x": 3, - "y": 143, - "left": -175.78125, - "top": -20.632784, - "right": -174.375, - "bottom": -21.943046, - "countries": [ - "tonga" - ] - }, - { - "x": 2, - "y": 144, - "left": -177.1875, - "top": -21.943046, - "right": -175.78125, - "bottom": -23.241346, - "countries": [ - "tonga" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/tuvalu.json b/wahoomc/resources/json/oceania/tuvalu.json deleted file mode 100644 index f8003a56..00000000 --- a/wahoomc/resources/json/oceania/tuvalu.json +++ /dev/null @@ -1,68 +0,0 @@ -[ - { - "x": 253, - "y": 132, - "left": 175.78125, - "top": -5.615986, - "right": 177.1875, - "bottom": -7.013668, - "countries": [ - "tuvalu" - ] - }, - { - "x": 254, - "y": 132, - "left": 177.1875, - "top": -5.615986, - "right": 178.59375, - "bottom": -7.013668, - "countries": [ - "tuvalu" - ] - }, - { - "x": 253, - "y": 133, - "left": 175.78125, - "top": -7.013668, - "right": 177.1875, - "bottom": -8.407168, - "countries": [ - "tuvalu" - ] - }, - { - "x": 254, - "y": 133, - "left": 177.1875, - "top": -7.013668, - "right": 178.59375, - "bottom": -8.407168, - "countries": [ - "tuvalu" - ] - }, - { - "x": 255, - "y": 133, - "left": 178.59375, - "top": -7.013668, - "right": 180.0, - "bottom": -8.407168, - "countries": [ - "tuvalu" - ] - }, - { - "x": 255, - "y": 134, - "left": 178.59375, - "top": -8.407168, - "right": 180.0, - "bottom": -9.795678, - "countries": [ - "tuvalu" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/united_states_minor_outlying_islands.json b/wahoomc/resources/json/oceania/united_states_minor_outlying_islands.json deleted file mode 100644 index eb11dc9d..00000000 --- a/wahoomc/resources/json/oceania/united_states_minor_outlying_islands.json +++ /dev/null @@ -1,101 +0,0 @@ -[ - { - "x": 2, - "y": 127, - "left": -177.1875, - "top": 1.406109, - "right": -175.78125, - "bottom": 0.0, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 14, - "y": 128, - "left": -160.3125, - "top": 0.0, - "right": -158.90625, - "bottom": -1.406109, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 7, - "y": 115, - "left": -170.15625, - "top": 17.978733, - "right": -168.75, - "bottom": 16.636192, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 12, - "y": 123, - "left": -163.125, - "top": 7.013668, - "right": -161.71875, - "bottom": 5.615986, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 1, - "y": 106, - "left": -178.59375, - "top": 29.53523, - "right": -177.1875, - "bottom": 28.304381, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 1, - "y": 107, - "left": -178.59375, - "top": 28.304381, - "right": -177.1875, - "bottom": 27.059126, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 74, - "y": 114, - "left": -75.9375, - "top": 19.311143, - "right": -74.53125, - "bottom": 17.978733, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 246, - "y": 113, - "left": 165.9375, - "top": 20.632784, - "right": 167.34375, - "bottom": 19.311143, - "countries": [ - "united_states_minor_outlying_islands" - ] - }, - { - "x": 246, - "y": 114, - "left": 165.9375, - "top": 19.311143, - "right": 167.34375, - "bottom": 17.978733, - "countries": [ - "united_states_minor_outlying_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/vanuatu.json b/wahoomc/resources/json/oceania/vanuatu.json deleted file mode 100644 index c2717b23..00000000 --- a/wahoomc/resources/json/oceania/vanuatu.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "x": 246, - "y": 137, - "left": 165.9375, - "top": -12.554564, - "right": 167.34375, - "bottom": -13.923404, - "countries": [ - "vanuatu" - ] - }, - { - "x": 247, - "y": 137, - "left": 167.34375, - "top": -12.554564, - "right": 168.75, - "bottom": -13.923404, - "countries": [ - "vanuatu" - ] - }, - { - "x": 246, - "y": 138, - "left": 165.9375, - "top": -13.923404, - "right": 167.34375, - "bottom": -15.284185, - "countries": [ - "vanuatu" - ] - }, - { - "x": 247, - "y": 138, - "left": 167.34375, - "top": -13.923404, - "right": 168.75, - "bottom": -15.284185, - "countries": [ - "vanuatu" - ] - }, - { - "x": 246, - "y": 139, - "left": 165.9375, - "top": -15.284185, - "right": 167.34375, - "bottom": -16.636192, - "countries": [ - "vanuatu" - ] - }, - { - "x": 247, - "y": 139, - "left": 167.34375, - "top": -15.284185, - "right": 168.75, - "bottom": -16.636192, - "countries": [ - "vanuatu" - ] - }, - { - "x": 247, - "y": 140, - "left": 167.34375, - "top": -16.636192, - "right": 168.75, - "bottom": -17.978733, - "countries": [ - "vanuatu" - ] - }, - { - "x": 248, - "y": 141, - "left": 168.75, - "top": -17.978733, - "right": 170.15625, - "bottom": -19.311143, - "countries": [ - "vanuatu" - ] - }, - { - "x": 248, - "y": 142, - "left": 168.75, - "top": -19.311143, - "right": 170.15625, - "bottom": -20.632784, - "countries": [ - "vanuatu" - ] - }, - { - "x": 249, - "y": 142, - "left": 170.15625, - "top": -19.311143, - "right": 171.5625, - "bottom": -20.632784, - "countries": [ - "vanuatu" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/oceania/wallis_and_futuna.json b/wahoomc/resources/json/oceania/wallis_and_futuna.json deleted file mode 100644 index 2a01c6eb..00000000 --- a/wahoomc/resources/json/oceania/wallis_and_futuna.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 2, - "y": 137, - "left": -177.1875, - "top": -12.554564, - "right": -175.78125, - "bottom": -13.923404, - "countries": [ - "wallis_and_futuna" - ] - }, - { - "x": 1, - "y": 138, - "left": -178.59375, - "top": -13.923404, - "right": -177.1875, - "bottom": -15.284185, - "countries": [ - "wallis_and_futuna" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/argentina.json b/wahoomc/resources/json/south_america/argentina.json deleted file mode 100644 index 58fa3ece..00000000 --- a/wahoomc/resources/json/south_america/argentina.json +++ /dev/null @@ -1,2693 +0,0 @@ -[ - { - "x": 80, - "y": 143, - "left": -67.5, - "top": -20.632784, - "right": -66.09375, - "bottom": -21.943046, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 81, - "y": 143, - "left": -66.09375, - "top": -20.632784, - "right": -64.6875, - "bottom": -21.943046, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 80, - "y": 144, - "left": -67.5, - "top": -21.943046, - "right": -66.09375, - "bottom": -23.241346, - "countries": [ - "chile", - "bolivia", - "argentina" - ] - }, - { - "x": 81, - "y": 144, - "left": -66.09375, - "top": -21.943046, - "right": -64.6875, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 82, - "y": 144, - "left": -64.6875, - "top": -21.943046, - "right": -63.28125, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 83, - "y": 144, - "left": -63.28125, - "top": -21.943046, - "right": -61.875, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina", - "paraguay" - ] - }, - { - "x": 84, - "y": 144, - "left": -61.875, - "top": -21.943046, - "right": -60.46875, - "bottom": -23.241346, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 79, - "y": 145, - "left": -68.90625, - "top": -23.241346, - "right": -67.5, - "bottom": -24.527135, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 145, - "left": -67.5, - "top": -23.241346, - "right": -66.09375, - "bottom": -24.527135, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 81, - "y": 145, - "left": -66.09375, - "top": -23.241346, - "right": -64.6875, - "bottom": -24.527135, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 145, - "left": -64.6875, - "top": -23.241346, - "right": -63.28125, - "bottom": -24.527135, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 145, - "left": -63.28125, - "top": -23.241346, - "right": -61.875, - "bottom": -24.527135, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 145, - "left": -61.875, - "top": -23.241346, - "right": -60.46875, - "bottom": -24.527135, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 85, - "y": 145, - "left": -60.46875, - "top": -23.241346, - "right": -59.0625, - "bottom": -24.527135, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 79, - "y": 146, - "left": -68.90625, - "top": -24.527135, - "right": -67.5, - "bottom": -25.799891, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 146, - "left": -67.5, - "top": -24.527135, - "right": -66.09375, - "bottom": -25.799891, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 146, - "left": -66.09375, - "top": -24.527135, - "right": -64.6875, - "bottom": -25.799891, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 146, - "left": -64.6875, - "top": -24.527135, - "right": -63.28125, - "bottom": -25.799891, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 146, - "left": -63.28125, - "top": -24.527135, - "right": -61.875, - "bottom": -25.799891, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 146, - "left": -61.875, - "top": -24.527135, - "right": -60.46875, - "bottom": -25.799891, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 146, - "left": -60.46875, - "top": -24.527135, - "right": -59.0625, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 86, - "y": 146, - "left": -59.0625, - "top": -24.527135, - "right": -57.65625, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 87, - "y": 146, - "left": -57.65625, - "top": -24.527135, - "right": -56.25, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 146, - "left": -54.84375, - "top": -24.527135, - "right": -53.4375, - "bottom": -25.799891, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 79, - "y": 147, - "left": -68.90625, - "top": -25.799891, - "right": -67.5, - "bottom": -27.059126, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 147, - "left": -67.5, - "top": -25.799891, - "right": -66.09375, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 147, - "left": -66.09375, - "top": -25.799891, - "right": -64.6875, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 147, - "left": -64.6875, - "top": -25.799891, - "right": -63.28125, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 147, - "left": -63.28125, - "top": -25.799891, - "right": -61.875, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 147, - "left": -61.875, - "top": -25.799891, - "right": -60.46875, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 147, - "left": -60.46875, - "top": -25.799891, - "right": -59.0625, - "bottom": -27.059126, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 147, - "left": -59.0625, - "top": -25.799891, - "right": -57.65625, - "bottom": -27.059126, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 88, - "y": 147, - "left": -56.25, - "top": -25.799891, - "right": -54.84375, - "bottom": -27.059126, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 147, - "left": -54.84375, - "top": -25.799891, - "right": -53.4375, - "bottom": -27.059126, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 78, - "y": 148, - "left": -70.3125, - "top": -27.059126, - "right": -68.90625, - "bottom": -28.304381, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 148, - "left": -68.90625, - "top": -27.059126, - "right": -67.5, - "bottom": -28.304381, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 148, - "left": -67.5, - "top": -27.059126, - "right": -66.09375, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 148, - "left": -66.09375, - "top": -27.059126, - "right": -64.6875, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 148, - "left": -64.6875, - "top": -27.059126, - "right": -63.28125, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 148, - "left": -63.28125, - "top": -27.059126, - "right": -61.875, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 148, - "left": -61.875, - "top": -27.059126, - "right": -60.46875, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 148, - "left": -60.46875, - "top": -27.059126, - "right": -59.0625, - "bottom": -28.304381, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 148, - "left": -59.0625, - "top": -27.059126, - "right": -57.65625, - "bottom": -28.304381, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 87, - "y": 148, - "left": -57.65625, - "top": -27.059126, - "right": -56.25, - "bottom": -28.304381, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 88, - "y": 148, - "left": -56.25, - "top": -27.059126, - "right": -54.84375, - "bottom": -28.304381, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 148, - "left": -54.84375, - "top": -27.059126, - "right": -53.4375, - "bottom": -28.304381, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 78, - "y": 149, - "left": -70.3125, - "top": -28.304381, - "right": -68.90625, - "bottom": -29.53523, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 149, - "left": -68.90625, - "top": -28.304381, - "right": -67.5, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 149, - "left": -67.5, - "top": -28.304381, - "right": -66.09375, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 149, - "left": -66.09375, - "top": -28.304381, - "right": -64.6875, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 149, - "left": -64.6875, - "top": -28.304381, - "right": -63.28125, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 149, - "left": -63.28125, - "top": -28.304381, - "right": -61.875, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 149, - "left": -61.875, - "top": -28.304381, - "right": -60.46875, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 149, - "left": -60.46875, - "top": -28.304381, - "right": -59.0625, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 149, - "left": -59.0625, - "top": -28.304381, - "right": -57.65625, - "bottom": -29.53523, - "countries": [ - "argentina" - ] - }, - { - "x": 87, - "y": 149, - "left": -57.65625, - "top": -28.304381, - "right": -56.25, - "bottom": -29.53523, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 88, - "y": 149, - "left": -56.25, - "top": -28.304381, - "right": -54.84375, - "bottom": -29.53523, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 78, - "y": 150, - "left": -70.3125, - "top": -29.53523, - "right": -68.90625, - "bottom": -30.751278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 150, - "left": -68.90625, - "top": -29.53523, - "right": -67.5, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 150, - "left": -67.5, - "top": -29.53523, - "right": -66.09375, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 150, - "left": -66.09375, - "top": -29.53523, - "right": -64.6875, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 150, - "left": -64.6875, - "top": -29.53523, - "right": -63.28125, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 150, - "left": -63.28125, - "top": -29.53523, - "right": -61.875, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 150, - "left": -61.875, - "top": -29.53523, - "right": -60.46875, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 150, - "left": -60.46875, - "top": -29.53523, - "right": -59.0625, - "bottom": -30.751278, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 150, - "left": -59.0625, - "top": -29.53523, - "right": -57.65625, - "bottom": -30.751278, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 87, - "y": 150, - "left": -57.65625, - "top": -29.53523, - "right": -56.25, - "bottom": -30.751278, - "countries": [ - "brazil", - "uruguay", - "argentina" - ] - }, - { - "x": 77, - "y": 151, - "left": -71.71875, - "top": -30.751278, - "right": -70.3125, - "bottom": -31.952162, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 151, - "left": -70.3125, - "top": -30.751278, - "right": -68.90625, - "bottom": -31.952162, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 151, - "left": -68.90625, - "top": -30.751278, - "right": -67.5, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 151, - "left": -67.5, - "top": -30.751278, - "right": -66.09375, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 151, - "left": -66.09375, - "top": -30.751278, - "right": -64.6875, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 151, - "left": -64.6875, - "top": -30.751278, - "right": -63.28125, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 151, - "left": -63.28125, - "top": -30.751278, - "right": -61.875, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 151, - "left": -61.875, - "top": -30.751278, - "right": -60.46875, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 151, - "left": -60.46875, - "top": -30.751278, - "right": -59.0625, - "bottom": -31.952162, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 151, - "left": -59.0625, - "top": -30.751278, - "right": -57.65625, - "bottom": -31.952162, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 77, - "y": 152, - "left": -71.71875, - "top": -31.952162, - "right": -70.3125, - "bottom": -33.137551, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 152, - "left": -70.3125, - "top": -31.952162, - "right": -68.90625, - "bottom": -33.137551, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 152, - "left": -68.90625, - "top": -31.952162, - "right": -67.5, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 152, - "left": -67.5, - "top": -31.952162, - "right": -66.09375, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 152, - "left": -66.09375, - "top": -31.952162, - "right": -64.6875, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 152, - "left": -64.6875, - "top": -31.952162, - "right": -63.28125, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 152, - "left": -63.28125, - "top": -31.952162, - "right": -61.875, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 152, - "left": -61.875, - "top": -31.952162, - "right": -60.46875, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 152, - "left": -60.46875, - "top": -31.952162, - "right": -59.0625, - "bottom": -33.137551, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 152, - "left": -59.0625, - "top": -31.952162, - "right": -57.65625, - "bottom": -33.137551, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 78, - "y": 153, - "left": -70.3125, - "top": -33.137551, - "right": -68.90625, - "bottom": -34.307144, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 153, - "left": -68.90625, - "top": -33.137551, - "right": -67.5, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 153, - "left": -67.5, - "top": -33.137551, - "right": -66.09375, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 153, - "left": -66.09375, - "top": -33.137551, - "right": -64.6875, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 153, - "left": -64.6875, - "top": -33.137551, - "right": -63.28125, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 153, - "left": -63.28125, - "top": -33.137551, - "right": -61.875, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 153, - "left": -61.875, - "top": -33.137551, - "right": -60.46875, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 153, - "left": -60.46875, - "top": -33.137551, - "right": -59.0625, - "bottom": -34.307144, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 153, - "left": -59.0625, - "top": -33.137551, - "right": -57.65625, - "bottom": -34.307144, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 77, - "y": 154, - "left": -71.71875, - "top": -34.307144, - "right": -70.3125, - "bottom": -35.46067, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 154, - "left": -70.3125, - "top": -34.307144, - "right": -68.90625, - "bottom": -35.46067, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 154, - "left": -68.90625, - "top": -34.307144, - "right": -67.5, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 154, - "left": -67.5, - "top": -34.307144, - "right": -66.09375, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 154, - "left": -66.09375, - "top": -34.307144, - "right": -64.6875, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 154, - "left": -64.6875, - "top": -34.307144, - "right": -63.28125, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 154, - "left": -63.28125, - "top": -34.307144, - "right": -61.875, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 154, - "left": -61.875, - "top": -34.307144, - "right": -60.46875, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 154, - "left": -60.46875, - "top": -34.307144, - "right": -59.0625, - "bottom": -35.46067, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 154, - "left": -59.0625, - "top": -34.307144, - "right": -57.65625, - "bottom": -35.46067, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 87, - "y": 154, - "left": -57.65625, - "top": -34.307144, - "right": -56.25, - "bottom": -35.46067, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 77, - "y": 155, - "left": -71.71875, - "top": -35.46067, - "right": -70.3125, - "bottom": -36.597889, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 155, - "left": -70.3125, - "top": -35.46067, - "right": -68.90625, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 155, - "left": -68.90625, - "top": -35.46067, - "right": -67.5, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 155, - "left": -67.5, - "top": -35.46067, - "right": -66.09375, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 155, - "left": -66.09375, - "top": -35.46067, - "right": -64.6875, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 155, - "left": -64.6875, - "top": -35.46067, - "right": -63.28125, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 155, - "left": -63.28125, - "top": -35.46067, - "right": -61.875, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 155, - "left": -61.875, - "top": -35.46067, - "right": -60.46875, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 155, - "left": -60.46875, - "top": -35.46067, - "right": -59.0625, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 155, - "left": -59.0625, - "top": -35.46067, - "right": -57.65625, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 87, - "y": 155, - "left": -57.65625, - "top": -35.46067, - "right": -56.25, - "bottom": -36.597889, - "countries": [ - "argentina" - ] - }, - { - "x": 77, - "y": 156, - "left": -71.71875, - "top": -36.597889, - "right": -70.3125, - "bottom": -37.71859, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 156, - "left": -70.3125, - "top": -36.597889, - "right": -68.90625, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 156, - "left": -68.90625, - "top": -36.597889, - "right": -67.5, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 156, - "left": -67.5, - "top": -36.597889, - "right": -66.09375, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 156, - "left": -66.09375, - "top": -36.597889, - "right": -64.6875, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 156, - "left": -64.6875, - "top": -36.597889, - "right": -63.28125, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 156, - "left": -63.28125, - "top": -36.597889, - "right": -61.875, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 156, - "left": -61.875, - "top": -36.597889, - "right": -60.46875, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 156, - "left": -60.46875, - "top": -36.597889, - "right": -59.0625, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 156, - "left": -59.0625, - "top": -36.597889, - "right": -57.65625, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 87, - "y": 156, - "left": -57.65625, - "top": -36.597889, - "right": -56.25, - "bottom": -37.71859, - "countries": [ - "argentina" - ] - }, - { - "x": 77, - "y": 157, - "left": -71.71875, - "top": -37.71859, - "right": -70.3125, - "bottom": -38.822591, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 157, - "left": -70.3125, - "top": -37.71859, - "right": -68.90625, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 157, - "left": -68.90625, - "top": -37.71859, - "right": -67.5, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 157, - "left": -67.5, - "top": -37.71859, - "right": -66.09375, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 157, - "left": -66.09375, - "top": -37.71859, - "right": -64.6875, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 157, - "left": -64.6875, - "top": -37.71859, - "right": -63.28125, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 157, - "left": -63.28125, - "top": -37.71859, - "right": -61.875, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 157, - "left": -61.875, - "top": -37.71859, - "right": -60.46875, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 157, - "left": -60.46875, - "top": -37.71859, - "right": -59.0625, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 86, - "y": 157, - "left": -59.0625, - "top": -37.71859, - "right": -57.65625, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 87, - "y": 157, - "left": -57.65625, - "top": -37.71859, - "right": -56.25, - "bottom": -38.822591, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 158, - "left": -73.125, - "top": -38.822591, - "right": -71.71875, - "bottom": -39.909736, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 158, - "left": -71.71875, - "top": -38.822591, - "right": -70.3125, - "bottom": -39.909736, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 158, - "left": -70.3125, - "top": -38.822591, - "right": -68.90625, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 158, - "left": -68.90625, - "top": -38.822591, - "right": -67.5, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 158, - "left": -67.5, - "top": -38.822591, - "right": -66.09375, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 158, - "left": -66.09375, - "top": -38.822591, - "right": -64.6875, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 158, - "left": -64.6875, - "top": -38.822591, - "right": -63.28125, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 158, - "left": -63.28125, - "top": -38.822591, - "right": -61.875, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 84, - "y": 158, - "left": -61.875, - "top": -38.822591, - "right": -60.46875, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 85, - "y": 158, - "left": -60.46875, - "top": -38.822591, - "right": -59.0625, - "bottom": -39.909736, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 159, - "left": -73.125, - "top": -39.909736, - "right": -71.71875, - "bottom": -40.979898, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 159, - "left": -71.71875, - "top": -39.909736, - "right": -70.3125, - "bottom": -40.979898, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 159, - "left": -70.3125, - "top": -39.909736, - "right": -68.90625, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 159, - "left": -68.90625, - "top": -39.909736, - "right": -67.5, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 159, - "left": -67.5, - "top": -39.909736, - "right": -66.09375, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 159, - "left": -66.09375, - "top": -39.909736, - "right": -64.6875, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 159, - "left": -64.6875, - "top": -39.909736, - "right": -63.28125, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 159, - "left": -63.28125, - "top": -39.909736, - "right": -61.875, - "bottom": -40.979898, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 160, - "left": -73.125, - "top": -40.979898, - "right": -71.71875, - "bottom": -42.032974, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 160, - "left": -71.71875, - "top": -40.979898, - "right": -70.3125, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 160, - "left": -70.3125, - "top": -40.979898, - "right": -68.90625, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 160, - "left": -68.90625, - "top": -40.979898, - "right": -67.5, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 160, - "left": -67.5, - "top": -40.979898, - "right": -66.09375, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 160, - "left": -66.09375, - "top": -40.979898, - "right": -64.6875, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 160, - "left": -64.6875, - "top": -40.979898, - "right": -63.28125, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 83, - "y": 160, - "left": -63.28125, - "top": -40.979898, - "right": -61.875, - "bottom": -42.032974, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 161, - "left": -73.125, - "top": -42.032974, - "right": -71.71875, - "bottom": -43.068888, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 161, - "left": -71.71875, - "top": -42.032974, - "right": -70.3125, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 161, - "left": -70.3125, - "top": -42.032974, - "right": -68.90625, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 161, - "left": -68.90625, - "top": -42.032974, - "right": -67.5, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 161, - "left": -67.5, - "top": -42.032974, - "right": -66.09375, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 161, - "left": -66.09375, - "top": -42.032974, - "right": -64.6875, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 161, - "left": -64.6875, - "top": -42.032974, - "right": -63.28125, - "bottom": -43.068888, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 162, - "left": -73.125, - "top": -43.068888, - "right": -71.71875, - "bottom": -44.087585, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 162, - "left": -71.71875, - "top": -43.068888, - "right": -70.3125, - "bottom": -44.087585, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 162, - "left": -70.3125, - "top": -43.068888, - "right": -68.90625, - "bottom": -44.087585, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 162, - "left": -68.90625, - "top": -43.068888, - "right": -67.5, - "bottom": -44.087585, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 162, - "left": -67.5, - "top": -43.068888, - "right": -66.09375, - "bottom": -44.087585, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 162, - "left": -66.09375, - "top": -43.068888, - "right": -64.6875, - "bottom": -44.087585, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 162, - "left": -64.6875, - "top": -43.068888, - "right": -63.28125, - "bottom": -44.087585, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 163, - "left": -73.125, - "top": -44.087585, - "right": -71.71875, - "bottom": -45.089036, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 163, - "left": -71.71875, - "top": -44.087585, - "right": -70.3125, - "bottom": -45.089036, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 163, - "left": -70.3125, - "top": -44.087585, - "right": -68.90625, - "bottom": -45.089036, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 163, - "left": -68.90625, - "top": -44.087585, - "right": -67.5, - "bottom": -45.089036, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 163, - "left": -67.5, - "top": -44.087585, - "right": -66.09375, - "bottom": -45.089036, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 163, - "left": -66.09375, - "top": -44.087585, - "right": -64.6875, - "bottom": -45.089036, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 164, - "left": -73.125, - "top": -45.089036, - "right": -71.71875, - "bottom": -46.073231, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 164, - "left": -71.71875, - "top": -45.089036, - "right": -70.3125, - "bottom": -46.073231, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 164, - "left": -70.3125, - "top": -45.089036, - "right": -68.90625, - "bottom": -46.073231, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 164, - "left": -68.90625, - "top": -45.089036, - "right": -67.5, - "bottom": -46.073231, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 164, - "left": -67.5, - "top": -45.089036, - "right": -66.09375, - "bottom": -46.073231, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 164, - "left": -66.09375, - "top": -45.089036, - "right": -64.6875, - "bottom": -46.073231, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 165, - "left": -73.125, - "top": -46.073231, - "right": -71.71875, - "bottom": -47.040182, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 165, - "left": -71.71875, - "top": -46.073231, - "right": -70.3125, - "bottom": -47.040182, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 165, - "left": -70.3125, - "top": -46.073231, - "right": -68.90625, - "bottom": -47.040182, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 165, - "left": -68.90625, - "top": -46.073231, - "right": -67.5, - "bottom": -47.040182, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 165, - "left": -67.5, - "top": -46.073231, - "right": -66.09375, - "bottom": -47.040182, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 166, - "left": -73.125, - "top": -47.040182, - "right": -71.71875, - "bottom": -47.989922, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 166, - "left": -71.71875, - "top": -47.040182, - "right": -70.3125, - "bottom": -47.989922, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 166, - "left": -70.3125, - "top": -47.040182, - "right": -68.90625, - "bottom": -47.989922, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 166, - "left": -68.90625, - "top": -47.040182, - "right": -67.5, - "bottom": -47.989922, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 166, - "left": -67.5, - "top": -47.040182, - "right": -66.09375, - "bottom": -47.989922, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 166, - "left": -66.09375, - "top": -47.040182, - "right": -64.6875, - "bottom": -47.989922, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 167, - "left": -73.125, - "top": -47.989922, - "right": -71.71875, - "bottom": -48.922499, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 167, - "left": -71.71875, - "top": -47.989922, - "right": -70.3125, - "bottom": -48.922499, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 167, - "left": -70.3125, - "top": -47.989922, - "right": -68.90625, - "bottom": -48.922499, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 167, - "left": -68.90625, - "top": -47.989922, - "right": -67.5, - "bottom": -48.922499, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 167, - "left": -67.5, - "top": -47.989922, - "right": -66.09375, - "bottom": -48.922499, - "countries": [ - "argentina" - ] - }, - { - "x": 81, - "y": 167, - "left": -66.09375, - "top": -47.989922, - "right": -64.6875, - "bottom": -48.922499, - "countries": [ - "argentina" - ] - }, - { - "x": 75, - "y": 168, - "left": -74.53125, - "top": -48.922499, - "right": -73.125, - "bottom": -49.837982, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 168, - "left": -73.125, - "top": -48.922499, - "right": -71.71875, - "bottom": -49.837982, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 168, - "left": -71.71875, - "top": -48.922499, - "right": -70.3125, - "bottom": -49.837982, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 168, - "left": -70.3125, - "top": -48.922499, - "right": -68.90625, - "bottom": -49.837982, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 168, - "left": -68.90625, - "top": -48.922499, - "right": -67.5, - "bottom": -49.837982, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 168, - "left": -67.5, - "top": -48.922499, - "right": -66.09375, - "bottom": -49.837982, - "countries": [ - "argentina" - ] - }, - { - "x": 75, - "y": 169, - "left": -74.53125, - "top": -49.837982, - "right": -73.125, - "bottom": -50.736455, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 169, - "left": -73.125, - "top": -49.837982, - "right": -71.71875, - "bottom": -50.736455, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 169, - "left": -71.71875, - "top": -49.837982, - "right": -70.3125, - "bottom": -50.736455, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 169, - "left": -70.3125, - "top": -49.837982, - "right": -68.90625, - "bottom": -50.736455, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 169, - "left": -68.90625, - "top": -49.837982, - "right": -67.5, - "bottom": -50.736455, - "countries": [ - "argentina" - ] - }, - { - "x": 75, - "y": 170, - "left": -74.53125, - "top": -50.736455, - "right": -73.125, - "bottom": -51.618017, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 170, - "left": -73.125, - "top": -50.736455, - "right": -71.71875, - "bottom": -51.618017, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 170, - "left": -71.71875, - "top": -50.736455, - "right": -70.3125, - "bottom": -51.618017, - "countries": [ - "argentina" - ] - }, - { - "x": 78, - "y": 170, - "left": -70.3125, - "top": -50.736455, - "right": -68.90625, - "bottom": -51.618017, - "countries": [ - "argentina" - ] - }, - { - "x": 76, - "y": 171, - "left": -73.125, - "top": -51.618017, - "right": -71.71875, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 171, - "left": -71.71875, - "top": -51.618017, - "right": -70.3125, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 171, - "left": -70.3125, - "top": -51.618017, - "right": -68.90625, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 171, - "left": -68.90625, - "top": -51.618017, - "right": -67.5, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 172, - "left": -68.90625, - "top": -52.48278, - "right": -67.5, - "bottom": -53.330873, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 173, - "left": -68.90625, - "top": -53.330873, - "right": -67.5, - "bottom": -54.162434, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 173, - "left": -67.5, - "top": -53.330873, - "right": -66.09375, - "bottom": -54.162434, - "countries": [ - "argentina" - ] - }, - { - "x": 79, - "y": 174, - "left": -68.90625, - "top": -54.162434, - "right": -67.5, - "bottom": -54.977614, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 174, - "left": -67.5, - "top": -54.162434, - "right": -66.09375, - "bottom": -54.977614, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 81, - "y": 174, - "left": -66.09375, - "top": -54.162434, - "right": -64.6875, - "bottom": -54.977614, - "countries": [ - "argentina" - ] - }, - { - "x": 82, - "y": 174, - "left": -64.6875, - "top": -54.162434, - "right": -63.28125, - "bottom": -54.977614, - "countries": [ - "argentina" - ] - }, - { - "x": 80, - "y": 175, - "left": -67.5, - "top": -54.977614, - "right": -66.09375, - "bottom": -55.776573, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 81, - "y": 175, - "left": -66.09375, - "top": -54.977614, - "right": -64.6875, - "bottom": -55.776573, - "countries": [ - "argentina" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/aruba.json b/wahoomc/resources/json/south_america/aruba.json deleted file mode 100644 index e94764af..00000000 --- a/wahoomc/resources/json/south_america/aruba.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "x": 78, - "y": 118, - "left": -70.3125, - "top": 13.923404, - "right": -68.90625, - "bottom": 12.554564, - "countries": [ - "aruba" - ] - }, - { - "x": 78, - "y": 119, - "left": -70.3125, - "top": 12.554564, - "right": -68.90625, - "bottom": 11.178402, - "countries": [ - "curacao", - "venezuela", - "aruba" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/bolivia.json b/wahoomc/resources/json/south_america/bolivia.json deleted file mode 100644 index b95e48be..00000000 --- a/wahoomc/resources/json/south_america/bolivia.json +++ /dev/null @@ -1,868 +0,0 @@ -[ - { - "x": 80, - "y": 143, - "left": -67.5, - "top": -20.632784, - "right": -66.09375, - "bottom": -21.943046, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 81, - "y": 143, - "left": -66.09375, - "top": -20.632784, - "right": -64.6875, - "bottom": -21.943046, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 80, - "y": 144, - "left": -67.5, - "top": -21.943046, - "right": -66.09375, - "bottom": -23.241346, - "countries": [ - "chile", - "bolivia", - "argentina" - ] - }, - { - "x": 81, - "y": 144, - "left": -66.09375, - "top": -21.943046, - "right": -64.6875, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 82, - "y": 144, - "left": -64.6875, - "top": -21.943046, - "right": -63.28125, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina" - ] - }, - { - "x": 83, - "y": 144, - "left": -63.28125, - "top": -21.943046, - "right": -61.875, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina", - "paraguay" - ] - }, - { - "x": 80, - "y": 134, - "left": -67.5, - "top": -8.407168, - "right": -66.09375, - "bottom": -9.795678, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 81, - "y": 134, - "left": -66.09375, - "top": -8.407168, - "right": -64.6875, - "bottom": -9.795678, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 135, - "left": -70.3125, - "top": -9.795678, - "right": -68.90625, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil", - "bolivia" - ] - }, - { - "x": 79, - "y": 135, - "left": -68.90625, - "top": -9.795678, - "right": -67.5, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 80, - "y": 135, - "left": -67.5, - "top": -9.795678, - "right": -66.09375, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 81, - "y": 135, - "left": -66.09375, - "top": -9.795678, - "right": -64.6875, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 136, - "left": -70.3125, - "top": -11.178402, - "right": -68.90625, - "bottom": -12.554564, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 136, - "left": -68.90625, - "top": -11.178402, - "right": -67.5, - "bottom": -12.554564, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 80, - "y": 136, - "left": -67.5, - "top": -11.178402, - "right": -66.09375, - "bottom": -12.554564, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 136, - "left": -66.09375, - "top": -11.178402, - "right": -64.6875, - "bottom": -12.554564, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 82, - "y": 136, - "left": -64.6875, - "top": -11.178402, - "right": -63.28125, - "bottom": -12.554564, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 137, - "left": -70.3125, - "top": -12.554564, - "right": -68.90625, - "bottom": -13.923404, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 137, - "left": -68.90625, - "top": -12.554564, - "right": -67.5, - "bottom": -13.923404, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 80, - "y": 137, - "left": -67.5, - "top": -12.554564, - "right": -66.09375, - "bottom": -13.923404, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 137, - "left": -66.09375, - "top": -12.554564, - "right": -64.6875, - "bottom": -13.923404, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 137, - "left": -64.6875, - "top": -12.554564, - "right": -63.28125, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 83, - "y": 137, - "left": -63.28125, - "top": -12.554564, - "right": -61.875, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 84, - "y": 137, - "left": -61.875, - "top": -12.554564, - "right": -60.46875, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 85, - "y": 137, - "left": -60.46875, - "top": -12.554564, - "right": -59.0625, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 138, - "left": -70.3125, - "top": -13.923404, - "right": -68.90625, - "bottom": -15.284185, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 138, - "left": -68.90625, - "top": -13.923404, - "right": -67.5, - "bottom": -15.284185, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 80, - "y": 138, - "left": -67.5, - "top": -13.923404, - "right": -66.09375, - "bottom": -15.284185, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 138, - "left": -66.09375, - "top": -13.923404, - "right": -64.6875, - "bottom": -15.284185, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 138, - "left": -64.6875, - "top": -13.923404, - "right": -63.28125, - "bottom": -15.284185, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 138, - "left": -63.28125, - "top": -13.923404, - "right": -61.875, - "bottom": -15.284185, - "countries": [ - "bolivia" - ] - }, - { - "x": 84, - "y": 138, - "left": -61.875, - "top": -13.923404, - "right": -60.46875, - "bottom": -15.284185, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 85, - "y": 138, - "left": -60.46875, - "top": -13.923404, - "right": -59.0625, - "bottom": -15.284185, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 139, - "left": -70.3125, - "top": -15.284185, - "right": -68.90625, - "bottom": -16.636192, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 139, - "left": -68.90625, - "top": -15.284185, - "right": -67.5, - "bottom": -16.636192, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 80, - "y": 139, - "left": -67.5, - "top": -15.284185, - "right": -66.09375, - "bottom": -16.636192, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 139, - "left": -66.09375, - "top": -15.284185, - "right": -64.6875, - "bottom": -16.636192, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 139, - "left": -64.6875, - "top": -15.284185, - "right": -63.28125, - "bottom": -16.636192, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 139, - "left": -63.28125, - "top": -15.284185, - "right": -61.875, - "bottom": -16.636192, - "countries": [ - "bolivia" - ] - }, - { - "x": 84, - "y": 139, - "left": -61.875, - "top": -15.284185, - "right": -60.46875, - "bottom": -16.636192, - "countries": [ - "bolivia" - ] - }, - { - "x": 85, - "y": 139, - "left": -60.46875, - "top": -15.284185, - "right": -59.0625, - "bottom": -16.636192, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 86, - "y": 139, - "left": -59.0625, - "top": -15.284185, - "right": -57.65625, - "bottom": -16.636192, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 140, - "left": -70.3125, - "top": -16.636192, - "right": -68.90625, - "bottom": -17.978733, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 140, - "left": -68.90625, - "top": -16.636192, - "right": -67.5, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 80, - "y": 140, - "left": -67.5, - "top": -16.636192, - "right": -66.09375, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 140, - "left": -66.09375, - "top": -16.636192, - "right": -64.6875, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 140, - "left": -64.6875, - "top": -16.636192, - "right": -63.28125, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 140, - "left": -63.28125, - "top": -16.636192, - "right": -61.875, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 84, - "y": 140, - "left": -61.875, - "top": -16.636192, - "right": -60.46875, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 85, - "y": 140, - "left": -60.46875, - "top": -16.636192, - "right": -59.0625, - "bottom": -17.978733, - "countries": [ - "bolivia" - ] - }, - { - "x": 86, - "y": 140, - "left": -59.0625, - "top": -16.636192, - "right": -57.65625, - "bottom": -17.978733, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 87, - "y": 140, - "left": -57.65625, - "top": -16.636192, - "right": -56.25, - "bottom": -17.978733, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 141, - "left": -70.3125, - "top": -17.978733, - "right": -68.90625, - "bottom": -19.311143, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 141, - "left": -68.90625, - "top": -17.978733, - "right": -67.5, - "bottom": -19.311143, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 80, - "y": 141, - "left": -67.5, - "top": -17.978733, - "right": -66.09375, - "bottom": -19.311143, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 141, - "left": -66.09375, - "top": -17.978733, - "right": -64.6875, - "bottom": -19.311143, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 141, - "left": -64.6875, - "top": -17.978733, - "right": -63.28125, - "bottom": -19.311143, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 141, - "left": -63.28125, - "top": -17.978733, - "right": -61.875, - "bottom": -19.311143, - "countries": [ - "bolivia" - ] - }, - { - "x": 84, - "y": 141, - "left": -61.875, - "top": -17.978733, - "right": -60.46875, - "bottom": -19.311143, - "countries": [ - "bolivia" - ] - }, - { - "x": 85, - "y": 141, - "left": -60.46875, - "top": -17.978733, - "right": -59.0625, - "bottom": -19.311143, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 86, - "y": 141, - "left": -59.0625, - "top": -17.978733, - "right": -57.65625, - "bottom": -19.311143, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 87, - "y": 141, - "left": -57.65625, - "top": -17.978733, - "right": -56.25, - "bottom": -19.311143, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 79, - "y": 142, - "left": -68.90625, - "top": -19.311143, - "right": -67.5, - "bottom": -20.632784, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 80, - "y": 142, - "left": -67.5, - "top": -19.311143, - "right": -66.09375, - "bottom": -20.632784, - "countries": [ - "bolivia" - ] - }, - { - "x": 81, - "y": 142, - "left": -66.09375, - "top": -19.311143, - "right": -64.6875, - "bottom": -20.632784, - "countries": [ - "bolivia" - ] - }, - { - "x": 82, - "y": 142, - "left": -64.6875, - "top": -19.311143, - "right": -63.28125, - "bottom": -20.632784, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 142, - "left": -63.28125, - "top": -19.311143, - "right": -61.875, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 84, - "y": 142, - "left": -61.875, - "top": -19.311143, - "right": -60.46875, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 85, - "y": 142, - "left": -60.46875, - "top": -19.311143, - "right": -59.0625, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 86, - "y": 142, - "left": -59.0625, - "top": -19.311143, - "right": -57.65625, - "bottom": -20.632784, - "countries": [ - "brazil", - "bolivia", - "paraguay" - ] - }, - { - "x": 79, - "y": 143, - "left": -68.90625, - "top": -20.632784, - "right": -67.5, - "bottom": -21.943046, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 82, - "y": 143, - "left": -64.6875, - "top": -20.632784, - "right": -63.28125, - "bottom": -21.943046, - "countries": [ - "bolivia" - ] - }, - { - "x": 83, - "y": 143, - "left": -63.28125, - "top": -20.632784, - "right": -61.875, - "bottom": -21.943046, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 79, - "y": 144, - "left": -68.90625, - "top": -21.943046, - "right": -67.5, - "bottom": -23.241346, - "countries": [ - "chile", - "bolivia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/bonaire_saint_eustatius_and_saba.json b/wahoomc/resources/json/south_america/bonaire_saint_eustatius_and_saba.json deleted file mode 100644 index 0e1a7bae..00000000 --- a/wahoomc/resources/json/south_america/bonaire_saint_eustatius_and_saba.json +++ /dev/null @@ -1,30 +0,0 @@ -[ - { - "x": 83, - "y": 115, - "left": -63.28125, - "top": 17.978733, - "right": -61.875, - "bottom": 16.636192, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "saint_kitts_and_nevis", - "antigua_and_barbuda", - "saint-barth\u00e9lemy", - "montserrat" - ] - }, - { - "x": 79, - "y": 119, - "left": -68.90625, - "top": 12.554564, - "right": -67.5, - "bottom": 11.178402, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "venezuela", - "curacao" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/brazil.json b/wahoomc/resources/json/south_america/brazil.json deleted file mode 100644 index 6f2b5e66..00000000 --- a/wahoomc/resources/json/south_america/brazil.json +++ /dev/null @@ -1,4975 +0,0 @@ -[ - { - "x": 89, - "y": 146, - "left": -54.84375, - "top": -24.527135, - "right": -53.4375, - "bottom": -25.799891, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 147, - "left": -54.84375, - "top": -25.799891, - "right": -53.4375, - "bottom": -27.059126, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 88, - "y": 148, - "left": -56.25, - "top": -27.059126, - "right": -54.84375, - "bottom": -28.304381, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 148, - "left": -54.84375, - "top": -27.059126, - "right": -53.4375, - "bottom": -28.304381, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 87, - "y": 149, - "left": -57.65625, - "top": -28.304381, - "right": -56.25, - "bottom": -29.53523, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 88, - "y": 149, - "left": -56.25, - "top": -28.304381, - "right": -54.84375, - "bottom": -29.53523, - "countries": [ - "brazil", - "argentina" - ] - }, - { - "x": 87, - "y": 150, - "left": -57.65625, - "top": -29.53523, - "right": -56.25, - "bottom": -30.751278, - "countries": [ - "brazil", - "uruguay", - "argentina" - ] - }, - { - "x": 80, - "y": 134, - "left": -67.5, - "top": -8.407168, - "right": -66.09375, - "bottom": -9.795678, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 81, - "y": 134, - "left": -66.09375, - "top": -8.407168, - "right": -64.6875, - "bottom": -9.795678, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 135, - "left": -70.3125, - "top": -9.795678, - "right": -68.90625, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil", - "bolivia" - ] - }, - { - "x": 79, - "y": 135, - "left": -68.90625, - "top": -9.795678, - "right": -67.5, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 80, - "y": 135, - "left": -67.5, - "top": -9.795678, - "right": -66.09375, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 81, - "y": 135, - "left": -66.09375, - "top": -9.795678, - "right": -64.6875, - "bottom": -11.178402, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 81, - "y": 136, - "left": -66.09375, - "top": -11.178402, - "right": -64.6875, - "bottom": -12.554564, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 82, - "y": 136, - "left": -64.6875, - "top": -11.178402, - "right": -63.28125, - "bottom": -12.554564, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 82, - "y": 137, - "left": -64.6875, - "top": -12.554564, - "right": -63.28125, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 83, - "y": 137, - "left": -63.28125, - "top": -12.554564, - "right": -61.875, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 84, - "y": 137, - "left": -61.875, - "top": -12.554564, - "right": -60.46875, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 85, - "y": 137, - "left": -60.46875, - "top": -12.554564, - "right": -59.0625, - "bottom": -13.923404, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 84, - "y": 138, - "left": -61.875, - "top": -13.923404, - "right": -60.46875, - "bottom": -15.284185, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 85, - "y": 138, - "left": -60.46875, - "top": -13.923404, - "right": -59.0625, - "bottom": -15.284185, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 85, - "y": 139, - "left": -60.46875, - "top": -15.284185, - "right": -59.0625, - "bottom": -16.636192, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 86, - "y": 139, - "left": -59.0625, - "top": -15.284185, - "right": -57.65625, - "bottom": -16.636192, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 86, - "y": 140, - "left": -59.0625, - "top": -16.636192, - "right": -57.65625, - "bottom": -17.978733, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 87, - "y": 140, - "left": -57.65625, - "top": -16.636192, - "right": -56.25, - "bottom": -17.978733, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 86, - "y": 141, - "left": -59.0625, - "top": -17.978733, - "right": -57.65625, - "bottom": -19.311143, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 87, - "y": 141, - "left": -57.65625, - "top": -17.978733, - "right": -56.25, - "bottom": -19.311143, - "countries": [ - "brazil", - "bolivia" - ] - }, - { - "x": 86, - "y": 142, - "left": -59.0625, - "top": -19.311143, - "right": -57.65625, - "bottom": -20.632784, - "countries": [ - "brazil", - "bolivia", - "paraguay" - ] - }, - { - "x": 81, - "y": 124, - "left": -66.09375, - "top": 5.615986, - "right": -64.6875, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 124, - "left": -64.6875, - "top": 5.615986, - "right": -63.28125, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 84, - "y": 124, - "left": -61.875, - "top": 5.615986, - "right": -60.46875, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 124, - "left": -60.46875, - "top": 5.615986, - "right": -59.0625, - "bottom": 4.214943, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 91, - "y": 124, - "left": -52.03125, - "top": 5.615986, - "right": -50.625, - "bottom": 4.214943, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 81, - "y": 125, - "left": -66.09375, - "top": 4.214943, - "right": -64.6875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 125, - "left": -64.6875, - "top": 4.214943, - "right": -63.28125, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 83, - "y": 125, - "left": -63.28125, - "top": 4.214943, - "right": -61.875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 84, - "y": 125, - "left": -61.875, - "top": 4.214943, - "right": -60.46875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 85, - "y": 125, - "left": -60.46875, - "top": 4.214943, - "right": -59.0625, - "bottom": 2.811371, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 90, - "y": 125, - "left": -53.4375, - "top": 4.214943, - "right": -52.03125, - "bottom": 2.811371, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 91, - "y": 125, - "left": -52.03125, - "top": 4.214943, - "right": -50.625, - "bottom": 2.811371, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 78, - "y": 126, - "left": -70.3125, - "top": 2.811371, - "right": -68.90625, - "bottom": 1.406109, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 126, - "left": -68.90625, - "top": 2.811371, - "right": -67.5, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 126, - "left": -67.5, - "top": 2.811371, - "right": -66.09375, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 82, - "y": 126, - "left": -64.6875, - "top": 2.811371, - "right": -63.28125, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 83, - "y": 126, - "left": -63.28125, - "top": 2.811371, - "right": -61.875, - "bottom": 1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 126, - "left": -61.875, - "top": 2.811371, - "right": -60.46875, - "bottom": 1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 126, - "left": -60.46875, - "top": 2.811371, - "right": -59.0625, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 86, - "y": 126, - "left": -59.0625, - "top": 2.811371, - "right": -57.65625, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 87, - "y": 126, - "left": -57.65625, - "top": 2.811371, - "right": -56.25, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana", - "suriname" - ] - }, - { - "x": 88, - "y": 126, - "left": -56.25, - "top": 2.811371, - "right": -54.84375, - "bottom": 1.406109, - "countries": [ - "brazil", - "suriname" - ] - }, - { - "x": 89, - "y": 126, - "left": -54.84375, - "top": 2.811371, - "right": -53.4375, - "bottom": 1.406109, - "countries": [ - "brazil", - "suriname", - "french_guiana" - ] - }, - { - "x": 90, - "y": 126, - "left": -53.4375, - "top": 2.811371, - "right": -52.03125, - "bottom": 1.406109, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 91, - "y": 126, - "left": -52.03125, - "top": 2.811371, - "right": -50.625, - "bottom": 1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 126, - "left": -50.625, - "top": 2.811371, - "right": -49.21875, - "bottom": 1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 78, - "y": 127, - "left": -70.3125, - "top": 1.406109, - "right": -68.90625, - "bottom": 0.0, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 127, - "left": -68.90625, - "top": 1.406109, - "right": -67.5, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 127, - "left": -67.5, - "top": 1.406109, - "right": -66.09375, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 81, - "y": 127, - "left": -66.09375, - "top": 1.406109, - "right": -64.6875, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 127, - "left": -64.6875, - "top": 1.406109, - "right": -63.28125, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 83, - "y": 127, - "left": -63.28125, - "top": 1.406109, - "right": -61.875, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 127, - "left": -61.875, - "top": 1.406109, - "right": -60.46875, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 127, - "left": -60.46875, - "top": 1.406109, - "right": -59.0625, - "bottom": 0.0, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 86, - "y": 127, - "left": -59.0625, - "top": 1.406109, - "right": -57.65625, - "bottom": 0.0, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 87, - "y": 127, - "left": -57.65625, - "top": 1.406109, - "right": -56.25, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 127, - "left": -56.25, - "top": 1.406109, - "right": -54.84375, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 127, - "left": -54.84375, - "top": 1.406109, - "right": -53.4375, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 127, - "left": -53.4375, - "top": 1.406109, - "right": -52.03125, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 127, - "left": -52.03125, - "top": 1.406109, - "right": -50.625, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 127, - "left": -50.625, - "top": 1.406109, - "right": -49.21875, - "bottom": 0.0, - "countries": [ - "brazil" - ] - }, - { - "x": 78, - "y": 128, - "left": -70.3125, - "top": 0.0, - "right": -68.90625, - "bottom": -1.406109, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 128, - "left": -68.90625, - "top": 0.0, - "right": -67.5, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 128, - "left": -67.5, - "top": 0.0, - "right": -66.09375, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 128, - "left": -66.09375, - "top": 0.0, - "right": -64.6875, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 128, - "left": -64.6875, - "top": 0.0, - "right": -63.28125, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 128, - "left": -63.28125, - "top": 0.0, - "right": -61.875, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 128, - "left": -61.875, - "top": 0.0, - "right": -60.46875, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 128, - "left": -60.46875, - "top": 0.0, - "right": -59.0625, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 128, - "left": -59.0625, - "top": 0.0, - "right": -57.65625, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 128, - "left": -57.65625, - "top": 0.0, - "right": -56.25, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 128, - "left": -56.25, - "top": 0.0, - "right": -54.84375, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 128, - "left": -54.84375, - "top": 0.0, - "right": -53.4375, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 128, - "left": -53.4375, - "top": 0.0, - "right": -52.03125, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 128, - "left": -52.03125, - "top": 0.0, - "right": -50.625, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 128, - "left": -50.625, - "top": 0.0, - "right": -49.21875, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 128, - "left": -49.21875, - "top": 0.0, - "right": -47.8125, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 128, - "left": -47.8125, - "top": 0.0, - "right": -46.40625, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 128, - "left": -46.40625, - "top": 0.0, - "right": -45.0, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 128, - "left": -45.0, - "top": 0.0, - "right": -43.59375, - "bottom": -1.406109, - "countries": [ - "brazil" - ] - }, - { - "x": 78, - "y": 129, - "left": -70.3125, - "top": -1.406109, - "right": -68.90625, - "bottom": -2.811371, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 129, - "left": -68.90625, - "top": -1.406109, - "right": -67.5, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 129, - "left": -67.5, - "top": -1.406109, - "right": -66.09375, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 129, - "left": -66.09375, - "top": -1.406109, - "right": -64.6875, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 129, - "left": -64.6875, - "top": -1.406109, - "right": -63.28125, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 129, - "left": -63.28125, - "top": -1.406109, - "right": -61.875, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 129, - "left": -61.875, - "top": -1.406109, - "right": -60.46875, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 129, - "left": -60.46875, - "top": -1.406109, - "right": -59.0625, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 129, - "left": -59.0625, - "top": -1.406109, - "right": -57.65625, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 129, - "left": -57.65625, - "top": -1.406109, - "right": -56.25, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 129, - "left": -56.25, - "top": -1.406109, - "right": -54.84375, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 129, - "left": -54.84375, - "top": -1.406109, - "right": -53.4375, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 129, - "left": -53.4375, - "top": -1.406109, - "right": -52.03125, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 129, - "left": -52.03125, - "top": -1.406109, - "right": -50.625, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 129, - "left": -50.625, - "top": -1.406109, - "right": -49.21875, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 129, - "left": -49.21875, - "top": -1.406109, - "right": -47.8125, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 129, - "left": -47.8125, - "top": -1.406109, - "right": -46.40625, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 129, - "left": -46.40625, - "top": -1.406109, - "right": -45.0, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 129, - "left": -45.0, - "top": -1.406109, - "right": -43.59375, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 129, - "left": -43.59375, - "top": -1.406109, - "right": -42.1875, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 129, - "left": -42.1875, - "top": -1.406109, - "right": -40.78125, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 129, - "left": -40.78125, - "top": -1.406109, - "right": -39.375, - "bottom": -2.811371, - "countries": [ - "brazil" - ] - }, - { - "x": 77, - "y": 130, - "left": -71.71875, - "top": -2.811371, - "right": -70.3125, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 78, - "y": 130, - "left": -70.3125, - "top": -2.811371, - "right": -68.90625, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 130, - "left": -68.90625, - "top": -2.811371, - "right": -67.5, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 130, - "left": -67.5, - "top": -2.811371, - "right": -66.09375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 130, - "left": -66.09375, - "top": -2.811371, - "right": -64.6875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 130, - "left": -64.6875, - "top": -2.811371, - "right": -63.28125, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 130, - "left": -63.28125, - "top": -2.811371, - "right": -61.875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 130, - "left": -61.875, - "top": -2.811371, - "right": -60.46875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 130, - "left": -60.46875, - "top": -2.811371, - "right": -59.0625, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 130, - "left": -59.0625, - "top": -2.811371, - "right": -57.65625, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 130, - "left": -57.65625, - "top": -2.811371, - "right": -56.25, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 130, - "left": -56.25, - "top": -2.811371, - "right": -54.84375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 130, - "left": -54.84375, - "top": -2.811371, - "right": -53.4375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 130, - "left": -53.4375, - "top": -2.811371, - "right": -52.03125, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 130, - "left": -52.03125, - "top": -2.811371, - "right": -50.625, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 130, - "left": -50.625, - "top": -2.811371, - "right": -49.21875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 130, - "left": -49.21875, - "top": -2.811371, - "right": -47.8125, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 130, - "left": -47.8125, - "top": -2.811371, - "right": -46.40625, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 130, - "left": -46.40625, - "top": -2.811371, - "right": -45.0, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 130, - "left": -45.0, - "top": -2.811371, - "right": -43.59375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 130, - "left": -43.59375, - "top": -2.811371, - "right": -42.1875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 130, - "left": -42.1875, - "top": -2.811371, - "right": -40.78125, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 130, - "left": -40.78125, - "top": -2.811371, - "right": -39.375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 130, - "left": -39.375, - "top": -2.811371, - "right": -37.96875, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 103, - "y": 130, - "left": -35.15625, - "top": -2.811371, - "right": -33.75, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 104, - "y": 130, - "left": -33.75, - "top": -2.811371, - "right": -32.34375, - "bottom": -4.214943, - "countries": [ - "brazil" - ] - }, - { - "x": 76, - "y": 131, - "left": -73.125, - "top": -4.214943, - "right": -71.71875, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 131, - "left": -71.71875, - "top": -4.214943, - "right": -70.3125, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 78, - "y": 131, - "left": -70.3125, - "top": -4.214943, - "right": -68.90625, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 131, - "left": -68.90625, - "top": -4.214943, - "right": -67.5, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 131, - "left": -67.5, - "top": -4.214943, - "right": -66.09375, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 131, - "left": -66.09375, - "top": -4.214943, - "right": -64.6875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 131, - "left": -64.6875, - "top": -4.214943, - "right": -63.28125, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 131, - "left": -63.28125, - "top": -4.214943, - "right": -61.875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 131, - "left": -61.875, - "top": -4.214943, - "right": -60.46875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 131, - "left": -60.46875, - "top": -4.214943, - "right": -59.0625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 131, - "left": -59.0625, - "top": -4.214943, - "right": -57.65625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 131, - "left": -57.65625, - "top": -4.214943, - "right": -56.25, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 131, - "left": -56.25, - "top": -4.214943, - "right": -54.84375, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 131, - "left": -54.84375, - "top": -4.214943, - "right": -53.4375, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 131, - "left": -53.4375, - "top": -4.214943, - "right": -52.03125, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 131, - "left": -52.03125, - "top": -4.214943, - "right": -50.625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 131, - "left": -50.625, - "top": -4.214943, - "right": -49.21875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 131, - "left": -49.21875, - "top": -4.214943, - "right": -47.8125, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 131, - "left": -47.8125, - "top": -4.214943, - "right": -46.40625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 131, - "left": -46.40625, - "top": -4.214943, - "right": -45.0, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 131, - "left": -45.0, - "top": -4.214943, - "right": -43.59375, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 131, - "left": -43.59375, - "top": -4.214943, - "right": -42.1875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 131, - "left": -42.1875, - "top": -4.214943, - "right": -40.78125, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 131, - "left": -40.78125, - "top": -4.214943, - "right": -39.375, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 131, - "left": -39.375, - "top": -4.214943, - "right": -37.96875, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 131, - "left": -37.96875, - "top": -4.214943, - "right": -36.5625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 102, - "y": 131, - "left": -36.5625, - "top": -4.214943, - "right": -35.15625, - "bottom": -5.615986, - "countries": [ - "brazil" - ] - }, - { - "x": 75, - "y": 132, - "left": -74.53125, - "top": -5.615986, - "right": -73.125, - "bottom": -7.013668, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 132, - "left": -73.125, - "top": -5.615986, - "right": -71.71875, - "bottom": -7.013668, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 132, - "left": -71.71875, - "top": -5.615986, - "right": -70.3125, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 78, - "y": 132, - "left": -70.3125, - "top": -5.615986, - "right": -68.90625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 79, - "y": 132, - "left": -68.90625, - "top": -5.615986, - "right": -67.5, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 132, - "left": -67.5, - "top": -5.615986, - "right": -66.09375, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 132, - "left": -66.09375, - "top": -5.615986, - "right": -64.6875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 132, - "left": -64.6875, - "top": -5.615986, - "right": -63.28125, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 132, - "left": -63.28125, - "top": -5.615986, - "right": -61.875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 132, - "left": -61.875, - "top": -5.615986, - "right": -60.46875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 132, - "left": -60.46875, - "top": -5.615986, - "right": -59.0625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 132, - "left": -59.0625, - "top": -5.615986, - "right": -57.65625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 132, - "left": -57.65625, - "top": -5.615986, - "right": -56.25, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 132, - "left": -56.25, - "top": -5.615986, - "right": -54.84375, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 132, - "left": -54.84375, - "top": -5.615986, - "right": -53.4375, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 132, - "left": -53.4375, - "top": -5.615986, - "right": -52.03125, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 132, - "left": -52.03125, - "top": -5.615986, - "right": -50.625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 132, - "left": -50.625, - "top": -5.615986, - "right": -49.21875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 132, - "left": -49.21875, - "top": -5.615986, - "right": -47.8125, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 132, - "left": -47.8125, - "top": -5.615986, - "right": -46.40625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 132, - "left": -46.40625, - "top": -5.615986, - "right": -45.0, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 132, - "left": -45.0, - "top": -5.615986, - "right": -43.59375, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 132, - "left": -43.59375, - "top": -5.615986, - "right": -42.1875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 132, - "left": -42.1875, - "top": -5.615986, - "right": -40.78125, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 132, - "left": -40.78125, - "top": -5.615986, - "right": -39.375, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 132, - "left": -39.375, - "top": -5.615986, - "right": -37.96875, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 132, - "left": -37.96875, - "top": -5.615986, - "right": -36.5625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 102, - "y": 132, - "left": -36.5625, - "top": -5.615986, - "right": -35.15625, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 103, - "y": 132, - "left": -35.15625, - "top": -5.615986, - "right": -33.75, - "bottom": -7.013668, - "countries": [ - "brazil" - ] - }, - { - "x": 75, - "y": 133, - "left": -74.53125, - "top": -7.013668, - "right": -73.125, - "bottom": -8.407168, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 133, - "left": -73.125, - "top": -7.013668, - "right": -71.71875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 77, - "y": 133, - "left": -71.71875, - "top": -7.013668, - "right": -70.3125, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 78, - "y": 133, - "left": -70.3125, - "top": -7.013668, - "right": -68.90625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 79, - "y": 133, - "left": -68.90625, - "top": -7.013668, - "right": -67.5, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 80, - "y": 133, - "left": -67.5, - "top": -7.013668, - "right": -66.09375, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 81, - "y": 133, - "left": -66.09375, - "top": -7.013668, - "right": -64.6875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 133, - "left": -64.6875, - "top": -7.013668, - "right": -63.28125, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 133, - "left": -63.28125, - "top": -7.013668, - "right": -61.875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 133, - "left": -61.875, - "top": -7.013668, - "right": -60.46875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 133, - "left": -60.46875, - "top": -7.013668, - "right": -59.0625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 133, - "left": -59.0625, - "top": -7.013668, - "right": -57.65625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 133, - "left": -57.65625, - "top": -7.013668, - "right": -56.25, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 133, - "left": -56.25, - "top": -7.013668, - "right": -54.84375, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 133, - "left": -54.84375, - "top": -7.013668, - "right": -53.4375, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 133, - "left": -53.4375, - "top": -7.013668, - "right": -52.03125, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 133, - "left": -52.03125, - "top": -7.013668, - "right": -50.625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 133, - "left": -50.625, - "top": -7.013668, - "right": -49.21875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 133, - "left": -49.21875, - "top": -7.013668, - "right": -47.8125, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 133, - "left": -47.8125, - "top": -7.013668, - "right": -46.40625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 133, - "left": -46.40625, - "top": -7.013668, - "right": -45.0, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 133, - "left": -45.0, - "top": -7.013668, - "right": -43.59375, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 133, - "left": -43.59375, - "top": -7.013668, - "right": -42.1875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 133, - "left": -42.1875, - "top": -7.013668, - "right": -40.78125, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 133, - "left": -40.78125, - "top": -7.013668, - "right": -39.375, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 133, - "left": -39.375, - "top": -7.013668, - "right": -37.96875, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 133, - "left": -37.96875, - "top": -7.013668, - "right": -36.5625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 102, - "y": 133, - "left": -36.5625, - "top": -7.013668, - "right": -35.15625, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 103, - "y": 133, - "left": -35.15625, - "top": -7.013668, - "right": -33.75, - "bottom": -8.407168, - "countries": [ - "brazil" - ] - }, - { - "x": 75, - "y": 134, - "left": -74.53125, - "top": -8.407168, - "right": -73.125, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 134, - "left": -73.125, - "top": -8.407168, - "right": -71.71875, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 134, - "left": -71.71875, - "top": -8.407168, - "right": -70.3125, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 78, - "y": 134, - "left": -70.3125, - "top": -8.407168, - "right": -68.90625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 79, - "y": 134, - "left": -68.90625, - "top": -8.407168, - "right": -67.5, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 82, - "y": 134, - "left": -64.6875, - "top": -8.407168, - "right": -63.28125, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 134, - "left": -63.28125, - "top": -8.407168, - "right": -61.875, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 134, - "left": -61.875, - "top": -8.407168, - "right": -60.46875, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 134, - "left": -60.46875, - "top": -8.407168, - "right": -59.0625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 134, - "left": -59.0625, - "top": -8.407168, - "right": -57.65625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 134, - "left": -57.65625, - "top": -8.407168, - "right": -56.25, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 134, - "left": -56.25, - "top": -8.407168, - "right": -54.84375, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 134, - "left": -54.84375, - "top": -8.407168, - "right": -53.4375, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 134, - "left": -53.4375, - "top": -8.407168, - "right": -52.03125, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 134, - "left": -52.03125, - "top": -8.407168, - "right": -50.625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 134, - "left": -50.625, - "top": -8.407168, - "right": -49.21875, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 134, - "left": -49.21875, - "top": -8.407168, - "right": -47.8125, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 134, - "left": -47.8125, - "top": -8.407168, - "right": -46.40625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 134, - "left": -46.40625, - "top": -8.407168, - "right": -45.0, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 134, - "left": -45.0, - "top": -8.407168, - "right": -43.59375, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 134, - "left": -43.59375, - "top": -8.407168, - "right": -42.1875, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 134, - "left": -42.1875, - "top": -8.407168, - "right": -40.78125, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 134, - "left": -40.78125, - "top": -8.407168, - "right": -39.375, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 134, - "left": -39.375, - "top": -8.407168, - "right": -37.96875, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 134, - "left": -37.96875, - "top": -8.407168, - "right": -36.5625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 102, - "y": 134, - "left": -36.5625, - "top": -8.407168, - "right": -35.15625, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 103, - "y": 134, - "left": -35.15625, - "top": -8.407168, - "right": -33.75, - "bottom": -9.795678, - "countries": [ - "brazil" - ] - }, - { - "x": 76, - "y": 135, - "left": -73.125, - "top": -9.795678, - "right": -71.71875, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 135, - "left": -71.71875, - "top": -9.795678, - "right": -70.3125, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 82, - "y": 135, - "left": -64.6875, - "top": -9.795678, - "right": -63.28125, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 135, - "left": -63.28125, - "top": -9.795678, - "right": -61.875, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 135, - "left": -61.875, - "top": -9.795678, - "right": -60.46875, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 135, - "left": -60.46875, - "top": -9.795678, - "right": -59.0625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 135, - "left": -59.0625, - "top": -9.795678, - "right": -57.65625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 135, - "left": -57.65625, - "top": -9.795678, - "right": -56.25, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 135, - "left": -56.25, - "top": -9.795678, - "right": -54.84375, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 135, - "left": -54.84375, - "top": -9.795678, - "right": -53.4375, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 135, - "left": -53.4375, - "top": -9.795678, - "right": -52.03125, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 135, - "left": -52.03125, - "top": -9.795678, - "right": -50.625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 135, - "left": -50.625, - "top": -9.795678, - "right": -49.21875, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 135, - "left": -49.21875, - "top": -9.795678, - "right": -47.8125, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 135, - "left": -47.8125, - "top": -9.795678, - "right": -46.40625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 135, - "left": -46.40625, - "top": -9.795678, - "right": -45.0, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 135, - "left": -45.0, - "top": -9.795678, - "right": -43.59375, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 135, - "left": -43.59375, - "top": -9.795678, - "right": -42.1875, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 135, - "left": -42.1875, - "top": -9.795678, - "right": -40.78125, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 135, - "left": -40.78125, - "top": -9.795678, - "right": -39.375, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 135, - "left": -39.375, - "top": -9.795678, - "right": -37.96875, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 135, - "left": -37.96875, - "top": -9.795678, - "right": -36.5625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 102, - "y": 135, - "left": -36.5625, - "top": -9.795678, - "right": -35.15625, - "bottom": -11.178402, - "countries": [ - "brazil" - ] - }, - { - "x": 83, - "y": 136, - "left": -63.28125, - "top": -11.178402, - "right": -61.875, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 84, - "y": 136, - "left": -61.875, - "top": -11.178402, - "right": -60.46875, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 85, - "y": 136, - "left": -60.46875, - "top": -11.178402, - "right": -59.0625, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 136, - "left": -59.0625, - "top": -11.178402, - "right": -57.65625, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 136, - "left": -57.65625, - "top": -11.178402, - "right": -56.25, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 136, - "left": -56.25, - "top": -11.178402, - "right": -54.84375, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 136, - "left": -54.84375, - "top": -11.178402, - "right": -53.4375, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 136, - "left": -53.4375, - "top": -11.178402, - "right": -52.03125, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 136, - "left": -52.03125, - "top": -11.178402, - "right": -50.625, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 136, - "left": -50.625, - "top": -11.178402, - "right": -49.21875, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 136, - "left": -49.21875, - "top": -11.178402, - "right": -47.8125, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 136, - "left": -47.8125, - "top": -11.178402, - "right": -46.40625, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 136, - "left": -46.40625, - "top": -11.178402, - "right": -45.0, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 136, - "left": -45.0, - "top": -11.178402, - "right": -43.59375, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 136, - "left": -43.59375, - "top": -11.178402, - "right": -42.1875, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 136, - "left": -42.1875, - "top": -11.178402, - "right": -40.78125, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 136, - "left": -40.78125, - "top": -11.178402, - "right": -39.375, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 136, - "left": -39.375, - "top": -11.178402, - "right": -37.96875, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 101, - "y": 136, - "left": -37.96875, - "top": -11.178402, - "right": -36.5625, - "bottom": -12.554564, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 137, - "left": -59.0625, - "top": -12.554564, - "right": -57.65625, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 137, - "left": -57.65625, - "top": -12.554564, - "right": -56.25, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 137, - "left": -56.25, - "top": -12.554564, - "right": -54.84375, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 137, - "left": -54.84375, - "top": -12.554564, - "right": -53.4375, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 137, - "left": -53.4375, - "top": -12.554564, - "right": -52.03125, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 137, - "left": -52.03125, - "top": -12.554564, - "right": -50.625, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 137, - "left": -50.625, - "top": -12.554564, - "right": -49.21875, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 137, - "left": -49.21875, - "top": -12.554564, - "right": -47.8125, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 137, - "left": -47.8125, - "top": -12.554564, - "right": -46.40625, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 137, - "left": -46.40625, - "top": -12.554564, - "right": -45.0, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 137, - "left": -45.0, - "top": -12.554564, - "right": -43.59375, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 137, - "left": -43.59375, - "top": -12.554564, - "right": -42.1875, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 137, - "left": -42.1875, - "top": -12.554564, - "right": -40.78125, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 137, - "left": -40.78125, - "top": -12.554564, - "right": -39.375, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 137, - "left": -39.375, - "top": -12.554564, - "right": -37.96875, - "bottom": -13.923404, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 138, - "left": -59.0625, - "top": -13.923404, - "right": -57.65625, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 138, - "left": -57.65625, - "top": -13.923404, - "right": -56.25, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 138, - "left": -56.25, - "top": -13.923404, - "right": -54.84375, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 138, - "left": -54.84375, - "top": -13.923404, - "right": -53.4375, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 138, - "left": -53.4375, - "top": -13.923404, - "right": -52.03125, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 138, - "left": -52.03125, - "top": -13.923404, - "right": -50.625, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 138, - "left": -50.625, - "top": -13.923404, - "right": -49.21875, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 138, - "left": -49.21875, - "top": -13.923404, - "right": -47.8125, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 138, - "left": -47.8125, - "top": -13.923404, - "right": -46.40625, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 138, - "left": -46.40625, - "top": -13.923404, - "right": -45.0, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 138, - "left": -45.0, - "top": -13.923404, - "right": -43.59375, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 138, - "left": -43.59375, - "top": -13.923404, - "right": -42.1875, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 138, - "left": -42.1875, - "top": -13.923404, - "right": -40.78125, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 138, - "left": -40.78125, - "top": -13.923404, - "right": -39.375, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 138, - "left": -39.375, - "top": -13.923404, - "right": -37.96875, - "bottom": -15.284185, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 139, - "left": -57.65625, - "top": -15.284185, - "right": -56.25, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 139, - "left": -56.25, - "top": -15.284185, - "right": -54.84375, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 139, - "left": -54.84375, - "top": -15.284185, - "right": -53.4375, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 139, - "left": -53.4375, - "top": -15.284185, - "right": -52.03125, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 139, - "left": -52.03125, - "top": -15.284185, - "right": -50.625, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 139, - "left": -50.625, - "top": -15.284185, - "right": -49.21875, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 139, - "left": -49.21875, - "top": -15.284185, - "right": -47.8125, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 139, - "left": -47.8125, - "top": -15.284185, - "right": -46.40625, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 139, - "left": -46.40625, - "top": -15.284185, - "right": -45.0, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 139, - "left": -45.0, - "top": -15.284185, - "right": -43.59375, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 139, - "left": -43.59375, - "top": -15.284185, - "right": -42.1875, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 139, - "left": -42.1875, - "top": -15.284185, - "right": -40.78125, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 139, - "left": -40.78125, - "top": -15.284185, - "right": -39.375, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 139, - "left": -39.375, - "top": -15.284185, - "right": -37.96875, - "bottom": -16.636192, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 140, - "left": -56.25, - "top": -16.636192, - "right": -54.84375, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 140, - "left": -54.84375, - "top": -16.636192, - "right": -53.4375, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 140, - "left": -53.4375, - "top": -16.636192, - "right": -52.03125, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 140, - "left": -52.03125, - "top": -16.636192, - "right": -50.625, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 140, - "left": -50.625, - "top": -16.636192, - "right": -49.21875, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 140, - "left": -49.21875, - "top": -16.636192, - "right": -47.8125, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 140, - "left": -47.8125, - "top": -16.636192, - "right": -46.40625, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 140, - "left": -46.40625, - "top": -16.636192, - "right": -45.0, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 140, - "left": -45.0, - "top": -16.636192, - "right": -43.59375, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 140, - "left": -43.59375, - "top": -16.636192, - "right": -42.1875, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 140, - "left": -42.1875, - "top": -16.636192, - "right": -40.78125, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 140, - "left": -40.78125, - "top": -16.636192, - "right": -39.375, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 140, - "left": -39.375, - "top": -16.636192, - "right": -37.96875, - "bottom": -17.978733, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 141, - "left": -56.25, - "top": -17.978733, - "right": -54.84375, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 141, - "left": -54.84375, - "top": -17.978733, - "right": -53.4375, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 141, - "left": -53.4375, - "top": -17.978733, - "right": -52.03125, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 141, - "left": -52.03125, - "top": -17.978733, - "right": -50.625, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 141, - "left": -50.625, - "top": -17.978733, - "right": -49.21875, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 141, - "left": -49.21875, - "top": -17.978733, - "right": -47.8125, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 141, - "left": -47.8125, - "top": -17.978733, - "right": -46.40625, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 141, - "left": -46.40625, - "top": -17.978733, - "right": -45.0, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 141, - "left": -45.0, - "top": -17.978733, - "right": -43.59375, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 141, - "left": -43.59375, - "top": -17.978733, - "right": -42.1875, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 141, - "left": -42.1875, - "top": -17.978733, - "right": -40.78125, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 141, - "left": -40.78125, - "top": -17.978733, - "right": -39.375, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 100, - "y": 141, - "left": -39.375, - "top": -17.978733, - "right": -37.96875, - "bottom": -19.311143, - "countries": [ - "brazil" - ] - }, - { - "x": 87, - "y": 142, - "left": -57.65625, - "top": -19.311143, - "right": -56.25, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 142, - "left": -56.25, - "top": -19.311143, - "right": -54.84375, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 142, - "left": -54.84375, - "top": -19.311143, - "right": -53.4375, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 142, - "left": -53.4375, - "top": -19.311143, - "right": -52.03125, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 142, - "left": -52.03125, - "top": -19.311143, - "right": -50.625, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 142, - "left": -50.625, - "top": -19.311143, - "right": -49.21875, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 142, - "left": -49.21875, - "top": -19.311143, - "right": -47.8125, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 142, - "left": -47.8125, - "top": -19.311143, - "right": -46.40625, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 142, - "left": -46.40625, - "top": -19.311143, - "right": -45.0, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 142, - "left": -45.0, - "top": -19.311143, - "right": -43.59375, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 142, - "left": -43.59375, - "top": -19.311143, - "right": -42.1875, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 142, - "left": -42.1875, - "top": -19.311143, - "right": -40.78125, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 142, - "left": -40.78125, - "top": -19.311143, - "right": -39.375, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 107, - "y": 142, - "left": -29.53125, - "top": -19.311143, - "right": -28.125, - "bottom": -20.632784, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 143, - "left": -59.0625, - "top": -20.632784, - "right": -57.65625, - "bottom": -21.943046, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 87, - "y": 143, - "left": -57.65625, - "top": -20.632784, - "right": -56.25, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 143, - "left": -56.25, - "top": -20.632784, - "right": -54.84375, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 143, - "left": -54.84375, - "top": -20.632784, - "right": -53.4375, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 143, - "left": -53.4375, - "top": -20.632784, - "right": -52.03125, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 143, - "left": -52.03125, - "top": -20.632784, - "right": -50.625, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 143, - "left": -50.625, - "top": -20.632784, - "right": -49.21875, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 143, - "left": -49.21875, - "top": -20.632784, - "right": -47.8125, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 143, - "left": -47.8125, - "top": -20.632784, - "right": -46.40625, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 143, - "left": -46.40625, - "top": -20.632784, - "right": -45.0, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 143, - "left": -45.0, - "top": -20.632784, - "right": -43.59375, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 143, - "left": -43.59375, - "top": -20.632784, - "right": -42.1875, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 143, - "left": -42.1875, - "top": -20.632784, - "right": -40.78125, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 99, - "y": 143, - "left": -40.78125, - "top": -20.632784, - "right": -39.375, - "bottom": -21.943046, - "countries": [ - "brazil" - ] - }, - { - "x": 86, - "y": 144, - "left": -59.0625, - "top": -21.943046, - "right": -57.65625, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 87, - "y": 144, - "left": -57.65625, - "top": -21.943046, - "right": -56.25, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 88, - "y": 144, - "left": -56.25, - "top": -21.943046, - "right": -54.84375, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 89, - "y": 144, - "left": -54.84375, - "top": -21.943046, - "right": -53.4375, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 144, - "left": -53.4375, - "top": -21.943046, - "right": -52.03125, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 144, - "left": -52.03125, - "top": -21.943046, - "right": -50.625, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 144, - "left": -50.625, - "top": -21.943046, - "right": -49.21875, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 144, - "left": -49.21875, - "top": -21.943046, - "right": -47.8125, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 144, - "left": -47.8125, - "top": -21.943046, - "right": -46.40625, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 144, - "left": -46.40625, - "top": -21.943046, - "right": -45.0, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 144, - "left": -45.0, - "top": -21.943046, - "right": -43.59375, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 97, - "y": 144, - "left": -43.59375, - "top": -21.943046, - "right": -42.1875, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 98, - "y": 144, - "left": -42.1875, - "top": -21.943046, - "right": -40.78125, - "bottom": -23.241346, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 145, - "left": -56.25, - "top": -23.241346, - "right": -54.84375, - "bottom": -24.527135, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 89, - "y": 145, - "left": -54.84375, - "top": -23.241346, - "right": -53.4375, - "bottom": -24.527135, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 90, - "y": 145, - "left": -53.4375, - "top": -23.241346, - "right": -52.03125, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 145, - "left": -52.03125, - "top": -23.241346, - "right": -50.625, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 145, - "left": -50.625, - "top": -23.241346, - "right": -49.21875, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 145, - "left": -49.21875, - "top": -23.241346, - "right": -47.8125, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 145, - "left": -47.8125, - "top": -23.241346, - "right": -46.40625, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 95, - "y": 145, - "left": -46.40625, - "top": -23.241346, - "right": -45.0, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 96, - "y": 145, - "left": -45.0, - "top": -23.241346, - "right": -43.59375, - "bottom": -24.527135, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 146, - "left": -53.4375, - "top": -24.527135, - "right": -52.03125, - "bottom": -25.799891, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 146, - "left": -52.03125, - "top": -24.527135, - "right": -50.625, - "bottom": -25.799891, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 146, - "left": -50.625, - "top": -24.527135, - "right": -49.21875, - "bottom": -25.799891, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 146, - "left": -49.21875, - "top": -24.527135, - "right": -47.8125, - "bottom": -25.799891, - "countries": [ - "brazil" - ] - }, - { - "x": 94, - "y": 146, - "left": -47.8125, - "top": -24.527135, - "right": -46.40625, - "bottom": -25.799891, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 147, - "left": -53.4375, - "top": -25.799891, - "right": -52.03125, - "bottom": -27.059126, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 147, - "left": -52.03125, - "top": -25.799891, - "right": -50.625, - "bottom": -27.059126, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 147, - "left": -50.625, - "top": -25.799891, - "right": -49.21875, - "bottom": -27.059126, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 147, - "left": -49.21875, - "top": -25.799891, - "right": -47.8125, - "bottom": -27.059126, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 148, - "left": -53.4375, - "top": -27.059126, - "right": -52.03125, - "bottom": -28.304381, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 148, - "left": -52.03125, - "top": -27.059126, - "right": -50.625, - "bottom": -28.304381, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 148, - "left": -50.625, - "top": -27.059126, - "right": -49.21875, - "bottom": -28.304381, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 148, - "left": -49.21875, - "top": -27.059126, - "right": -47.8125, - "bottom": -28.304381, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 149, - "left": -54.84375, - "top": -28.304381, - "right": -53.4375, - "bottom": -29.53523, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 149, - "left": -53.4375, - "top": -28.304381, - "right": -52.03125, - "bottom": -29.53523, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 149, - "left": -52.03125, - "top": -28.304381, - "right": -50.625, - "bottom": -29.53523, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 149, - "left": -50.625, - "top": -28.304381, - "right": -49.21875, - "bottom": -29.53523, - "countries": [ - "brazil" - ] - }, - { - "x": 93, - "y": 149, - "left": -49.21875, - "top": -28.304381, - "right": -47.8125, - "bottom": -29.53523, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 150, - "left": -56.25, - "top": -29.53523, - "right": -54.84375, - "bottom": -30.751278, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 89, - "y": 150, - "left": -54.84375, - "top": -29.53523, - "right": -53.4375, - "bottom": -30.751278, - "countries": [ - "brazil" - ] - }, - { - "x": 90, - "y": 150, - "left": -53.4375, - "top": -29.53523, - "right": -52.03125, - "bottom": -30.751278, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 150, - "left": -52.03125, - "top": -29.53523, - "right": -50.625, - "bottom": -30.751278, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 150, - "left": -50.625, - "top": -29.53523, - "right": -49.21875, - "bottom": -30.751278, - "countries": [ - "brazil" - ] - }, - { - "x": 88, - "y": 151, - "left": -56.25, - "top": -30.751278, - "right": -54.84375, - "bottom": -31.952162, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 89, - "y": 151, - "left": -54.84375, - "top": -30.751278, - "right": -53.4375, - "bottom": -31.952162, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 90, - "y": 151, - "left": -53.4375, - "top": -30.751278, - "right": -52.03125, - "bottom": -31.952162, - "countries": [ - "brazil" - ] - }, - { - "x": 91, - "y": 151, - "left": -52.03125, - "top": -30.751278, - "right": -50.625, - "bottom": -31.952162, - "countries": [ - "brazil" - ] - }, - { - "x": 92, - "y": 151, - "left": -50.625, - "top": -30.751278, - "right": -49.21875, - "bottom": -31.952162, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 152, - "left": -54.84375, - "top": -31.952162, - "right": -53.4375, - "bottom": -33.137551, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 90, - "y": 152, - "left": -53.4375, - "top": -31.952162, - "right": -52.03125, - "bottom": -33.137551, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 91, - "y": 152, - "left": -52.03125, - "top": -31.952162, - "right": -50.625, - "bottom": -33.137551, - "countries": [ - "brazil" - ] - }, - { - "x": 89, - "y": 153, - "left": -54.84375, - "top": -33.137551, - "right": -53.4375, - "bottom": -34.307144, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 90, - "y": 153, - "left": -53.4375, - "top": -33.137551, - "right": -52.03125, - "bottom": -34.307144, - "countries": [ - "brazil", - "uruguay" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/chile.json b/wahoomc/resources/json/south_america/chile.json deleted file mode 100644 index 90558785..00000000 --- a/wahoomc/resources/json/south_america/chile.json +++ /dev/null @@ -1,1415 +0,0 @@ -[ - { - "x": 80, - "y": 144, - "left": -67.5, - "top": -21.943046, - "right": -66.09375, - "bottom": -23.241346, - "countries": [ - "chile", - "bolivia", - "argentina" - ] - }, - { - "x": 79, - "y": 145, - "left": -68.90625, - "top": -23.241346, - "right": -67.5, - "bottom": -24.527135, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 145, - "left": -67.5, - "top": -23.241346, - "right": -66.09375, - "bottom": -24.527135, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 146, - "left": -68.90625, - "top": -24.527135, - "right": -67.5, - "bottom": -25.799891, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 147, - "left": -68.90625, - "top": -25.799891, - "right": -67.5, - "bottom": -27.059126, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 148, - "left": -70.3125, - "top": -27.059126, - "right": -68.90625, - "bottom": -28.304381, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 148, - "left": -68.90625, - "top": -27.059126, - "right": -67.5, - "bottom": -28.304381, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 149, - "left": -70.3125, - "top": -28.304381, - "right": -68.90625, - "bottom": -29.53523, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 150, - "left": -70.3125, - "top": -29.53523, - "right": -68.90625, - "bottom": -30.751278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 151, - "left": -71.71875, - "top": -30.751278, - "right": -70.3125, - "bottom": -31.952162, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 151, - "left": -70.3125, - "top": -30.751278, - "right": -68.90625, - "bottom": -31.952162, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 152, - "left": -71.71875, - "top": -31.952162, - "right": -70.3125, - "bottom": -33.137551, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 152, - "left": -70.3125, - "top": -31.952162, - "right": -68.90625, - "bottom": -33.137551, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 153, - "left": -70.3125, - "top": -33.137551, - "right": -68.90625, - "bottom": -34.307144, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 154, - "left": -71.71875, - "top": -34.307144, - "right": -70.3125, - "bottom": -35.46067, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 154, - "left": -70.3125, - "top": -34.307144, - "right": -68.90625, - "bottom": -35.46067, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 155, - "left": -71.71875, - "top": -35.46067, - "right": -70.3125, - "bottom": -36.597889, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 156, - "left": -71.71875, - "top": -36.597889, - "right": -70.3125, - "bottom": -37.71859, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 157, - "left": -71.71875, - "top": -37.71859, - "right": -70.3125, - "bottom": -38.822591, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 158, - "left": -73.125, - "top": -38.822591, - "right": -71.71875, - "bottom": -39.909736, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 158, - "left": -71.71875, - "top": -38.822591, - "right": -70.3125, - "bottom": -39.909736, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 159, - "left": -73.125, - "top": -39.909736, - "right": -71.71875, - "bottom": -40.979898, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 159, - "left": -71.71875, - "top": -39.909736, - "right": -70.3125, - "bottom": -40.979898, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 160, - "left": -73.125, - "top": -40.979898, - "right": -71.71875, - "bottom": -42.032974, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 161, - "left": -73.125, - "top": -42.032974, - "right": -71.71875, - "bottom": -43.068888, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 162, - "left": -73.125, - "top": -43.068888, - "right": -71.71875, - "bottom": -44.087585, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 162, - "left": -71.71875, - "top": -43.068888, - "right": -70.3125, - "bottom": -44.087585, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 163, - "left": -73.125, - "top": -44.087585, - "right": -71.71875, - "bottom": -45.089036, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 163, - "left": -71.71875, - "top": -44.087585, - "right": -70.3125, - "bottom": -45.089036, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 164, - "left": -73.125, - "top": -45.089036, - "right": -71.71875, - "bottom": -46.073231, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 164, - "left": -71.71875, - "top": -45.089036, - "right": -70.3125, - "bottom": -46.073231, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 165, - "left": -73.125, - "top": -46.073231, - "right": -71.71875, - "bottom": -47.040182, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 165, - "left": -71.71875, - "top": -46.073231, - "right": -70.3125, - "bottom": -47.040182, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 166, - "left": -73.125, - "top": -47.040182, - "right": -71.71875, - "bottom": -47.989922, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 167, - "left": -73.125, - "top": -47.989922, - "right": -71.71875, - "bottom": -48.922499, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 75, - "y": 168, - "left": -74.53125, - "top": -48.922499, - "right": -73.125, - "bottom": -49.837982, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 168, - "left": -73.125, - "top": -48.922499, - "right": -71.71875, - "bottom": -49.837982, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 75, - "y": 169, - "left": -74.53125, - "top": -49.837982, - "right": -73.125, - "bottom": -50.736455, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 169, - "left": -73.125, - "top": -49.837982, - "right": -71.71875, - "bottom": -50.736455, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 75, - "y": 170, - "left": -74.53125, - "top": -50.736455, - "right": -73.125, - "bottom": -51.618017, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 170, - "left": -73.125, - "top": -50.736455, - "right": -71.71875, - "bottom": -51.618017, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 76, - "y": 171, - "left": -73.125, - "top": -51.618017, - "right": -71.71875, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 77, - "y": 171, - "left": -71.71875, - "top": -51.618017, - "right": -70.3125, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 171, - "left": -70.3125, - "top": -51.618017, - "right": -68.90625, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 171, - "left": -68.90625, - "top": -51.618017, - "right": -67.5, - "bottom": -52.48278, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 172, - "left": -68.90625, - "top": -52.48278, - "right": -67.5, - "bottom": -53.330873, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 173, - "left": -68.90625, - "top": -53.330873, - "right": -67.5, - "bottom": -54.162434, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 79, - "y": 174, - "left": -68.90625, - "top": -54.162434, - "right": -67.5, - "bottom": -54.977614, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 174, - "left": -67.5, - "top": -54.162434, - "right": -66.09375, - "bottom": -54.977614, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 80, - "y": 175, - "left": -67.5, - "top": -54.977614, - "right": -66.09375, - "bottom": -55.776573, - "countries": [ - "chile", - "argentina" - ] - }, - { - "x": 78, - "y": 140, - "left": -70.3125, - "top": -16.636192, - "right": -68.90625, - "bottom": -17.978733, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 78, - "y": 141, - "left": -70.3125, - "top": -17.978733, - "right": -68.90625, - "bottom": -19.311143, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 141, - "left": -68.90625, - "top": -17.978733, - "right": -67.5, - "bottom": -19.311143, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 142, - "left": -68.90625, - "top": -19.311143, - "right": -67.5, - "bottom": -20.632784, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 143, - "left": -68.90625, - "top": -20.632784, - "right": -67.5, - "bottom": -21.943046, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 79, - "y": 144, - "left": -68.90625, - "top": -21.943046, - "right": -67.5, - "bottom": -23.241346, - "countries": [ - "chile", - "bolivia" - ] - }, - { - "x": 77, - "y": 141, - "left": -71.71875, - "top": -17.978733, - "right": -70.3125, - "bottom": -19.311143, - "countries": [ - "peru", - "chile" - ] - }, - { - "x": 78, - "y": 142, - "left": -70.3125, - "top": -19.311143, - "right": -68.90625, - "bottom": -20.632784, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 143, - "left": -70.3125, - "top": -20.632784, - "right": -68.90625, - "bottom": -21.943046, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 144, - "left": -71.71875, - "top": -21.943046, - "right": -70.3125, - "bottom": -23.241346, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 144, - "left": -70.3125, - "top": -21.943046, - "right": -68.90625, - "bottom": -23.241346, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 145, - "left": -71.71875, - "top": -23.241346, - "right": -70.3125, - "bottom": -24.527135, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 145, - "left": -70.3125, - "top": -23.241346, - "right": -68.90625, - "bottom": -24.527135, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 146, - "left": -71.71875, - "top": -24.527135, - "right": -70.3125, - "bottom": -25.799891, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 146, - "left": -70.3125, - "top": -24.527135, - "right": -68.90625, - "bottom": -25.799891, - "countries": [ - "chile" - ] - }, - { - "x": 50, - "y": 147, - "left": -109.6875, - "top": -25.799891, - "right": -108.28125, - "bottom": -27.059126, - "countries": [ - "chile" - ] - }, - { - "x": 71, - "y": 147, - "left": -80.15625, - "top": -25.799891, - "right": -78.75, - "bottom": -27.059126, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 147, - "left": -71.71875, - "top": -25.799891, - "right": -70.3125, - "bottom": -27.059126, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 147, - "left": -70.3125, - "top": -25.799891, - "right": -68.90625, - "bottom": -27.059126, - "countries": [ - "chile" - ] - }, - { - "x": 50, - "y": 148, - "left": -109.6875, - "top": -27.059126, - "right": -108.28125, - "bottom": -28.304381, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 148, - "left": -71.71875, - "top": -27.059126, - "right": -70.3125, - "bottom": -28.304381, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 149, - "left": -71.71875, - "top": -28.304381, - "right": -70.3125, - "bottom": -29.53523, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 150, - "left": -71.71875, - "top": -29.53523, - "right": -70.3125, - "bottom": -30.751278, - "countries": [ - "chile" - ] - }, - { - "x": 64, - "y": 152, - "left": -90.0, - "top": -31.952162, - "right": -88.59375, - "bottom": -33.137551, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 152, - "left": -73.125, - "top": -31.952162, - "right": -71.71875, - "bottom": -33.137551, - "countries": [ - "chile" - ] - }, - { - "x": 70, - "y": 153, - "left": -81.5625, - "top": -33.137551, - "right": -80.15625, - "bottom": -34.307144, - "countries": [ - "chile" - ] - }, - { - "x": 71, - "y": 153, - "left": -80.15625, - "top": -33.137551, - "right": -78.75, - "bottom": -34.307144, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 153, - "left": -73.125, - "top": -33.137551, - "right": -71.71875, - "bottom": -34.307144, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 153, - "left": -71.71875, - "top": -33.137551, - "right": -70.3125, - "bottom": -34.307144, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 154, - "left": -73.125, - "top": -34.307144, - "right": -71.71875, - "bottom": -35.46067, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 155, - "left": -73.125, - "top": -35.46067, - "right": -71.71875, - "bottom": -36.597889, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 156, - "left": -74.53125, - "top": -36.597889, - "right": -73.125, - "bottom": -37.71859, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 156, - "left": -73.125, - "top": -36.597889, - "right": -71.71875, - "bottom": -37.71859, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 157, - "left": -74.53125, - "top": -37.71859, - "right": -73.125, - "bottom": -38.822591, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 157, - "left": -73.125, - "top": -37.71859, - "right": -71.71875, - "bottom": -38.822591, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 158, - "left": -74.53125, - "top": -38.822591, - "right": -73.125, - "bottom": -39.909736, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 159, - "left": -74.53125, - "top": -39.909736, - "right": -73.125, - "bottom": -40.979898, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 160, - "left": -74.53125, - "top": -40.979898, - "right": -73.125, - "bottom": -42.032974, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 161, - "left": -74.53125, - "top": -42.032974, - "right": -73.125, - "bottom": -43.068888, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 162, - "left": -75.9375, - "top": -43.068888, - "right": -74.53125, - "bottom": -44.087585, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 162, - "left": -74.53125, - "top": -43.068888, - "right": -73.125, - "bottom": -44.087585, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 163, - "left": -75.9375, - "top": -44.087585, - "right": -74.53125, - "bottom": -45.089036, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 163, - "left": -74.53125, - "top": -44.087585, - "right": -73.125, - "bottom": -45.089036, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 164, - "left": -75.9375, - "top": -45.089036, - "right": -74.53125, - "bottom": -46.073231, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 164, - "left": -74.53125, - "top": -45.089036, - "right": -73.125, - "bottom": -46.073231, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 165, - "left": -75.9375, - "top": -46.073231, - "right": -74.53125, - "bottom": -47.040182, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 165, - "left": -74.53125, - "top": -46.073231, - "right": -73.125, - "bottom": -47.040182, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 166, - "left": -75.9375, - "top": -47.040182, - "right": -74.53125, - "bottom": -47.989922, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 166, - "left": -74.53125, - "top": -47.040182, - "right": -73.125, - "bottom": -47.989922, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 167, - "left": -75.9375, - "top": -47.989922, - "right": -74.53125, - "bottom": -48.922499, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 167, - "left": -74.53125, - "top": -47.989922, - "right": -73.125, - "bottom": -48.922499, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 168, - "left": -75.9375, - "top": -48.922499, - "right": -74.53125, - "bottom": -49.837982, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 169, - "left": -75.9375, - "top": -49.837982, - "right": -74.53125, - "bottom": -50.736455, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 170, - "left": -75.9375, - "top": -50.736455, - "right": -74.53125, - "bottom": -51.618017, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 171, - "left": -75.9375, - "top": -51.618017, - "right": -74.53125, - "bottom": -52.48278, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 171, - "left": -74.53125, - "top": -51.618017, - "right": -73.125, - "bottom": -52.48278, - "countries": [ - "chile" - ] - }, - { - "x": 74, - "y": 172, - "left": -75.9375, - "top": -52.48278, - "right": -74.53125, - "bottom": -53.330873, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 172, - "left": -74.53125, - "top": -52.48278, - "right": -73.125, - "bottom": -53.330873, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 172, - "left": -73.125, - "top": -52.48278, - "right": -71.71875, - "bottom": -53.330873, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 172, - "left": -71.71875, - "top": -52.48278, - "right": -70.3125, - "bottom": -53.330873, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 172, - "left": -70.3125, - "top": -52.48278, - "right": -68.90625, - "bottom": -53.330873, - "countries": [ - "chile" - ] - }, - { - "x": 75, - "y": 173, - "left": -74.53125, - "top": -53.330873, - "right": -73.125, - "bottom": -54.162434, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 173, - "left": -73.125, - "top": -53.330873, - "right": -71.71875, - "bottom": -54.162434, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 173, - "left": -71.71875, - "top": -53.330873, - "right": -70.3125, - "bottom": -54.162434, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 173, - "left": -70.3125, - "top": -53.330873, - "right": -68.90625, - "bottom": -54.162434, - "countries": [ - "chile" - ] - }, - { - "x": 76, - "y": 174, - "left": -73.125, - "top": -54.162434, - "right": -71.71875, - "bottom": -54.977614, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 174, - "left": -71.71875, - "top": -54.162434, - "right": -70.3125, - "bottom": -54.977614, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 174, - "left": -70.3125, - "top": -54.162434, - "right": -68.90625, - "bottom": -54.977614, - "countries": [ - "chile" - ] - }, - { - "x": 77, - "y": 175, - "left": -71.71875, - "top": -54.977614, - "right": -70.3125, - "bottom": -55.776573, - "countries": [ - "chile" - ] - }, - { - "x": 78, - "y": 175, - "left": -70.3125, - "top": -54.977614, - "right": -68.90625, - "bottom": -55.776573, - "countries": [ - "chile" - ] - }, - { - "x": 79, - "y": 175, - "left": -68.90625, - "top": -54.977614, - "right": -67.5, - "bottom": -55.776573, - "countries": [ - "chile" - ] - }, - { - "x": 79, - "y": 176, - "left": -68.90625, - "top": -55.776573, - "right": -67.5, - "bottom": -56.559482, - "countries": [ - "chile" - ] - }, - { - "x": 80, - "y": 176, - "left": -67.5, - "top": -55.776573, - "right": -66.09375, - "bottom": -56.559482, - "countries": [ - "chile" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/clipperton_island.json b/wahoomc/resources/json/south_america/clipperton_island.json deleted file mode 100644 index 5e7e1058..00000000 --- a/wahoomc/resources/json/south_america/clipperton_island.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - { - "x": 50, - "y": 120, - "left": -109.6875, - "top": 11.178402, - "right": -108.28125, - "bottom": 9.795678, - "countries": [ - "clipperton_island" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/colombia.json b/wahoomc/resources/json/south_america/colombia.json deleted file mode 100644 index 2766f9c0..00000000 --- a/wahoomc/resources/json/south_america/colombia.json +++ /dev/null @@ -1,906 +0,0 @@ -[ - { - "x": 72, - "y": 121, - "left": -78.75, - "top": 9.795678, - "right": -77.34375, - "bottom": 8.407168, - "countries": [ - "panama", - "colombia" - ] - }, - { - "x": 72, - "y": 122, - "left": -78.75, - "top": 8.407168, - "right": -77.34375, - "bottom": 7.013668, - "countries": [ - "panama", - "colombia" - ] - }, - { - "x": 73, - "y": 122, - "left": -77.34375, - "top": 8.407168, - "right": -75.9375, - "bottom": 7.013668, - "countries": [ - "panama", - "colombia" - ] - }, - { - "x": 78, - "y": 126, - "left": -70.3125, - "top": 2.811371, - "right": -68.90625, - "bottom": 1.406109, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 79, - "y": 126, - "left": -68.90625, - "top": 2.811371, - "right": -67.5, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 126, - "left": -67.5, - "top": 2.811371, - "right": -66.09375, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 78, - "y": 127, - "left": -70.3125, - "top": 1.406109, - "right": -68.90625, - "bottom": 0.0, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 80, - "y": 127, - "left": -67.5, - "top": 1.406109, - "right": -66.09375, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 78, - "y": 128, - "left": -70.3125, - "top": 0.0, - "right": -68.90625, - "bottom": -1.406109, - "countries": [ - "brazil", - "colombia" - ] - }, - { - "x": 78, - "y": 129, - "left": -70.3125, - "top": -1.406109, - "right": -68.90625, - "bottom": -2.811371, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 77, - "y": 130, - "left": -71.71875, - "top": -2.811371, - "right": -70.3125, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 78, - "y": 130, - "left": -70.3125, - "top": -2.811371, - "right": -68.90625, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 78, - "y": 131, - "left": -70.3125, - "top": -4.214943, - "right": -68.90625, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 69, - "y": 118, - "left": -82.96875, - "top": 13.923404, - "right": -81.5625, - "bottom": 12.554564, - "countries": [ - "colombia" - ] - }, - { - "x": 70, - "y": 118, - "left": -81.5625, - "top": 13.923404, - "right": -80.15625, - "bottom": 12.554564, - "countries": [ - "colombia" - ] - }, - { - "x": 69, - "y": 119, - "left": -82.96875, - "top": 12.554564, - "right": -81.5625, - "bottom": 11.178402, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 119, - "left": -74.53125, - "top": 12.554564, - "right": -73.125, - "bottom": 11.178402, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 119, - "left": -73.125, - "top": 12.554564, - "right": -71.71875, - "bottom": 11.178402, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 119, - "left": -71.71875, - "top": 12.554564, - "right": -70.3125, - "bottom": 11.178402, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 74, - "y": 120, - "left": -75.9375, - "top": 11.178402, - "right": -74.53125, - "bottom": 9.795678, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 120, - "left": -74.53125, - "top": 11.178402, - "right": -73.125, - "bottom": 9.795678, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 120, - "left": -73.125, - "top": 11.178402, - "right": -71.71875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 73, - "y": 121, - "left": -77.34375, - "top": 9.795678, - "right": -75.9375, - "bottom": 8.407168, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 121, - "left": -75.9375, - "top": 9.795678, - "right": -74.53125, - "bottom": 8.407168, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 121, - "left": -74.53125, - "top": 9.795678, - "right": -73.125, - "bottom": 8.407168, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 76, - "y": 121, - "left": -73.125, - "top": 9.795678, - "right": -71.71875, - "bottom": 8.407168, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 74, - "y": 122, - "left": -75.9375, - "top": 8.407168, - "right": -74.53125, - "bottom": 7.013668, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 122, - "left": -74.53125, - "top": 8.407168, - "right": -73.125, - "bottom": 7.013668, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 122, - "left": -73.125, - "top": 8.407168, - "right": -71.71875, - "bottom": 7.013668, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 122, - "left": -71.71875, - "top": 8.407168, - "right": -70.3125, - "bottom": 7.013668, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 72, - "y": 123, - "left": -78.75, - "top": 7.013668, - "right": -77.34375, - "bottom": 5.615986, - "countries": [ - "colombia" - ] - }, - { - "x": 73, - "y": 123, - "left": -77.34375, - "top": 7.013668, - "right": -75.9375, - "bottom": 5.615986, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 123, - "left": -75.9375, - "top": 7.013668, - "right": -74.53125, - "bottom": 5.615986, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 123, - "left": -74.53125, - "top": 7.013668, - "right": -73.125, - "bottom": 5.615986, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 123, - "left": -73.125, - "top": 7.013668, - "right": -71.71875, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 123, - "left": -71.71875, - "top": 7.013668, - "right": -70.3125, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 78, - "y": 123, - "left": -70.3125, - "top": 7.013668, - "right": -68.90625, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 79, - "y": 123, - "left": -68.90625, - "top": 7.013668, - "right": -67.5, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 123, - "left": -67.5, - "top": 7.013668, - "right": -66.09375, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 72, - "y": 124, - "left": -78.75, - "top": 5.615986, - "right": -77.34375, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 73, - "y": 124, - "left": -77.34375, - "top": 5.615986, - "right": -75.9375, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 124, - "left": -75.9375, - "top": 5.615986, - "right": -74.53125, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 124, - "left": -74.53125, - "top": 5.615986, - "right": -73.125, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 124, - "left": -73.125, - "top": 5.615986, - "right": -71.71875, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 77, - "y": 124, - "left": -71.71875, - "top": 5.615986, - "right": -70.3125, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 78, - "y": 124, - "left": -70.3125, - "top": 5.615986, - "right": -68.90625, - "bottom": 4.214943, - "countries": [ - "colombia" - ] - }, - { - "x": 79, - "y": 124, - "left": -68.90625, - "top": 5.615986, - "right": -67.5, - "bottom": 4.214943, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 69, - "y": 125, - "left": -82.96875, - "top": 4.214943, - "right": -81.5625, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 72, - "y": 125, - "left": -78.75, - "top": 4.214943, - "right": -77.34375, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 73, - "y": 125, - "left": -77.34375, - "top": 4.214943, - "right": -75.9375, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 125, - "left": -75.9375, - "top": 4.214943, - "right": -74.53125, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 125, - "left": -74.53125, - "top": 4.214943, - "right": -73.125, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 125, - "left": -73.125, - "top": 4.214943, - "right": -71.71875, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 77, - "y": 125, - "left": -71.71875, - "top": 4.214943, - "right": -70.3125, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 78, - "y": 125, - "left": -70.3125, - "top": 4.214943, - "right": -68.90625, - "bottom": 2.811371, - "countries": [ - "colombia" - ] - }, - { - "x": 79, - "y": 125, - "left": -68.90625, - "top": 4.214943, - "right": -67.5, - "bottom": 2.811371, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 125, - "left": -67.5, - "top": 4.214943, - "right": -66.09375, - "bottom": 2.811371, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 71, - "y": 126, - "left": -80.15625, - "top": 2.811371, - "right": -78.75, - "bottom": 1.406109, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 72, - "y": 126, - "left": -78.75, - "top": 2.811371, - "right": -77.34375, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 73, - "y": 126, - "left": -77.34375, - "top": 2.811371, - "right": -75.9375, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 126, - "left": -75.9375, - "top": 2.811371, - "right": -74.53125, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 126, - "left": -74.53125, - "top": 2.811371, - "right": -73.125, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 126, - "left": -73.125, - "top": 2.811371, - "right": -71.71875, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 77, - "y": 126, - "left": -71.71875, - "top": 2.811371, - "right": -70.3125, - "bottom": 1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 71, - "y": 127, - "left": -80.15625, - "top": 1.406109, - "right": -78.75, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 72, - "y": 127, - "left": -78.75, - "top": 1.406109, - "right": -77.34375, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 73, - "y": 127, - "left": -77.34375, - "top": 1.406109, - "right": -75.9375, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 74, - "y": 127, - "left": -75.9375, - "top": 1.406109, - "right": -74.53125, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 75, - "y": 127, - "left": -74.53125, - "top": 1.406109, - "right": -73.125, - "bottom": 0.0, - "countries": [ - "colombia" - ] - }, - { - "x": 76, - "y": 127, - "left": -73.125, - "top": 1.406109, - "right": -71.71875, - "bottom": 0.0, - "countries": [ - "colombia" - ] - }, - { - "x": 77, - "y": 127, - "left": -71.71875, - "top": 1.406109, - "right": -70.3125, - "bottom": 0.0, - "countries": [ - "colombia" - ] - }, - { - "x": 74, - "y": 128, - "left": -75.9375, - "top": 0.0, - "right": -74.53125, - "bottom": -1.406109, - "countries": [ - "peru", - "ecuador", - "colombia" - ] - }, - { - "x": 75, - "y": 128, - "left": -74.53125, - "top": 0.0, - "right": -73.125, - "bottom": -1.406109, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 76, - "y": 128, - "left": -73.125, - "top": 0.0, - "right": -71.71875, - "bottom": -1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 77, - "y": 128, - "left": -71.71875, - "top": 0.0, - "right": -70.3125, - "bottom": -1.406109, - "countries": [ - "colombia" - ] - }, - { - "x": 75, - "y": 129, - "left": -74.53125, - "top": -1.406109, - "right": -73.125, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 76, - "y": 129, - "left": -73.125, - "top": -1.406109, - "right": -71.71875, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 77, - "y": 129, - "left": -71.71875, - "top": -1.406109, - "right": -70.3125, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/curacao.json b/wahoomc/resources/json/south_america/curacao.json deleted file mode 100644 index b2ff57ce..00000000 --- a/wahoomc/resources/json/south_america/curacao.json +++ /dev/null @@ -1,28 +0,0 @@ -[ - { - "x": 78, - "y": 119, - "left": -70.3125, - "top": 12.554564, - "right": -68.90625, - "bottom": 11.178402, - "countries": [ - "curacao", - "venezuela", - "aruba" - ] - }, - { - "x": 79, - "y": 119, - "left": -68.90625, - "top": 12.554564, - "right": -67.5, - "bottom": 11.178402, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "venezuela", - "curacao" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/ecuador.json b/wahoomc/resources/json/south_america/ecuador.json deleted file mode 100644 index d763ad29..00000000 --- a/wahoomc/resources/json/south_america/ecuador.json +++ /dev/null @@ -1,348 +0,0 @@ -[ - { - "x": 71, - "y": 126, - "left": -80.15625, - "top": 2.811371, - "right": -78.75, - "bottom": 1.406109, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 71, - "y": 127, - "left": -80.15625, - "top": 1.406109, - "right": -78.75, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 72, - "y": 127, - "left": -78.75, - "top": 1.406109, - "right": -77.34375, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 73, - "y": 127, - "left": -77.34375, - "top": 1.406109, - "right": -75.9375, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 74, - "y": 127, - "left": -75.9375, - "top": 1.406109, - "right": -74.53125, - "bottom": 0.0, - "countries": [ - "ecuador", - "colombia" - ] - }, - { - "x": 74, - "y": 128, - "left": -75.9375, - "top": 0.0, - "right": -74.53125, - "bottom": -1.406109, - "countries": [ - "peru", - "ecuador", - "colombia" - ] - }, - { - "x": 62, - "y": 126, - "left": -92.8125, - "top": 2.811371, - "right": -91.40625, - "bottom": 1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 62, - "y": 127, - "left": -92.8125, - "top": 1.406109, - "right": -91.40625, - "bottom": 0.0, - "countries": [ - "ecuador" - ] - }, - { - "x": 63, - "y": 127, - "left": -91.40625, - "top": 1.406109, - "right": -90.0, - "bottom": 0.0, - "countries": [ - "ecuador" - ] - }, - { - "x": 64, - "y": 127, - "left": -90.0, - "top": 1.406109, - "right": -88.59375, - "bottom": 0.0, - "countries": [ - "ecuador" - ] - }, - { - "x": 62, - "y": 128, - "left": -92.8125, - "top": 0.0, - "right": -91.40625, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 63, - "y": 128, - "left": -91.40625, - "top": 0.0, - "right": -90.0, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 64, - "y": 128, - "left": -90.0, - "top": 0.0, - "right": -88.59375, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 70, - "y": 128, - "left": -81.5625, - "top": 0.0, - "right": -80.15625, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 71, - "y": 128, - "left": -80.15625, - "top": 0.0, - "right": -78.75, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 72, - "y": 128, - "left": -78.75, - "top": 0.0, - "right": -77.34375, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 73, - "y": 128, - "left": -77.34375, - "top": 0.0, - "right": -75.9375, - "bottom": -1.406109, - "countries": [ - "ecuador" - ] - }, - { - "x": 64, - "y": 129, - "left": -90.0, - "top": -1.406109, - "right": -88.59375, - "bottom": -2.811371, - "countries": [ - "ecuador" - ] - }, - { - "x": 70, - "y": 129, - "left": -81.5625, - "top": -1.406109, - "right": -80.15625, - "bottom": -2.811371, - "countries": [ - "ecuador" - ] - }, - { - "x": 71, - "y": 129, - "left": -80.15625, - "top": -1.406109, - "right": -78.75, - "bottom": -2.811371, - "countries": [ - "ecuador" - ] - }, - { - "x": 72, - "y": 129, - "left": -78.75, - "top": -1.406109, - "right": -77.34375, - "bottom": -2.811371, - "countries": [ - "ecuador" - ] - }, - { - "x": 73, - "y": 129, - "left": -77.34375, - "top": -1.406109, - "right": -75.9375, - "bottom": -2.811371, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 74, - "y": 129, - "left": -75.9375, - "top": -1.406109, - "right": -74.53125, - "bottom": -2.811371, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 70, - "y": 130, - "left": -81.5625, - "top": -2.811371, - "right": -80.15625, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 71, - "y": 130, - "left": -80.15625, - "top": -2.811371, - "right": -78.75, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 72, - "y": 130, - "left": -78.75, - "top": -2.811371, - "right": -77.34375, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 73, - "y": 130, - "left": -77.34375, - "top": -2.811371, - "right": -75.9375, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 70, - "y": 131, - "left": -81.5625, - "top": -4.214943, - "right": -80.15625, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 71, - "y": 131, - "left": -80.15625, - "top": -4.214943, - "right": -78.75, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 72, - "y": 131, - "left": -78.75, - "top": -4.214943, - "right": -77.34375, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/falkland_islands.json b/wahoomc/resources/json/south_america/falkland_islands.json deleted file mode 100644 index 0f2926ad..00000000 --- a/wahoomc/resources/json/south_america/falkland_islands.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "x": 84, - "y": 170, - "left": -61.875, - "top": -50.736455, - "right": -60.46875, - "bottom": -51.618017, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 85, - "y": 170, - "left": -60.46875, - "top": -50.736455, - "right": -59.0625, - "bottom": -51.618017, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 86, - "y": 170, - "left": -59.0625, - "top": -50.736455, - "right": -57.65625, - "bottom": -51.618017, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 84, - "y": 171, - "left": -61.875, - "top": -51.618017, - "right": -60.46875, - "bottom": -52.48278, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 85, - "y": 171, - "left": -60.46875, - "top": -51.618017, - "right": -59.0625, - "bottom": -52.48278, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 86, - "y": 171, - "left": -59.0625, - "top": -51.618017, - "right": -57.65625, - "bottom": -52.48278, - "countries": [ - "falkland_islands" - ] - }, - { - "x": 85, - "y": 172, - "left": -60.46875, - "top": -52.48278, - "right": -59.0625, - "bottom": -53.330873, - "countries": [ - "falkland_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/french_guiana.json b/wahoomc/resources/json/south_america/french_guiana.json deleted file mode 100644 index 27e335a8..00000000 --- a/wahoomc/resources/json/south_america/french_guiana.json +++ /dev/null @@ -1,110 +0,0 @@ -[ - { - "x": 91, - "y": 124, - "left": -52.03125, - "top": 5.615986, - "right": -50.625, - "bottom": 4.214943, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 90, - "y": 125, - "left": -53.4375, - "top": 4.214943, - "right": -52.03125, - "bottom": 2.811371, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 91, - "y": 125, - "left": -52.03125, - "top": 4.214943, - "right": -50.625, - "bottom": 2.811371, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 89, - "y": 126, - "left": -54.84375, - "top": 2.811371, - "right": -53.4375, - "bottom": 1.406109, - "countries": [ - "brazil", - "suriname", - "french_guiana" - ] - }, - { - "x": 90, - "y": 126, - "left": -53.4375, - "top": 2.811371, - "right": -52.03125, - "bottom": 1.406109, - "countries": [ - "brazil", - "french_guiana" - ] - }, - { - "x": 89, - "y": 123, - "left": -54.84375, - "top": 7.013668, - "right": -53.4375, - "bottom": 5.615986, - "countries": [ - "suriname", - "french_guiana" - ] - }, - { - "x": 89, - "y": 124, - "left": -54.84375, - "top": 5.615986, - "right": -53.4375, - "bottom": 4.214943, - "countries": [ - "suriname", - "french_guiana" - ] - }, - { - "x": 90, - "y": 124, - "left": -53.4375, - "top": 5.615986, - "right": -52.03125, - "bottom": 4.214943, - "countries": [ - "french_guiana" - ] - }, - { - "x": 89, - "y": 125, - "left": -54.84375, - "top": 4.214943, - "right": -53.4375, - "bottom": 2.811371, - "countries": [ - "suriname", - "french_guiana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/guyana.json b/wahoomc/resources/json/south_america/guyana.json deleted file mode 100644 index 3faf7acb..00000000 --- a/wahoomc/resources/json/south_america/guyana.json +++ /dev/null @@ -1,242 +0,0 @@ -[ - { - "x": 84, - "y": 124, - "left": -61.875, - "top": 5.615986, - "right": -60.46875, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 124, - "left": -60.46875, - "top": 5.615986, - "right": -59.0625, - "bottom": 4.214943, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 85, - "y": 125, - "left": -60.46875, - "top": 4.214943, - "right": -59.0625, - "bottom": 2.811371, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 85, - "y": 126, - "left": -60.46875, - "top": 2.811371, - "right": -59.0625, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 86, - "y": 126, - "left": -59.0625, - "top": 2.811371, - "right": -57.65625, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 87, - "y": 126, - "left": -57.65625, - "top": 2.811371, - "right": -56.25, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana", - "suriname" - ] - }, - { - "x": 85, - "y": 127, - "left": -60.46875, - "top": 1.406109, - "right": -59.0625, - "bottom": 0.0, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 86, - "y": 127, - "left": -59.0625, - "top": 1.406109, - "right": -57.65625, - "bottom": 0.0, - "countries": [ - "brazil", - "guyana" - ] - }, - { - "x": 85, - "y": 121, - "left": -60.46875, - "top": 9.795678, - "right": -59.0625, - "bottom": 8.407168, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 84, - "y": 122, - "left": -61.875, - "top": 8.407168, - "right": -60.46875, - "bottom": 7.013668, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 122, - "left": -60.46875, - "top": 8.407168, - "right": -59.0625, - "bottom": 7.013668, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 86, - "y": 122, - "left": -59.0625, - "top": 8.407168, - "right": -57.65625, - "bottom": 7.013668, - "countries": [ - "guyana" - ] - }, - { - "x": 84, - "y": 123, - "left": -61.875, - "top": 7.013668, - "right": -60.46875, - "bottom": 5.615986, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 123, - "left": -60.46875, - "top": 7.013668, - "right": -59.0625, - "bottom": 5.615986, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 86, - "y": 123, - "left": -59.0625, - "top": 7.013668, - "right": -57.65625, - "bottom": 5.615986, - "countries": [ - "guyana" - ] - }, - { - "x": 87, - "y": 123, - "left": -57.65625, - "top": 7.013668, - "right": -56.25, - "bottom": 5.615986, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 86, - "y": 124, - "left": -59.0625, - "top": 5.615986, - "right": -57.65625, - "bottom": 4.214943, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 87, - "y": 124, - "left": -57.65625, - "top": 5.615986, - "right": -56.25, - "bottom": 4.214943, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 86, - "y": 125, - "left": -59.0625, - "top": 4.214943, - "right": -57.65625, - "bottom": 2.811371, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 87, - "y": 125, - "left": -57.65625, - "top": 4.214943, - "right": -56.25, - "bottom": 2.811371, - "countries": [ - "guyana", - "suriname" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/paraguay.json b/wahoomc/resources/json/south_america/paraguay.json deleted file mode 100644 index bfb59f7e..00000000 --- a/wahoomc/resources/json/south_america/paraguay.json +++ /dev/null @@ -1,396 +0,0 @@ -[ - { - "x": 83, - "y": 144, - "left": -63.28125, - "top": -21.943046, - "right": -61.875, - "bottom": -23.241346, - "countries": [ - "bolivia", - "argentina", - "paraguay" - ] - }, - { - "x": 84, - "y": 144, - "left": -61.875, - "top": -21.943046, - "right": -60.46875, - "bottom": -23.241346, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 84, - "y": 145, - "left": -61.875, - "top": -23.241346, - "right": -60.46875, - "bottom": -24.527135, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 85, - "y": 145, - "left": -60.46875, - "top": -23.241346, - "right": -59.0625, - "bottom": -24.527135, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 85, - "y": 146, - "left": -60.46875, - "top": -24.527135, - "right": -59.0625, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 86, - "y": 146, - "left": -59.0625, - "top": -24.527135, - "right": -57.65625, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 87, - "y": 146, - "left": -57.65625, - "top": -24.527135, - "right": -56.25, - "bottom": -25.799891, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 146, - "left": -54.84375, - "top": -24.527135, - "right": -53.4375, - "bottom": -25.799891, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 86, - "y": 147, - "left": -59.0625, - "top": -25.799891, - "right": -57.65625, - "bottom": -27.059126, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 88, - "y": 147, - "left": -56.25, - "top": -25.799891, - "right": -54.84375, - "bottom": -27.059126, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 89, - "y": 147, - "left": -54.84375, - "top": -25.799891, - "right": -53.4375, - "bottom": -27.059126, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 86, - "y": 148, - "left": -59.0625, - "top": -27.059126, - "right": -57.65625, - "bottom": -28.304381, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 87, - "y": 148, - "left": -57.65625, - "top": -27.059126, - "right": -56.25, - "bottom": -28.304381, - "countries": [ - "argentina", - "paraguay" - ] - }, - { - "x": 88, - "y": 148, - "left": -56.25, - "top": -27.059126, - "right": -54.84375, - "bottom": -28.304381, - "countries": [ - "brazil", - "argentina", - "paraguay" - ] - }, - { - "x": 85, - "y": 141, - "left": -60.46875, - "top": -17.978733, - "right": -59.0625, - "bottom": -19.311143, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 83, - "y": 142, - "left": -63.28125, - "top": -19.311143, - "right": -61.875, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 84, - "y": 142, - "left": -61.875, - "top": -19.311143, - "right": -60.46875, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 85, - "y": 142, - "left": -60.46875, - "top": -19.311143, - "right": -59.0625, - "bottom": -20.632784, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 86, - "y": 142, - "left": -59.0625, - "top": -19.311143, - "right": -57.65625, - "bottom": -20.632784, - "countries": [ - "brazil", - "bolivia", - "paraguay" - ] - }, - { - "x": 83, - "y": 143, - "left": -63.28125, - "top": -20.632784, - "right": -61.875, - "bottom": -21.943046, - "countries": [ - "bolivia", - "paraguay" - ] - }, - { - "x": 86, - "y": 143, - "left": -59.0625, - "top": -20.632784, - "right": -57.65625, - "bottom": -21.943046, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 86, - "y": 144, - "left": -59.0625, - "top": -21.943046, - "right": -57.65625, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 87, - "y": 144, - "left": -57.65625, - "top": -21.943046, - "right": -56.25, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 88, - "y": 144, - "left": -56.25, - "top": -21.943046, - "right": -54.84375, - "bottom": -23.241346, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 88, - "y": 145, - "left": -56.25, - "top": -23.241346, - "right": -54.84375, - "bottom": -24.527135, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 89, - "y": 145, - "left": -54.84375, - "top": -23.241346, - "right": -53.4375, - "bottom": -24.527135, - "countries": [ - "brazil", - "paraguay" - ] - }, - { - "x": 84, - "y": 143, - "left": -61.875, - "top": -20.632784, - "right": -60.46875, - "bottom": -21.943046, - "countries": [ - "paraguay" - ] - }, - { - "x": 85, - "y": 143, - "left": -60.46875, - "top": -20.632784, - "right": -59.0625, - "bottom": -21.943046, - "countries": [ - "paraguay" - ] - }, - { - "x": 85, - "y": 144, - "left": -60.46875, - "top": -21.943046, - "right": -59.0625, - "bottom": -23.241346, - "countries": [ - "paraguay" - ] - }, - { - "x": 86, - "y": 145, - "left": -59.0625, - "top": -23.241346, - "right": -57.65625, - "bottom": -24.527135, - "countries": [ - "paraguay" - ] - }, - { - "x": 87, - "y": 145, - "left": -57.65625, - "top": -23.241346, - "right": -56.25, - "bottom": -24.527135, - "countries": [ - "paraguay" - ] - }, - { - "x": 88, - "y": 146, - "left": -56.25, - "top": -24.527135, - "right": -54.84375, - "bottom": -25.799891, - "countries": [ - "paraguay" - ] - }, - { - "x": 87, - "y": 147, - "left": -57.65625, - "top": -25.799891, - "right": -56.25, - "bottom": -27.059126, - "countries": [ - "paraguay" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/peru.json b/wahoomc/resources/json/south_america/peru.json deleted file mode 100644 index 2886b220..00000000 --- a/wahoomc/resources/json/south_america/peru.json +++ /dev/null @@ -1,985 +0,0 @@ -[ - { - "x": 78, - "y": 135, - "left": -70.3125, - "top": -9.795678, - "right": -68.90625, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil", - "bolivia" - ] - }, - { - "x": 78, - "y": 136, - "left": -70.3125, - "top": -11.178402, - "right": -68.90625, - "bottom": -12.554564, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 136, - "left": -68.90625, - "top": -11.178402, - "right": -67.5, - "bottom": -12.554564, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 78, - "y": 137, - "left": -70.3125, - "top": -12.554564, - "right": -68.90625, - "bottom": -13.923404, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 137, - "left": -68.90625, - "top": -12.554564, - "right": -67.5, - "bottom": -13.923404, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 78, - "y": 138, - "left": -70.3125, - "top": -13.923404, - "right": -68.90625, - "bottom": -15.284185, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 138, - "left": -68.90625, - "top": -13.923404, - "right": -67.5, - "bottom": -15.284185, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 78, - "y": 139, - "left": -70.3125, - "top": -15.284185, - "right": -68.90625, - "bottom": -16.636192, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 79, - "y": 139, - "left": -68.90625, - "top": -15.284185, - "right": -67.5, - "bottom": -16.636192, - "countries": [ - "peru", - "bolivia" - ] - }, - { - "x": 78, - "y": 140, - "left": -70.3125, - "top": -16.636192, - "right": -68.90625, - "bottom": -17.978733, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 78, - "y": 141, - "left": -70.3125, - "top": -17.978733, - "right": -68.90625, - "bottom": -19.311143, - "countries": [ - "peru", - "chile", - "bolivia" - ] - }, - { - "x": 78, - "y": 129, - "left": -70.3125, - "top": -1.406109, - "right": -68.90625, - "bottom": -2.811371, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 77, - "y": 130, - "left": -71.71875, - "top": -2.811371, - "right": -70.3125, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 78, - "y": 130, - "left": -70.3125, - "top": -2.811371, - "right": -68.90625, - "bottom": -4.214943, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 76, - "y": 131, - "left": -73.125, - "top": -4.214943, - "right": -71.71875, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 131, - "left": -71.71875, - "top": -4.214943, - "right": -70.3125, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 78, - "y": 131, - "left": -70.3125, - "top": -4.214943, - "right": -68.90625, - "bottom": -5.615986, - "countries": [ - "peru", - "brazil", - "colombia" - ] - }, - { - "x": 75, - "y": 132, - "left": -74.53125, - "top": -5.615986, - "right": -73.125, - "bottom": -7.013668, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 132, - "left": -73.125, - "top": -5.615986, - "right": -71.71875, - "bottom": -7.013668, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 75, - "y": 133, - "left": -74.53125, - "top": -7.013668, - "right": -73.125, - "bottom": -8.407168, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 75, - "y": 134, - "left": -74.53125, - "top": -8.407168, - "right": -73.125, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 134, - "left": -73.125, - "top": -8.407168, - "right": -71.71875, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 134, - "left": -71.71875, - "top": -8.407168, - "right": -70.3125, - "bottom": -9.795678, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 76, - "y": 135, - "left": -73.125, - "top": -9.795678, - "right": -71.71875, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 135, - "left": -71.71875, - "top": -9.795678, - "right": -70.3125, - "bottom": -11.178402, - "countries": [ - "peru", - "brazil" - ] - }, - { - "x": 77, - "y": 141, - "left": -71.71875, - "top": -17.978733, - "right": -70.3125, - "bottom": -19.311143, - "countries": [ - "peru", - "chile" - ] - }, - { - "x": 74, - "y": 128, - "left": -75.9375, - "top": 0.0, - "right": -74.53125, - "bottom": -1.406109, - "countries": [ - "peru", - "ecuador", - "colombia" - ] - }, - { - "x": 75, - "y": 128, - "left": -74.53125, - "top": 0.0, - "right": -73.125, - "bottom": -1.406109, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 75, - "y": 129, - "left": -74.53125, - "top": -1.406109, - "right": -73.125, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 76, - "y": 129, - "left": -73.125, - "top": -1.406109, - "right": -71.71875, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 77, - "y": 129, - "left": -71.71875, - "top": -1.406109, - "right": -70.3125, - "bottom": -2.811371, - "countries": [ - "peru", - "colombia" - ] - }, - { - "x": 73, - "y": 129, - "left": -77.34375, - "top": -1.406109, - "right": -75.9375, - "bottom": -2.811371, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 74, - "y": 129, - "left": -75.9375, - "top": -1.406109, - "right": -74.53125, - "bottom": -2.811371, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 70, - "y": 130, - "left": -81.5625, - "top": -2.811371, - "right": -80.15625, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 71, - "y": 130, - "left": -80.15625, - "top": -2.811371, - "right": -78.75, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 72, - "y": 130, - "left": -78.75, - "top": -2.811371, - "right": -77.34375, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 73, - "y": 130, - "left": -77.34375, - "top": -2.811371, - "right": -75.9375, - "bottom": -4.214943, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 70, - "y": 131, - "left": -81.5625, - "top": -4.214943, - "right": -80.15625, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 71, - "y": 131, - "left": -80.15625, - "top": -4.214943, - "right": -78.75, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 72, - "y": 131, - "left": -78.75, - "top": -4.214943, - "right": -77.34375, - "bottom": -5.615986, - "countries": [ - "peru", - "ecuador" - ] - }, - { - "x": 74, - "y": 130, - "left": -75.9375, - "top": -2.811371, - "right": -74.53125, - "bottom": -4.214943, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 130, - "left": -74.53125, - "top": -2.811371, - "right": -73.125, - "bottom": -4.214943, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 130, - "left": -73.125, - "top": -2.811371, - "right": -71.71875, - "bottom": -4.214943, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 131, - "left": -77.34375, - "top": -4.214943, - "right": -75.9375, - "bottom": -5.615986, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 131, - "left": -75.9375, - "top": -4.214943, - "right": -74.53125, - "bottom": -5.615986, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 131, - "left": -74.53125, - "top": -4.214943, - "right": -73.125, - "bottom": -5.615986, - "countries": [ - "peru" - ] - }, - { - "x": 70, - "y": 132, - "left": -81.5625, - "top": -5.615986, - "right": -80.15625, - "bottom": -7.013668, - "countries": [ - "peru" - ] - }, - { - "x": 71, - "y": 132, - "left": -80.15625, - "top": -5.615986, - "right": -78.75, - "bottom": -7.013668, - "countries": [ - "peru" - ] - }, - { - "x": 72, - "y": 132, - "left": -78.75, - "top": -5.615986, - "right": -77.34375, - "bottom": -7.013668, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 132, - "left": -77.34375, - "top": -5.615986, - "right": -75.9375, - "bottom": -7.013668, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 132, - "left": -75.9375, - "top": -5.615986, - "right": -74.53125, - "bottom": -7.013668, - "countries": [ - "peru" - ] - }, - { - "x": 71, - "y": 133, - "left": -80.15625, - "top": -7.013668, - "right": -78.75, - "bottom": -8.407168, - "countries": [ - "peru" - ] - }, - { - "x": 72, - "y": 133, - "left": -78.75, - "top": -7.013668, - "right": -77.34375, - "bottom": -8.407168, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 133, - "left": -77.34375, - "top": -7.013668, - "right": -75.9375, - "bottom": -8.407168, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 133, - "left": -75.9375, - "top": -7.013668, - "right": -74.53125, - "bottom": -8.407168, - "countries": [ - "peru" - ] - }, - { - "x": 71, - "y": 134, - "left": -80.15625, - "top": -8.407168, - "right": -78.75, - "bottom": -9.795678, - "countries": [ - "peru" - ] - }, - { - "x": 72, - "y": 134, - "left": -78.75, - "top": -8.407168, - "right": -77.34375, - "bottom": -9.795678, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 134, - "left": -77.34375, - "top": -8.407168, - "right": -75.9375, - "bottom": -9.795678, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 134, - "left": -75.9375, - "top": -8.407168, - "right": -74.53125, - "bottom": -9.795678, - "countries": [ - "peru" - ] - }, - { - "x": 72, - "y": 135, - "left": -78.75, - "top": -9.795678, - "right": -77.34375, - "bottom": -11.178402, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 135, - "left": -77.34375, - "top": -9.795678, - "right": -75.9375, - "bottom": -11.178402, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 135, - "left": -75.9375, - "top": -9.795678, - "right": -74.53125, - "bottom": -11.178402, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 135, - "left": -74.53125, - "top": -9.795678, - "right": -73.125, - "bottom": -11.178402, - "countries": [ - "peru" - ] - }, - { - "x": 72, - "y": 136, - "left": -78.75, - "top": -11.178402, - "right": -77.34375, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 136, - "left": -77.34375, - "top": -11.178402, - "right": -75.9375, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 136, - "left": -75.9375, - "top": -11.178402, - "right": -74.53125, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 136, - "left": -74.53125, - "top": -11.178402, - "right": -73.125, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 136, - "left": -73.125, - "top": -11.178402, - "right": -71.71875, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 77, - "y": 136, - "left": -71.71875, - "top": -11.178402, - "right": -70.3125, - "bottom": -12.554564, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 137, - "left": -77.34375, - "top": -12.554564, - "right": -75.9375, - "bottom": -13.923404, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 137, - "left": -75.9375, - "top": -12.554564, - "right": -74.53125, - "bottom": -13.923404, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 137, - "left": -74.53125, - "top": -12.554564, - "right": -73.125, - "bottom": -13.923404, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 137, - "left": -73.125, - "top": -12.554564, - "right": -71.71875, - "bottom": -13.923404, - "countries": [ - "peru" - ] - }, - { - "x": 77, - "y": 137, - "left": -71.71875, - "top": -12.554564, - "right": -70.3125, - "bottom": -13.923404, - "countries": [ - "peru" - ] - }, - { - "x": 73, - "y": 138, - "left": -77.34375, - "top": -13.923404, - "right": -75.9375, - "bottom": -15.284185, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 138, - "left": -75.9375, - "top": -13.923404, - "right": -74.53125, - "bottom": -15.284185, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 138, - "left": -74.53125, - "top": -13.923404, - "right": -73.125, - "bottom": -15.284185, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 138, - "left": -73.125, - "top": -13.923404, - "right": -71.71875, - "bottom": -15.284185, - "countries": [ - "peru" - ] - }, - { - "x": 77, - "y": 138, - "left": -71.71875, - "top": -13.923404, - "right": -70.3125, - "bottom": -15.284185, - "countries": [ - "peru" - ] - }, - { - "x": 74, - "y": 139, - "left": -75.9375, - "top": -15.284185, - "right": -74.53125, - "bottom": -16.636192, - "countries": [ - "peru" - ] - }, - { - "x": 75, - "y": 139, - "left": -74.53125, - "top": -15.284185, - "right": -73.125, - "bottom": -16.636192, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 139, - "left": -73.125, - "top": -15.284185, - "right": -71.71875, - "bottom": -16.636192, - "countries": [ - "peru" - ] - }, - { - "x": 77, - "y": 139, - "left": -71.71875, - "top": -15.284185, - "right": -70.3125, - "bottom": -16.636192, - "countries": [ - "peru" - ] - }, - { - "x": 76, - "y": 140, - "left": -73.125, - "top": -16.636192, - "right": -71.71875, - "bottom": -17.978733, - "countries": [ - "peru" - ] - }, - { - "x": 77, - "y": 140, - "left": -71.71875, - "top": -16.636192, - "right": -70.3125, - "bottom": -17.978733, - "countries": [ - "peru" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/saint_pierre_and_miquelon.json b/wahoomc/resources/json/south_america/saint_pierre_and_miquelon.json deleted file mode 100644 index 03f7a70b..00000000 --- a/wahoomc/resources/json/south_america/saint_pierre_and_miquelon.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "x": 87, - "y": 89, - "left": -57.65625, - "top": 47.989922, - "right": -56.25, - "bottom": 47.040182, - "countries": [ - "saint_pierre_and_miquelon", - "canada" - ] - }, - { - "x": 88, - "y": 90, - "left": -56.25, - "top": 47.040182, - "right": -54.84375, - "bottom": 46.073231, - "countries": [ - "saint_pierre_and_miquelon", - "canada" - ] - }, - { - "x": 87, - "y": 90, - "left": -57.65625, - "top": 47.040182, - "right": -56.25, - "bottom": 46.073231, - "countries": [ - "saint_pierre_and_miquelon" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/suriname.json b/wahoomc/resources/json/south_america/suriname.json deleted file mode 100644 index 1bb56927..00000000 --- a/wahoomc/resources/json/south_america/suriname.json +++ /dev/null @@ -1,169 +0,0 @@ -[ - { - "x": 87, - "y": 126, - "left": -57.65625, - "top": 2.811371, - "right": -56.25, - "bottom": 1.406109, - "countries": [ - "brazil", - "guyana", - "suriname" - ] - }, - { - "x": 88, - "y": 126, - "left": -56.25, - "top": 2.811371, - "right": -54.84375, - "bottom": 1.406109, - "countries": [ - "brazil", - "suriname" - ] - }, - { - "x": 89, - "y": 126, - "left": -54.84375, - "top": 2.811371, - "right": -53.4375, - "bottom": 1.406109, - "countries": [ - "brazil", - "suriname", - "french_guiana" - ] - }, - { - "x": 89, - "y": 123, - "left": -54.84375, - "top": 7.013668, - "right": -53.4375, - "bottom": 5.615986, - "countries": [ - "suriname", - "french_guiana" - ] - }, - { - "x": 89, - "y": 124, - "left": -54.84375, - "top": 5.615986, - "right": -53.4375, - "bottom": 4.214943, - "countries": [ - "suriname", - "french_guiana" - ] - }, - { - "x": 89, - "y": 125, - "left": -54.84375, - "top": 4.214943, - "right": -53.4375, - "bottom": 2.811371, - "countries": [ - "suriname", - "french_guiana" - ] - }, - { - "x": 87, - "y": 123, - "left": -57.65625, - "top": 7.013668, - "right": -56.25, - "bottom": 5.615986, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 86, - "y": 124, - "left": -59.0625, - "top": 5.615986, - "right": -57.65625, - "bottom": 4.214943, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 87, - "y": 124, - "left": -57.65625, - "top": 5.615986, - "right": -56.25, - "bottom": 4.214943, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 86, - "y": 125, - "left": -59.0625, - "top": 4.214943, - "right": -57.65625, - "bottom": 2.811371, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 87, - "y": 125, - "left": -57.65625, - "top": 4.214943, - "right": -56.25, - "bottom": 2.811371, - "countries": [ - "guyana", - "suriname" - ] - }, - { - "x": 88, - "y": 123, - "left": -56.25, - "top": 7.013668, - "right": -54.84375, - "bottom": 5.615986, - "countries": [ - "suriname" - ] - }, - { - "x": 88, - "y": 124, - "left": -56.25, - "top": 5.615986, - "right": -54.84375, - "bottom": 4.214943, - "countries": [ - "suriname" - ] - }, - { - "x": 88, - "y": 125, - "left": -56.25, - "top": 4.214943, - "right": -54.84375, - "bottom": 2.811371, - "countries": [ - "suriname" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/trinidad_and_tobago.json b/wahoomc/resources/json/south_america/trinidad_and_tobago.json deleted file mode 100644 index 5ba953ee..00000000 --- a/wahoomc/resources/json/south_america/trinidad_and_tobago.json +++ /dev/null @@ -1,39 +0,0 @@ -[ - { - "x": 84, - "y": 119, - "left": -61.875, - "top": 12.554564, - "right": -60.46875, - "bottom": 11.178402, - "countries": [ - "grenada", - "saint_vincent_and_the_grenadines", - "trinidad_and_tobago" - ] - }, - { - "x": 83, - "y": 120, - "left": -63.28125, - "top": 11.178402, - "right": -61.875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "trinidad_and_tobago" - ] - }, - { - "x": 84, - "y": 120, - "left": -61.875, - "top": 11.178402, - "right": -60.46875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "trinidad_and_tobago" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/uruguay.json b/wahoomc/resources/json/south_america/uruguay.json deleted file mode 100644 index 4b12b619..00000000 --- a/wahoomc/resources/json/south_america/uruguay.json +++ /dev/null @@ -1,248 +0,0 @@ -[ - { - "x": 86, - "y": 150, - "left": -59.0625, - "top": -29.53523, - "right": -57.65625, - "bottom": -30.751278, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 87, - "y": 150, - "left": -57.65625, - "top": -29.53523, - "right": -56.25, - "bottom": -30.751278, - "countries": [ - "brazil", - "uruguay", - "argentina" - ] - }, - { - "x": 86, - "y": 151, - "left": -59.0625, - "top": -30.751278, - "right": -57.65625, - "bottom": -31.952162, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 86, - "y": 152, - "left": -59.0625, - "top": -31.952162, - "right": -57.65625, - "bottom": -33.137551, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 86, - "y": 153, - "left": -59.0625, - "top": -33.137551, - "right": -57.65625, - "bottom": -34.307144, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 86, - "y": 154, - "left": -59.0625, - "top": -34.307144, - "right": -57.65625, - "bottom": -35.46067, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 87, - "y": 154, - "left": -57.65625, - "top": -34.307144, - "right": -56.25, - "bottom": -35.46067, - "countries": [ - "uruguay", - "argentina" - ] - }, - { - "x": 88, - "y": 150, - "left": -56.25, - "top": -29.53523, - "right": -54.84375, - "bottom": -30.751278, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 88, - "y": 151, - "left": -56.25, - "top": -30.751278, - "right": -54.84375, - "bottom": -31.952162, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 89, - "y": 151, - "left": -54.84375, - "top": -30.751278, - "right": -53.4375, - "bottom": -31.952162, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 89, - "y": 152, - "left": -54.84375, - "top": -31.952162, - "right": -53.4375, - "bottom": -33.137551, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 90, - "y": 152, - "left": -53.4375, - "top": -31.952162, - "right": -52.03125, - "bottom": -33.137551, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 89, - "y": 153, - "left": -54.84375, - "top": -33.137551, - "right": -53.4375, - "bottom": -34.307144, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 90, - "y": 153, - "left": -53.4375, - "top": -33.137551, - "right": -52.03125, - "bottom": -34.307144, - "countries": [ - "brazil", - "uruguay" - ] - }, - { - "x": 87, - "y": 151, - "left": -57.65625, - "top": -30.751278, - "right": -56.25, - "bottom": -31.952162, - "countries": [ - "uruguay" - ] - }, - { - "x": 87, - "y": 152, - "left": -57.65625, - "top": -31.952162, - "right": -56.25, - "bottom": -33.137551, - "countries": [ - "uruguay" - ] - }, - { - "x": 88, - "y": 152, - "left": -56.25, - "top": -31.952162, - "right": -54.84375, - "bottom": -33.137551, - "countries": [ - "uruguay" - ] - }, - { - "x": 87, - "y": 153, - "left": -57.65625, - "top": -33.137551, - "right": -56.25, - "bottom": -34.307144, - "countries": [ - "uruguay" - ] - }, - { - "x": 88, - "y": 153, - "left": -56.25, - "top": -33.137551, - "right": -54.84375, - "bottom": -34.307144, - "countries": [ - "uruguay" - ] - }, - { - "x": 88, - "y": 154, - "left": -56.25, - "top": -34.307144, - "right": -54.84375, - "bottom": -35.46067, - "countries": [ - "uruguay" - ] - }, - { - "x": 89, - "y": 154, - "left": -54.84375, - "top": -34.307144, - "right": -53.4375, - "bottom": -35.46067, - "countries": [ - "uruguay" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/south_america/venezuela.json b/wahoomc/resources/json/south_america/venezuela.json deleted file mode 100644 index 6ac771d1..00000000 --- a/wahoomc/resources/json/south_america/venezuela.json +++ /dev/null @@ -1,782 +0,0 @@ -[ - { - "x": 78, - "y": 119, - "left": -70.3125, - "top": 12.554564, - "right": -68.90625, - "bottom": 11.178402, - "countries": [ - "curacao", - "venezuela", - "aruba" - ] - }, - { - "x": 79, - "y": 119, - "left": -68.90625, - "top": 12.554564, - "right": -67.5, - "bottom": 11.178402, - "countries": [ - "bonaire_saint_eustatius_and_saba", - "venezuela", - "curacao" - ] - }, - { - "x": 81, - "y": 124, - "left": -66.09375, - "top": 5.615986, - "right": -64.6875, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 124, - "left": -64.6875, - "top": 5.615986, - "right": -63.28125, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 84, - "y": 124, - "left": -61.875, - "top": 5.615986, - "right": -60.46875, - "bottom": 4.214943, - "countries": [ - "brazil", - "venezuela", - "guyana" - ] - }, - { - "x": 81, - "y": 125, - "left": -66.09375, - "top": 4.214943, - "right": -64.6875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 125, - "left": -64.6875, - "top": 4.214943, - "right": -63.28125, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 83, - "y": 125, - "left": -63.28125, - "top": 4.214943, - "right": -61.875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 84, - "y": 125, - "left": -61.875, - "top": 4.214943, - "right": -60.46875, - "bottom": 2.811371, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 79, - "y": 126, - "left": -68.90625, - "top": 2.811371, - "right": -67.5, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 126, - "left": -67.5, - "top": 2.811371, - "right": -66.09375, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 82, - "y": 126, - "left": -64.6875, - "top": 2.811371, - "right": -63.28125, - "bottom": 1.406109, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 80, - "y": 127, - "left": -67.5, - "top": 1.406109, - "right": -66.09375, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela", - "colombia" - ] - }, - { - "x": 81, - "y": 127, - "left": -66.09375, - "top": 1.406109, - "right": -64.6875, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 82, - "y": 127, - "left": -64.6875, - "top": 1.406109, - "right": -63.28125, - "bottom": 0.0, - "countries": [ - "brazil", - "venezuela" - ] - }, - { - "x": 76, - "y": 119, - "left": -73.125, - "top": 12.554564, - "right": -71.71875, - "bottom": 11.178402, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 119, - "left": -71.71875, - "top": 12.554564, - "right": -70.3125, - "bottom": 11.178402, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 76, - "y": 120, - "left": -73.125, - "top": 11.178402, - "right": -71.71875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 75, - "y": 121, - "left": -74.53125, - "top": 9.795678, - "right": -73.125, - "bottom": 8.407168, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 76, - "y": 121, - "left": -73.125, - "top": 9.795678, - "right": -71.71875, - "bottom": 8.407168, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 76, - "y": 122, - "left": -73.125, - "top": 8.407168, - "right": -71.71875, - "bottom": 7.013668, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 122, - "left": -71.71875, - "top": 8.407168, - "right": -70.3125, - "bottom": 7.013668, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 76, - "y": 123, - "left": -73.125, - "top": 7.013668, - "right": -71.71875, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 77, - "y": 123, - "left": -71.71875, - "top": 7.013668, - "right": -70.3125, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 78, - "y": 123, - "left": -70.3125, - "top": 7.013668, - "right": -68.90625, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 79, - "y": 123, - "left": -68.90625, - "top": 7.013668, - "right": -67.5, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 123, - "left": -67.5, - "top": 7.013668, - "right": -66.09375, - "bottom": 5.615986, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 79, - "y": 124, - "left": -68.90625, - "top": 5.615986, - "right": -67.5, - "bottom": 4.214943, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 79, - "y": 125, - "left": -68.90625, - "top": 4.214943, - "right": -67.5, - "bottom": 2.811371, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 80, - "y": 125, - "left": -67.5, - "top": 4.214943, - "right": -66.09375, - "bottom": 2.811371, - "countries": [ - "venezuela", - "colombia" - ] - }, - { - "x": 85, - "y": 121, - "left": -60.46875, - "top": 9.795678, - "right": -59.0625, - "bottom": 8.407168, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 84, - "y": 122, - "left": -61.875, - "top": 8.407168, - "right": -60.46875, - "bottom": 7.013668, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 122, - "left": -60.46875, - "top": 8.407168, - "right": -59.0625, - "bottom": 7.013668, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 84, - "y": 123, - "left": -61.875, - "top": 7.013668, - "right": -60.46875, - "bottom": 5.615986, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 85, - "y": 123, - "left": -60.46875, - "top": 7.013668, - "right": -59.0625, - "bottom": 5.615986, - "countries": [ - "venezuela", - "guyana" - ] - }, - { - "x": 83, - "y": 120, - "left": -63.28125, - "top": 11.178402, - "right": -61.875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "trinidad_and_tobago" - ] - }, - { - "x": 84, - "y": 120, - "left": -61.875, - "top": 11.178402, - "right": -60.46875, - "bottom": 9.795678, - "countries": [ - "venezuela", - "trinidad_and_tobago" - ] - }, - { - "x": 80, - "y": 119, - "left": -67.5, - "top": 12.554564, - "right": -66.09375, - "bottom": 11.178402, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 119, - "left": -66.09375, - "top": 12.554564, - "right": -64.6875, - "bottom": 11.178402, - "countries": [ - "venezuela" - ] - }, - { - "x": 82, - "y": 119, - "left": -64.6875, - "top": 12.554564, - "right": -63.28125, - "bottom": 11.178402, - "countries": [ - "venezuela" - ] - }, - { - "x": 83, - "y": 119, - "left": -63.28125, - "top": 12.554564, - "right": -61.875, - "bottom": 11.178402, - "countries": [ - "venezuela" - ] - }, - { - "x": 77, - "y": 120, - "left": -71.71875, - "top": 11.178402, - "right": -70.3125, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 78, - "y": 120, - "left": -70.3125, - "top": 11.178402, - "right": -68.90625, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 79, - "y": 120, - "left": -68.90625, - "top": 11.178402, - "right": -67.5, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 80, - "y": 120, - "left": -67.5, - "top": 11.178402, - "right": -66.09375, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 120, - "left": -66.09375, - "top": 11.178402, - "right": -64.6875, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 82, - "y": 120, - "left": -64.6875, - "top": 11.178402, - "right": -63.28125, - "bottom": 9.795678, - "countries": [ - "venezuela" - ] - }, - { - "x": 77, - "y": 121, - "left": -71.71875, - "top": 9.795678, - "right": -70.3125, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 78, - "y": 121, - "left": -70.3125, - "top": 9.795678, - "right": -68.90625, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 79, - "y": 121, - "left": -68.90625, - "top": 9.795678, - "right": -67.5, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 80, - "y": 121, - "left": -67.5, - "top": 9.795678, - "right": -66.09375, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 121, - "left": -66.09375, - "top": 9.795678, - "right": -64.6875, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 82, - "y": 121, - "left": -64.6875, - "top": 9.795678, - "right": -63.28125, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 83, - "y": 121, - "left": -63.28125, - "top": 9.795678, - "right": -61.875, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 84, - "y": 121, - "left": -61.875, - "top": 9.795678, - "right": -60.46875, - "bottom": 8.407168, - "countries": [ - "venezuela" - ] - }, - { - "x": 78, - "y": 122, - "left": -70.3125, - "top": 8.407168, - "right": -68.90625, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 79, - "y": 122, - "left": -68.90625, - "top": 8.407168, - "right": -67.5, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 80, - "y": 122, - "left": -67.5, - "top": 8.407168, - "right": -66.09375, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 122, - "left": -66.09375, - "top": 8.407168, - "right": -64.6875, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 82, - "y": 122, - "left": -64.6875, - "top": 8.407168, - "right": -63.28125, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 83, - "y": 122, - "left": -63.28125, - "top": 8.407168, - "right": -61.875, - "bottom": 7.013668, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 123, - "left": -66.09375, - "top": 7.013668, - "right": -64.6875, - "bottom": 5.615986, - "countries": [ - "venezuela" - ] - }, - { - "x": 82, - "y": 123, - "left": -64.6875, - "top": 7.013668, - "right": -63.28125, - "bottom": 5.615986, - "countries": [ - "venezuela" - ] - }, - { - "x": 83, - "y": 123, - "left": -63.28125, - "top": 7.013668, - "right": -61.875, - "bottom": 5.615986, - "countries": [ - "venezuela" - ] - }, - { - "x": 80, - "y": 124, - "left": -67.5, - "top": 5.615986, - "right": -66.09375, - "bottom": 4.214943, - "countries": [ - "venezuela" - ] - }, - { - "x": 83, - "y": 124, - "left": -63.28125, - "top": 5.615986, - "right": -61.875, - "bottom": 4.214943, - "countries": [ - "venezuela" - ] - }, - { - "x": 81, - "y": 126, - "left": -66.09375, - "top": 2.811371, - "right": -64.6875, - "bottom": 1.406109, - "countries": [ - "venezuela" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/alabama.json b/wahoomc/resources/json/united_states/alabama.json deleted file mode 100644 index 3f3ccb41..00000000 --- a/wahoomc/resources/json/united_states/alabama.json +++ /dev/null @@ -1,161 +0,0 @@ -[ - { - "x": 65, - "y": 101, - "left": -88.59375, - "top": 35.46067, - "right": -87.1875, - "bottom": 34.307144, - "countries": [ - "alabama", - "tennessee", - "mississippi" - ] - }, - { - "x": 66, - "y": 101, - "left": -87.1875, - "top": 35.46067, - "right": -85.78125, - "bottom": 34.307144, - "countries": [ - "alabama", - "tennessee" - ] - }, - { - "x": 67, - "y": 101, - "left": -85.78125, - "top": 35.46067, - "right": -84.375, - "bottom": 34.307144, - "countries": [ - "georgia", - "alabama", - "tennessee" - ] - }, - { - "x": 65, - "y": 102, - "left": -88.59375, - "top": 34.307144, - "right": -87.1875, - "bottom": 33.137551, - "countries": [ - "alabama", - "mississippi" - ] - }, - { - "x": 66, - "y": 102, - "left": -87.1875, - "top": 34.307144, - "right": -85.78125, - "bottom": 33.137551, - "countries": [ - "alabama" - ] - }, - { - "x": 67, - "y": 102, - "left": -85.78125, - "top": 34.307144, - "right": -84.375, - "bottom": 33.137551, - "countries": [ - "georgia", - "alabama" - ] - }, - { - "x": 65, - "y": 103, - "left": -88.59375, - "top": 33.137551, - "right": -87.1875, - "bottom": 31.952162, - "countries": [ - "alabama", - "mississippi" - ] - }, - { - "x": 66, - "y": 103, - "left": -87.1875, - "top": 33.137551, - "right": -85.78125, - "bottom": 31.952162, - "countries": [ - "alabama" - ] - }, - { - "x": 67, - "y": 103, - "left": -85.78125, - "top": 33.137551, - "right": -84.375, - "bottom": 31.952162, - "countries": [ - "georgia", - "alabama" - ] - }, - { - "x": 65, - "y": 104, - "left": -88.59375, - "top": 31.952162, - "right": -87.1875, - "bottom": 30.751278, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - }, - { - "x": 66, - "y": 104, - "left": -87.1875, - "top": 31.952162, - "right": -85.78125, - "bottom": 30.751278, - "countries": [ - "alabama", - "florida" - ] - }, - { - "x": 67, - "y": 104, - "left": -85.78125, - "top": 31.952162, - "right": -84.375, - "bottom": 30.751278, - "countries": [ - "georgia", - "alabama", - "florida" - ] - }, - { - "x": 65, - "y": 105, - "left": -88.59375, - "top": 30.751278, - "right": -87.1875, - "bottom": 29.53523, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/alaska.json b/wahoomc/resources/json/united_states/alaska.json deleted file mode 100644 index fe6daea1..00000000 --- a/wahoomc/resources/json/united_states/alaska.json +++ /dev/null @@ -1,5253 +0,0 @@ -[ - { - "x": 7, - "y": 65, - "left": -170.15625, - "top": 65.946472, - "right": -168.75, - "bottom": 65.366837, - "countries": [ - "russia", - "alaska" - ] - }, - { - "x": 27, - "y": 58, - "left": -142.03125, - "top": 69.657086, - "right": -140.625, - "bottom": 69.162558, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 59, - "left": -142.03125, - "top": 69.162558, - "right": -140.625, - "bottom": 68.656555, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 60, - "left": -142.03125, - "top": 68.656555, - "right": -140.625, - "bottom": 68.138852, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 61, - "left": -142.03125, - "top": 68.138852, - "right": -140.625, - "bottom": 67.609221, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 62, - "left": -142.03125, - "top": 67.609221, - "right": -140.625, - "bottom": 67.067433, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 63, - "left": -142.03125, - "top": 67.067433, - "right": -140.625, - "bottom": 66.51326, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 64, - "left": -142.03125, - "top": 66.51326, - "right": -140.625, - "bottom": 65.946472, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 65, - "left": -142.03125, - "top": 65.946472, - "right": -140.625, - "bottom": 65.366837, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 66, - "left": -142.03125, - "top": 65.366837, - "right": -140.625, - "bottom": 64.774125, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 67, - "left": -142.03125, - "top": 64.774125, - "right": -140.625, - "bottom": 64.168107, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 68, - "left": -142.03125, - "top": 64.168107, - "right": -140.625, - "bottom": 63.548552, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 69, - "left": -142.03125, - "top": 63.548552, - "right": -140.625, - "bottom": 62.915233, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 70, - "left": -142.03125, - "top": 62.915233, - "right": -140.625, - "bottom": 62.267923, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 71, - "left": -142.03125, - "top": 62.267923, - "right": -140.625, - "bottom": 61.606396, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 72, - "left": -142.03125, - "top": 61.606396, - "right": -140.625, - "bottom": 60.930432, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 27, - "y": 73, - "left": -142.03125, - "top": 60.930432, - "right": -140.625, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 73, - "left": -140.625, - "top": 60.930432, - "right": -139.21875, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 29, - "y": 73, - "left": -139.21875, - "top": 60.930432, - "right": -137.8125, - "bottom": 60.239811, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 28, - "y": 74, - "left": -140.625, - "top": 60.239811, - "right": -139.21875, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 29, - "y": 74, - "left": -139.21875, - "top": 60.239811, - "right": -137.8125, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 31, - "y": 74, - "left": -136.40625, - "top": 60.239811, - "right": -135.0, - "bottom": 59.534318, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 29, - "y": 75, - "left": -139.21875, - "top": 59.534318, - "right": -137.8125, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 30, - "y": 75, - "left": -137.8125, - "top": 59.534318, - "right": -136.40625, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 31, - "y": 75, - "left": -136.40625, - "top": 59.534318, - "right": -135.0, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 32, - "y": 75, - "left": -135.0, - "top": 59.534318, - "right": -133.59375, - "bottom": 58.813742, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 32, - "y": 76, - "left": -135.0, - "top": 58.813742, - "right": -133.59375, - "bottom": 58.077876, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 76, - "left": -133.59375, - "top": 58.813742, - "right": -132.1875, - "bottom": 58.077876, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 77, - "left": -133.59375, - "top": 58.077876, - "right": -132.1875, - "bottom": 57.326521, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 78, - "left": -133.59375, - "top": 57.326521, - "right": -132.1875, - "bottom": 56.559482, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 78, - "left": -132.1875, - "top": 57.326521, - "right": -130.78125, - "bottom": 56.559482, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 79, - "left": -132.1875, - "top": 56.559482, - "right": -130.78125, - "bottom": 55.776573, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 79, - "left": -130.78125, - "top": 56.559482, - "right": -129.375, - "bottom": 55.776573, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 80, - "left": -130.78125, - "top": 55.776573, - "right": -129.375, - "bottom": 54.977614, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 33, - "y": 81, - "left": -133.59375, - "top": 54.977614, - "right": -132.1875, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 34, - "y": 81, - "left": -132.1875, - "top": 54.977614, - "right": -130.78125, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 35, - "y": 81, - "left": -130.78125, - "top": 54.977614, - "right": -129.375, - "bottom": 54.162434, - "countries": [ - "alaska", - "canada" - ] - }, - { - "x": 16, - "y": 54, - "left": -157.5, - "top": 71.524909, - "right": -156.09375, - "bottom": 71.074056, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 54, - "left": -156.09375, - "top": 71.524909, - "right": -154.6875, - "bottom": 71.074056, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 55, - "left": -160.3125, - "top": 71.074056, - "right": -158.90625, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 55, - "left": -158.90625, - "top": 71.074056, - "right": -157.5, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 55, - "left": -157.5, - "top": 71.074056, - "right": -156.09375, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 55, - "left": -156.09375, - "top": 71.074056, - "right": -154.6875, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 55, - "left": -154.6875, - "top": 71.074056, - "right": -153.28125, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 55, - "left": -153.28125, - "top": 71.074056, - "right": -151.875, - "bottom": 70.612614, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 56, - "left": -163.125, - "top": 70.612614, - "right": -161.71875, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 56, - "left": -161.71875, - "top": 70.612614, - "right": -160.3125, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 56, - "left": -160.3125, - "top": 70.612614, - "right": -158.90625, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 56, - "left": -158.90625, - "top": 70.612614, - "right": -157.5, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 56, - "left": -157.5, - "top": 70.612614, - "right": -156.09375, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 56, - "left": -156.09375, - "top": 70.612614, - "right": -154.6875, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 56, - "left": -154.6875, - "top": 70.612614, - "right": -153.28125, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 56, - "left": -153.28125, - "top": 70.612614, - "right": -151.875, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 56, - "left": -151.875, - "top": 70.612614, - "right": -150.46875, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 56, - "left": -150.46875, - "top": 70.612614, - "right": -149.0625, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 56, - "left": -149.0625, - "top": 70.612614, - "right": -147.65625, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 56, - "left": -147.65625, - "top": 70.612614, - "right": -146.25, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 56, - "left": -146.25, - "top": 70.612614, - "right": -144.84375, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 56, - "left": -144.84375, - "top": 70.612614, - "right": -143.4375, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 56, - "left": -143.4375, - "top": 70.612614, - "right": -142.03125, - "bottom": 70.140364, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 57, - "left": -164.53125, - "top": 70.140364, - "right": -163.125, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 57, - "left": -163.125, - "top": 70.140364, - "right": -161.71875, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 57, - "left": -161.71875, - "top": 70.140364, - "right": -160.3125, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 57, - "left": -160.3125, - "top": 70.140364, - "right": -158.90625, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 57, - "left": -158.90625, - "top": 70.140364, - "right": -157.5, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 57, - "left": -157.5, - "top": 70.140364, - "right": -156.09375, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 57, - "left": -156.09375, - "top": 70.140364, - "right": -154.6875, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 57, - "left": -154.6875, - "top": 70.140364, - "right": -153.28125, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 57, - "left": -153.28125, - "top": 70.140364, - "right": -151.875, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 57, - "left": -151.875, - "top": 70.140364, - "right": -150.46875, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 57, - "left": -150.46875, - "top": 70.140364, - "right": -149.0625, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 57, - "left": -149.0625, - "top": 70.140364, - "right": -147.65625, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 57, - "left": -147.65625, - "top": 70.140364, - "right": -146.25, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 57, - "left": -146.25, - "top": 70.140364, - "right": -144.84375, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 57, - "left": -144.84375, - "top": 70.140364, - "right": -143.4375, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 57, - "left": -143.4375, - "top": 70.140364, - "right": -142.03125, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 27, - "y": 57, - "left": -142.03125, - "top": 70.140364, - "right": -140.625, - "bottom": 69.657086, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 58, - "left": -164.53125, - "top": 69.657086, - "right": -163.125, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 58, - "left": -163.125, - "top": 69.657086, - "right": -161.71875, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 58, - "left": -161.71875, - "top": 69.657086, - "right": -160.3125, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 58, - "left": -160.3125, - "top": 69.657086, - "right": -158.90625, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 58, - "left": -158.90625, - "top": 69.657086, - "right": -157.5, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 58, - "left": -157.5, - "top": 69.657086, - "right": -156.09375, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 58, - "left": -156.09375, - "top": 69.657086, - "right": -154.6875, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 58, - "left": -154.6875, - "top": 69.657086, - "right": -153.28125, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 58, - "left": -153.28125, - "top": 69.657086, - "right": -151.875, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 58, - "left": -151.875, - "top": 69.657086, - "right": -150.46875, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 58, - "left": -150.46875, - "top": 69.657086, - "right": -149.0625, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 58, - "left": -149.0625, - "top": 69.657086, - "right": -147.65625, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 58, - "left": -147.65625, - "top": 69.657086, - "right": -146.25, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 58, - "left": -146.25, - "top": 69.657086, - "right": -144.84375, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 58, - "left": -144.84375, - "top": 69.657086, - "right": -143.4375, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 58, - "left": -143.4375, - "top": 69.657086, - "right": -142.03125, - "bottom": 69.162558, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 59, - "left": -167.34375, - "top": 69.162558, - "right": -165.9375, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 59, - "left": -165.9375, - "top": 69.162558, - "right": -164.53125, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 59, - "left": -164.53125, - "top": 69.162558, - "right": -163.125, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 59, - "left": -163.125, - "top": 69.162558, - "right": -161.71875, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 59, - "left": -161.71875, - "top": 69.162558, - "right": -160.3125, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 59, - "left": -160.3125, - "top": 69.162558, - "right": -158.90625, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 59, - "left": -158.90625, - "top": 69.162558, - "right": -157.5, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 59, - "left": -157.5, - "top": 69.162558, - "right": -156.09375, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 59, - "left": -156.09375, - "top": 69.162558, - "right": -154.6875, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 59, - "left": -154.6875, - "top": 69.162558, - "right": -153.28125, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 59, - "left": -153.28125, - "top": 69.162558, - "right": -151.875, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 59, - "left": -151.875, - "top": 69.162558, - "right": -150.46875, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 59, - "left": -150.46875, - "top": 69.162558, - "right": -149.0625, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 59, - "left": -149.0625, - "top": 69.162558, - "right": -147.65625, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 59, - "left": -147.65625, - "top": 69.162558, - "right": -146.25, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 59, - "left": -146.25, - "top": 69.162558, - "right": -144.84375, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 59, - "left": -144.84375, - "top": 69.162558, - "right": -143.4375, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 59, - "left": -143.4375, - "top": 69.162558, - "right": -142.03125, - "bottom": 68.656555, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 60, - "left": -167.34375, - "top": 68.656555, - "right": -165.9375, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 60, - "left": -165.9375, - "top": 68.656555, - "right": -164.53125, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 60, - "left": -164.53125, - "top": 68.656555, - "right": -163.125, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 60, - "left": -163.125, - "top": 68.656555, - "right": -161.71875, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 60, - "left": -161.71875, - "top": 68.656555, - "right": -160.3125, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 60, - "left": -160.3125, - "top": 68.656555, - "right": -158.90625, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 60, - "left": -158.90625, - "top": 68.656555, - "right": -157.5, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 60, - "left": -157.5, - "top": 68.656555, - "right": -156.09375, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 60, - "left": -156.09375, - "top": 68.656555, - "right": -154.6875, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 60, - "left": -154.6875, - "top": 68.656555, - "right": -153.28125, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 60, - "left": -153.28125, - "top": 68.656555, - "right": -151.875, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 60, - "left": -151.875, - "top": 68.656555, - "right": -150.46875, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 60, - "left": -150.46875, - "top": 68.656555, - "right": -149.0625, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 60, - "left": -149.0625, - "top": 68.656555, - "right": -147.65625, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 60, - "left": -147.65625, - "top": 68.656555, - "right": -146.25, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 60, - "left": -146.25, - "top": 68.656555, - "right": -144.84375, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 60, - "left": -144.84375, - "top": 68.656555, - "right": -143.4375, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 60, - "left": -143.4375, - "top": 68.656555, - "right": -142.03125, - "bottom": 68.138852, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 61, - "left": -167.34375, - "top": 68.138852, - "right": -165.9375, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 61, - "left": -165.9375, - "top": 68.138852, - "right": -164.53125, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 61, - "left": -164.53125, - "top": 68.138852, - "right": -163.125, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 61, - "left": -163.125, - "top": 68.138852, - "right": -161.71875, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 61, - "left": -161.71875, - "top": 68.138852, - "right": -160.3125, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 61, - "left": -160.3125, - "top": 68.138852, - "right": -158.90625, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 61, - "left": -158.90625, - "top": 68.138852, - "right": -157.5, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 61, - "left": -157.5, - "top": 68.138852, - "right": -156.09375, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 61, - "left": -156.09375, - "top": 68.138852, - "right": -154.6875, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 61, - "left": -154.6875, - "top": 68.138852, - "right": -153.28125, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 61, - "left": -153.28125, - "top": 68.138852, - "right": -151.875, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 61, - "left": -151.875, - "top": 68.138852, - "right": -150.46875, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 61, - "left": -150.46875, - "top": 68.138852, - "right": -149.0625, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 61, - "left": -149.0625, - "top": 68.138852, - "right": -147.65625, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 61, - "left": -147.65625, - "top": 68.138852, - "right": -146.25, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 61, - "left": -146.25, - "top": 68.138852, - "right": -144.84375, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 61, - "left": -144.84375, - "top": 68.138852, - "right": -143.4375, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 61, - "left": -143.4375, - "top": 68.138852, - "right": -142.03125, - "bottom": 67.609221, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 62, - "left": -164.53125, - "top": 67.609221, - "right": -163.125, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 62, - "left": -163.125, - "top": 67.609221, - "right": -161.71875, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 62, - "left": -161.71875, - "top": 67.609221, - "right": -160.3125, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 62, - "left": -160.3125, - "top": 67.609221, - "right": -158.90625, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 62, - "left": -158.90625, - "top": 67.609221, - "right": -157.5, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 62, - "left": -157.5, - "top": 67.609221, - "right": -156.09375, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 62, - "left": -156.09375, - "top": 67.609221, - "right": -154.6875, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 62, - "left": -154.6875, - "top": 67.609221, - "right": -153.28125, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 62, - "left": -153.28125, - "top": 67.609221, - "right": -151.875, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 62, - "left": -151.875, - "top": 67.609221, - "right": -150.46875, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 62, - "left": -150.46875, - "top": 67.609221, - "right": -149.0625, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 62, - "left": -149.0625, - "top": 67.609221, - "right": -147.65625, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 62, - "left": -147.65625, - "top": 67.609221, - "right": -146.25, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 62, - "left": -146.25, - "top": 67.609221, - "right": -144.84375, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 62, - "left": -144.84375, - "top": 67.609221, - "right": -143.4375, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 62, - "left": -143.4375, - "top": 67.609221, - "right": -142.03125, - "bottom": 67.067433, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 63, - "left": -165.9375, - "top": 67.067433, - "right": -164.53125, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 63, - "left": -164.53125, - "top": 67.067433, - "right": -163.125, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 63, - "left": -163.125, - "top": 67.067433, - "right": -161.71875, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 63, - "left": -161.71875, - "top": 67.067433, - "right": -160.3125, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 63, - "left": -160.3125, - "top": 67.067433, - "right": -158.90625, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 63, - "left": -158.90625, - "top": 67.067433, - "right": -157.5, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 63, - "left": -157.5, - "top": 67.067433, - "right": -156.09375, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 63, - "left": -156.09375, - "top": 67.067433, - "right": -154.6875, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 63, - "left": -154.6875, - "top": 67.067433, - "right": -153.28125, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 63, - "left": -153.28125, - "top": 67.067433, - "right": -151.875, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 63, - "left": -151.875, - "top": 67.067433, - "right": -150.46875, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 63, - "left": -150.46875, - "top": 67.067433, - "right": -149.0625, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 63, - "left": -149.0625, - "top": 67.067433, - "right": -147.65625, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 63, - "left": -147.65625, - "top": 67.067433, - "right": -146.25, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 63, - "left": -146.25, - "top": 67.067433, - "right": -144.84375, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 63, - "left": -144.84375, - "top": 67.067433, - "right": -143.4375, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 63, - "left": -143.4375, - "top": 67.067433, - "right": -142.03125, - "bottom": 66.51326, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 64, - "left": -167.34375, - "top": 66.51326, - "right": -165.9375, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 64, - "left": -165.9375, - "top": 66.51326, - "right": -164.53125, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 64, - "left": -164.53125, - "top": 66.51326, - "right": -163.125, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 64, - "left": -163.125, - "top": 66.51326, - "right": -161.71875, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 64, - "left": -161.71875, - "top": 66.51326, - "right": -160.3125, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 64, - "left": -160.3125, - "top": 66.51326, - "right": -158.90625, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 64, - "left": -158.90625, - "top": 66.51326, - "right": -157.5, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 64, - "left": -157.5, - "top": 66.51326, - "right": -156.09375, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 64, - "left": -156.09375, - "top": 66.51326, - "right": -154.6875, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 64, - "left": -154.6875, - "top": 66.51326, - "right": -153.28125, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 64, - "left": -153.28125, - "top": 66.51326, - "right": -151.875, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 64, - "left": -151.875, - "top": 66.51326, - "right": -150.46875, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 64, - "left": -150.46875, - "top": 66.51326, - "right": -149.0625, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 64, - "left": -149.0625, - "top": 66.51326, - "right": -147.65625, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 64, - "left": -147.65625, - "top": 66.51326, - "right": -146.25, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 64, - "left": -146.25, - "top": 66.51326, - "right": -144.84375, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 64, - "left": -144.84375, - "top": 66.51326, - "right": -143.4375, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 64, - "left": -143.4375, - "top": 66.51326, - "right": -142.03125, - "bottom": 65.946472, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 65, - "left": -168.75, - "top": 65.946472, - "right": -167.34375, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 65, - "left": -167.34375, - "top": 65.946472, - "right": -165.9375, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 65, - "left": -165.9375, - "top": 65.946472, - "right": -164.53125, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 65, - "left": -164.53125, - "top": 65.946472, - "right": -163.125, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 65, - "left": -163.125, - "top": 65.946472, - "right": -161.71875, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 65, - "left": -161.71875, - "top": 65.946472, - "right": -160.3125, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 65, - "left": -160.3125, - "top": 65.946472, - "right": -158.90625, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 65, - "left": -158.90625, - "top": 65.946472, - "right": -157.5, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 65, - "left": -157.5, - "top": 65.946472, - "right": -156.09375, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 65, - "left": -156.09375, - "top": 65.946472, - "right": -154.6875, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 65, - "left": -154.6875, - "top": 65.946472, - "right": -153.28125, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 65, - "left": -153.28125, - "top": 65.946472, - "right": -151.875, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 65, - "left": -151.875, - "top": 65.946472, - "right": -150.46875, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 65, - "left": -150.46875, - "top": 65.946472, - "right": -149.0625, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 65, - "left": -149.0625, - "top": 65.946472, - "right": -147.65625, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 65, - "left": -147.65625, - "top": 65.946472, - "right": -146.25, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 65, - "left": -146.25, - "top": 65.946472, - "right": -144.84375, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 65, - "left": -144.84375, - "top": 65.946472, - "right": -143.4375, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 65, - "left": -143.4375, - "top": 65.946472, - "right": -142.03125, - "bottom": 65.366837, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 66, - "left": -168.75, - "top": 65.366837, - "right": -167.34375, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 66, - "left": -167.34375, - "top": 65.366837, - "right": -165.9375, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 66, - "left": -165.9375, - "top": 65.366837, - "right": -164.53125, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 66, - "left": -164.53125, - "top": 65.366837, - "right": -163.125, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 66, - "left": -163.125, - "top": 65.366837, - "right": -161.71875, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 66, - "left": -161.71875, - "top": 65.366837, - "right": -160.3125, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 66, - "left": -160.3125, - "top": 65.366837, - "right": -158.90625, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 66, - "left": -158.90625, - "top": 65.366837, - "right": -157.5, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 66, - "left": -157.5, - "top": 65.366837, - "right": -156.09375, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 66, - "left": -156.09375, - "top": 65.366837, - "right": -154.6875, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 66, - "left": -154.6875, - "top": 65.366837, - "right": -153.28125, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 66, - "left": -153.28125, - "top": 65.366837, - "right": -151.875, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 66, - "left": -151.875, - "top": 65.366837, - "right": -150.46875, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 66, - "left": -150.46875, - "top": 65.366837, - "right": -149.0625, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 66, - "left": -149.0625, - "top": 65.366837, - "right": -147.65625, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 66, - "left": -147.65625, - "top": 65.366837, - "right": -146.25, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 66, - "left": -146.25, - "top": 65.366837, - "right": -144.84375, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 66, - "left": -144.84375, - "top": 65.366837, - "right": -143.4375, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 66, - "left": -143.4375, - "top": 65.366837, - "right": -142.03125, - "bottom": 64.774125, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 67, - "left": -167.34375, - "top": 64.774125, - "right": -165.9375, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 67, - "left": -165.9375, - "top": 64.774125, - "right": -164.53125, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 67, - "left": -164.53125, - "top": 64.774125, - "right": -163.125, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 67, - "left": -163.125, - "top": 64.774125, - "right": -161.71875, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 67, - "left": -161.71875, - "top": 64.774125, - "right": -160.3125, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 67, - "left": -160.3125, - "top": 64.774125, - "right": -158.90625, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 67, - "left": -158.90625, - "top": 64.774125, - "right": -157.5, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 67, - "left": -157.5, - "top": 64.774125, - "right": -156.09375, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 67, - "left": -156.09375, - "top": 64.774125, - "right": -154.6875, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 67, - "left": -154.6875, - "top": 64.774125, - "right": -153.28125, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 67, - "left": -153.28125, - "top": 64.774125, - "right": -151.875, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 67, - "left": -151.875, - "top": 64.774125, - "right": -150.46875, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 67, - "left": -150.46875, - "top": 64.774125, - "right": -149.0625, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 67, - "left": -149.0625, - "top": 64.774125, - "right": -147.65625, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 67, - "left": -147.65625, - "top": 64.774125, - "right": -146.25, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 67, - "left": -146.25, - "top": 64.774125, - "right": -144.84375, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 67, - "left": -144.84375, - "top": 64.774125, - "right": -143.4375, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 67, - "left": -143.4375, - "top": 64.774125, - "right": -142.03125, - "bottom": 64.168107, - "countries": [ - "alaska" - ] - }, - { - "x": 5, - "y": 68, - "left": -172.96875, - "top": 64.168107, - "right": -171.5625, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 6, - "y": 68, - "left": -171.5625, - "top": 64.168107, - "right": -170.15625, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 7, - "y": 68, - "left": -170.15625, - "top": 64.168107, - "right": -168.75, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 68, - "left": -163.125, - "top": 64.168107, - "right": -161.71875, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 68, - "left": -161.71875, - "top": 64.168107, - "right": -160.3125, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 68, - "left": -160.3125, - "top": 64.168107, - "right": -158.90625, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 68, - "left": -158.90625, - "top": 64.168107, - "right": -157.5, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 68, - "left": -157.5, - "top": 64.168107, - "right": -156.09375, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 68, - "left": -156.09375, - "top": 64.168107, - "right": -154.6875, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 68, - "left": -154.6875, - "top": 64.168107, - "right": -153.28125, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 68, - "left": -153.28125, - "top": 64.168107, - "right": -151.875, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 68, - "left": -151.875, - "top": 64.168107, - "right": -150.46875, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 68, - "left": -150.46875, - "top": 64.168107, - "right": -149.0625, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 68, - "left": -149.0625, - "top": 64.168107, - "right": -147.65625, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 68, - "left": -147.65625, - "top": 64.168107, - "right": -146.25, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 68, - "left": -146.25, - "top": 64.168107, - "right": -144.84375, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 68, - "left": -144.84375, - "top": 64.168107, - "right": -143.4375, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 68, - "left": -143.4375, - "top": 64.168107, - "right": -142.03125, - "bottom": 63.548552, - "countries": [ - "alaska" - ] - }, - { - "x": 5, - "y": 69, - "left": -172.96875, - "top": 63.548552, - "right": -171.5625, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 6, - "y": 69, - "left": -171.5625, - "top": 63.548552, - "right": -170.15625, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 7, - "y": 69, - "left": -170.15625, - "top": 63.548552, - "right": -168.75, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 69, - "left": -168.75, - "top": 63.548552, - "right": -167.34375, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 69, - "left": -165.9375, - "top": 63.548552, - "right": -164.53125, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 69, - "left": -164.53125, - "top": 63.548552, - "right": -163.125, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 69, - "left": -163.125, - "top": 63.548552, - "right": -161.71875, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 69, - "left": -161.71875, - "top": 63.548552, - "right": -160.3125, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 69, - "left": -160.3125, - "top": 63.548552, - "right": -158.90625, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 69, - "left": -158.90625, - "top": 63.548552, - "right": -157.5, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 69, - "left": -157.5, - "top": 63.548552, - "right": -156.09375, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 69, - "left": -156.09375, - "top": 63.548552, - "right": -154.6875, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 69, - "left": -154.6875, - "top": 63.548552, - "right": -153.28125, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 69, - "left": -153.28125, - "top": 63.548552, - "right": -151.875, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 69, - "left": -151.875, - "top": 63.548552, - "right": -150.46875, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 69, - "left": -150.46875, - "top": 63.548552, - "right": -149.0625, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 69, - "left": -149.0625, - "top": 63.548552, - "right": -147.65625, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 69, - "left": -147.65625, - "top": 63.548552, - "right": -146.25, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 69, - "left": -146.25, - "top": 63.548552, - "right": -144.84375, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 69, - "left": -144.84375, - "top": 63.548552, - "right": -143.4375, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 69, - "left": -143.4375, - "top": 63.548552, - "right": -142.03125, - "bottom": 62.915233, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 70, - "left": -165.9375, - "top": 62.915233, - "right": -164.53125, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 70, - "left": -164.53125, - "top": 62.915233, - "right": -163.125, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 70, - "left": -163.125, - "top": 62.915233, - "right": -161.71875, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 70, - "left": -161.71875, - "top": 62.915233, - "right": -160.3125, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 70, - "left": -160.3125, - "top": 62.915233, - "right": -158.90625, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 70, - "left": -158.90625, - "top": 62.915233, - "right": -157.5, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 70, - "left": -157.5, - "top": 62.915233, - "right": -156.09375, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 70, - "left": -156.09375, - "top": 62.915233, - "right": -154.6875, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 70, - "left": -154.6875, - "top": 62.915233, - "right": -153.28125, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 70, - "left": -153.28125, - "top": 62.915233, - "right": -151.875, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 70, - "left": -151.875, - "top": 62.915233, - "right": -150.46875, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 70, - "left": -150.46875, - "top": 62.915233, - "right": -149.0625, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 70, - "left": -149.0625, - "top": 62.915233, - "right": -147.65625, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 70, - "left": -147.65625, - "top": 62.915233, - "right": -146.25, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 70, - "left": -146.25, - "top": 62.915233, - "right": -144.84375, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 70, - "left": -144.84375, - "top": 62.915233, - "right": -143.4375, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 70, - "left": -143.4375, - "top": 62.915233, - "right": -142.03125, - "bottom": 62.267923, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 71, - "left": -167.34375, - "top": 62.267923, - "right": -165.9375, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 71, - "left": -165.9375, - "top": 62.267923, - "right": -164.53125, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 71, - "left": -164.53125, - "top": 62.267923, - "right": -163.125, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 71, - "left": -163.125, - "top": 62.267923, - "right": -161.71875, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 71, - "left": -161.71875, - "top": 62.267923, - "right": -160.3125, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 71, - "left": -160.3125, - "top": 62.267923, - "right": -158.90625, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 71, - "left": -158.90625, - "top": 62.267923, - "right": -157.5, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 71, - "left": -157.5, - "top": 62.267923, - "right": -156.09375, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 71, - "left": -156.09375, - "top": 62.267923, - "right": -154.6875, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 71, - "left": -154.6875, - "top": 62.267923, - "right": -153.28125, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 71, - "left": -153.28125, - "top": 62.267923, - "right": -151.875, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 71, - "left": -151.875, - "top": 62.267923, - "right": -150.46875, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 71, - "left": -150.46875, - "top": 62.267923, - "right": -149.0625, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 71, - "left": -149.0625, - "top": 62.267923, - "right": -147.65625, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 71, - "left": -147.65625, - "top": 62.267923, - "right": -146.25, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 71, - "left": -146.25, - "top": 62.267923, - "right": -144.84375, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 71, - "left": -144.84375, - "top": 62.267923, - "right": -143.4375, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 71, - "left": -143.4375, - "top": 62.267923, - "right": -142.03125, - "bottom": 61.606396, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 72, - "left": -167.34375, - "top": 61.606396, - "right": -165.9375, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 72, - "left": -165.9375, - "top": 61.606396, - "right": -164.53125, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 72, - "left": -164.53125, - "top": 61.606396, - "right": -163.125, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 72, - "left": -163.125, - "top": 61.606396, - "right": -161.71875, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 72, - "left": -161.71875, - "top": 61.606396, - "right": -160.3125, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 72, - "left": -160.3125, - "top": 61.606396, - "right": -158.90625, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 72, - "left": -158.90625, - "top": 61.606396, - "right": -157.5, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 72, - "left": -157.5, - "top": 61.606396, - "right": -156.09375, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 72, - "left": -156.09375, - "top": 61.606396, - "right": -154.6875, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 72, - "left": -154.6875, - "top": 61.606396, - "right": -153.28125, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 72, - "left": -153.28125, - "top": 61.606396, - "right": -151.875, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 72, - "left": -151.875, - "top": 61.606396, - "right": -150.46875, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 72, - "left": -150.46875, - "top": 61.606396, - "right": -149.0625, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 72, - "left": -149.0625, - "top": 61.606396, - "right": -147.65625, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 72, - "left": -147.65625, - "top": 61.606396, - "right": -146.25, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 72, - "left": -146.25, - "top": 61.606396, - "right": -144.84375, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 72, - "left": -144.84375, - "top": 61.606396, - "right": -143.4375, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 72, - "left": -143.4375, - "top": 61.606396, - "right": -142.03125, - "bottom": 60.930432, - "countries": [ - "alaska" - ] - }, - { - "x": 4, - "y": 73, - "left": -174.375, - "top": 60.930432, - "right": -172.96875, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 5, - "y": 73, - "left": -172.96875, - "top": 60.930432, - "right": -171.5625, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 73, - "left": -167.34375, - "top": 60.930432, - "right": -165.9375, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 73, - "left": -165.9375, - "top": 60.930432, - "right": -164.53125, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 73, - "left": -164.53125, - "top": 60.930432, - "right": -163.125, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 73, - "left": -163.125, - "top": 60.930432, - "right": -161.71875, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 73, - "left": -161.71875, - "top": 60.930432, - "right": -160.3125, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 73, - "left": -160.3125, - "top": 60.930432, - "right": -158.90625, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 73, - "left": -158.90625, - "top": 60.930432, - "right": -157.5, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 73, - "left": -157.5, - "top": 60.930432, - "right": -156.09375, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 73, - "left": -156.09375, - "top": 60.930432, - "right": -154.6875, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 73, - "left": -154.6875, - "top": 60.930432, - "right": -153.28125, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 73, - "left": -153.28125, - "top": 60.930432, - "right": -151.875, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 73, - "left": -151.875, - "top": 60.930432, - "right": -150.46875, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 73, - "left": -150.46875, - "top": 60.930432, - "right": -149.0625, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 73, - "left": -149.0625, - "top": 60.930432, - "right": -147.65625, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 73, - "left": -147.65625, - "top": 60.930432, - "right": -146.25, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 73, - "left": -146.25, - "top": 60.930432, - "right": -144.84375, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 73, - "left": -144.84375, - "top": 60.930432, - "right": -143.4375, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 73, - "left": -143.4375, - "top": 60.930432, - "right": -142.03125, - "bottom": 60.239811, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 74, - "left": -168.75, - "top": 60.239811, - "right": -167.34375, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 74, - "left": -167.34375, - "top": 60.239811, - "right": -165.9375, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 74, - "left": -165.9375, - "top": 60.239811, - "right": -164.53125, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 74, - "left": -164.53125, - "top": 60.239811, - "right": -163.125, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 74, - "left": -163.125, - "top": 60.239811, - "right": -161.71875, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 74, - "left": -161.71875, - "top": 60.239811, - "right": -160.3125, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 74, - "left": -160.3125, - "top": 60.239811, - "right": -158.90625, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 74, - "left": -158.90625, - "top": 60.239811, - "right": -157.5, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 74, - "left": -157.5, - "top": 60.239811, - "right": -156.09375, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 74, - "left": -156.09375, - "top": 60.239811, - "right": -154.6875, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 74, - "left": -154.6875, - "top": 60.239811, - "right": -153.28125, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 74, - "left": -153.28125, - "top": 60.239811, - "right": -151.875, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 74, - "left": -151.875, - "top": 60.239811, - "right": -150.46875, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 74, - "left": -150.46875, - "top": 60.239811, - "right": -149.0625, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 22, - "y": 74, - "left": -149.0625, - "top": 60.239811, - "right": -147.65625, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 23, - "y": 74, - "left": -147.65625, - "top": 60.239811, - "right": -146.25, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 24, - "y": 74, - "left": -146.25, - "top": 60.239811, - "right": -144.84375, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 25, - "y": 74, - "left": -144.84375, - "top": 60.239811, - "right": -143.4375, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 26, - "y": 74, - "left": -143.4375, - "top": 60.239811, - "right": -142.03125, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 27, - "y": 74, - "left": -142.03125, - "top": 60.239811, - "right": -140.625, - "bottom": 59.534318, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 75, - "left": -163.125, - "top": 59.534318, - "right": -161.71875, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 75, - "left": -161.71875, - "top": 59.534318, - "right": -160.3125, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 75, - "left": -160.3125, - "top": 59.534318, - "right": -158.90625, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 75, - "left": -158.90625, - "top": 59.534318, - "right": -157.5, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 75, - "left": -157.5, - "top": 59.534318, - "right": -156.09375, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 75, - "left": -156.09375, - "top": 59.534318, - "right": -154.6875, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 75, - "left": -154.6875, - "top": 59.534318, - "right": -153.28125, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 75, - "left": -153.28125, - "top": 59.534318, - "right": -151.875, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 75, - "left": -151.875, - "top": 59.534318, - "right": -150.46875, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 21, - "y": 75, - "left": -150.46875, - "top": 59.534318, - "right": -149.0625, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 28, - "y": 75, - "left": -140.625, - "top": 59.534318, - "right": -139.21875, - "bottom": 58.813742, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 76, - "left": -163.125, - "top": 58.813742, - "right": -161.71875, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 76, - "left": -161.71875, - "top": 58.813742, - "right": -160.3125, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 76, - "left": -160.3125, - "top": 58.813742, - "right": -158.90625, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 76, - "left": -158.90625, - "top": 58.813742, - "right": -157.5, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 76, - "left": -157.5, - "top": 58.813742, - "right": -156.09375, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 76, - "left": -156.09375, - "top": 58.813742, - "right": -154.6875, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 76, - "left": -154.6875, - "top": 58.813742, - "right": -153.28125, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 76, - "left": -153.28125, - "top": 58.813742, - "right": -151.875, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 20, - "y": 76, - "left": -151.875, - "top": 58.813742, - "right": -150.46875, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 29, - "y": 76, - "left": -139.21875, - "top": 58.813742, - "right": -137.8125, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 30, - "y": 76, - "left": -137.8125, - "top": 58.813742, - "right": -136.40625, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 31, - "y": 76, - "left": -136.40625, - "top": 58.813742, - "right": -135.0, - "bottom": 58.077876, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 77, - "left": -158.90625, - "top": 58.077876, - "right": -157.5, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 77, - "left": -157.5, - "top": 58.077876, - "right": -156.09375, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 77, - "left": -156.09375, - "top": 58.077876, - "right": -154.6875, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 77, - "left": -154.6875, - "top": 58.077876, - "right": -153.28125, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 77, - "left": -153.28125, - "top": 58.077876, - "right": -151.875, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 30, - "y": 77, - "left": -137.8125, - "top": 58.077876, - "right": -136.40625, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 31, - "y": 77, - "left": -136.40625, - "top": 58.077876, - "right": -135.0, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 32, - "y": 77, - "left": -135.0, - "top": 58.077876, - "right": -133.59375, - "bottom": 57.326521, - "countries": [ - "alaska" - ] - }, - { - "x": 6, - "y": 78, - "left": -171.5625, - "top": 57.326521, - "right": -170.15625, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 7, - "y": 78, - "left": -170.15625, - "top": 57.326521, - "right": -168.75, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 78, - "left": -160.3125, - "top": 57.326521, - "right": -158.90625, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 78, - "left": -158.90625, - "top": 57.326521, - "right": -157.5, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 78, - "left": -157.5, - "top": 57.326521, - "right": -156.09375, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 78, - "left": -156.09375, - "top": 57.326521, - "right": -154.6875, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 78, - "left": -154.6875, - "top": 57.326521, - "right": -153.28125, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 19, - "y": 78, - "left": -153.28125, - "top": 57.326521, - "right": -151.875, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 31, - "y": 78, - "left": -136.40625, - "top": 57.326521, - "right": -135.0, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 32, - "y": 78, - "left": -135.0, - "top": 57.326521, - "right": -133.59375, - "bottom": 56.559482, - "countries": [ - "alaska" - ] - }, - { - "x": 7, - "y": 79, - "left": -170.15625, - "top": 56.559482, - "right": -168.75, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 79, - "left": -163.125, - "top": 56.559482, - "right": -161.71875, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 79, - "left": -161.71875, - "top": 56.559482, - "right": -160.3125, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 79, - "left": -160.3125, - "top": 56.559482, - "right": -158.90625, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 15, - "y": 79, - "left": -158.90625, - "top": 56.559482, - "right": -157.5, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 16, - "y": 79, - "left": -157.5, - "top": 56.559482, - "right": -156.09375, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 79, - "left": -156.09375, - "top": 56.559482, - "right": -154.6875, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 18, - "y": 79, - "left": -154.6875, - "top": 56.559482, - "right": -153.28125, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 31, - "y": 79, - "left": -136.40625, - "top": 56.559482, - "right": -135.0, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 32, - "y": 79, - "left": -135.0, - "top": 56.559482, - "right": -133.59375, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 33, - "y": 79, - "left": -133.59375, - "top": 56.559482, - "right": -132.1875, - "bottom": 55.776573, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 80, - "left": -164.53125, - "top": 55.776573, - "right": -163.125, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 80, - "left": -163.125, - "top": 55.776573, - "right": -161.71875, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 13, - "y": 80, - "left": -161.71875, - "top": 55.776573, - "right": -160.3125, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 80, - "left": -160.3125, - "top": 55.776573, - "right": -158.90625, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 17, - "y": 80, - "left": -156.09375, - "top": 55.776573, - "right": -154.6875, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 32, - "y": 80, - "left": -135.0, - "top": 55.776573, - "right": -133.59375, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 33, - "y": 80, - "left": -133.59375, - "top": 55.776573, - "right": -132.1875, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 34, - "y": 80, - "left": -132.1875, - "top": 55.776573, - "right": -130.78125, - "bottom": 54.977614, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 81, - "left": -167.34375, - "top": 54.977614, - "right": -165.9375, - "bottom": 54.162434, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 81, - "left": -165.9375, - "top": 54.977614, - "right": -164.53125, - "bottom": 54.162434, - "countries": [ - "alaska" - ] - }, - { - "x": 11, - "y": 81, - "left": -164.53125, - "top": 54.977614, - "right": -163.125, - "bottom": 54.162434, - "countries": [ - "alaska" - ] - }, - { - "x": 12, - "y": 81, - "left": -163.125, - "top": 54.977614, - "right": -161.71875, - "bottom": 54.162434, - "countries": [ - "alaska" - ] - }, - { - "x": 14, - "y": 81, - "left": -160.3125, - "top": 54.977614, - "right": -158.90625, - "bottom": 54.162434, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 82, - "left": -168.75, - "top": 54.162434, - "right": -167.34375, - "bottom": 53.330873, - "countries": [ - "alaska" - ] - }, - { - "x": 9, - "y": 82, - "left": -167.34375, - "top": 54.162434, - "right": -165.9375, - "bottom": 53.330873, - "countries": [ - "alaska" - ] - }, - { - "x": 10, - "y": 82, - "left": -165.9375, - "top": 54.162434, - "right": -164.53125, - "bottom": 53.330873, - "countries": [ - "alaska" - ] - }, - { - "x": 6, - "y": 83, - "left": -171.5625, - "top": 53.330873, - "right": -170.15625, - "bottom": 52.48278, - "countries": [ - "alaska" - ] - }, - { - "x": 7, - "y": 83, - "left": -170.15625, - "top": 53.330873, - "right": -168.75, - "bottom": 52.48278, - "countries": [ - "alaska" - ] - }, - { - "x": 8, - "y": 83, - "left": -168.75, - "top": 53.330873, - "right": -167.34375, - "bottom": 52.48278, - "countries": [ - "alaska" - ] - }, - { - "x": 250, - "y": 83, - "left": 171.5625, - "top": 53.330873, - "right": 172.96875, - "bottom": 52.48278, - "countries": [ - "alaska" - ] - }, - { - "x": 251, - "y": 83, - "left": 172.96875, - "top": 53.330873, - "right": 174.375, - "bottom": 52.48278, - "countries": [ - "alaska" - ] - }, - { - "x": 0, - "y": 84, - "left": -180.0, - "top": 52.48278, - "right": -178.59375, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 1, - "y": 84, - "left": -178.59375, - "top": 52.48278, - "right": -177.1875, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 2, - "y": 84, - "left": -177.1875, - "top": 52.48278, - "right": -175.78125, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 3, - "y": 84, - "left": -175.78125, - "top": 52.48278, - "right": -174.375, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 4, - "y": 84, - "left": -174.375, - "top": 52.48278, - "right": -172.96875, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 5, - "y": 84, - "left": -172.96875, - "top": 52.48278, - "right": -171.5625, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 6, - "y": 84, - "left": -171.5625, - "top": 52.48278, - "right": -170.15625, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 251, - "y": 84, - "left": 172.96875, - "top": 52.48278, - "right": 174.375, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 253, - "y": 84, - "left": 175.78125, - "top": 52.48278, - "right": 177.1875, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 254, - "y": 84, - "left": 177.1875, - "top": 52.48278, - "right": 178.59375, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 255, - "y": 84, - "left": 178.59375, - "top": 52.48278, - "right": 180.0, - "bottom": 51.618017, - "countries": [ - "alaska" - ] - }, - { - "x": 0, - "y": 85, - "left": -180.0, - "top": 51.618017, - "right": -178.59375, - "bottom": 50.736455, - "countries": [ - "alaska" - ] - }, - { - "x": 1, - "y": 85, - "left": -178.59375, - "top": 51.618017, - "right": -177.1875, - "bottom": 50.736455, - "countries": [ - "alaska" - ] - }, - { - "x": 2, - "y": 85, - "left": -177.1875, - "top": 51.618017, - "right": -175.78125, - "bottom": 50.736455, - "countries": [ - "alaska" - ] - }, - { - "x": 255, - "y": 85, - "left": 178.59375, - "top": 51.618017, - "right": 180.0, - "bottom": 50.736455, - "countries": [ - "alaska" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/american_samoa.json b/wahoomc/resources/json/united_states/american_samoa.json deleted file mode 100644 index 095de825..00000000 --- a/wahoomc/resources/json/united_states/american_samoa.json +++ /dev/null @@ -1,47 +0,0 @@ -[ - { - "x": 6, - "y": 135, - "left": -171.5625, - "top": -9.795678, - "right": -170.15625, - "bottom": -11.178402, - "countries": [ - "american_samoa" - ] - }, - { - "x": 6, - "y": 138, - "left": -171.5625, - "top": -13.923404, - "right": -170.15625, - "bottom": -15.284185, - "countries": [ - "american_samoa", - "samoa" - ] - }, - { - "x": 7, - "y": 138, - "left": -170.15625, - "top": -13.923404, - "right": -168.75, - "bottom": -15.284185, - "countries": [ - "american_samoa" - ] - }, - { - "x": 8, - "y": 138, - "left": -168.75, - "top": -13.923404, - "right": -167.34375, - "bottom": -15.284185, - "countries": [ - "american_samoa" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/arizona.json b/wahoomc/resources/json/united_states/arizona.json deleted file mode 100644 index c85f833c..00000000 --- a/wahoomc/resources/json/united_states/arizona.json +++ /dev/null @@ -1,346 +0,0 @@ -[ - { - "x": 46, - "y": 103, - "left": -115.3125, - "top": 33.137551, - "right": -113.90625, - "bottom": 31.952162, - "countries": [ - "california", - "mexico", - "arizona" - ] - }, - { - "x": 47, - "y": 103, - "left": -113.90625, - "top": 33.137551, - "right": -112.5, - "bottom": 31.952162, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 47, - "y": 104, - "left": -113.90625, - "top": 31.952162, - "right": -112.5, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 48, - "y": 104, - "left": -112.5, - "top": 31.952162, - "right": -111.09375, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 49, - "y": 104, - "left": -111.09375, - "top": 31.952162, - "right": -109.6875, - "bottom": 30.751278, - "countries": [ - "mexico", - "arizona" - ] - }, - { - "x": 50, - "y": 104, - "left": -109.6875, - "top": 31.952162, - "right": -108.28125, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "mexico", - "arizona" - ] - }, - { - "x": 46, - "y": 99, - "left": -115.3125, - "top": 37.71859, - "right": -113.90625, - "bottom": 36.597889, - "countries": [ - "utah", - "nevada", - "arizona" - ] - }, - { - "x": 47, - "y": 99, - "left": -113.90625, - "top": 37.71859, - "right": -112.5, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 48, - "y": 99, - "left": -112.5, - "top": 37.71859, - "right": -111.09375, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 49, - "y": 99, - "left": -111.09375, - "top": 37.71859, - "right": -109.6875, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 50, - "y": 99, - "left": -109.6875, - "top": 37.71859, - "right": -108.28125, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "utah", - "colorado", - "arizona" - ] - }, - { - "x": 46, - "y": 100, - "left": -115.3125, - "top": 36.597889, - "right": -113.90625, - "bottom": 35.46067, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 47, - "y": 100, - "left": -113.90625, - "top": 36.597889, - "right": -112.5, - "bottom": 35.46067, - "countries": [ - "arizona" - ] - }, - { - "x": 48, - "y": 100, - "left": -112.5, - "top": 36.597889, - "right": -111.09375, - "bottom": 35.46067, - "countries": [ - "arizona" - ] - }, - { - "x": 49, - "y": 100, - "left": -111.09375, - "top": 36.597889, - "right": -109.6875, - "bottom": 35.46067, - "countries": [ - "arizona" - ] - }, - { - "x": 50, - "y": 100, - "left": -109.6875, - "top": 36.597889, - "right": -108.28125, - "bottom": 35.46067, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 46, - "y": 101, - "left": -115.3125, - "top": 35.46067, - "right": -113.90625, - "bottom": 34.307144, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 47, - "y": 101, - "left": -113.90625, - "top": 35.46067, - "right": -112.5, - "bottom": 34.307144, - "countries": [ - "arizona" - ] - }, - { - "x": 48, - "y": 101, - "left": -112.5, - "top": 35.46067, - "right": -111.09375, - "bottom": 34.307144, - "countries": [ - "arizona" - ] - }, - { - "x": 49, - "y": 101, - "left": -111.09375, - "top": 35.46067, - "right": -109.6875, - "bottom": 34.307144, - "countries": [ - "arizona" - ] - }, - { - "x": 50, - "y": 101, - "left": -109.6875, - "top": 35.46067, - "right": -108.28125, - "bottom": 34.307144, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 46, - "y": 102, - "left": -115.3125, - "top": 34.307144, - "right": -113.90625, - "bottom": 33.137551, - "countries": [ - "california", - "arizona" - ] - }, - { - "x": 47, - "y": 102, - "left": -113.90625, - "top": 34.307144, - "right": -112.5, - "bottom": 33.137551, - "countries": [ - "arizona" - ] - }, - { - "x": 48, - "y": 102, - "left": -112.5, - "top": 34.307144, - "right": -111.09375, - "bottom": 33.137551, - "countries": [ - "arizona" - ] - }, - { - "x": 49, - "y": 102, - "left": -111.09375, - "top": 34.307144, - "right": -109.6875, - "bottom": 33.137551, - "countries": [ - "arizona" - ] - }, - { - "x": 50, - "y": 102, - "left": -109.6875, - "top": 34.307144, - "right": -108.28125, - "bottom": 33.137551, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 48, - "y": 103, - "left": -112.5, - "top": 33.137551, - "right": -111.09375, - "bottom": 31.952162, - "countries": [ - "arizona" - ] - }, - { - "x": 49, - "y": 103, - "left": -111.09375, - "top": 33.137551, - "right": -109.6875, - "bottom": 31.952162, - "countries": [ - "arizona" - ] - }, - { - "x": 50, - "y": 103, - "left": -109.6875, - "top": 33.137551, - "right": -108.28125, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "arizona" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/arkansas.json b/wahoomc/resources/json/united_states/arkansas.json deleted file mode 100644 index 29f453fe..00000000 --- a/wahoomc/resources/json/united_states/arkansas.json +++ /dev/null @@ -1,199 +0,0 @@ -[ - { - "x": 60, - "y": 100, - "left": -95.625, - "top": 36.597889, - "right": -94.21875, - "bottom": 35.46067, - "countries": [ - "oklahoma", - "arkansas", - "missouri" - ] - }, - { - "x": 61, - "y": 100, - "left": -94.21875, - "top": 36.597889, - "right": -92.8125, - "bottom": 35.46067, - "countries": [ - "arkansas", - "missouri" - ] - }, - { - "x": 62, - "y": 100, - "left": -92.8125, - "top": 36.597889, - "right": -91.40625, - "bottom": 35.46067, - "countries": [ - "arkansas", - "missouri" - ] - }, - { - "x": 63, - "y": 100, - "left": -91.40625, - "top": 36.597889, - "right": -90.0, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri" - ] - }, - { - "x": 64, - "y": 100, - "left": -90.0, - "top": 36.597889, - "right": -88.59375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri", - "kentucky" - ] - }, - { - "x": 60, - "y": 101, - "left": -95.625, - "top": 35.46067, - "right": -94.21875, - "bottom": 34.307144, - "countries": [ - "oklahoma", - "arkansas" - ] - }, - { - "x": 61, - "y": 101, - "left": -94.21875, - "top": 35.46067, - "right": -92.8125, - "bottom": 34.307144, - "countries": [ - "arkansas" - ] - }, - { - "x": 62, - "y": 101, - "left": -92.8125, - "top": 35.46067, - "right": -91.40625, - "bottom": 34.307144, - "countries": [ - "arkansas" - ] - }, - { - "x": 63, - "y": 101, - "left": -91.40625, - "top": 35.46067, - "right": -90.0, - "bottom": 34.307144, - "countries": [ - "tennessee", - "arkansas", - "mississippi" - ] - }, - { - "x": 60, - "y": 102, - "left": -95.625, - "top": 34.307144, - "right": -94.21875, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma", - "arkansas" - ] - }, - { - "x": 61, - "y": 102, - "left": -94.21875, - "top": 34.307144, - "right": -92.8125, - "bottom": 33.137551, - "countries": [ - "texas", - "arkansas" - ] - }, - { - "x": 62, - "y": 102, - "left": -92.8125, - "top": 34.307144, - "right": -91.40625, - "bottom": 33.137551, - "countries": [ - "arkansas" - ] - }, - { - "x": 63, - "y": 102, - "left": -91.40625, - "top": 34.307144, - "right": -90.0, - "bottom": 33.137551, - "countries": [ - "arkansas", - "mississippi" - ] - }, - { - "x": 61, - "y": 103, - "left": -94.21875, - "top": 33.137551, - "right": -92.8125, - "bottom": 31.952162, - "countries": [ - "texas", - "arkansas", - "louisiana" - ] - }, - { - "x": 62, - "y": 103, - "left": -92.8125, - "top": 33.137551, - "right": -91.40625, - "bottom": 31.952162, - "countries": [ - "arkansas", - "louisiana" - ] - }, - { - "x": 63, - "y": 103, - "left": -91.40625, - "top": 33.137551, - "right": -90.0, - "bottom": 31.952162, - "countries": [ - "arkansas", - "louisiana", - "mississippi" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/california.json b/wahoomc/resources/json/united_states/california.json deleted file mode 100644 index 46bfd102..00000000 --- a/wahoomc/resources/json/united_states/california.json +++ /dev/null @@ -1,497 +0,0 @@ -[ - { - "x": 44, - "y": 103, - "left": -118.125, - "top": 33.137551, - "right": -116.71875, - "bottom": 31.952162, - "countries": [ - "california", - "mexico" - ] - }, - { - "x": 45, - "y": 103, - "left": -116.71875, - "top": 33.137551, - "right": -115.3125, - "bottom": 31.952162, - "countries": [ - "california", - "mexico" - ] - }, - { - "x": 46, - "y": 103, - "left": -115.3125, - "top": 33.137551, - "right": -113.90625, - "bottom": 31.952162, - "countries": [ - "california", - "mexico", - "arizona" - ] - }, - { - "x": 46, - "y": 100, - "left": -115.3125, - "top": 36.597889, - "right": -113.90625, - "bottom": 35.46067, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 46, - "y": 101, - "left": -115.3125, - "top": 35.46067, - "right": -113.90625, - "bottom": 34.307144, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 46, - "y": 102, - "left": -115.3125, - "top": 34.307144, - "right": -113.90625, - "bottom": 33.137551, - "countries": [ - "california", - "arizona" - ] - }, - { - "x": 39, - "y": 95, - "left": -125.15625, - "top": 42.032974, - "right": -123.75, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 40, - "y": 95, - "left": -123.75, - "top": 42.032974, - "right": -122.34375, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 41, - "y": 95, - "left": -122.34375, - "top": 42.032974, - "right": -120.9375, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 42, - "y": 95, - "left": -120.9375, - "top": 42.032974, - "right": -119.53125, - "bottom": 40.979898, - "countries": [ - "nevada", - "california", - "oregon" - ] - }, - { - "x": 39, - "y": 96, - "left": -125.15625, - "top": 40.979898, - "right": -123.75, - "bottom": 39.909736, - "countries": [ - "california" - ] - }, - { - "x": 40, - "y": 96, - "left": -123.75, - "top": 40.979898, - "right": -122.34375, - "bottom": 39.909736, - "countries": [ - "california" - ] - }, - { - "x": 41, - "y": 96, - "left": -122.34375, - "top": 40.979898, - "right": -120.9375, - "bottom": 39.909736, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 96, - "left": -120.9375, - "top": 40.979898, - "right": -119.53125, - "bottom": 39.909736, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 39, - "y": 97, - "left": -125.15625, - "top": 39.909736, - "right": -123.75, - "bottom": 38.822591, - "countries": [ - "california" - ] - }, - { - "x": 40, - "y": 97, - "left": -123.75, - "top": 39.909736, - "right": -122.34375, - "bottom": 38.822591, - "countries": [ - "california" - ] - }, - { - "x": 41, - "y": 97, - "left": -122.34375, - "top": 39.909736, - "right": -120.9375, - "bottom": 38.822591, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 97, - "left": -120.9375, - "top": 39.909736, - "right": -119.53125, - "bottom": 38.822591, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 40, - "y": 98, - "left": -123.75, - "top": 38.822591, - "right": -122.34375, - "bottom": 37.71859, - "countries": [ - "california" - ] - }, - { - "x": 41, - "y": 98, - "left": -122.34375, - "top": 38.822591, - "right": -120.9375, - "bottom": 37.71859, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 98, - "left": -120.9375, - "top": 38.822591, - "right": -119.53125, - "bottom": 37.71859, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 43, - "y": 98, - "left": -119.53125, - "top": 38.822591, - "right": -118.125, - "bottom": 37.71859, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 40, - "y": 99, - "left": -123.75, - "top": 37.71859, - "right": -122.34375, - "bottom": 36.597889, - "countries": [ - "california" - ] - }, - { - "x": 41, - "y": 99, - "left": -122.34375, - "top": 37.71859, - "right": -120.9375, - "bottom": 36.597889, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 99, - "left": -120.9375, - "top": 37.71859, - "right": -119.53125, - "bottom": 36.597889, - "countries": [ - "california" - ] - }, - { - "x": 43, - "y": 99, - "left": -119.53125, - "top": 37.71859, - "right": -118.125, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 44, - "y": 99, - "left": -118.125, - "top": 37.71859, - "right": -116.71875, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 45, - "y": 99, - "left": -116.71875, - "top": 37.71859, - "right": -115.3125, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 41, - "y": 100, - "left": -122.34375, - "top": 36.597889, - "right": -120.9375, - "bottom": 35.46067, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 100, - "left": -120.9375, - "top": 36.597889, - "right": -119.53125, - "bottom": 35.46067, - "countries": [ - "california" - ] - }, - { - "x": 43, - "y": 100, - "left": -119.53125, - "top": 36.597889, - "right": -118.125, - "bottom": 35.46067, - "countries": [ - "california" - ] - }, - { - "x": 44, - "y": 100, - "left": -118.125, - "top": 36.597889, - "right": -116.71875, - "bottom": 35.46067, - "countries": [ - "california" - ] - }, - { - "x": 45, - "y": 100, - "left": -116.71875, - "top": 36.597889, - "right": -115.3125, - "bottom": 35.46067, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 41, - "y": 101, - "left": -122.34375, - "top": 35.46067, - "right": -120.9375, - "bottom": 34.307144, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 101, - "left": -120.9375, - "top": 35.46067, - "right": -119.53125, - "bottom": 34.307144, - "countries": [ - "california" - ] - }, - { - "x": 43, - "y": 101, - "left": -119.53125, - "top": 35.46067, - "right": -118.125, - "bottom": 34.307144, - "countries": [ - "california" - ] - }, - { - "x": 44, - "y": 101, - "left": -118.125, - "top": 35.46067, - "right": -116.71875, - "bottom": 34.307144, - "countries": [ - "california" - ] - }, - { - "x": 45, - "y": 101, - "left": -116.71875, - "top": 35.46067, - "right": -115.3125, - "bottom": 34.307144, - "countries": [ - "california" - ] - }, - { - "x": 42, - "y": 102, - "left": -120.9375, - "top": 34.307144, - "right": -119.53125, - "bottom": 33.137551, - "countries": [ - "california" - ] - }, - { - "x": 43, - "y": 102, - "left": -119.53125, - "top": 34.307144, - "right": -118.125, - "bottom": 33.137551, - "countries": [ - "california" - ] - }, - { - "x": 44, - "y": 102, - "left": -118.125, - "top": 34.307144, - "right": -116.71875, - "bottom": 33.137551, - "countries": [ - "california" - ] - }, - { - "x": 45, - "y": 102, - "left": -116.71875, - "top": 34.307144, - "right": -115.3125, - "bottom": 33.137551, - "countries": [ - "california" - ] - }, - { - "x": 43, - "y": 103, - "left": -119.53125, - "top": 33.137551, - "right": -118.125, - "bottom": 31.952162, - "countries": [ - "california" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/colorado.json b/wahoomc/resources/json/united_states/colorado.json deleted file mode 100644 index 1ae36580..00000000 --- a/wahoomc/resources/json/united_states/colorado.json +++ /dev/null @@ -1,357 +0,0 @@ -[ - { - "x": 50, - "y": 99, - "left": -109.6875, - "top": 37.71859, - "right": -108.28125, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "utah", - "colorado", - "arizona" - ] - }, - { - "x": 50, - "y": 95, - "left": -109.6875, - "top": 42.032974, - "right": -108.28125, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming", - "utah" - ] - }, - { - "x": 51, - "y": 95, - "left": -108.28125, - "top": 42.032974, - "right": -106.875, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 52, - "y": 95, - "left": -106.875, - "top": 42.032974, - "right": -105.46875, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 53, - "y": 95, - "left": -105.46875, - "top": 42.032974, - "right": -104.0625, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 54, - "y": 95, - "left": -104.0625, - "top": 42.032974, - "right": -102.65625, - "bottom": 40.979898, - "countries": [ - "nebraska", - "colorado", - "wyoming" - ] - }, - { - "x": 55, - "y": 95, - "left": -102.65625, - "top": 42.032974, - "right": -101.25, - "bottom": 40.979898, - "countries": [ - "nebraska", - "colorado" - ] - }, - { - "x": 50, - "y": 96, - "left": -109.6875, - "top": 40.979898, - "right": -108.28125, - "bottom": 39.909736, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 51, - "y": 96, - "left": -108.28125, - "top": 40.979898, - "right": -106.875, - "bottom": 39.909736, - "countries": [ - "colorado" - ] - }, - { - "x": 52, - "y": 96, - "left": -106.875, - "top": 40.979898, - "right": -105.46875, - "bottom": 39.909736, - "countries": [ - "colorado" - ] - }, - { - "x": 53, - "y": 96, - "left": -105.46875, - "top": 40.979898, - "right": -104.0625, - "bottom": 39.909736, - "countries": [ - "colorado" - ] - }, - { - "x": 54, - "y": 96, - "left": -104.0625, - "top": 40.979898, - "right": -102.65625, - "bottom": 39.909736, - "countries": [ - "colorado" - ] - }, - { - "x": 55, - "y": 96, - "left": -102.65625, - "top": 40.979898, - "right": -101.25, - "bottom": 39.909736, - "countries": [ - "nebraska", - "kansas", - "colorado" - ] - }, - { - "x": 50, - "y": 97, - "left": -109.6875, - "top": 39.909736, - "right": -108.28125, - "bottom": 38.822591, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 51, - "y": 97, - "left": -108.28125, - "top": 39.909736, - "right": -106.875, - "bottom": 38.822591, - "countries": [ - "colorado" - ] - }, - { - "x": 52, - "y": 97, - "left": -106.875, - "top": 39.909736, - "right": -105.46875, - "bottom": 38.822591, - "countries": [ - "colorado" - ] - }, - { - "x": 53, - "y": 97, - "left": -105.46875, - "top": 39.909736, - "right": -104.0625, - "bottom": 38.822591, - "countries": [ - "colorado" - ] - }, - { - "x": 54, - "y": 97, - "left": -104.0625, - "top": 39.909736, - "right": -102.65625, - "bottom": 38.822591, - "countries": [ - "colorado" - ] - }, - { - "x": 55, - "y": 97, - "left": -102.65625, - "top": 39.909736, - "right": -101.25, - "bottom": 38.822591, - "countries": [ - "kansas", - "colorado" - ] - }, - { - "x": 50, - "y": 98, - "left": -109.6875, - "top": 38.822591, - "right": -108.28125, - "bottom": 37.71859, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 51, - "y": 98, - "left": -108.28125, - "top": 38.822591, - "right": -106.875, - "bottom": 37.71859, - "countries": [ - "colorado" - ] - }, - { - "x": 52, - "y": 98, - "left": -106.875, - "top": 38.822591, - "right": -105.46875, - "bottom": 37.71859, - "countries": [ - "colorado" - ] - }, - { - "x": 53, - "y": 98, - "left": -105.46875, - "top": 38.822591, - "right": -104.0625, - "bottom": 37.71859, - "countries": [ - "colorado" - ] - }, - { - "x": 54, - "y": 98, - "left": -104.0625, - "top": 38.822591, - "right": -102.65625, - "bottom": 37.71859, - "countries": [ - "colorado" - ] - }, - { - "x": 55, - "y": 98, - "left": -102.65625, - "top": 38.822591, - "right": -101.25, - "bottom": 37.71859, - "countries": [ - "kansas", - "colorado" - ] - }, - { - "x": 51, - "y": 99, - "left": -108.28125, - "top": 37.71859, - "right": -106.875, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 52, - "y": 99, - "left": -106.875, - "top": 37.71859, - "right": -105.46875, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 53, - "y": 99, - "left": -105.46875, - "top": 37.71859, - "right": -104.0625, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 54, - "y": 99, - "left": -104.0625, - "top": 37.71859, - "right": -102.65625, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "oklahoma", - "colorado" - ] - }, - { - "x": 55, - "y": 99, - "left": -102.65625, - "top": 37.71859, - "right": -101.25, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "colorado" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/commonwealth_of_the_northern_mariana_islands.json b/wahoomc/resources/json/united_states/commonwealth_of_the_northern_mariana_islands.json deleted file mode 100644 index 8cffeda3..00000000 --- a/wahoomc/resources/json/united_states/commonwealth_of_the_northern_mariana_islands.json +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "x": 231, - "y": 113, - "left": 144.84375, - "top": 20.632784, - "right": 146.25, - "bottom": 19.311143, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 114, - "left": 144.84375, - "top": 19.311143, - "right": 146.25, - "bottom": 17.978733, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 115, - "left": 144.84375, - "top": 17.978733, - "right": 146.25, - "bottom": 16.636192, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 116, - "left": 144.84375, - "top": 16.636192, - "right": 146.25, - "bottom": 15.284185, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - }, - { - "x": 231, - "y": 117, - "left": 144.84375, - "top": 15.284185, - "right": 146.25, - "bottom": 13.923404, - "countries": [ - "commonwealth_of_the_northern_mariana_islands", - "northern_mariana_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/connecticut.json b/wahoomc/resources/json/united_states/connecticut.json deleted file mode 100644 index b870ada0..00000000 --- a/wahoomc/resources/json/united_states/connecticut.json +++ /dev/null @@ -1,57 +0,0 @@ -[ - { - "x": 75, - "y": 94, - "left": -74.53125, - "top": 43.068888, - "right": -73.125, - "bottom": 42.032974, - "countries": [ - "connecticut", - "new_york", - "vermont", - "massachusetts" - ] - }, - { - "x": 76, - "y": 94, - "left": -73.125, - "top": 43.068888, - "right": -71.71875, - "bottom": 42.032974, - "countries": [ - "connecticut", - "vermont", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 75, - "y": 95, - "left": -74.53125, - "top": 42.032974, - "right": -73.125, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_jersey", - "new_york" - ] - }, - { - "x": 76, - "y": 95, - "left": -73.125, - "top": 42.032974, - "right": -71.71875, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_york", - "rhode_island", - "massachusetts" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/delaware.json b/wahoomc/resources/json/united_states/delaware.json deleted file mode 100644 index 18cee83d..00000000 --- a/wahoomc/resources/json/united_states/delaware.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "x": 74, - "y": 97, - "left": -75.9375, - "top": 39.909736, - "right": -74.53125, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "new_jersey", - "delaware" - ] - }, - { - "x": 74, - "y": 98, - "left": -75.9375, - "top": 38.822591, - "right": -74.53125, - "bottom": 37.71859, - "countries": [ - "maryland", - "virginia", - "delaware" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/district_of_columbia.json b/wahoomc/resources/json/united_states/district_of_columbia.json deleted file mode 100644 index b6433d4c..00000000 --- a/wahoomc/resources/json/united_states/district_of_columbia.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "x": 73, - "y": 97, - "left": -77.34375, - "top": 39.909736, - "right": -75.9375, - "bottom": 38.822591, - "countries": [ - "maryland", - "district_of_columbia", - "pennsylvania", - "virginia" - ] - }, - { - "x": 73, - "y": 98, - "left": -77.34375, - "top": 38.822591, - "right": -75.9375, - "bottom": 37.71859, - "countries": [ - "maryland", - "district_of_columbia", - "virginia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/florida.json b/wahoomc/resources/json/united_states/florida.json deleted file mode 100644 index 043726a3..00000000 --- a/wahoomc/resources/json/united_states/florida.json +++ /dev/null @@ -1,269 +0,0 @@ -[ - { - "x": 71, - "y": 108, - "left": -80.15625, - "top": 27.059126, - "right": -78.75, - "bottom": 25.799891, - "countries": [ - "florida", - "bahamas" - ] - }, - { - "x": 71, - "y": 109, - "left": -80.15625, - "top": 25.799891, - "right": -78.75, - "bottom": 24.527135, - "countries": [ - "florida", - "bahamas" - ] - }, - { - "x": 65, - "y": 104, - "left": -88.59375, - "top": 31.952162, - "right": -87.1875, - "bottom": 30.751278, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - }, - { - "x": 66, - "y": 104, - "left": -87.1875, - "top": 31.952162, - "right": -85.78125, - "bottom": 30.751278, - "countries": [ - "alabama", - "florida" - ] - }, - { - "x": 67, - "y": 104, - "left": -85.78125, - "top": 31.952162, - "right": -84.375, - "bottom": 30.751278, - "countries": [ - "georgia", - "alabama", - "florida" - ] - }, - { - "x": 65, - "y": 105, - "left": -88.59375, - "top": 30.751278, - "right": -87.1875, - "bottom": 29.53523, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - }, - { - "x": 69, - "y": 104, - "left": -82.96875, - "top": 31.952162, - "right": -81.5625, - "bottom": 30.751278, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 66, - "y": 105, - "left": -87.1875, - "top": 30.751278, - "right": -85.78125, - "bottom": 29.53523, - "countries": [ - "florida" - ] - }, - { - "x": 67, - "y": 105, - "left": -85.78125, - "top": 30.751278, - "right": -84.375, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 68, - "y": 105, - "left": -84.375, - "top": 30.751278, - "right": -82.96875, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 69, - "y": 105, - "left": -82.96875, - "top": 30.751278, - "right": -81.5625, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 70, - "y": 105, - "left": -81.5625, - "top": 30.751278, - "right": -80.15625, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 68, - "y": 106, - "left": -84.375, - "top": 29.53523, - "right": -82.96875, - "bottom": 28.304381, - "countries": [ - "florida" - ] - }, - { - "x": 69, - "y": 106, - "left": -82.96875, - "top": 29.53523, - "right": -81.5625, - "bottom": 28.304381, - "countries": [ - "florida" - ] - }, - { - "x": 70, - "y": 106, - "left": -81.5625, - "top": 29.53523, - "right": -80.15625, - "bottom": 28.304381, - "countries": [ - "florida" - ] - }, - { - "x": 69, - "y": 107, - "left": -82.96875, - "top": 28.304381, - "right": -81.5625, - "bottom": 27.059126, - "countries": [ - "florida" - ] - }, - { - "x": 70, - "y": 107, - "left": -81.5625, - "top": 28.304381, - "right": -80.15625, - "bottom": 27.059126, - "countries": [ - "florida" - ] - }, - { - "x": 71, - "y": 107, - "left": -80.15625, - "top": 28.304381, - "right": -78.75, - "bottom": 27.059126, - "countries": [ - "florida" - ] - }, - { - "x": 69, - "y": 108, - "left": -82.96875, - "top": 27.059126, - "right": -81.5625, - "bottom": 25.799891, - "countries": [ - "florida" - ] - }, - { - "x": 70, - "y": 108, - "left": -81.5625, - "top": 27.059126, - "right": -80.15625, - "bottom": 25.799891, - "countries": [ - "florida" - ] - }, - { - "x": 69, - "y": 109, - "left": -82.96875, - "top": 25.799891, - "right": -81.5625, - "bottom": 24.527135, - "countries": [ - "florida" - ] - }, - { - "x": 70, - "y": 109, - "left": -81.5625, - "top": 25.799891, - "right": -80.15625, - "bottom": 24.527135, - "countries": [ - "florida" - ] - }, - { - "x": 69, - "y": 110, - "left": -82.96875, - "top": 24.527135, - "right": -81.5625, - "bottom": 23.241346, - "countries": [ - "florida" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/georgia.json b/wahoomc/resources/json/united_states/georgia.json deleted file mode 100644 index a3a367a5..00000000 --- a/wahoomc/resources/json/united_states/georgia.json +++ /dev/null @@ -1,368 +0,0 @@ -[ - { - "x": 158, - "y": 95, - "left": 42.1875, - "top": 42.032974, - "right": 43.59375, - "bottom": 40.979898, - "countries": [ - "georgia", - "armenia", - "turkey" - ] - }, - { - "x": 159, - "y": 95, - "left": 43.59375, - "top": 42.032974, - "right": 45.0, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "turkey" - ] - }, - { - "x": 160, - "y": 95, - "left": 45.0, - "top": 42.032974, - "right": 46.40625, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "armenia", - "russia" - ] - }, - { - "x": 161, - "y": 95, - "left": 46.40625, - "top": 42.032974, - "right": 47.8125, - "bottom": 40.979898, - "countries": [ - "georgia", - "azerbaijan", - "russia" - ] - }, - { - "x": 156, - "y": 93, - "left": 39.375, - "top": 44.087585, - "right": 40.78125, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 157, - "y": 93, - "left": 40.78125, - "top": 44.087585, - "right": 42.1875, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 158, - "y": 93, - "left": 42.1875, - "top": 44.087585, - "right": 43.59375, - "bottom": 43.068888, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 157, - "y": 94, - "left": 40.78125, - "top": 43.068888, - "right": 42.1875, - "bottom": 42.032974, - "countries": [ - "georgia" - ] - }, - { - "x": 158, - "y": 94, - "left": 42.1875, - "top": 43.068888, - "right": 43.59375, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 159, - "y": 94, - "left": 43.59375, - "top": 43.068888, - "right": 45.0, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 160, - "y": 94, - "left": 45.0, - "top": 43.068888, - "right": 46.40625, - "bottom": 42.032974, - "countries": [ - "georgia", - "russia" - ] - }, - { - "x": 157, - "y": 95, - "left": 40.78125, - "top": 42.032974, - "right": 42.1875, - "bottom": 40.979898, - "countries": [ - "georgia", - "turkey" - ] - }, - { - "x": 67, - "y": 101, - "left": -85.78125, - "top": 35.46067, - "right": -84.375, - "bottom": 34.307144, - "countries": [ - "georgia", - "alabama", - "tennessee" - ] - }, - { - "x": 67, - "y": 102, - "left": -85.78125, - "top": 34.307144, - "right": -84.375, - "bottom": 33.137551, - "countries": [ - "georgia", - "alabama" - ] - }, - { - "x": 67, - "y": 103, - "left": -85.78125, - "top": 33.137551, - "right": -84.375, - "bottom": 31.952162, - "countries": [ - "georgia", - "alabama" - ] - }, - { - "x": 67, - "y": 104, - "left": -85.78125, - "top": 31.952162, - "right": -84.375, - "bottom": 30.751278, - "countries": [ - "georgia", - "alabama", - "florida" - ] - }, - { - "x": 69, - "y": 104, - "left": -82.96875, - "top": 31.952162, - "right": -81.5625, - "bottom": 30.751278, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 67, - "y": 105, - "left": -85.78125, - "top": 30.751278, - "right": -84.375, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 68, - "y": 105, - "left": -84.375, - "top": 30.751278, - "right": -82.96875, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 69, - "y": 105, - "left": -82.96875, - "top": 30.751278, - "right": -81.5625, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 70, - "y": 105, - "left": -81.5625, - "top": 30.751278, - "right": -80.15625, - "bottom": 29.53523, - "countries": [ - "georgia", - "florida" - ] - }, - { - "x": 68, - "y": 101, - "left": -84.375, - "top": 35.46067, - "right": -82.96875, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "tennessee", - "south_carolina" - ] - }, - { - "x": 69, - "y": 101, - "left": -82.96875, - "top": 35.46067, - "right": -81.5625, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "south_carolina" - ] - }, - { - "x": 68, - "y": 102, - "left": -84.375, - "top": 34.307144, - "right": -82.96875, - "bottom": 33.137551, - "countries": [ - "georgia" - ] - }, - { - "x": 69, - "y": 102, - "left": -82.96875, - "top": 34.307144, - "right": -81.5625, - "bottom": 33.137551, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 68, - "y": 103, - "left": -84.375, - "top": 33.137551, - "right": -82.96875, - "bottom": 31.952162, - "countries": [ - "georgia" - ] - }, - { - "x": 69, - "y": 103, - "left": -82.96875, - "top": 33.137551, - "right": -81.5625, - "bottom": 31.952162, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 70, - "y": 103, - "left": -81.5625, - "top": 33.137551, - "right": -80.15625, - "bottom": 31.952162, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 68, - "y": 104, - "left": -84.375, - "top": 31.952162, - "right": -82.96875, - "bottom": 30.751278, - "countries": [ - "georgia" - ] - }, - { - "x": 70, - "y": 104, - "left": -81.5625, - "top": 31.952162, - "right": -80.15625, - "bottom": 30.751278, - "countries": [ - "georgia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/guam.json b/wahoomc/resources/json/united_states/guam.json deleted file mode 100644 index 101fc03d..00000000 --- a/wahoomc/resources/json/united_states/guam.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "x": 230, - "y": 118, - "left": 143.4375, - "top": 13.923404, - "right": 144.84375, - "bottom": 12.554564, - "countries": [ - "guam" - ] - }, - { - "x": 231, - "y": 118, - "left": 144.84375, - "top": 13.923404, - "right": 146.25, - "bottom": 12.554564, - "countries": [ - "guam" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/hawaii.json b/wahoomc/resources/json/united_states/hawaii.json deleted file mode 100644 index 32eda5ab..00000000 --- a/wahoomc/resources/json/united_states/hawaii.json +++ /dev/null @@ -1,90 +0,0 @@ -[ - { - "x": 14, - "y": 111, - "left": -160.3125, - "top": 23.241346, - "right": -158.90625, - "bottom": 21.943046, - "countries": [ - "hawaii" - ] - }, - { - "x": 14, - "y": 112, - "left": -160.3125, - "top": 21.943046, - "right": -158.90625, - "bottom": 20.632784, - "countries": [ - "hawaii" - ] - }, - { - "x": 15, - "y": 112, - "left": -158.90625, - "top": 21.943046, - "right": -157.5, - "bottom": 20.632784, - "countries": [ - "hawaii" - ] - }, - { - "x": 16, - "y": 112, - "left": -157.5, - "top": 21.943046, - "right": -156.09375, - "bottom": 20.632784, - "countries": [ - "hawaii" - ] - }, - { - "x": 17, - "y": 112, - "left": -156.09375, - "top": 21.943046, - "right": -154.6875, - "bottom": 20.632784, - "countries": [ - "hawaii" - ] - }, - { - "x": 16, - "y": 113, - "left": -157.5, - "top": 20.632784, - "right": -156.09375, - "bottom": 19.311143, - "countries": [ - "hawaii" - ] - }, - { - "x": 17, - "y": 113, - "left": -156.09375, - "top": 20.632784, - "right": -154.6875, - "bottom": 19.311143, - "countries": [ - "hawaii" - ] - }, - { - "x": 17, - "y": 114, - "left": -156.09375, - "top": 19.311143, - "right": -154.6875, - "bottom": 17.978733, - "countries": [ - "hawaii" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/idaho.json b/wahoomc/resources/json/united_states/idaho.json deleted file mode 100644 index f2523379..00000000 --- a/wahoomc/resources/json/united_states/idaho.json +++ /dev/null @@ -1,454 +0,0 @@ -[ - { - "x": 44, - "y": 87, - "left": -118.125, - "top": 49.837982, - "right": -116.71875, - "bottom": 48.922499, - "countries": [ - "idaho", - "washington", - "canada" - ] - }, - { - "x": 45, - "y": 87, - "left": -116.71875, - "top": 49.837982, - "right": -115.3125, - "bottom": 48.922499, - "countries": [ - "idaho", - "montana", - "canada" - ] - }, - { - "x": 44, - "y": 88, - "left": -118.125, - "top": 48.922499, - "right": -116.71875, - "bottom": 47.989922, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 45, - "y": 88, - "left": -116.71875, - "top": 48.922499, - "right": -115.3125, - "bottom": 47.989922, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 44, - "y": 89, - "left": -118.125, - "top": 47.989922, - "right": -116.71875, - "bottom": 47.040182, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 45, - "y": 89, - "left": -116.71875, - "top": 47.989922, - "right": -115.3125, - "bottom": 47.040182, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 46, - "y": 89, - "left": -115.3125, - "top": 47.989922, - "right": -113.90625, - "bottom": 47.040182, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 44, - "y": 90, - "left": -118.125, - "top": 47.040182, - "right": -116.71875, - "bottom": 46.073231, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 45, - "y": 90, - "left": -116.71875, - "top": 47.040182, - "right": -115.3125, - "bottom": 46.073231, - "countries": [ - "idaho" - ] - }, - { - "x": 46, - "y": 90, - "left": -115.3125, - "top": 47.040182, - "right": -113.90625, - "bottom": 46.073231, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 44, - "y": 91, - "left": -118.125, - "top": 46.073231, - "right": -116.71875, - "bottom": 45.089036, - "countries": [ - "idaho", - "oregon", - "washington" - ] - }, - { - "x": 45, - "y": 91, - "left": -116.71875, - "top": 46.073231, - "right": -115.3125, - "bottom": 45.089036, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 46, - "y": 91, - "left": -115.3125, - "top": 46.073231, - "right": -113.90625, - "bottom": 45.089036, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 47, - "y": 91, - "left": -113.90625, - "top": 46.073231, - "right": -112.5, - "bottom": 45.089036, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 44, - "y": 92, - "left": -118.125, - "top": 45.089036, - "right": -116.71875, - "bottom": 44.087585, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 45, - "y": 92, - "left": -116.71875, - "top": 45.089036, - "right": -115.3125, - "bottom": 44.087585, - "countries": [ - "idaho" - ] - }, - { - "x": 46, - "y": 92, - "left": -115.3125, - "top": 45.089036, - "right": -113.90625, - "bottom": 44.087585, - "countries": [ - "idaho" - ] - }, - { - "x": 47, - "y": 92, - "left": -113.90625, - "top": 45.089036, - "right": -112.5, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 48, - "y": 92, - "left": -112.5, - "top": 45.089036, - "right": -111.09375, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 49, - "y": 92, - "left": -111.09375, - "top": 45.089036, - "right": -109.6875, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana", - "wyoming" - ] - }, - { - "x": 44, - "y": 93, - "left": -118.125, - "top": 44.087585, - "right": -116.71875, - "bottom": 43.068888, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 45, - "y": 93, - "left": -116.71875, - "top": 44.087585, - "right": -115.3125, - "bottom": 43.068888, - "countries": [ - "idaho" - ] - }, - { - "x": 46, - "y": 93, - "left": -115.3125, - "top": 44.087585, - "right": -113.90625, - "bottom": 43.068888, - "countries": [ - "idaho" - ] - }, - { - "x": 47, - "y": 93, - "left": -113.90625, - "top": 44.087585, - "right": -112.5, - "bottom": 43.068888, - "countries": [ - "idaho" - ] - }, - { - "x": 48, - "y": 93, - "left": -112.5, - "top": 44.087585, - "right": -111.09375, - "bottom": 43.068888, - "countries": [ - "idaho" - ] - }, - { - "x": 49, - "y": 93, - "left": -111.09375, - "top": 44.087585, - "right": -109.6875, - "bottom": 43.068888, - "countries": [ - "idaho", - "wyoming" - ] - }, - { - "x": 44, - "y": 94, - "left": -118.125, - "top": 43.068888, - "right": -116.71875, - "bottom": 42.032974, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 45, - "y": 94, - "left": -116.71875, - "top": 43.068888, - "right": -115.3125, - "bottom": 42.032974, - "countries": [ - "idaho" - ] - }, - { - "x": 46, - "y": 94, - "left": -115.3125, - "top": 43.068888, - "right": -113.90625, - "bottom": 42.032974, - "countries": [ - "idaho" - ] - }, - { - "x": 47, - "y": 94, - "left": -113.90625, - "top": 43.068888, - "right": -112.5, - "bottom": 42.032974, - "countries": [ - "idaho" - ] - }, - { - "x": 48, - "y": 94, - "left": -112.5, - "top": 43.068888, - "right": -111.09375, - "bottom": 42.032974, - "countries": [ - "idaho" - ] - }, - { - "x": 49, - "y": 94, - "left": -111.09375, - "top": 43.068888, - "right": -109.6875, - "bottom": 42.032974, - "countries": [ - "idaho", - "wyoming" - ] - }, - { - "x": 44, - "y": 95, - "left": -118.125, - "top": 42.032974, - "right": -116.71875, - "bottom": 40.979898, - "countries": [ - "idaho", - "oregon", - "nevada" - ] - }, - { - "x": 45, - "y": 95, - "left": -116.71875, - "top": 42.032974, - "right": -115.3125, - "bottom": 40.979898, - "countries": [ - "idaho", - "nevada" - ] - }, - { - "x": 46, - "y": 95, - "left": -115.3125, - "top": 42.032974, - "right": -113.90625, - "bottom": 40.979898, - "countries": [ - "idaho", - "nevada", - "utah" - ] - }, - { - "x": 47, - "y": 95, - "left": -113.90625, - "top": 42.032974, - "right": -112.5, - "bottom": 40.979898, - "countries": [ - "idaho", - "utah" - ] - }, - { - "x": 48, - "y": 95, - "left": -112.5, - "top": 42.032974, - "right": -111.09375, - "bottom": 40.979898, - "countries": [ - "idaho", - "utah" - ] - }, - { - "x": 49, - "y": 95, - "left": -111.09375, - "top": 42.032974, - "right": -109.6875, - "bottom": 40.979898, - "countries": [ - "idaho", - "wyoming", - "utah" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/illinois.json b/wahoomc/resources/json/united_states/illinois.json deleted file mode 100644 index 077f391c..00000000 --- a/wahoomc/resources/json/united_states/illinois.json +++ /dev/null @@ -1,232 +0,0 @@ -[ - { - "x": 63, - "y": 94, - "left": -91.40625, - "top": 43.068888, - "right": -90.0, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "iowa", - "illinois" - ] - }, - { - "x": 64, - "y": 94, - "left": -90.0, - "top": 43.068888, - "right": -88.59375, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "illinois" - ] - }, - { - "x": 65, - "y": 94, - "left": -88.59375, - "top": 43.068888, - "right": -87.1875, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "illinois" - ] - }, - { - "x": 63, - "y": 95, - "left": -91.40625, - "top": 42.032974, - "right": -90.0, - "bottom": 40.979898, - "countries": [ - "iowa", - "illinois" - ] - }, - { - "x": 64, - "y": 95, - "left": -90.0, - "top": 42.032974, - "right": -88.59375, - "bottom": 40.979898, - "countries": [ - "illinois" - ] - }, - { - "x": 65, - "y": 95, - "left": -88.59375, - "top": 42.032974, - "right": -87.1875, - "bottom": 40.979898, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 62, - "y": 96, - "left": -92.8125, - "top": 40.979898, - "right": -91.40625, - "bottom": 39.909736, - "countries": [ - "iowa", - "illinois", - "missouri" - ] - }, - { - "x": 63, - "y": 96, - "left": -91.40625, - "top": 40.979898, - "right": -90.0, - "bottom": 39.909736, - "countries": [ - "iowa", - "illinois" - ] - }, - { - "x": 64, - "y": 96, - "left": -90.0, - "top": 40.979898, - "right": -88.59375, - "bottom": 39.909736, - "countries": [ - "illinois" - ] - }, - { - "x": 65, - "y": 96, - "left": -88.59375, - "top": 40.979898, - "right": -87.1875, - "bottom": 39.909736, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 62, - "y": 97, - "left": -92.8125, - "top": 39.909736, - "right": -91.40625, - "bottom": 38.822591, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 63, - "y": 97, - "left": -91.40625, - "top": 39.909736, - "right": -90.0, - "bottom": 38.822591, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 64, - "y": 97, - "left": -90.0, - "top": 39.909736, - "right": -88.59375, - "bottom": 38.822591, - "countries": [ - "illinois" - ] - }, - { - "x": 65, - "y": 97, - "left": -88.59375, - "top": 39.909736, - "right": -87.1875, - "bottom": 38.822591, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 63, - "y": 98, - "left": -91.40625, - "top": 38.822591, - "right": -90.0, - "bottom": 37.71859, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 64, - "y": 98, - "left": -90.0, - "top": 38.822591, - "right": -88.59375, - "bottom": 37.71859, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 65, - "y": 98, - "left": -88.59375, - "top": 38.822591, - "right": -87.1875, - "bottom": 37.71859, - "countries": [ - "kentucky", - "illinois", - "indiana" - ] - }, - { - "x": 64, - "y": 99, - "left": -90.0, - "top": 37.71859, - "right": -88.59375, - "bottom": 36.597889, - "countries": [ - "illinois", - "missouri", - "kentucky" - ] - }, - { - "x": 65, - "y": 99, - "left": -88.59375, - "top": 37.71859, - "right": -87.1875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "illinois", - "kentucky" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/indiana.json b/wahoomc/resources/json/united_states/indiana.json deleted file mode 100644 index f42f62dc..00000000 --- a/wahoomc/resources/json/united_states/indiana.json +++ /dev/null @@ -1,147 +0,0 @@ -[ - { - "x": 65, - "y": 95, - "left": -88.59375, - "top": 42.032974, - "right": -87.1875, - "bottom": 40.979898, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 65, - "y": 96, - "left": -88.59375, - "top": 40.979898, - "right": -87.1875, - "bottom": 39.909736, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 65, - "y": 97, - "left": -88.59375, - "top": 39.909736, - "right": -87.1875, - "bottom": 38.822591, - "countries": [ - "illinois", - "indiana" - ] - }, - { - "x": 65, - "y": 98, - "left": -88.59375, - "top": 38.822591, - "right": -87.1875, - "bottom": 37.71859, - "countries": [ - "kentucky", - "illinois", - "indiana" - ] - }, - { - "x": 66, - "y": 95, - "left": -87.1875, - "top": 42.032974, - "right": -85.78125, - "bottom": 40.979898, - "countries": [ - "michigan", - "indiana" - ] - }, - { - "x": 67, - "y": 95, - "left": -85.78125, - "top": 42.032974, - "right": -84.375, - "bottom": 40.979898, - "countries": [ - "michigan", - "indiana", - "ohio" - ] - }, - { - "x": 66, - "y": 96, - "left": -87.1875, - "top": 40.979898, - "right": -85.78125, - "bottom": 39.909736, - "countries": [ - "indiana" - ] - }, - { - "x": 67, - "y": 96, - "left": -85.78125, - "top": 40.979898, - "right": -84.375, - "bottom": 39.909736, - "countries": [ - "indiana", - "ohio" - ] - }, - { - "x": 66, - "y": 97, - "left": -87.1875, - "top": 39.909736, - "right": -85.78125, - "bottom": 38.822591, - "countries": [ - "indiana" - ] - }, - { - "x": 67, - "y": 97, - "left": -85.78125, - "top": 39.909736, - "right": -84.375, - "bottom": 38.822591, - "countries": [ - "indiana", - "ohio", - "kentucky" - ] - }, - { - "x": 66, - "y": 98, - "left": -87.1875, - "top": 38.822591, - "right": -85.78125, - "bottom": 37.71859, - "countries": [ - "indiana", - "kentucky" - ] - }, - { - "x": 67, - "y": 98, - "left": -85.78125, - "top": 38.822591, - "right": -84.375, - "bottom": 37.71859, - "countries": [ - "indiana", - "kentucky" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/iowa.json b/wahoomc/resources/json/united_states/iowa.json deleted file mode 100644 index 87bcf4c1..00000000 --- a/wahoomc/resources/json/united_states/iowa.json +++ /dev/null @@ -1,246 +0,0 @@ -[ - { - "x": 63, - "y": 94, - "left": -91.40625, - "top": 43.068888, - "right": -90.0, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "iowa", - "illinois" - ] - }, - { - "x": 63, - "y": 95, - "left": -91.40625, - "top": 42.032974, - "right": -90.0, - "bottom": 40.979898, - "countries": [ - "iowa", - "illinois" - ] - }, - { - "x": 62, - "y": 96, - "left": -92.8125, - "top": 40.979898, - "right": -91.40625, - "bottom": 39.909736, - "countries": [ - "iowa", - "illinois", - "missouri" - ] - }, - { - "x": 63, - "y": 96, - "left": -91.40625, - "top": 40.979898, - "right": -90.0, - "bottom": 39.909736, - "countries": [ - "iowa", - "illinois" - ] - }, - { - "x": 59, - "y": 93, - "left": -97.03125, - "top": 44.087585, - "right": -95.625, - "bottom": 43.068888, - "countries": [ - "iowa", - "south_dakota", - "minnesota" - ] - }, - { - "x": 60, - "y": 93, - "left": -95.625, - "top": 44.087585, - "right": -94.21875, - "bottom": 43.068888, - "countries": [ - "iowa", - "minnesota" - ] - }, - { - "x": 61, - "y": 93, - "left": -94.21875, - "top": 44.087585, - "right": -92.8125, - "bottom": 43.068888, - "countries": [ - "iowa", - "minnesota" - ] - }, - { - "x": 62, - "y": 93, - "left": -92.8125, - "top": 44.087585, - "right": -91.40625, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 63, - "y": 93, - "left": -91.40625, - "top": 44.087585, - "right": -90.0, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 59, - "y": 94, - "left": -97.03125, - "top": 43.068888, - "right": -95.625, - "bottom": 42.032974, - "countries": [ - "iowa", - "south_dakota", - "nebraska" - ] - }, - { - "x": 60, - "y": 94, - "left": -95.625, - "top": 43.068888, - "right": -94.21875, - "bottom": 42.032974, - "countries": [ - "iowa" - ] - }, - { - "x": 61, - "y": 94, - "left": -94.21875, - "top": 43.068888, - "right": -92.8125, - "bottom": 42.032974, - "countries": [ - "iowa" - ] - }, - { - "x": 62, - "y": 94, - "left": -92.8125, - "top": 43.068888, - "right": -91.40625, - "bottom": 42.032974, - "countries": [ - "iowa" - ] - }, - { - "x": 59, - "y": 95, - "left": -97.03125, - "top": 42.032974, - "right": -95.625, - "bottom": 40.979898, - "countries": [ - "iowa", - "nebraska" - ] - }, - { - "x": 60, - "y": 95, - "left": -95.625, - "top": 42.032974, - "right": -94.21875, - "bottom": 40.979898, - "countries": [ - "iowa" - ] - }, - { - "x": 61, - "y": 95, - "left": -94.21875, - "top": 42.032974, - "right": -92.8125, - "bottom": 40.979898, - "countries": [ - "iowa" - ] - }, - { - "x": 62, - "y": 95, - "left": -92.8125, - "top": 42.032974, - "right": -91.40625, - "bottom": 40.979898, - "countries": [ - "iowa" - ] - }, - { - "x": 59, - "y": 96, - "left": -97.03125, - "top": 40.979898, - "right": -95.625, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 60, - "y": 96, - "left": -95.625, - "top": 40.979898, - "right": -94.21875, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 61, - "y": 96, - "left": -94.21875, - "top": 40.979898, - "right": -92.8125, - "bottom": 39.909736, - "countries": [ - "iowa", - "missouri" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/kansas.json b/wahoomc/resources/json/united_states/kansas.json deleted file mode 100644 index f144b151..00000000 --- a/wahoomc/resources/json/united_states/kansas.json +++ /dev/null @@ -1,289 +0,0 @@ -[ - { - "x": 55, - "y": 96, - "left": -102.65625, - "top": 40.979898, - "right": -101.25, - "bottom": 39.909736, - "countries": [ - "nebraska", - "kansas", - "colorado" - ] - }, - { - "x": 55, - "y": 97, - "left": -102.65625, - "top": 39.909736, - "right": -101.25, - "bottom": 38.822591, - "countries": [ - "kansas", - "colorado" - ] - }, - { - "x": 55, - "y": 98, - "left": -102.65625, - "top": 38.822591, - "right": -101.25, - "bottom": 37.71859, - "countries": [ - "kansas", - "colorado" - ] - }, - { - "x": 55, - "y": 99, - "left": -102.65625, - "top": 37.71859, - "right": -101.25, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "colorado" - ] - }, - { - "x": 59, - "y": 96, - "left": -97.03125, - "top": 40.979898, - "right": -95.625, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 60, - "y": 96, - "left": -95.625, - "top": 40.979898, - "right": -94.21875, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 56, - "y": 96, - "left": -101.25, - "top": 40.979898, - "right": -99.84375, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 57, - "y": 96, - "left": -99.84375, - "top": 40.979898, - "right": -98.4375, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 58, - "y": 96, - "left": -98.4375, - "top": 40.979898, - "right": -97.03125, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 56, - "y": 97, - "left": -101.25, - "top": 39.909736, - "right": -99.84375, - "bottom": 38.822591, - "countries": [ - "kansas" - ] - }, - { - "x": 57, - "y": 97, - "left": -99.84375, - "top": 39.909736, - "right": -98.4375, - "bottom": 38.822591, - "countries": [ - "kansas" - ] - }, - { - "x": 58, - "y": 97, - "left": -98.4375, - "top": 39.909736, - "right": -97.03125, - "bottom": 38.822591, - "countries": [ - "kansas" - ] - }, - { - "x": 59, - "y": 97, - "left": -97.03125, - "top": 39.909736, - "right": -95.625, - "bottom": 38.822591, - "countries": [ - "kansas" - ] - }, - { - "x": 60, - "y": 97, - "left": -95.625, - "top": 39.909736, - "right": -94.21875, - "bottom": 38.822591, - "countries": [ - "kansas", - "missouri" - ] - }, - { - "x": 56, - "y": 98, - "left": -101.25, - "top": 38.822591, - "right": -99.84375, - "bottom": 37.71859, - "countries": [ - "kansas" - ] - }, - { - "x": 57, - "y": 98, - "left": -99.84375, - "top": 38.822591, - "right": -98.4375, - "bottom": 37.71859, - "countries": [ - "kansas" - ] - }, - { - "x": 58, - "y": 98, - "left": -98.4375, - "top": 38.822591, - "right": -97.03125, - "bottom": 37.71859, - "countries": [ - "kansas" - ] - }, - { - "x": 59, - "y": 98, - "left": -97.03125, - "top": 38.822591, - "right": -95.625, - "bottom": 37.71859, - "countries": [ - "kansas" - ] - }, - { - "x": 60, - "y": 98, - "left": -95.625, - "top": 38.822591, - "right": -94.21875, - "bottom": 37.71859, - "countries": [ - "kansas", - "missouri" - ] - }, - { - "x": 56, - "y": 99, - "left": -101.25, - "top": 37.71859, - "right": -99.84375, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 57, - "y": 99, - "left": -99.84375, - "top": 37.71859, - "right": -98.4375, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 58, - "y": 99, - "left": -98.4375, - "top": 37.71859, - "right": -97.03125, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 59, - "y": 99, - "left": -97.03125, - "top": 37.71859, - "right": -95.625, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 60, - "y": 99, - "left": -95.625, - "top": 37.71859, - "right": -94.21875, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "missouri" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/kentucky.json b/wahoomc/resources/json/united_states/kentucky.json deleted file mode 100644 index 12a8bb3f..00000000 --- a/wahoomc/resources/json/united_states/kentucky.json +++ /dev/null @@ -1,218 +0,0 @@ -[ - { - "x": 64, - "y": 100, - "left": -90.0, - "top": 36.597889, - "right": -88.59375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri", - "kentucky" - ] - }, - { - "x": 65, - "y": 98, - "left": -88.59375, - "top": 38.822591, - "right": -87.1875, - "bottom": 37.71859, - "countries": [ - "kentucky", - "illinois", - "indiana" - ] - }, - { - "x": 64, - "y": 99, - "left": -90.0, - "top": 37.71859, - "right": -88.59375, - "bottom": 36.597889, - "countries": [ - "illinois", - "missouri", - "kentucky" - ] - }, - { - "x": 65, - "y": 99, - "left": -88.59375, - "top": 37.71859, - "right": -87.1875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "illinois", - "kentucky" - ] - }, - { - "x": 67, - "y": 97, - "left": -85.78125, - "top": 39.909736, - "right": -84.375, - "bottom": 38.822591, - "countries": [ - "indiana", - "ohio", - "kentucky" - ] - }, - { - "x": 66, - "y": 98, - "left": -87.1875, - "top": 38.822591, - "right": -85.78125, - "bottom": 37.71859, - "countries": [ - "indiana", - "kentucky" - ] - }, - { - "x": 67, - "y": 98, - "left": -85.78125, - "top": 38.822591, - "right": -84.375, - "bottom": 37.71859, - "countries": [ - "indiana", - "kentucky" - ] - }, - { - "x": 68, - "y": 97, - "left": -84.375, - "top": 39.909736, - "right": -82.96875, - "bottom": 38.822591, - "countries": [ - "ohio", - "kentucky" - ] - }, - { - "x": 68, - "y": 98, - "left": -84.375, - "top": 38.822591, - "right": -82.96875, - "bottom": 37.71859, - "countries": [ - "ohio", - "kentucky" - ] - }, - { - "x": 69, - "y": 98, - "left": -82.96875, - "top": 38.822591, - "right": -81.5625, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "ohio", - "kentucky" - ] - }, - { - "x": 66, - "y": 99, - "left": -87.1875, - "top": 37.71859, - "right": -85.78125, - "bottom": 36.597889, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 67, - "y": 99, - "left": -85.78125, - "top": 37.71859, - "right": -84.375, - "bottom": 36.597889, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 68, - "y": 99, - "left": -84.375, - "top": 37.71859, - "right": -82.96875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 69, - "y": 99, - "left": -82.96875, - "top": 37.71859, - "right": -81.5625, - "bottom": 36.597889, - "countries": [ - "tennessee", - "west_virginia", - "virginia", - "kentucky" - ] - }, - { - "x": 65, - "y": 100, - "left": -88.59375, - "top": 36.597889, - "right": -87.1875, - "bottom": 35.46067, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 67, - "y": 100, - "left": -85.78125, - "top": 36.597889, - "right": -84.375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 68, - "y": 100, - "left": -84.375, - "top": 36.597889, - "right": -82.96875, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia", - "kentucky" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/louisiana.json b/wahoomc/resources/json/united_states/louisiana.json deleted file mode 100644 index a84b6197..00000000 --- a/wahoomc/resources/json/united_states/louisiana.json +++ /dev/null @@ -1,167 +0,0 @@ -[ - { - "x": 61, - "y": 103, - "left": -94.21875, - "top": 33.137551, - "right": -92.8125, - "bottom": 31.952162, - "countries": [ - "texas", - "arkansas", - "louisiana" - ] - }, - { - "x": 62, - "y": 103, - "left": -92.8125, - "top": 33.137551, - "right": -91.40625, - "bottom": 31.952162, - "countries": [ - "arkansas", - "louisiana" - ] - }, - { - "x": 63, - "y": 103, - "left": -91.40625, - "top": 33.137551, - "right": -90.0, - "bottom": 31.952162, - "countries": [ - "arkansas", - "louisiana", - "mississippi" - ] - }, - { - "x": 61, - "y": 104, - "left": -94.21875, - "top": 31.952162, - "right": -92.8125, - "bottom": 30.751278, - "countries": [ - "texas", - "louisiana" - ] - }, - { - "x": 62, - "y": 104, - "left": -92.8125, - "top": 31.952162, - "right": -91.40625, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 63, - "y": 104, - "left": -91.40625, - "top": 31.952162, - "right": -90.0, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 64, - "y": 104, - "left": -90.0, - "top": 31.952162, - "right": -88.59375, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 61, - "y": 105, - "left": -94.21875, - "top": 30.751278, - "right": -92.8125, - "bottom": 29.53523, - "countries": [ - "texas", - "louisiana" - ] - }, - { - "x": 62, - "y": 105, - "left": -92.8125, - "top": 30.751278, - "right": -91.40625, - "bottom": 29.53523, - "countries": [ - "louisiana" - ] - }, - { - "x": 63, - "y": 105, - "left": -91.40625, - "top": 30.751278, - "right": -90.0, - "bottom": 29.53523, - "countries": [ - "louisiana" - ] - }, - { - "x": 64, - "y": 105, - "left": -90.0, - "top": 30.751278, - "right": -88.59375, - "bottom": 29.53523, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 62, - "y": 106, - "left": -92.8125, - "top": 29.53523, - "right": -91.40625, - "bottom": 28.304381, - "countries": [ - "louisiana" - ] - }, - { - "x": 63, - "y": 106, - "left": -91.40625, - "top": 29.53523, - "right": -90.0, - "bottom": 28.304381, - "countries": [ - "louisiana" - ] - }, - { - "x": 64, - "y": 106, - "left": -90.0, - "top": 29.53523, - "right": -88.59375, - "bottom": 28.304381, - "countries": [ - "louisiana" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/maine.json b/wahoomc/resources/json/united_states/maine.json deleted file mode 100644 index 784dd726..00000000 --- a/wahoomc/resources/json/united_states/maine.json +++ /dev/null @@ -1,194 +0,0 @@ -[ - { - "x": 78, - "y": 89, - "left": -70.3125, - "top": 47.989922, - "right": -68.90625, - "bottom": 47.040182, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 89, - "left": -68.90625, - "top": 47.989922, - "right": -67.5, - "bottom": 47.040182, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 78, - "y": 90, - "left": -70.3125, - "top": 47.040182, - "right": -68.90625, - "bottom": 46.073231, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 90, - "left": -68.90625, - "top": 47.040182, - "right": -67.5, - "bottom": 46.073231, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 77, - "y": 91, - "left": -71.71875, - "top": 46.073231, - "right": -70.3125, - "bottom": 45.089036, - "countries": [ - "maine", - "new_hampshire", - "canada" - ] - }, - { - "x": 78, - "y": 91, - "left": -70.3125, - "top": 46.073231, - "right": -68.90625, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 79, - "y": 91, - "left": -68.90625, - "top": 46.073231, - "right": -67.5, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 80, - "y": 91, - "left": -67.5, - "top": 46.073231, - "right": -66.09375, - "bottom": 45.089036, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 77, - "y": 92, - "left": -71.71875, - "top": 45.089036, - "right": -70.3125, - "bottom": 44.087585, - "countries": [ - "maine", - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 80, - "y": 92, - "left": -67.5, - "top": 45.089036, - "right": -66.09375, - "bottom": 44.087585, - "countries": [ - "maine", - "canada" - ] - }, - { - "x": 78, - "y": 92, - "left": -70.3125, - "top": 45.089036, - "right": -68.90625, - "bottom": 44.087585, - "countries": [ - "maine" - ] - }, - { - "x": 79, - "y": 92, - "left": -68.90625, - "top": 45.089036, - "right": -67.5, - "bottom": 44.087585, - "countries": [ - "maine" - ] - }, - { - "x": 77, - "y": 93, - "left": -71.71875, - "top": 44.087585, - "right": -70.3125, - "bottom": 43.068888, - "countries": [ - "maine", - "new_hampshire" - ] - }, - { - "x": 78, - "y": 93, - "left": -70.3125, - "top": 44.087585, - "right": -68.90625, - "bottom": 43.068888, - "countries": [ - "maine" - ] - }, - { - "x": 79, - "y": 93, - "left": -68.90625, - "top": 44.087585, - "right": -67.5, - "bottom": 43.068888, - "countries": [ - "maine" - ] - }, - { - "x": 77, - "y": 94, - "left": -71.71875, - "top": 43.068888, - "right": -70.3125, - "bottom": 42.032974, - "countries": [ - "maine", - "massachusetts", - "new_hampshire" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/maryland.json b/wahoomc/resources/json/united_states/maryland.json deleted file mode 100644 index 1bd15f5d..00000000 --- a/wahoomc/resources/json/united_states/maryland.json +++ /dev/null @@ -1,84 +0,0 @@ -[ - { - "x": 74, - "y": 97, - "left": -75.9375, - "top": 39.909736, - "right": -74.53125, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "new_jersey", - "delaware" - ] - }, - { - "x": 74, - "y": 98, - "left": -75.9375, - "top": 38.822591, - "right": -74.53125, - "bottom": 37.71859, - "countries": [ - "maryland", - "virginia", - "delaware" - ] - }, - { - "x": 73, - "y": 97, - "left": -77.34375, - "top": 39.909736, - "right": -75.9375, - "bottom": 38.822591, - "countries": [ - "maryland", - "district_of_columbia", - "pennsylvania", - "virginia" - ] - }, - { - "x": 73, - "y": 98, - "left": -77.34375, - "top": 38.822591, - "right": -75.9375, - "bottom": 37.71859, - "countries": [ - "maryland", - "district_of_columbia", - "virginia" - ] - }, - { - "x": 71, - "y": 97, - "left": -80.15625, - "top": 39.909736, - "right": -78.75, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 72, - "y": 97, - "left": -78.75, - "top": 39.909736, - "right": -77.34375, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/massachusetts.json b/wahoomc/resources/json/united_states/massachusetts.json deleted file mode 100644 index d8ba1195..00000000 --- a/wahoomc/resources/json/united_states/massachusetts.json +++ /dev/null @@ -1,91 +0,0 @@ -[ - { - "x": 75, - "y": 94, - "left": -74.53125, - "top": 43.068888, - "right": -73.125, - "bottom": 42.032974, - "countries": [ - "connecticut", - "new_york", - "vermont", - "massachusetts" - ] - }, - { - "x": 76, - "y": 94, - "left": -73.125, - "top": 43.068888, - "right": -71.71875, - "bottom": 42.032974, - "countries": [ - "connecticut", - "vermont", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 76, - "y": 95, - "left": -73.125, - "top": 42.032974, - "right": -71.71875, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_york", - "rhode_island", - "massachusetts" - ] - }, - { - "x": 77, - "y": 94, - "left": -71.71875, - "top": 43.068888, - "right": -70.3125, - "bottom": 42.032974, - "countries": [ - "maine", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 78, - "y": 94, - "left": -70.3125, - "top": 43.068888, - "right": -68.90625, - "bottom": 42.032974, - "countries": [ - "massachusetts" - ] - }, - { - "x": 77, - "y": 95, - "left": -71.71875, - "top": 42.032974, - "right": -70.3125, - "bottom": 40.979898, - "countries": [ - "rhode_island", - "massachusetts" - ] - }, - { - "x": 78, - "y": 95, - "left": -70.3125, - "top": 42.032974, - "right": -68.90625, - "bottom": 40.979898, - "countries": [ - "massachusetts" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/michigan.json b/wahoomc/resources/json/united_states/michigan.json deleted file mode 100644 index 9983d785..00000000 --- a/wahoomc/resources/json/united_states/michigan.json +++ /dev/null @@ -1,343 +0,0 @@ -[ - { - "x": 64, - "y": 88, - "left": -90.0, - "top": 48.922499, - "right": -88.59375, - "bottom": 47.989922, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 65, - "y": 88, - "left": -88.59375, - "top": 48.922499, - "right": -87.1875, - "bottom": 47.989922, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 64, - "y": 89, - "left": -90.0, - "top": 47.989922, - "right": -88.59375, - "bottom": 47.040182, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 67, - "y": 90, - "left": -85.78125, - "top": 47.040182, - "right": -84.375, - "bottom": 46.073231, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 68, - "y": 90, - "left": -84.375, - "top": 47.040182, - "right": -82.96875, - "bottom": 46.073231, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 68, - "y": 91, - "left": -84.375, - "top": 46.073231, - "right": -82.96875, - "bottom": 45.089036, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 69, - "y": 93, - "left": -82.96875, - "top": 44.087585, - "right": -81.5625, - "bottom": 43.068888, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 68, - "y": 94, - "left": -84.375, - "top": 43.068888, - "right": -82.96875, - "bottom": 42.032974, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 69, - "y": 94, - "left": -82.96875, - "top": 43.068888, - "right": -81.5625, - "bottom": 42.032974, - "countries": [ - "michigan", - "canada" - ] - }, - { - "x": 68, - "y": 95, - "left": -84.375, - "top": 42.032974, - "right": -82.96875, - "bottom": 40.979898, - "countries": [ - "michigan", - "ohio", - "canada" - ] - }, - { - "x": 66, - "y": 95, - "left": -87.1875, - "top": 42.032974, - "right": -85.78125, - "bottom": 40.979898, - "countries": [ - "michigan", - "indiana" - ] - }, - { - "x": 67, - "y": 95, - "left": -85.78125, - "top": 42.032974, - "right": -84.375, - "bottom": 40.979898, - "countries": [ - "michigan", - "indiana", - "ohio" - ] - }, - { - "x": 65, - "y": 89, - "left": -88.59375, - "top": 47.989922, - "right": -87.1875, - "bottom": 47.040182, - "countries": [ - "michigan" - ] - }, - { - "x": 63, - "y": 90, - "left": -91.40625, - "top": 47.040182, - "right": -90.0, - "bottom": 46.073231, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 64, - "y": 90, - "left": -90.0, - "top": 47.040182, - "right": -88.59375, - "bottom": 46.073231, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 65, - "y": 90, - "left": -88.59375, - "top": 47.040182, - "right": -87.1875, - "bottom": 46.073231, - "countries": [ - "michigan" - ] - }, - { - "x": 66, - "y": 90, - "left": -87.1875, - "top": 47.040182, - "right": -85.78125, - "bottom": 46.073231, - "countries": [ - "michigan" - ] - }, - { - "x": 64, - "y": 91, - "left": -90.0, - "top": 46.073231, - "right": -88.59375, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 65, - "y": 91, - "left": -88.59375, - "top": 46.073231, - "right": -87.1875, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 66, - "y": 91, - "left": -87.1875, - "top": 46.073231, - "right": -85.78125, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 67, - "y": 91, - "left": -85.78125, - "top": 46.073231, - "right": -84.375, - "bottom": 45.089036, - "countries": [ - "michigan" - ] - }, - { - "x": 66, - "y": 92, - "left": -87.1875, - "top": 45.089036, - "right": -85.78125, - "bottom": 44.087585, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 67, - "y": 92, - "left": -85.78125, - "top": 45.089036, - "right": -84.375, - "bottom": 44.087585, - "countries": [ - "michigan" - ] - }, - { - "x": 68, - "y": 92, - "left": -84.375, - "top": 45.089036, - "right": -82.96875, - "bottom": 44.087585, - "countries": [ - "michigan" - ] - }, - { - "x": 66, - "y": 93, - "left": -87.1875, - "top": 44.087585, - "right": -85.78125, - "bottom": 43.068888, - "countries": [ - "michigan" - ] - }, - { - "x": 67, - "y": 93, - "left": -85.78125, - "top": 44.087585, - "right": -84.375, - "bottom": 43.068888, - "countries": [ - "michigan" - ] - }, - { - "x": 68, - "y": 93, - "left": -84.375, - "top": 44.087585, - "right": -82.96875, - "bottom": 43.068888, - "countries": [ - "michigan" - ] - }, - { - "x": 66, - "y": 94, - "left": -87.1875, - "top": 43.068888, - "right": -85.78125, - "bottom": 42.032974, - "countries": [ - "michigan" - ] - }, - { - "x": 67, - "y": 94, - "left": -85.78125, - "top": 43.068888, - "right": -84.375, - "bottom": 42.032974, - "countries": [ - "michigan" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/minnesota.json b/wahoomc/resources/json/united_states/minnesota.json deleted file mode 100644 index 9d18860b..00000000 --- a/wahoomc/resources/json/united_states/minnesota.json +++ /dev/null @@ -1,408 +0,0 @@ -[ - { - "x": 58, - "y": 87, - "left": -98.4375, - "top": 49.837982, - "right": -97.03125, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "minnesota", - "canada" - ] - }, - { - "x": 59, - "y": 87, - "left": -97.03125, - "top": 49.837982, - "right": -95.625, - "bottom": 48.922499, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 60, - "y": 87, - "left": -95.625, - "top": 49.837982, - "right": -94.21875, - "bottom": 48.922499, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 60, - "y": 88, - "left": -95.625, - "top": 48.922499, - "right": -94.21875, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 61, - "y": 88, - "left": -94.21875, - "top": 48.922499, - "right": -92.8125, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 62, - "y": 88, - "left": -92.8125, - "top": 48.922499, - "right": -91.40625, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 63, - "y": 88, - "left": -91.40625, - "top": 48.922499, - "right": -90.0, - "bottom": 47.989922, - "countries": [ - "minnesota", - "canada" - ] - }, - { - "x": 64, - "y": 88, - "left": -90.0, - "top": 48.922499, - "right": -88.59375, - "bottom": 47.989922, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 64, - "y": 89, - "left": -90.0, - "top": 47.989922, - "right": -88.59375, - "bottom": 47.040182, - "countries": [ - "michigan", - "minnesota", - "canada" - ] - }, - { - "x": 59, - "y": 93, - "left": -97.03125, - "top": 44.087585, - "right": -95.625, - "bottom": 43.068888, - "countries": [ - "iowa", - "south_dakota", - "minnesota" - ] - }, - { - "x": 60, - "y": 93, - "left": -95.625, - "top": 44.087585, - "right": -94.21875, - "bottom": 43.068888, - "countries": [ - "iowa", - "minnesota" - ] - }, - { - "x": 61, - "y": 93, - "left": -94.21875, - "top": 44.087585, - "right": -92.8125, - "bottom": 43.068888, - "countries": [ - "iowa", - "minnesota" - ] - }, - { - "x": 62, - "y": 93, - "left": -92.8125, - "top": 44.087585, - "right": -91.40625, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 63, - "y": 93, - "left": -91.40625, - "top": 44.087585, - "right": -90.0, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 58, - "y": 88, - "left": -98.4375, - "top": 48.922499, - "right": -97.03125, - "bottom": 47.989922, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 88, - "left": -97.03125, - "top": 48.922499, - "right": -95.625, - "bottom": 47.989922, - "countries": [ - "minnesota" - ] - }, - { - "x": 58, - "y": 89, - "left": -98.4375, - "top": 47.989922, - "right": -97.03125, - "bottom": 47.040182, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 89, - "left": -97.03125, - "top": 47.989922, - "right": -95.625, - "bottom": 47.040182, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 60, - "y": 89, - "left": -95.625, - "top": 47.989922, - "right": -94.21875, - "bottom": 47.040182, - "countries": [ - "minnesota" - ] - }, - { - "x": 61, - "y": 89, - "left": -94.21875, - "top": 47.989922, - "right": -92.8125, - "bottom": 47.040182, - "countries": [ - "minnesota" - ] - }, - { - "x": 62, - "y": 89, - "left": -92.8125, - "top": 47.989922, - "right": -91.40625, - "bottom": 47.040182, - "countries": [ - "minnesota" - ] - }, - { - "x": 63, - "y": 89, - "left": -91.40625, - "top": 47.989922, - "right": -90.0, - "bottom": 47.040182, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 59, - "y": 90, - "left": -97.03125, - "top": 47.040182, - "right": -95.625, - "bottom": 46.073231, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 60, - "y": 90, - "left": -95.625, - "top": 47.040182, - "right": -94.21875, - "bottom": 46.073231, - "countries": [ - "minnesota" - ] - }, - { - "x": 61, - "y": 90, - "left": -94.21875, - "top": 47.040182, - "right": -92.8125, - "bottom": 46.073231, - "countries": [ - "minnesota" - ] - }, - { - "x": 62, - "y": 90, - "left": -92.8125, - "top": 47.040182, - "right": -91.40625, - "bottom": 46.073231, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 59, - "y": 91, - "left": -97.03125, - "top": 46.073231, - "right": -95.625, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "minnesota", - "south_dakota" - ] - }, - { - "x": 60, - "y": 91, - "left": -95.625, - "top": 46.073231, - "right": -94.21875, - "bottom": 45.089036, - "countries": [ - "minnesota" - ] - }, - { - "x": 61, - "y": 91, - "left": -94.21875, - "top": 46.073231, - "right": -92.8125, - "bottom": 45.089036, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 62, - "y": 91, - "left": -92.8125, - "top": 46.073231, - "right": -91.40625, - "bottom": 45.089036, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 59, - "y": 92, - "left": -97.03125, - "top": 45.089036, - "right": -95.625, - "bottom": 44.087585, - "countries": [ - "south_dakota", - "minnesota" - ] - }, - { - "x": 60, - "y": 92, - "left": -95.625, - "top": 45.089036, - "right": -94.21875, - "bottom": 44.087585, - "countries": [ - "minnesota" - ] - }, - { - "x": 61, - "y": 92, - "left": -94.21875, - "top": 45.089036, - "right": -92.8125, - "bottom": 44.087585, - "countries": [ - "minnesota" - ] - }, - { - "x": 62, - "y": 92, - "left": -92.8125, - "top": 45.089036, - "right": -91.40625, - "bottom": 44.087585, - "countries": [ - "wisconsin", - "minnesota" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/mississippi.json b/wahoomc/resources/json/united_states/mississippi.json deleted file mode 100644 index f480b1ed..00000000 --- a/wahoomc/resources/json/united_states/mississippi.json +++ /dev/null @@ -1,185 +0,0 @@ -[ - { - "x": 65, - "y": 101, - "left": -88.59375, - "top": 35.46067, - "right": -87.1875, - "bottom": 34.307144, - "countries": [ - "alabama", - "tennessee", - "mississippi" - ] - }, - { - "x": 65, - "y": 102, - "left": -88.59375, - "top": 34.307144, - "right": -87.1875, - "bottom": 33.137551, - "countries": [ - "alabama", - "mississippi" - ] - }, - { - "x": 65, - "y": 103, - "left": -88.59375, - "top": 33.137551, - "right": -87.1875, - "bottom": 31.952162, - "countries": [ - "alabama", - "mississippi" - ] - }, - { - "x": 65, - "y": 104, - "left": -88.59375, - "top": 31.952162, - "right": -87.1875, - "bottom": 30.751278, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - }, - { - "x": 65, - "y": 105, - "left": -88.59375, - "top": 30.751278, - "right": -87.1875, - "bottom": 29.53523, - "countries": [ - "alabama", - "florida", - "mississippi" - ] - }, - { - "x": 63, - "y": 101, - "left": -91.40625, - "top": 35.46067, - "right": -90.0, - "bottom": 34.307144, - "countries": [ - "tennessee", - "arkansas", - "mississippi" - ] - }, - { - "x": 63, - "y": 102, - "left": -91.40625, - "top": 34.307144, - "right": -90.0, - "bottom": 33.137551, - "countries": [ - "arkansas", - "mississippi" - ] - }, - { - "x": 63, - "y": 103, - "left": -91.40625, - "top": 33.137551, - "right": -90.0, - "bottom": 31.952162, - "countries": [ - "arkansas", - "louisiana", - "mississippi" - ] - }, - { - "x": 62, - "y": 104, - "left": -92.8125, - "top": 31.952162, - "right": -91.40625, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 63, - "y": 104, - "left": -91.40625, - "top": 31.952162, - "right": -90.0, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 64, - "y": 104, - "left": -90.0, - "top": 31.952162, - "right": -88.59375, - "bottom": 30.751278, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 64, - "y": 105, - "left": -90.0, - "top": 30.751278, - "right": -88.59375, - "bottom": 29.53523, - "countries": [ - "louisiana", - "mississippi" - ] - }, - { - "x": 64, - "y": 101, - "left": -90.0, - "top": 35.46067, - "right": -88.59375, - "bottom": 34.307144, - "countries": [ - "tennessee", - "mississippi" - ] - }, - { - "x": 64, - "y": 102, - "left": -90.0, - "top": 34.307144, - "right": -88.59375, - "bottom": 33.137551, - "countries": [ - "mississippi" - ] - }, - { - "x": 64, - "y": 103, - "left": -90.0, - "top": 33.137551, - "right": -88.59375, - "bottom": 31.952162, - "countries": [ - "mississippi" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/missouri.json b/wahoomc/resources/json/united_states/missouri.json deleted file mode 100644 index 8be86197..00000000 --- a/wahoomc/resources/json/united_states/missouri.json +++ /dev/null @@ -1,283 +0,0 @@ -[ - { - "x": 60, - "y": 100, - "left": -95.625, - "top": 36.597889, - "right": -94.21875, - "bottom": 35.46067, - "countries": [ - "oklahoma", - "arkansas", - "missouri" - ] - }, - { - "x": 61, - "y": 100, - "left": -94.21875, - "top": 36.597889, - "right": -92.8125, - "bottom": 35.46067, - "countries": [ - "arkansas", - "missouri" - ] - }, - { - "x": 62, - "y": 100, - "left": -92.8125, - "top": 36.597889, - "right": -91.40625, - "bottom": 35.46067, - "countries": [ - "arkansas", - "missouri" - ] - }, - { - "x": 63, - "y": 100, - "left": -91.40625, - "top": 36.597889, - "right": -90.0, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri" - ] - }, - { - "x": 64, - "y": 100, - "left": -90.0, - "top": 36.597889, - "right": -88.59375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri", - "kentucky" - ] - }, - { - "x": 62, - "y": 96, - "left": -92.8125, - "top": 40.979898, - "right": -91.40625, - "bottom": 39.909736, - "countries": [ - "iowa", - "illinois", - "missouri" - ] - }, - { - "x": 62, - "y": 97, - "left": -92.8125, - "top": 39.909736, - "right": -91.40625, - "bottom": 38.822591, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 63, - "y": 97, - "left": -91.40625, - "top": 39.909736, - "right": -90.0, - "bottom": 38.822591, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 63, - "y": 98, - "left": -91.40625, - "top": 38.822591, - "right": -90.0, - "bottom": 37.71859, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 64, - "y": 98, - "left": -90.0, - "top": 38.822591, - "right": -88.59375, - "bottom": 37.71859, - "countries": [ - "illinois", - "missouri" - ] - }, - { - "x": 64, - "y": 99, - "left": -90.0, - "top": 37.71859, - "right": -88.59375, - "bottom": 36.597889, - "countries": [ - "illinois", - "missouri", - "kentucky" - ] - }, - { - "x": 59, - "y": 96, - "left": -97.03125, - "top": 40.979898, - "right": -95.625, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 60, - "y": 96, - "left": -95.625, - "top": 40.979898, - "right": -94.21875, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 61, - "y": 96, - "left": -94.21875, - "top": 40.979898, - "right": -92.8125, - "bottom": 39.909736, - "countries": [ - "iowa", - "missouri" - ] - }, - { - "x": 60, - "y": 97, - "left": -95.625, - "top": 39.909736, - "right": -94.21875, - "bottom": 38.822591, - "countries": [ - "kansas", - "missouri" - ] - }, - { - "x": 60, - "y": 98, - "left": -95.625, - "top": 38.822591, - "right": -94.21875, - "bottom": 37.71859, - "countries": [ - "kansas", - "missouri" - ] - }, - { - "x": 60, - "y": 99, - "left": -95.625, - "top": 37.71859, - "right": -94.21875, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "missouri" - ] - }, - { - "x": 61, - "y": 97, - "left": -94.21875, - "top": 39.909736, - "right": -92.8125, - "bottom": 38.822591, - "countries": [ - "missouri" - ] - }, - { - "x": 61, - "y": 98, - "left": -94.21875, - "top": 38.822591, - "right": -92.8125, - "bottom": 37.71859, - "countries": [ - "missouri" - ] - }, - { - "x": 62, - "y": 98, - "left": -92.8125, - "top": 38.822591, - "right": -91.40625, - "bottom": 37.71859, - "countries": [ - "missouri" - ] - }, - { - "x": 61, - "y": 99, - "left": -94.21875, - "top": 37.71859, - "right": -92.8125, - "bottom": 36.597889, - "countries": [ - "missouri" - ] - }, - { - "x": 62, - "y": 99, - "left": -92.8125, - "top": 37.71859, - "right": -91.40625, - "bottom": 36.597889, - "countries": [ - "missouri" - ] - }, - { - "x": 63, - "y": 99, - "left": -91.40625, - "top": 37.71859, - "right": -90.0, - "bottom": 36.597889, - "countries": [ - "missouri" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/montana.json b/wahoomc/resources/json/united_states/montana.json deleted file mode 100644 index fee52ca3..00000000 --- a/wahoomc/resources/json/united_states/montana.json +++ /dev/null @@ -1,651 +0,0 @@ -[ - { - "x": 45, - "y": 87, - "left": -116.71875, - "top": 49.837982, - "right": -115.3125, - "bottom": 48.922499, - "countries": [ - "idaho", - "montana", - "canada" - ] - }, - { - "x": 46, - "y": 87, - "left": -115.3125, - "top": 49.837982, - "right": -113.90625, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 47, - "y": 87, - "left": -113.90625, - "top": 49.837982, - "right": -112.5, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 48, - "y": 87, - "left": -112.5, - "top": 49.837982, - "right": -111.09375, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 49, - "y": 87, - "left": -111.09375, - "top": 49.837982, - "right": -109.6875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 50, - "y": 87, - "left": -109.6875, - "top": 49.837982, - "right": -108.28125, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 51, - "y": 87, - "left": -108.28125, - "top": 49.837982, - "right": -106.875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 52, - "y": 87, - "left": -106.875, - "top": 49.837982, - "right": -105.46875, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 53, - "y": 87, - "left": -105.46875, - "top": 49.837982, - "right": -104.0625, - "bottom": 48.922499, - "countries": [ - "montana", - "canada" - ] - }, - { - "x": 54, - "y": 87, - "left": -104.0625, - "top": 49.837982, - "right": -102.65625, - "bottom": 48.922499, - "countries": [ - "montana", - "north_dakota", - "canada" - ] - }, - { - "x": 45, - "y": 88, - "left": -116.71875, - "top": 48.922499, - "right": -115.3125, - "bottom": 47.989922, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 45, - "y": 89, - "left": -116.71875, - "top": 47.989922, - "right": -115.3125, - "bottom": 47.040182, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 46, - "y": 89, - "left": -115.3125, - "top": 47.989922, - "right": -113.90625, - "bottom": 47.040182, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 46, - "y": 90, - "left": -115.3125, - "top": 47.040182, - "right": -113.90625, - "bottom": 46.073231, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 46, - "y": 91, - "left": -115.3125, - "top": 46.073231, - "right": -113.90625, - "bottom": 45.089036, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 47, - "y": 91, - "left": -113.90625, - "top": 46.073231, - "right": -112.5, - "bottom": 45.089036, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 47, - "y": 92, - "left": -113.90625, - "top": 45.089036, - "right": -112.5, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 48, - "y": 92, - "left": -112.5, - "top": 45.089036, - "right": -111.09375, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana" - ] - }, - { - "x": 49, - "y": 92, - "left": -111.09375, - "top": 45.089036, - "right": -109.6875, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana", - "wyoming" - ] - }, - { - "x": 46, - "y": 88, - "left": -115.3125, - "top": 48.922499, - "right": -113.90625, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 47, - "y": 88, - "left": -113.90625, - "top": 48.922499, - "right": -112.5, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 48, - "y": 88, - "left": -112.5, - "top": 48.922499, - "right": -111.09375, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 49, - "y": 88, - "left": -111.09375, - "top": 48.922499, - "right": -109.6875, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 50, - "y": 88, - "left": -109.6875, - "top": 48.922499, - "right": -108.28125, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 51, - "y": 88, - "left": -108.28125, - "top": 48.922499, - "right": -106.875, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 52, - "y": 88, - "left": -106.875, - "top": 48.922499, - "right": -105.46875, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 53, - "y": 88, - "left": -105.46875, - "top": 48.922499, - "right": -104.0625, - "bottom": 47.989922, - "countries": [ - "montana" - ] - }, - { - "x": 54, - "y": 88, - "left": -104.0625, - "top": 48.922499, - "right": -102.65625, - "bottom": 47.989922, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 47, - "y": 89, - "left": -113.90625, - "top": 47.989922, - "right": -112.5, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 48, - "y": 89, - "left": -112.5, - "top": 47.989922, - "right": -111.09375, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 49, - "y": 89, - "left": -111.09375, - "top": 47.989922, - "right": -109.6875, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 50, - "y": 89, - "left": -109.6875, - "top": 47.989922, - "right": -108.28125, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 51, - "y": 89, - "left": -108.28125, - "top": 47.989922, - "right": -106.875, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 52, - "y": 89, - "left": -106.875, - "top": 47.989922, - "right": -105.46875, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 53, - "y": 89, - "left": -105.46875, - "top": 47.989922, - "right": -104.0625, - "bottom": 47.040182, - "countries": [ - "montana" - ] - }, - { - "x": 54, - "y": 89, - "left": -104.0625, - "top": 47.989922, - "right": -102.65625, - "bottom": 47.040182, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 47, - "y": 90, - "left": -113.90625, - "top": 47.040182, - "right": -112.5, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 48, - "y": 90, - "left": -112.5, - "top": 47.040182, - "right": -111.09375, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 49, - "y": 90, - "left": -111.09375, - "top": 47.040182, - "right": -109.6875, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 50, - "y": 90, - "left": -109.6875, - "top": 47.040182, - "right": -108.28125, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 51, - "y": 90, - "left": -108.28125, - "top": 47.040182, - "right": -106.875, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 52, - "y": 90, - "left": -106.875, - "top": 47.040182, - "right": -105.46875, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 53, - "y": 90, - "left": -105.46875, - "top": 47.040182, - "right": -104.0625, - "bottom": 46.073231, - "countries": [ - "montana" - ] - }, - { - "x": 54, - "y": 90, - "left": -104.0625, - "top": 47.040182, - "right": -102.65625, - "bottom": 46.073231, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 48, - "y": 91, - "left": -112.5, - "top": 46.073231, - "right": -111.09375, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 49, - "y": 91, - "left": -111.09375, - "top": 46.073231, - "right": -109.6875, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 50, - "y": 91, - "left": -109.6875, - "top": 46.073231, - "right": -108.28125, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 51, - "y": 91, - "left": -108.28125, - "top": 46.073231, - "right": -106.875, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 52, - "y": 91, - "left": -106.875, - "top": 46.073231, - "right": -105.46875, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 53, - "y": 91, - "left": -105.46875, - "top": 46.073231, - "right": -104.0625, - "bottom": 45.089036, - "countries": [ - "montana" - ] - }, - { - "x": 54, - "y": 91, - "left": -104.0625, - "top": 46.073231, - "right": -102.65625, - "bottom": 45.089036, - "countries": [ - "montana", - "north_dakota", - "south_dakota" - ] - }, - { - "x": 50, - "y": 92, - "left": -109.6875, - "top": 45.089036, - "right": -108.28125, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 51, - "y": 92, - "left": -108.28125, - "top": 45.089036, - "right": -106.875, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 52, - "y": 92, - "left": -106.875, - "top": 45.089036, - "right": -105.46875, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 53, - "y": 92, - "left": -105.46875, - "top": 45.089036, - "right": -104.0625, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 54, - "y": 92, - "left": -104.0625, - "top": 45.089036, - "right": -102.65625, - "bottom": 44.087585, - "countries": [ - "montana", - "south_dakota", - "wyoming" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/nebraska.json b/wahoomc/resources/json/united_states/nebraska.json deleted file mode 100644 index e9733a45..00000000 --- a/wahoomc/resources/json/united_states/nebraska.json +++ /dev/null @@ -1,223 +0,0 @@ -[ - { - "x": 54, - "y": 95, - "left": -104.0625, - "top": 42.032974, - "right": -102.65625, - "bottom": 40.979898, - "countries": [ - "nebraska", - "colorado", - "wyoming" - ] - }, - { - "x": 55, - "y": 95, - "left": -102.65625, - "top": 42.032974, - "right": -101.25, - "bottom": 40.979898, - "countries": [ - "nebraska", - "colorado" - ] - }, - { - "x": 55, - "y": 96, - "left": -102.65625, - "top": 40.979898, - "right": -101.25, - "bottom": 39.909736, - "countries": [ - "nebraska", - "kansas", - "colorado" - ] - }, - { - "x": 59, - "y": 94, - "left": -97.03125, - "top": 43.068888, - "right": -95.625, - "bottom": 42.032974, - "countries": [ - "iowa", - "south_dakota", - "nebraska" - ] - }, - { - "x": 59, - "y": 95, - "left": -97.03125, - "top": 42.032974, - "right": -95.625, - "bottom": 40.979898, - "countries": [ - "iowa", - "nebraska" - ] - }, - { - "x": 59, - "y": 96, - "left": -97.03125, - "top": 40.979898, - "right": -95.625, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 60, - "y": 96, - "left": -95.625, - "top": 40.979898, - "right": -94.21875, - "bottom": 39.909736, - "countries": [ - "iowa", - "nebraska", - "missouri", - "kansas" - ] - }, - { - "x": 56, - "y": 96, - "left": -101.25, - "top": 40.979898, - "right": -99.84375, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 57, - "y": 96, - "left": -99.84375, - "top": 40.979898, - "right": -98.4375, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 58, - "y": 96, - "left": -98.4375, - "top": 40.979898, - "right": -97.03125, - "bottom": 39.909736, - "countries": [ - "kansas", - "nebraska" - ] - }, - { - "x": 54, - "y": 94, - "left": -104.0625, - "top": 43.068888, - "right": -102.65625, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska", - "wyoming" - ] - }, - { - "x": 55, - "y": 94, - "left": -102.65625, - "top": 43.068888, - "right": -101.25, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 56, - "y": 94, - "left": -101.25, - "top": 43.068888, - "right": -99.84375, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 57, - "y": 94, - "left": -99.84375, - "top": 43.068888, - "right": -98.4375, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 58, - "y": 94, - "left": -98.4375, - "top": 43.068888, - "right": -97.03125, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 56, - "y": 95, - "left": -101.25, - "top": 42.032974, - "right": -99.84375, - "bottom": 40.979898, - "countries": [ - "nebraska" - ] - }, - { - "x": 57, - "y": 95, - "left": -99.84375, - "top": 42.032974, - "right": -98.4375, - "bottom": 40.979898, - "countries": [ - "nebraska" - ] - }, - { - "x": 58, - "y": 95, - "left": -98.4375, - "top": 42.032974, - "right": -97.03125, - "bottom": 40.979898, - "countries": [ - "nebraska" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/nevada.json b/wahoomc/resources/json/united_states/nevada.json deleted file mode 100644 index b61cbb33..00000000 --- a/wahoomc/resources/json/united_states/nevada.json +++ /dev/null @@ -1,324 +0,0 @@ -[ - { - "x": 46, - "y": 99, - "left": -115.3125, - "top": 37.71859, - "right": -113.90625, - "bottom": 36.597889, - "countries": [ - "utah", - "nevada", - "arizona" - ] - }, - { - "x": 46, - "y": 100, - "left": -115.3125, - "top": 36.597889, - "right": -113.90625, - "bottom": 35.46067, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 46, - "y": 101, - "left": -115.3125, - "top": 35.46067, - "right": -113.90625, - "bottom": 34.307144, - "countries": [ - "nevada", - "california", - "arizona" - ] - }, - { - "x": 42, - "y": 95, - "left": -120.9375, - "top": 42.032974, - "right": -119.53125, - "bottom": 40.979898, - "countries": [ - "nevada", - "california", - "oregon" - ] - }, - { - "x": 42, - "y": 96, - "left": -120.9375, - "top": 40.979898, - "right": -119.53125, - "bottom": 39.909736, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 42, - "y": 97, - "left": -120.9375, - "top": 39.909736, - "right": -119.53125, - "bottom": 38.822591, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 42, - "y": 98, - "left": -120.9375, - "top": 38.822591, - "right": -119.53125, - "bottom": 37.71859, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 43, - "y": 98, - "left": -119.53125, - "top": 38.822591, - "right": -118.125, - "bottom": 37.71859, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 43, - "y": 99, - "left": -119.53125, - "top": 37.71859, - "right": -118.125, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 44, - "y": 99, - "left": -118.125, - "top": 37.71859, - "right": -116.71875, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 45, - "y": 99, - "left": -116.71875, - "top": 37.71859, - "right": -115.3125, - "bottom": 36.597889, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 45, - "y": 100, - "left": -116.71875, - "top": 36.597889, - "right": -115.3125, - "bottom": 35.46067, - "countries": [ - "nevada", - "california" - ] - }, - { - "x": 44, - "y": 95, - "left": -118.125, - "top": 42.032974, - "right": -116.71875, - "bottom": 40.979898, - "countries": [ - "idaho", - "oregon", - "nevada" - ] - }, - { - "x": 45, - "y": 95, - "left": -116.71875, - "top": 42.032974, - "right": -115.3125, - "bottom": 40.979898, - "countries": [ - "idaho", - "nevada" - ] - }, - { - "x": 46, - "y": 95, - "left": -115.3125, - "top": 42.032974, - "right": -113.90625, - "bottom": 40.979898, - "countries": [ - "idaho", - "nevada", - "utah" - ] - }, - { - "x": 43, - "y": 95, - "left": -119.53125, - "top": 42.032974, - "right": -118.125, - "bottom": 40.979898, - "countries": [ - "oregon", - "nevada" - ] - }, - { - "x": 43, - "y": 96, - "left": -119.53125, - "top": 40.979898, - "right": -118.125, - "bottom": 39.909736, - "countries": [ - "nevada" - ] - }, - { - "x": 44, - "y": 96, - "left": -118.125, - "top": 40.979898, - "right": -116.71875, - "bottom": 39.909736, - "countries": [ - "nevada" - ] - }, - { - "x": 45, - "y": 96, - "left": -116.71875, - "top": 40.979898, - "right": -115.3125, - "bottom": 39.909736, - "countries": [ - "nevada" - ] - }, - { - "x": 46, - "y": 96, - "left": -115.3125, - "top": 40.979898, - "right": -113.90625, - "bottom": 39.909736, - "countries": [ - "nevada", - "utah" - ] - }, - { - "x": 43, - "y": 97, - "left": -119.53125, - "top": 39.909736, - "right": -118.125, - "bottom": 38.822591, - "countries": [ - "nevada" - ] - }, - { - "x": 44, - "y": 97, - "left": -118.125, - "top": 39.909736, - "right": -116.71875, - "bottom": 38.822591, - "countries": [ - "nevada" - ] - }, - { - "x": 45, - "y": 97, - "left": -116.71875, - "top": 39.909736, - "right": -115.3125, - "bottom": 38.822591, - "countries": [ - "nevada" - ] - }, - { - "x": 46, - "y": 97, - "left": -115.3125, - "top": 39.909736, - "right": -113.90625, - "bottom": 38.822591, - "countries": [ - "nevada", - "utah" - ] - }, - { - "x": 44, - "y": 98, - "left": -118.125, - "top": 38.822591, - "right": -116.71875, - "bottom": 37.71859, - "countries": [ - "nevada" - ] - }, - { - "x": 45, - "y": 98, - "left": -116.71875, - "top": 38.822591, - "right": -115.3125, - "bottom": 37.71859, - "countries": [ - "nevada" - ] - }, - { - "x": 46, - "y": 98, - "left": -115.3125, - "top": 38.822591, - "right": -113.90625, - "bottom": 37.71859, - "countries": [ - "nevada", - "utah" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/new_hampshire.json b/wahoomc/resources/json/united_states/new_hampshire.json deleted file mode 100644 index 3143281e..00000000 --- a/wahoomc/resources/json/united_states/new_hampshire.json +++ /dev/null @@ -1,93 +0,0 @@ -[ - { - "x": 77, - "y": 91, - "left": -71.71875, - "top": 46.073231, - "right": -70.3125, - "bottom": 45.089036, - "countries": [ - "maine", - "new_hampshire", - "canada" - ] - }, - { - "x": 76, - "y": 92, - "left": -73.125, - "top": 45.089036, - "right": -71.71875, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 77, - "y": 92, - "left": -71.71875, - "top": 45.089036, - "right": -70.3125, - "bottom": 44.087585, - "countries": [ - "maine", - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 76, - "y": 94, - "left": -73.125, - "top": 43.068888, - "right": -71.71875, - "bottom": 42.032974, - "countries": [ - "connecticut", - "vermont", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 77, - "y": 93, - "left": -71.71875, - "top": 44.087585, - "right": -70.3125, - "bottom": 43.068888, - "countries": [ - "maine", - "new_hampshire" - ] - }, - { - "x": 77, - "y": 94, - "left": -71.71875, - "top": 43.068888, - "right": -70.3125, - "bottom": 42.032974, - "countries": [ - "maine", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 76, - "y": 93, - "left": -73.125, - "top": 44.087585, - "right": -71.71875, - "bottom": 43.068888, - "countries": [ - "vermont", - "new_hampshire" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/new_jersey.json b/wahoomc/resources/json/united_states/new_jersey.json deleted file mode 100644 index bcd7d3a6..00000000 --- a/wahoomc/resources/json/united_states/new_jersey.json +++ /dev/null @@ -1,77 +0,0 @@ -[ - { - "x": 75, - "y": 95, - "left": -74.53125, - "top": 42.032974, - "right": -73.125, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_jersey", - "new_york" - ] - }, - { - "x": 74, - "y": 97, - "left": -75.9375, - "top": 39.909736, - "right": -74.53125, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "new_jersey", - "delaware" - ] - }, - { - "x": 74, - "y": 95, - "left": -75.9375, - "top": 42.032974, - "right": -74.53125, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_jersey", - "new_york" - ] - }, - { - "x": 74, - "y": 96, - "left": -75.9375, - "top": 40.979898, - "right": -74.53125, - "bottom": 39.909736, - "countries": [ - "pennsylvania", - "new_jersey" - ] - }, - { - "x": 75, - "y": 96, - "left": -74.53125, - "top": 40.979898, - "right": -73.125, - "bottom": 39.909736, - "countries": [ - "new_jersey", - "new_york" - ] - }, - { - "x": 75, - "y": 97, - "left": -74.53125, - "top": 39.909736, - "right": -73.125, - "bottom": 38.822591, - "countries": [ - "new_jersey" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/new_mexico.json b/wahoomc/resources/json/united_states/new_mexico.json deleted file mode 100644 index 5f3c4e89..00000000 --- a/wahoomc/resources/json/united_states/new_mexico.json +++ /dev/null @@ -1,334 +0,0 @@ -[ - { - "x": 50, - "y": 104, - "left": -109.6875, - "top": 31.952162, - "right": -108.28125, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "mexico", - "arizona" - ] - }, - { - "x": 51, - "y": 104, - "left": -108.28125, - "top": 31.952162, - "right": -106.875, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "mexico" - ] - }, - { - "x": 52, - "y": 104, - "left": -106.875, - "top": 31.952162, - "right": -105.46875, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "texas", - "mexico" - ] - }, - { - "x": 50, - "y": 99, - "left": -109.6875, - "top": 37.71859, - "right": -108.28125, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "utah", - "colorado", - "arizona" - ] - }, - { - "x": 50, - "y": 100, - "left": -109.6875, - "top": 36.597889, - "right": -108.28125, - "bottom": 35.46067, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 50, - "y": 101, - "left": -109.6875, - "top": 35.46067, - "right": -108.28125, - "bottom": 34.307144, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 50, - "y": 102, - "left": -109.6875, - "top": 34.307144, - "right": -108.28125, - "bottom": 33.137551, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 50, - "y": 103, - "left": -109.6875, - "top": 33.137551, - "right": -108.28125, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "arizona" - ] - }, - { - "x": 51, - "y": 99, - "left": -108.28125, - "top": 37.71859, - "right": -106.875, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 52, - "y": 99, - "left": -106.875, - "top": 37.71859, - "right": -105.46875, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 53, - "y": 99, - "left": -105.46875, - "top": 37.71859, - "right": -104.0625, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "colorado" - ] - }, - { - "x": 54, - "y": 99, - "left": -104.0625, - "top": 37.71859, - "right": -102.65625, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "oklahoma", - "colorado" - ] - }, - { - "x": 51, - "y": 100, - "left": -108.28125, - "top": 36.597889, - "right": -106.875, - "bottom": 35.46067, - "countries": [ - "new_mexico" - ] - }, - { - "x": 52, - "y": 100, - "left": -106.875, - "top": 36.597889, - "right": -105.46875, - "bottom": 35.46067, - "countries": [ - "new_mexico" - ] - }, - { - "x": 53, - "y": 100, - "left": -105.46875, - "top": 36.597889, - "right": -104.0625, - "bottom": 35.46067, - "countries": [ - "new_mexico" - ] - }, - { - "x": 54, - "y": 100, - "left": -104.0625, - "top": 36.597889, - "right": -102.65625, - "bottom": 35.46067, - "countries": [ - "new_mexico", - "oklahoma", - "texas" - ] - }, - { - "x": 51, - "y": 101, - "left": -108.28125, - "top": 35.46067, - "right": -106.875, - "bottom": 34.307144, - "countries": [ - "new_mexico" - ] - }, - { - "x": 52, - "y": 101, - "left": -106.875, - "top": 35.46067, - "right": -105.46875, - "bottom": 34.307144, - "countries": [ - "new_mexico" - ] - }, - { - "x": 53, - "y": 101, - "left": -105.46875, - "top": 35.46067, - "right": -104.0625, - "bottom": 34.307144, - "countries": [ - "new_mexico" - ] - }, - { - "x": 54, - "y": 101, - "left": -104.0625, - "top": 35.46067, - "right": -102.65625, - "bottom": 34.307144, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 51, - "y": 102, - "left": -108.28125, - "top": 34.307144, - "right": -106.875, - "bottom": 33.137551, - "countries": [ - "new_mexico" - ] - }, - { - "x": 52, - "y": 102, - "left": -106.875, - "top": 34.307144, - "right": -105.46875, - "bottom": 33.137551, - "countries": [ - "new_mexico" - ] - }, - { - "x": 53, - "y": 102, - "left": -105.46875, - "top": 34.307144, - "right": -104.0625, - "bottom": 33.137551, - "countries": [ - "new_mexico" - ] - }, - { - "x": 54, - "y": 102, - "left": -104.0625, - "top": 34.307144, - "right": -102.65625, - "bottom": 33.137551, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 51, - "y": 103, - "left": -108.28125, - "top": 33.137551, - "right": -106.875, - "bottom": 31.952162, - "countries": [ - "new_mexico" - ] - }, - { - "x": 52, - "y": 103, - "left": -106.875, - "top": 33.137551, - "right": -105.46875, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 53, - "y": 103, - "left": -105.46875, - "top": 33.137551, - "right": -104.0625, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 54, - "y": 103, - "left": -104.0625, - "top": 33.137551, - "right": -102.65625, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/new_york.json b/wahoomc/resources/json/united_states/new_york.json deleted file mode 100644 index 932748f2..00000000 --- a/wahoomc/resources/json/united_states/new_york.json +++ /dev/null @@ -1,257 +0,0 @@ -[ - { - "x": 73, - "y": 92, - "left": -77.34375, - "top": 45.089036, - "right": -75.9375, - "bottom": 44.087585, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 74, - "y": 92, - "left": -75.9375, - "top": 45.089036, - "right": -74.53125, - "bottom": 44.087585, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 75, - "y": 92, - "left": -74.53125, - "top": 45.089036, - "right": -73.125, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_york", - "canada" - ] - }, - { - "x": 71, - "y": 93, - "left": -80.15625, - "top": 44.087585, - "right": -78.75, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 72, - "y": 93, - "left": -78.75, - "top": 44.087585, - "right": -77.34375, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 73, - "y": 93, - "left": -77.34375, - "top": 44.087585, - "right": -75.9375, - "bottom": 43.068888, - "countries": [ - "new_york", - "canada" - ] - }, - { - "x": 71, - "y": 94, - "left": -80.15625, - "top": 43.068888, - "right": -78.75, - "bottom": 42.032974, - "countries": [ - "pennsylvania", - "new_york", - "canada" - ] - }, - { - "x": 75, - "y": 94, - "left": -74.53125, - "top": 43.068888, - "right": -73.125, - "bottom": 42.032974, - "countries": [ - "connecticut", - "new_york", - "vermont", - "massachusetts" - ] - }, - { - "x": 75, - "y": 95, - "left": -74.53125, - "top": 42.032974, - "right": -73.125, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_jersey", - "new_york" - ] - }, - { - "x": 76, - "y": 95, - "left": -73.125, - "top": 42.032974, - "right": -71.71875, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_york", - "rhode_island", - "massachusetts" - ] - }, - { - "x": 74, - "y": 95, - "left": -75.9375, - "top": 42.032974, - "right": -74.53125, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_jersey", - "new_york" - ] - }, - { - "x": 75, - "y": 96, - "left": -74.53125, - "top": 40.979898, - "right": -73.125, - "bottom": 39.909736, - "countries": [ - "new_jersey", - "new_york" - ] - }, - { - "x": 74, - "y": 93, - "left": -75.9375, - "top": 44.087585, - "right": -74.53125, - "bottom": 43.068888, - "countries": [ - "new_york" - ] - }, - { - "x": 75, - "y": 93, - "left": -74.53125, - "top": 44.087585, - "right": -73.125, - "bottom": 43.068888, - "countries": [ - "vermont", - "new_york" - ] - }, - { - "x": 72, - "y": 94, - "left": -78.75, - "top": 43.068888, - "right": -77.34375, - "bottom": 42.032974, - "countries": [ - "new_york" - ] - }, - { - "x": 73, - "y": 94, - "left": -77.34375, - "top": 43.068888, - "right": -75.9375, - "bottom": 42.032974, - "countries": [ - "new_york" - ] - }, - { - "x": 74, - "y": 94, - "left": -75.9375, - "top": 43.068888, - "right": -74.53125, - "bottom": 42.032974, - "countries": [ - "new_york" - ] - }, - { - "x": 71, - "y": 95, - "left": -80.15625, - "top": 42.032974, - "right": -78.75, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 72, - "y": 95, - "left": -78.75, - "top": 42.032974, - "right": -77.34375, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 73, - "y": 95, - "left": -77.34375, - "top": 42.032974, - "right": -75.9375, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 76, - "y": 96, - "left": -73.125, - "top": 40.979898, - "right": -71.71875, - "bottom": 39.909736, - "countries": [ - "new_york" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/north_carolina.json b/wahoomc/resources/json/united_states/north_carolina.json deleted file mode 100644 index 2fb10201..00000000 --- a/wahoomc/resources/json/united_states/north_carolina.json +++ /dev/null @@ -1,197 +0,0 @@ -[ - { - "x": 68, - "y": 101, - "left": -84.375, - "top": 35.46067, - "right": -82.96875, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "tennessee", - "south_carolina" - ] - }, - { - "x": 69, - "y": 101, - "left": -82.96875, - "top": 35.46067, - "right": -81.5625, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "south_carolina" - ] - }, - { - "x": 68, - "y": 100, - "left": -84.375, - "top": 36.597889, - "right": -82.96875, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 69, - "y": 100, - "left": -82.96875, - "top": 36.597889, - "right": -81.5625, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia" - ] - }, - { - "x": 70, - "y": 100, - "left": -81.5625, - "top": 36.597889, - "right": -80.15625, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 71, - "y": 100, - "left": -80.15625, - "top": 36.597889, - "right": -78.75, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 72, - "y": 100, - "left": -78.75, - "top": 36.597889, - "right": -77.34375, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 73, - "y": 100, - "left": -77.34375, - "top": 36.597889, - "right": -75.9375, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 74, - "y": 100, - "left": -75.9375, - "top": 36.597889, - "right": -74.53125, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 70, - "y": 101, - "left": -81.5625, - "top": 35.46067, - "right": -80.15625, - "bottom": 34.307144, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 71, - "y": 101, - "left": -80.15625, - "top": 35.46067, - "right": -78.75, - "bottom": 34.307144, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 72, - "y": 101, - "left": -78.75, - "top": 35.46067, - "right": -77.34375, - "bottom": 34.307144, - "countries": [ - "north_carolina" - ] - }, - { - "x": 73, - "y": 101, - "left": -77.34375, - "top": 35.46067, - "right": -75.9375, - "bottom": 34.307144, - "countries": [ - "north_carolina" - ] - }, - { - "x": 74, - "y": 101, - "left": -75.9375, - "top": 35.46067, - "right": -74.53125, - "bottom": 34.307144, - "countries": [ - "north_carolina" - ] - }, - { - "x": 71, - "y": 102, - "left": -80.15625, - "top": 34.307144, - "right": -78.75, - "bottom": 33.137551, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 72, - "y": 102, - "left": -78.75, - "top": 34.307144, - "right": -77.34375, - "bottom": 33.137551, - "countries": [ - "north_carolina", - "south_carolina" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/north_dakota.json b/wahoomc/resources/json/united_states/north_dakota.json deleted file mode 100644 index 53e34a87..00000000 --- a/wahoomc/resources/json/united_states/north_dakota.json +++ /dev/null @@ -1,332 +0,0 @@ -[ - { - "x": 54, - "y": 87, - "left": -104.0625, - "top": 49.837982, - "right": -102.65625, - "bottom": 48.922499, - "countries": [ - "montana", - "north_dakota", - "canada" - ] - }, - { - "x": 55, - "y": 87, - "left": -102.65625, - "top": 49.837982, - "right": -101.25, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 56, - "y": 87, - "left": -101.25, - "top": 49.837982, - "right": -99.84375, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 57, - "y": 87, - "left": -99.84375, - "top": 49.837982, - "right": -98.4375, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "canada" - ] - }, - { - "x": 58, - "y": 87, - "left": -98.4375, - "top": 49.837982, - "right": -97.03125, - "bottom": 48.922499, - "countries": [ - "north_dakota", - "minnesota", - "canada" - ] - }, - { - "x": 58, - "y": 88, - "left": -98.4375, - "top": 48.922499, - "right": -97.03125, - "bottom": 47.989922, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 58, - "y": 89, - "left": -98.4375, - "top": 47.989922, - "right": -97.03125, - "bottom": 47.040182, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 89, - "left": -97.03125, - "top": 47.989922, - "right": -95.625, - "bottom": 47.040182, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 90, - "left": -97.03125, - "top": 47.040182, - "right": -95.625, - "bottom": 46.073231, - "countries": [ - "north_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 91, - "left": -97.03125, - "top": 46.073231, - "right": -95.625, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "minnesota", - "south_dakota" - ] - }, - { - "x": 54, - "y": 88, - "left": -104.0625, - "top": 48.922499, - "right": -102.65625, - "bottom": 47.989922, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 54, - "y": 89, - "left": -104.0625, - "top": 47.989922, - "right": -102.65625, - "bottom": 47.040182, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 54, - "y": 90, - "left": -104.0625, - "top": 47.040182, - "right": -102.65625, - "bottom": 46.073231, - "countries": [ - "montana", - "north_dakota" - ] - }, - { - "x": 54, - "y": 91, - "left": -104.0625, - "top": 46.073231, - "right": -102.65625, - "bottom": 45.089036, - "countries": [ - "montana", - "north_dakota", - "south_dakota" - ] - }, - { - "x": 55, - "y": 88, - "left": -102.65625, - "top": 48.922499, - "right": -101.25, - "bottom": 47.989922, - "countries": [ - "north_dakota" - ] - }, - { - "x": 56, - "y": 88, - "left": -101.25, - "top": 48.922499, - "right": -99.84375, - "bottom": 47.989922, - "countries": [ - "north_dakota" - ] - }, - { - "x": 57, - "y": 88, - "left": -99.84375, - "top": 48.922499, - "right": -98.4375, - "bottom": 47.989922, - "countries": [ - "north_dakota" - ] - }, - { - "x": 55, - "y": 89, - "left": -102.65625, - "top": 47.989922, - "right": -101.25, - "bottom": 47.040182, - "countries": [ - "north_dakota" - ] - }, - { - "x": 56, - "y": 89, - "left": -101.25, - "top": 47.989922, - "right": -99.84375, - "bottom": 47.040182, - "countries": [ - "north_dakota" - ] - }, - { - "x": 57, - "y": 89, - "left": -99.84375, - "top": 47.989922, - "right": -98.4375, - "bottom": 47.040182, - "countries": [ - "north_dakota" - ] - }, - { - "x": 55, - "y": 90, - "left": -102.65625, - "top": 47.040182, - "right": -101.25, - "bottom": 46.073231, - "countries": [ - "north_dakota" - ] - }, - { - "x": 56, - "y": 90, - "left": -101.25, - "top": 47.040182, - "right": -99.84375, - "bottom": 46.073231, - "countries": [ - "north_dakota" - ] - }, - { - "x": 57, - "y": 90, - "left": -99.84375, - "top": 47.040182, - "right": -98.4375, - "bottom": 46.073231, - "countries": [ - "north_dakota" - ] - }, - { - "x": 58, - "y": 90, - "left": -98.4375, - "top": 47.040182, - "right": -97.03125, - "bottom": 46.073231, - "countries": [ - "north_dakota" - ] - }, - { - "x": 55, - "y": 91, - "left": -102.65625, - "top": 46.073231, - "right": -101.25, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 56, - "y": 91, - "left": -101.25, - "top": 46.073231, - "right": -99.84375, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 57, - "y": 91, - "left": -99.84375, - "top": 46.073231, - "right": -98.4375, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 58, - "y": 91, - "left": -98.4375, - "top": 46.073231, - "right": -97.03125, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/ohio.json b/wahoomc/resources/json/united_states/ohio.json deleted file mode 100644 index 15385d5d..00000000 --- a/wahoomc/resources/json/united_states/ohio.json +++ /dev/null @@ -1,174 +0,0 @@ -[ - { - "x": 68, - "y": 95, - "left": -84.375, - "top": 42.032974, - "right": -82.96875, - "bottom": 40.979898, - "countries": [ - "michigan", - "ohio", - "canada" - ] - }, - { - "x": 69, - "y": 95, - "left": -82.96875, - "top": 42.032974, - "right": -81.5625, - "bottom": 40.979898, - "countries": [ - "ohio", - "canada" - ] - }, - { - "x": 67, - "y": 95, - "left": -85.78125, - "top": 42.032974, - "right": -84.375, - "bottom": 40.979898, - "countries": [ - "michigan", - "indiana", - "ohio" - ] - }, - { - "x": 67, - "y": 96, - "left": -85.78125, - "top": 40.979898, - "right": -84.375, - "bottom": 39.909736, - "countries": [ - "indiana", - "ohio" - ] - }, - { - "x": 67, - "y": 97, - "left": -85.78125, - "top": 39.909736, - "right": -84.375, - "bottom": 38.822591, - "countries": [ - "indiana", - "ohio", - "kentucky" - ] - }, - { - "x": 68, - "y": 97, - "left": -84.375, - "top": 39.909736, - "right": -82.96875, - "bottom": 38.822591, - "countries": [ - "ohio", - "kentucky" - ] - }, - { - "x": 68, - "y": 98, - "left": -84.375, - "top": 38.822591, - "right": -82.96875, - "bottom": 37.71859, - "countries": [ - "ohio", - "kentucky" - ] - }, - { - "x": 69, - "y": 98, - "left": -82.96875, - "top": 38.822591, - "right": -81.5625, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "ohio", - "kentucky" - ] - }, - { - "x": 70, - "y": 95, - "left": -81.5625, - "top": 42.032974, - "right": -80.15625, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "ohio" - ] - }, - { - "x": 68, - "y": 96, - "left": -84.375, - "top": 40.979898, - "right": -82.96875, - "bottom": 39.909736, - "countries": [ - "ohio" - ] - }, - { - "x": 69, - "y": 96, - "left": -82.96875, - "top": 40.979898, - "right": -81.5625, - "bottom": 39.909736, - "countries": [ - "ohio" - ] - }, - { - "x": 70, - "y": 96, - "left": -81.5625, - "top": 40.979898, - "right": -80.15625, - "bottom": 39.909736, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - }, - { - "x": 69, - "y": 97, - "left": -82.96875, - "top": 39.909736, - "right": -81.5625, - "bottom": 38.822591, - "countries": [ - "west_virginia", - "ohio" - ] - }, - { - "x": 70, - "y": 97, - "left": -81.5625, - "top": 39.909736, - "right": -80.15625, - "bottom": 38.822591, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/oklahoma.json b/wahoomc/resources/json/united_states/oklahoma.json deleted file mode 100644 index 208ee3f5..00000000 --- a/wahoomc/resources/json/united_states/oklahoma.json +++ /dev/null @@ -1,279 +0,0 @@ -[ - { - "x": 60, - "y": 100, - "left": -95.625, - "top": 36.597889, - "right": -94.21875, - "bottom": 35.46067, - "countries": [ - "oklahoma", - "arkansas", - "missouri" - ] - }, - { - "x": 60, - "y": 101, - "left": -95.625, - "top": 35.46067, - "right": -94.21875, - "bottom": 34.307144, - "countries": [ - "oklahoma", - "arkansas" - ] - }, - { - "x": 60, - "y": 102, - "left": -95.625, - "top": 34.307144, - "right": -94.21875, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma", - "arkansas" - ] - }, - { - "x": 54, - "y": 99, - "left": -104.0625, - "top": 37.71859, - "right": -102.65625, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "oklahoma", - "colorado" - ] - }, - { - "x": 55, - "y": 99, - "left": -102.65625, - "top": 37.71859, - "right": -101.25, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "colorado" - ] - }, - { - "x": 56, - "y": 99, - "left": -101.25, - "top": 37.71859, - "right": -99.84375, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 57, - "y": 99, - "left": -99.84375, - "top": 37.71859, - "right": -98.4375, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 58, - "y": 99, - "left": -98.4375, - "top": 37.71859, - "right": -97.03125, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 59, - "y": 99, - "left": -97.03125, - "top": 37.71859, - "right": -95.625, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas" - ] - }, - { - "x": 60, - "y": 99, - "left": -95.625, - "top": 37.71859, - "right": -94.21875, - "bottom": 36.597889, - "countries": [ - "oklahoma", - "kansas", - "missouri" - ] - }, - { - "x": 54, - "y": 100, - "left": -104.0625, - "top": 36.597889, - "right": -102.65625, - "bottom": 35.46067, - "countries": [ - "new_mexico", - "oklahoma", - "texas" - ] - }, - { - "x": 55, - "y": 100, - "left": -102.65625, - "top": 36.597889, - "right": -101.25, - "bottom": 35.46067, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 56, - "y": 100, - "left": -101.25, - "top": 36.597889, - "right": -99.84375, - "bottom": 35.46067, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 57, - "y": 100, - "left": -99.84375, - "top": 36.597889, - "right": -98.4375, - "bottom": 35.46067, - "countries": [ - "oklahoma" - ] - }, - { - "x": 58, - "y": 100, - "left": -98.4375, - "top": 36.597889, - "right": -97.03125, - "bottom": 35.46067, - "countries": [ - "oklahoma" - ] - }, - { - "x": 59, - "y": 100, - "left": -97.03125, - "top": 36.597889, - "right": -95.625, - "bottom": 35.46067, - "countries": [ - "oklahoma" - ] - }, - { - "x": 56, - "y": 101, - "left": -101.25, - "top": 35.46067, - "right": -99.84375, - "bottom": 34.307144, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 57, - "y": 101, - "left": -99.84375, - "top": 35.46067, - "right": -98.4375, - "bottom": 34.307144, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 58, - "y": 101, - "left": -98.4375, - "top": 35.46067, - "right": -97.03125, - "bottom": 34.307144, - "countries": [ - "oklahoma" - ] - }, - { - "x": 59, - "y": 101, - "left": -97.03125, - "top": 35.46067, - "right": -95.625, - "bottom": 34.307144, - "countries": [ - "oklahoma" - ] - }, - { - "x": 57, - "y": 102, - "left": -99.84375, - "top": 34.307144, - "right": -98.4375, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 58, - "y": 102, - "left": -98.4375, - "top": 34.307144, - "right": -97.03125, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 59, - "y": 102, - "left": -97.03125, - "top": 34.307144, - "right": -95.625, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/oregon.json b/wahoomc/resources/json/united_states/oregon.json deleted file mode 100644 index 7f598059..00000000 --- a/wahoomc/resources/json/united_states/oregon.json +++ /dev/null @@ -1,385 +0,0 @@ -[ - { - "x": 39, - "y": 95, - "left": -125.15625, - "top": 42.032974, - "right": -123.75, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 40, - "y": 95, - "left": -123.75, - "top": 42.032974, - "right": -122.34375, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 41, - "y": 95, - "left": -122.34375, - "top": 42.032974, - "right": -120.9375, - "bottom": 40.979898, - "countries": [ - "oregon", - "california" - ] - }, - { - "x": 42, - "y": 95, - "left": -120.9375, - "top": 42.032974, - "right": -119.53125, - "bottom": 40.979898, - "countries": [ - "nevada", - "california", - "oregon" - ] - }, - { - "x": 44, - "y": 91, - "left": -118.125, - "top": 46.073231, - "right": -116.71875, - "bottom": 45.089036, - "countries": [ - "idaho", - "oregon", - "washington" - ] - }, - { - "x": 45, - "y": 91, - "left": -116.71875, - "top": 46.073231, - "right": -115.3125, - "bottom": 45.089036, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 44, - "y": 92, - "left": -118.125, - "top": 45.089036, - "right": -116.71875, - "bottom": 44.087585, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 44, - "y": 93, - "left": -118.125, - "top": 44.087585, - "right": -116.71875, - "bottom": 43.068888, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 44, - "y": 94, - "left": -118.125, - "top": 43.068888, - "right": -116.71875, - "bottom": 42.032974, - "countries": [ - "idaho", - "oregon" - ] - }, - { - "x": 44, - "y": 95, - "left": -118.125, - "top": 42.032974, - "right": -116.71875, - "bottom": 40.979898, - "countries": [ - "idaho", - "oregon", - "nevada" - ] - }, - { - "x": 43, - "y": 95, - "left": -119.53125, - "top": 42.032974, - "right": -118.125, - "bottom": 40.979898, - "countries": [ - "oregon", - "nevada" - ] - }, - { - "x": 39, - "y": 90, - "left": -125.15625, - "top": 47.040182, - "right": -123.75, - "bottom": 46.073231, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 40, - "y": 90, - "left": -123.75, - "top": 47.040182, - "right": -122.34375, - "bottom": 46.073231, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 39, - "y": 91, - "left": -125.15625, - "top": 46.073231, - "right": -123.75, - "bottom": 45.089036, - "countries": [ - "oregon" - ] - }, - { - "x": 40, - "y": 91, - "left": -123.75, - "top": 46.073231, - "right": -122.34375, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 41, - "y": 91, - "left": -122.34375, - "top": 46.073231, - "right": -120.9375, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 42, - "y": 91, - "left": -120.9375, - "top": 46.073231, - "right": -119.53125, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 43, - "y": 91, - "left": -119.53125, - "top": 46.073231, - "right": -118.125, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 39, - "y": 92, - "left": -125.15625, - "top": 45.089036, - "right": -123.75, - "bottom": 44.087585, - "countries": [ - "oregon" - ] - }, - { - "x": 40, - "y": 92, - "left": -123.75, - "top": 45.089036, - "right": -122.34375, - "bottom": 44.087585, - "countries": [ - "oregon" - ] - }, - { - "x": 41, - "y": 92, - "left": -122.34375, - "top": 45.089036, - "right": -120.9375, - "bottom": 44.087585, - "countries": [ - "oregon" - ] - }, - { - "x": 42, - "y": 92, - "left": -120.9375, - "top": 45.089036, - "right": -119.53125, - "bottom": 44.087585, - "countries": [ - "oregon" - ] - }, - { - "x": 43, - "y": 92, - "left": -119.53125, - "top": 45.089036, - "right": -118.125, - "bottom": 44.087585, - "countries": [ - "oregon" - ] - }, - { - "x": 39, - "y": 93, - "left": -125.15625, - "top": 44.087585, - "right": -123.75, - "bottom": 43.068888, - "countries": [ - "oregon" - ] - }, - { - "x": 40, - "y": 93, - "left": -123.75, - "top": 44.087585, - "right": -122.34375, - "bottom": 43.068888, - "countries": [ - "oregon" - ] - }, - { - "x": 41, - "y": 93, - "left": -122.34375, - "top": 44.087585, - "right": -120.9375, - "bottom": 43.068888, - "countries": [ - "oregon" - ] - }, - { - "x": 42, - "y": 93, - "left": -120.9375, - "top": 44.087585, - "right": -119.53125, - "bottom": 43.068888, - "countries": [ - "oregon" - ] - }, - { - "x": 43, - "y": 93, - "left": -119.53125, - "top": 44.087585, - "right": -118.125, - "bottom": 43.068888, - "countries": [ - "oregon" - ] - }, - { - "x": 39, - "y": 94, - "left": -125.15625, - "top": 43.068888, - "right": -123.75, - "bottom": 42.032974, - "countries": [ - "oregon" - ] - }, - { - "x": 40, - "y": 94, - "left": -123.75, - "top": 43.068888, - "right": -122.34375, - "bottom": 42.032974, - "countries": [ - "oregon" - ] - }, - { - "x": 41, - "y": 94, - "left": -122.34375, - "top": 43.068888, - "right": -120.9375, - "bottom": 42.032974, - "countries": [ - "oregon" - ] - }, - { - "x": 42, - "y": 94, - "left": -120.9375, - "top": 43.068888, - "right": -119.53125, - "bottom": 42.032974, - "countries": [ - "oregon" - ] - }, - { - "x": 43, - "y": 94, - "left": -119.53125, - "top": 43.068888, - "right": -118.125, - "bottom": 42.032974, - "countries": [ - "oregon" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/pennsylvania.json b/wahoomc/resources/json/united_states/pennsylvania.json deleted file mode 100644 index dcf686ae..00000000 --- a/wahoomc/resources/json/united_states/pennsylvania.json +++ /dev/null @@ -1,215 +0,0 @@ -[ - { - "x": 70, - "y": 94, - "left": -81.5625, - "top": 43.068888, - "right": -80.15625, - "bottom": 42.032974, - "countries": [ - "pennsylvania", - "canada" - ] - }, - { - "x": 71, - "y": 94, - "left": -80.15625, - "top": 43.068888, - "right": -78.75, - "bottom": 42.032974, - "countries": [ - "pennsylvania", - "new_york", - "canada" - ] - }, - { - "x": 74, - "y": 97, - "left": -75.9375, - "top": 39.909736, - "right": -74.53125, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "new_jersey", - "delaware" - ] - }, - { - "x": 73, - "y": 97, - "left": -77.34375, - "top": 39.909736, - "right": -75.9375, - "bottom": 38.822591, - "countries": [ - "maryland", - "district_of_columbia", - "pennsylvania", - "virginia" - ] - }, - { - "x": 71, - "y": 97, - "left": -80.15625, - "top": 39.909736, - "right": -78.75, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 72, - "y": 97, - "left": -78.75, - "top": 39.909736, - "right": -77.34375, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 74, - "y": 95, - "left": -75.9375, - "top": 42.032974, - "right": -74.53125, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_jersey", - "new_york" - ] - }, - { - "x": 74, - "y": 96, - "left": -75.9375, - "top": 40.979898, - "right": -74.53125, - "bottom": 39.909736, - "countries": [ - "pennsylvania", - "new_jersey" - ] - }, - { - "x": 71, - "y": 95, - "left": -80.15625, - "top": 42.032974, - "right": -78.75, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 72, - "y": 95, - "left": -78.75, - "top": 42.032974, - "right": -77.34375, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 73, - "y": 95, - "left": -77.34375, - "top": 42.032974, - "right": -75.9375, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "new_york" - ] - }, - { - "x": 70, - "y": 95, - "left": -81.5625, - "top": 42.032974, - "right": -80.15625, - "bottom": 40.979898, - "countries": [ - "pennsylvania", - "ohio" - ] - }, - { - "x": 70, - "y": 96, - "left": -81.5625, - "top": 40.979898, - "right": -80.15625, - "bottom": 39.909736, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - }, - { - "x": 70, - "y": 97, - "left": -81.5625, - "top": 39.909736, - "right": -80.15625, - "bottom": 38.822591, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - }, - { - "x": 71, - "y": 96, - "left": -80.15625, - "top": 40.979898, - "right": -78.75, - "bottom": 39.909736, - "countries": [ - "pennsylvania" - ] - }, - { - "x": 72, - "y": 96, - "left": -78.75, - "top": 40.979898, - "right": -77.34375, - "bottom": 39.909736, - "countries": [ - "pennsylvania" - ] - }, - { - "x": 73, - "y": 96, - "left": -77.34375, - "top": 40.979898, - "right": -75.9375, - "bottom": 39.909736, - "countries": [ - "pennsylvania" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/puerto_rico.json b/wahoomc/resources/json/united_states/puerto_rico.json deleted file mode 100644 index ba6baae7..00000000 --- a/wahoomc/resources/json/united_states/puerto_rico.json +++ /dev/null @@ -1,63 +0,0 @@ -[ - { - "x": 81, - "y": 114, - "left": -66.09375, - "top": 19.311143, - "right": -64.6875, - "bottom": 17.978733, - "countries": [ - "british_virgin_islands", - "puerto_rico", - "united_states_virgin_islands", - "virgin_islands_u.s." - ] - }, - { - "x": 79, - "y": 114, - "left": -68.90625, - "top": 19.311143, - "right": -67.5, - "bottom": 17.978733, - "countries": [ - "dominican_republic", - "puerto_rico" - ] - }, - { - "x": 80, - "y": 114, - "left": -67.5, - "top": 19.311143, - "right": -66.09375, - "bottom": 17.978733, - "countries": [ - "puerto_rico" - ] - }, - { - "x": 80, - "y": 115, - "left": -67.5, - "top": 17.978733, - "right": -66.09375, - "bottom": 16.636192, - "countries": [ - "puerto_rico" - ] - }, - { - "x": 81, - "y": 115, - "left": -66.09375, - "top": 17.978733, - "right": -64.6875, - "bottom": 16.636192, - "countries": [ - "puerto_rico", - "virgin_islands_u.s.", - "united_states_virgin_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/rhode_island.json b/wahoomc/resources/json/united_states/rhode_island.json deleted file mode 100644 index cce7be81..00000000 --- a/wahoomc/resources/json/united_states/rhode_island.json +++ /dev/null @@ -1,28 +0,0 @@ -[ - { - "x": 76, - "y": 95, - "left": -73.125, - "top": 42.032974, - "right": -71.71875, - "bottom": 40.979898, - "countries": [ - "connecticut", - "new_york", - "rhode_island", - "massachusetts" - ] - }, - { - "x": 77, - "y": 95, - "left": -71.71875, - "top": 42.032974, - "right": -70.3125, - "bottom": 40.979898, - "countries": [ - "rhode_island", - "massachusetts" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/south_carolina.json b/wahoomc/resources/json/united_states/south_carolina.json deleted file mode 100644 index 2cb8de84..00000000 --- a/wahoomc/resources/json/united_states/south_carolina.json +++ /dev/null @@ -1,135 +0,0 @@ -[ - { - "x": 68, - "y": 101, - "left": -84.375, - "top": 35.46067, - "right": -82.96875, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "tennessee", - "south_carolina" - ] - }, - { - "x": 69, - "y": 101, - "left": -82.96875, - "top": 35.46067, - "right": -81.5625, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "south_carolina" - ] - }, - { - "x": 69, - "y": 102, - "left": -82.96875, - "top": 34.307144, - "right": -81.5625, - "bottom": 33.137551, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 69, - "y": 103, - "left": -82.96875, - "top": 33.137551, - "right": -81.5625, - "bottom": 31.952162, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 70, - "y": 103, - "left": -81.5625, - "top": 33.137551, - "right": -80.15625, - "bottom": 31.952162, - "countries": [ - "georgia", - "south_carolina" - ] - }, - { - "x": 70, - "y": 101, - "left": -81.5625, - "top": 35.46067, - "right": -80.15625, - "bottom": 34.307144, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 71, - "y": 101, - "left": -80.15625, - "top": 35.46067, - "right": -78.75, - "bottom": 34.307144, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 71, - "y": 102, - "left": -80.15625, - "top": 34.307144, - "right": -78.75, - "bottom": 33.137551, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 72, - "y": 102, - "left": -78.75, - "top": 34.307144, - "right": -77.34375, - "bottom": 33.137551, - "countries": [ - "north_carolina", - "south_carolina" - ] - }, - { - "x": 70, - "y": 102, - "left": -81.5625, - "top": 34.307144, - "right": -80.15625, - "bottom": 33.137551, - "countries": [ - "south_carolina" - ] - }, - { - "x": 71, - "y": 103, - "left": -80.15625, - "top": 33.137551, - "right": -78.75, - "bottom": 31.952162, - "countries": [ - "south_carolina" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/south_dakota.json b/wahoomc/resources/json/united_states/south_dakota.json deleted file mode 100644 index d174332a..00000000 --- a/wahoomc/resources/json/united_states/south_dakota.json +++ /dev/null @@ -1,288 +0,0 @@ -[ - { - "x": 59, - "y": 93, - "left": -97.03125, - "top": 44.087585, - "right": -95.625, - "bottom": 43.068888, - "countries": [ - "iowa", - "south_dakota", - "minnesota" - ] - }, - { - "x": 59, - "y": 94, - "left": -97.03125, - "top": 43.068888, - "right": -95.625, - "bottom": 42.032974, - "countries": [ - "iowa", - "south_dakota", - "nebraska" - ] - }, - { - "x": 59, - "y": 91, - "left": -97.03125, - "top": 46.073231, - "right": -95.625, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "minnesota", - "south_dakota" - ] - }, - { - "x": 59, - "y": 92, - "left": -97.03125, - "top": 45.089036, - "right": -95.625, - "bottom": 44.087585, - "countries": [ - "south_dakota", - "minnesota" - ] - }, - { - "x": 54, - "y": 91, - "left": -104.0625, - "top": 46.073231, - "right": -102.65625, - "bottom": 45.089036, - "countries": [ - "montana", - "north_dakota", - "south_dakota" - ] - }, - { - "x": 54, - "y": 92, - "left": -104.0625, - "top": 45.089036, - "right": -102.65625, - "bottom": 44.087585, - "countries": [ - "montana", - "south_dakota", - "wyoming" - ] - }, - { - "x": 54, - "y": 94, - "left": -104.0625, - "top": 43.068888, - "right": -102.65625, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska", - "wyoming" - ] - }, - { - "x": 55, - "y": 94, - "left": -102.65625, - "top": 43.068888, - "right": -101.25, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 56, - "y": 94, - "left": -101.25, - "top": 43.068888, - "right": -99.84375, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 57, - "y": 94, - "left": -99.84375, - "top": 43.068888, - "right": -98.4375, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 58, - "y": 94, - "left": -98.4375, - "top": 43.068888, - "right": -97.03125, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska" - ] - }, - { - "x": 55, - "y": 91, - "left": -102.65625, - "top": 46.073231, - "right": -101.25, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 56, - "y": 91, - "left": -101.25, - "top": 46.073231, - "right": -99.84375, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 57, - "y": 91, - "left": -99.84375, - "top": 46.073231, - "right": -98.4375, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 58, - "y": 91, - "left": -98.4375, - "top": 46.073231, - "right": -97.03125, - "bottom": 45.089036, - "countries": [ - "north_dakota", - "south_dakota" - ] - }, - { - "x": 55, - "y": 92, - "left": -102.65625, - "top": 45.089036, - "right": -101.25, - "bottom": 44.087585, - "countries": [ - "south_dakota" - ] - }, - { - "x": 56, - "y": 92, - "left": -101.25, - "top": 45.089036, - "right": -99.84375, - "bottom": 44.087585, - "countries": [ - "south_dakota" - ] - }, - { - "x": 57, - "y": 92, - "left": -99.84375, - "top": 45.089036, - "right": -98.4375, - "bottom": 44.087585, - "countries": [ - "south_dakota" - ] - }, - { - "x": 58, - "y": 92, - "left": -98.4375, - "top": 45.089036, - "right": -97.03125, - "bottom": 44.087585, - "countries": [ - "south_dakota" - ] - }, - { - "x": 54, - "y": 93, - "left": -104.0625, - "top": 44.087585, - "right": -102.65625, - "bottom": 43.068888, - "countries": [ - "south_dakota", - "wyoming" - ] - }, - { - "x": 55, - "y": 93, - "left": -102.65625, - "top": 44.087585, - "right": -101.25, - "bottom": 43.068888, - "countries": [ - "south_dakota" - ] - }, - { - "x": 56, - "y": 93, - "left": -101.25, - "top": 44.087585, - "right": -99.84375, - "bottom": 43.068888, - "countries": [ - "south_dakota" - ] - }, - { - "x": 57, - "y": 93, - "left": -99.84375, - "top": 44.087585, - "right": -98.4375, - "bottom": 43.068888, - "countries": [ - "south_dakota" - ] - }, - { - "x": 58, - "y": 93, - "left": -98.4375, - "top": 44.087585, - "right": -97.03125, - "bottom": 43.068888, - "countries": [ - "south_dakota" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/tennessee.json b/wahoomc/resources/json/united_states/tennessee.json deleted file mode 100644 index 3a5933bc..00000000 --- a/wahoomc/resources/json/united_states/tennessee.json +++ /dev/null @@ -1,232 +0,0 @@ -[ - { - "x": 65, - "y": 101, - "left": -88.59375, - "top": 35.46067, - "right": -87.1875, - "bottom": 34.307144, - "countries": [ - "alabama", - "tennessee", - "mississippi" - ] - }, - { - "x": 66, - "y": 101, - "left": -87.1875, - "top": 35.46067, - "right": -85.78125, - "bottom": 34.307144, - "countries": [ - "alabama", - "tennessee" - ] - }, - { - "x": 67, - "y": 101, - "left": -85.78125, - "top": 35.46067, - "right": -84.375, - "bottom": 34.307144, - "countries": [ - "georgia", - "alabama", - "tennessee" - ] - }, - { - "x": 63, - "y": 100, - "left": -91.40625, - "top": 36.597889, - "right": -90.0, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri" - ] - }, - { - "x": 64, - "y": 100, - "left": -90.0, - "top": 36.597889, - "right": -88.59375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "arkansas", - "missouri", - "kentucky" - ] - }, - { - "x": 63, - "y": 101, - "left": -91.40625, - "top": 35.46067, - "right": -90.0, - "bottom": 34.307144, - "countries": [ - "tennessee", - "arkansas", - "mississippi" - ] - }, - { - "x": 68, - "y": 101, - "left": -84.375, - "top": 35.46067, - "right": -82.96875, - "bottom": 34.307144, - "countries": [ - "georgia", - "north_carolina", - "tennessee", - "south_carolina" - ] - }, - { - "x": 65, - "y": 99, - "left": -88.59375, - "top": 37.71859, - "right": -87.1875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "illinois", - "kentucky" - ] - }, - { - "x": 66, - "y": 99, - "left": -87.1875, - "top": 37.71859, - "right": -85.78125, - "bottom": 36.597889, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 67, - "y": 99, - "left": -85.78125, - "top": 37.71859, - "right": -84.375, - "bottom": 36.597889, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 68, - "y": 99, - "left": -84.375, - "top": 37.71859, - "right": -82.96875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 69, - "y": 99, - "left": -82.96875, - "top": 37.71859, - "right": -81.5625, - "bottom": 36.597889, - "countries": [ - "tennessee", - "west_virginia", - "virginia", - "kentucky" - ] - }, - { - "x": 65, - "y": 100, - "left": -88.59375, - "top": 36.597889, - "right": -87.1875, - "bottom": 35.46067, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 67, - "y": 100, - "left": -85.78125, - "top": 36.597889, - "right": -84.375, - "bottom": 35.46067, - "countries": [ - "tennessee", - "kentucky" - ] - }, - { - "x": 68, - "y": 100, - "left": -84.375, - "top": 36.597889, - "right": -82.96875, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 64, - "y": 101, - "left": -90.0, - "top": 35.46067, - "right": -88.59375, - "bottom": 34.307144, - "countries": [ - "tennessee", - "mississippi" - ] - }, - { - "x": 69, - "y": 100, - "left": -82.96875, - "top": 36.597889, - "right": -81.5625, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia" - ] - }, - { - "x": 66, - "y": 100, - "left": -87.1875, - "top": 36.597889, - "right": -85.78125, - "bottom": 35.46067, - "countries": [ - "tennessee" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/texas.json b/wahoomc/resources/json/united_states/texas.json deleted file mode 100644 index 1806043f..00000000 --- a/wahoomc/resources/json/united_states/texas.json +++ /dev/null @@ -1,676 +0,0 @@ -[ - { - "x": 52, - "y": 104, - "left": -106.875, - "top": 31.952162, - "right": -105.46875, - "bottom": 30.751278, - "countries": [ - "new_mexico", - "texas", - "mexico" - ] - }, - { - "x": 53, - "y": 104, - "left": -105.46875, - "top": 31.952162, - "right": -104.0625, - "bottom": 30.751278, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 53, - "y": 105, - "left": -105.46875, - "top": 30.751278, - "right": -104.0625, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 54, - "y": 105, - "left": -104.0625, - "top": 30.751278, - "right": -102.65625, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 55, - "y": 105, - "left": -102.65625, - "top": 30.751278, - "right": -101.25, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 56, - "y": 105, - "left": -101.25, - "top": 30.751278, - "right": -99.84375, - "bottom": 29.53523, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 53, - "y": 106, - "left": -105.46875, - "top": 29.53523, - "right": -104.0625, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 54, - "y": 106, - "left": -104.0625, - "top": 29.53523, - "right": -102.65625, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 55, - "y": 106, - "left": -102.65625, - "top": 29.53523, - "right": -101.25, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 56, - "y": 106, - "left": -101.25, - "top": 29.53523, - "right": -99.84375, - "bottom": 28.304381, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 56, - "y": 107, - "left": -101.25, - "top": 28.304381, - "right": -99.84375, - "bottom": 27.059126, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 57, - "y": 107, - "left": -99.84375, - "top": 28.304381, - "right": -98.4375, - "bottom": 27.059126, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 57, - "y": 108, - "left": -99.84375, - "top": 27.059126, - "right": -98.4375, - "bottom": 25.799891, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 58, - "y": 108, - "left": -98.4375, - "top": 27.059126, - "right": -97.03125, - "bottom": 25.799891, - "countries": [ - "texas", - "mexico" - ] - }, - { - "x": 60, - "y": 102, - "left": -95.625, - "top": 34.307144, - "right": -94.21875, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma", - "arkansas" - ] - }, - { - "x": 61, - "y": 102, - "left": -94.21875, - "top": 34.307144, - "right": -92.8125, - "bottom": 33.137551, - "countries": [ - "texas", - "arkansas" - ] - }, - { - "x": 61, - "y": 103, - "left": -94.21875, - "top": 33.137551, - "right": -92.8125, - "bottom": 31.952162, - "countries": [ - "texas", - "arkansas", - "louisiana" - ] - }, - { - "x": 61, - "y": 104, - "left": -94.21875, - "top": 31.952162, - "right": -92.8125, - "bottom": 30.751278, - "countries": [ - "texas", - "louisiana" - ] - }, - { - "x": 61, - "y": 105, - "left": -94.21875, - "top": 30.751278, - "right": -92.8125, - "bottom": 29.53523, - "countries": [ - "texas", - "louisiana" - ] - }, - { - "x": 54, - "y": 100, - "left": -104.0625, - "top": 36.597889, - "right": -102.65625, - "bottom": 35.46067, - "countries": [ - "new_mexico", - "oklahoma", - "texas" - ] - }, - { - "x": 54, - "y": 101, - "left": -104.0625, - "top": 35.46067, - "right": -102.65625, - "bottom": 34.307144, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 54, - "y": 102, - "left": -104.0625, - "top": 34.307144, - "right": -102.65625, - "bottom": 33.137551, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 52, - "y": 103, - "left": -106.875, - "top": 33.137551, - "right": -105.46875, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 53, - "y": 103, - "left": -105.46875, - "top": 33.137551, - "right": -104.0625, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 54, - "y": 103, - "left": -104.0625, - "top": 33.137551, - "right": -102.65625, - "bottom": 31.952162, - "countries": [ - "new_mexico", - "texas" - ] - }, - { - "x": 55, - "y": 100, - "left": -102.65625, - "top": 36.597889, - "right": -101.25, - "bottom": 35.46067, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 56, - "y": 100, - "left": -101.25, - "top": 36.597889, - "right": -99.84375, - "bottom": 35.46067, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 56, - "y": 101, - "left": -101.25, - "top": 35.46067, - "right": -99.84375, - "bottom": 34.307144, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 57, - "y": 101, - "left": -99.84375, - "top": 35.46067, - "right": -98.4375, - "bottom": 34.307144, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 57, - "y": 102, - "left": -99.84375, - "top": 34.307144, - "right": -98.4375, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 58, - "y": 102, - "left": -98.4375, - "top": 34.307144, - "right": -97.03125, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 59, - "y": 102, - "left": -97.03125, - "top": 34.307144, - "right": -95.625, - "bottom": 33.137551, - "countries": [ - "texas", - "oklahoma" - ] - }, - { - "x": 55, - "y": 101, - "left": -102.65625, - "top": 35.46067, - "right": -101.25, - "bottom": 34.307144, - "countries": [ - "texas" - ] - }, - { - "x": 55, - "y": 102, - "left": -102.65625, - "top": 34.307144, - "right": -101.25, - "bottom": 33.137551, - "countries": [ - "texas" - ] - }, - { - "x": 56, - "y": 102, - "left": -101.25, - "top": 34.307144, - "right": -99.84375, - "bottom": 33.137551, - "countries": [ - "texas" - ] - }, - { - "x": 55, - "y": 103, - "left": -102.65625, - "top": 33.137551, - "right": -101.25, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 56, - "y": 103, - "left": -101.25, - "top": 33.137551, - "right": -99.84375, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 57, - "y": 103, - "left": -99.84375, - "top": 33.137551, - "right": -98.4375, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 58, - "y": 103, - "left": -98.4375, - "top": 33.137551, - "right": -97.03125, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 59, - "y": 103, - "left": -97.03125, - "top": 33.137551, - "right": -95.625, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 60, - "y": 103, - "left": -95.625, - "top": 33.137551, - "right": -94.21875, - "bottom": 31.952162, - "countries": [ - "texas" - ] - }, - { - "x": 54, - "y": 104, - "left": -104.0625, - "top": 31.952162, - "right": -102.65625, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 55, - "y": 104, - "left": -102.65625, - "top": 31.952162, - "right": -101.25, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 56, - "y": 104, - "left": -101.25, - "top": 31.952162, - "right": -99.84375, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 57, - "y": 104, - "left": -99.84375, - "top": 31.952162, - "right": -98.4375, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 58, - "y": 104, - "left": -98.4375, - "top": 31.952162, - "right": -97.03125, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 59, - "y": 104, - "left": -97.03125, - "top": 31.952162, - "right": -95.625, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 60, - "y": 104, - "left": -95.625, - "top": 31.952162, - "right": -94.21875, - "bottom": 30.751278, - "countries": [ - "texas" - ] - }, - { - "x": 57, - "y": 105, - "left": -99.84375, - "top": 30.751278, - "right": -98.4375, - "bottom": 29.53523, - "countries": [ - "texas" - ] - }, - { - "x": 58, - "y": 105, - "left": -98.4375, - "top": 30.751278, - "right": -97.03125, - "bottom": 29.53523, - "countries": [ - "texas" - ] - }, - { - "x": 59, - "y": 105, - "left": -97.03125, - "top": 30.751278, - "right": -95.625, - "bottom": 29.53523, - "countries": [ - "texas" - ] - }, - { - "x": 60, - "y": 105, - "left": -95.625, - "top": 30.751278, - "right": -94.21875, - "bottom": 29.53523, - "countries": [ - "texas" - ] - }, - { - "x": 57, - "y": 106, - "left": -99.84375, - "top": 29.53523, - "right": -98.4375, - "bottom": 28.304381, - "countries": [ - "texas" - ] - }, - { - "x": 58, - "y": 106, - "left": -98.4375, - "top": 29.53523, - "right": -97.03125, - "bottom": 28.304381, - "countries": [ - "texas" - ] - }, - { - "x": 59, - "y": 106, - "left": -97.03125, - "top": 29.53523, - "right": -95.625, - "bottom": 28.304381, - "countries": [ - "texas" - ] - }, - { - "x": 60, - "y": 106, - "left": -95.625, - "top": 29.53523, - "right": -94.21875, - "bottom": 28.304381, - "countries": [ - "texas" - ] - }, - { - "x": 58, - "y": 107, - "left": -98.4375, - "top": 28.304381, - "right": -97.03125, - "bottom": 27.059126, - "countries": [ - "texas" - ] - }, - { - "x": 59, - "y": 107, - "left": -97.03125, - "top": 28.304381, - "right": -95.625, - "bottom": 27.059126, - "countries": [ - "texas" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/united_states_virgin_islands.json b/wahoomc/resources/json/united_states/united_states_virgin_islands.json deleted file mode 100644 index d2ee11a1..00000000 --- a/wahoomc/resources/json/united_states/united_states_virgin_islands.json +++ /dev/null @@ -1,55 +0,0 @@ -[ - { - "x": 82, - "y": 114, - "left": -64.6875, - "top": 19.311143, - "right": -63.28125, - "bottom": 17.978733, - "countries": [ - "anguilla", - "virgin_islands_u.s.", - "united_states_virgin_islands", - "british_virgin_islands" - ] - }, - { - "x": 81, - "y": 114, - "left": -66.09375, - "top": 19.311143, - "right": -64.6875, - "bottom": 17.978733, - "countries": [ - "british_virgin_islands", - "puerto_rico", - "united_states_virgin_islands", - "virgin_islands_u.s." - ] - }, - { - "x": 81, - "y": 115, - "left": -66.09375, - "top": 17.978733, - "right": -64.6875, - "bottom": 16.636192, - "countries": [ - "puerto_rico", - "virgin_islands_u.s.", - "united_states_virgin_islands" - ] - }, - { - "x": 82, - "y": 115, - "left": -64.6875, - "top": 17.978733, - "right": -63.28125, - "bottom": 16.636192, - "countries": [ - "virgin_islands_u.s.", - "united_states_virgin_islands" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/utah.json b/wahoomc/resources/json/united_states/utah.json deleted file mode 100644 index ef3d37df..00000000 --- a/wahoomc/resources/json/united_states/utah.json +++ /dev/null @@ -1,299 +0,0 @@ -[ - { - "x": 46, - "y": 99, - "left": -115.3125, - "top": 37.71859, - "right": -113.90625, - "bottom": 36.597889, - "countries": [ - "utah", - "nevada", - "arizona" - ] - }, - { - "x": 47, - "y": 99, - "left": -113.90625, - "top": 37.71859, - "right": -112.5, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 48, - "y": 99, - "left": -112.5, - "top": 37.71859, - "right": -111.09375, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 49, - "y": 99, - "left": -111.09375, - "top": 37.71859, - "right": -109.6875, - "bottom": 36.597889, - "countries": [ - "utah", - "arizona" - ] - }, - { - "x": 50, - "y": 99, - "left": -109.6875, - "top": 37.71859, - "right": -108.28125, - "bottom": 36.597889, - "countries": [ - "new_mexico", - "utah", - "colorado", - "arizona" - ] - }, - { - "x": 50, - "y": 95, - "left": -109.6875, - "top": 42.032974, - "right": -108.28125, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming", - "utah" - ] - }, - { - "x": 50, - "y": 96, - "left": -109.6875, - "top": 40.979898, - "right": -108.28125, - "bottom": 39.909736, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 50, - "y": 97, - "left": -109.6875, - "top": 39.909736, - "right": -108.28125, - "bottom": 38.822591, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 50, - "y": 98, - "left": -109.6875, - "top": 38.822591, - "right": -108.28125, - "bottom": 37.71859, - "countries": [ - "colorado", - "utah" - ] - }, - { - "x": 46, - "y": 95, - "left": -115.3125, - "top": 42.032974, - "right": -113.90625, - "bottom": 40.979898, - "countries": [ - "idaho", - "nevada", - "utah" - ] - }, - { - "x": 47, - "y": 95, - "left": -113.90625, - "top": 42.032974, - "right": -112.5, - "bottom": 40.979898, - "countries": [ - "idaho", - "utah" - ] - }, - { - "x": 48, - "y": 95, - "left": -112.5, - "top": 42.032974, - "right": -111.09375, - "bottom": 40.979898, - "countries": [ - "idaho", - "utah" - ] - }, - { - "x": 49, - "y": 95, - "left": -111.09375, - "top": 42.032974, - "right": -109.6875, - "bottom": 40.979898, - "countries": [ - "idaho", - "wyoming", - "utah" - ] - }, - { - "x": 46, - "y": 96, - "left": -115.3125, - "top": 40.979898, - "right": -113.90625, - "bottom": 39.909736, - "countries": [ - "nevada", - "utah" - ] - }, - { - "x": 46, - "y": 97, - "left": -115.3125, - "top": 39.909736, - "right": -113.90625, - "bottom": 38.822591, - "countries": [ - "nevada", - "utah" - ] - }, - { - "x": 46, - "y": 98, - "left": -115.3125, - "top": 38.822591, - "right": -113.90625, - "bottom": 37.71859, - "countries": [ - "nevada", - "utah" - ] - }, - { - "x": 47, - "y": 96, - "left": -113.90625, - "top": 40.979898, - "right": -112.5, - "bottom": 39.909736, - "countries": [ - "utah" - ] - }, - { - "x": 48, - "y": 96, - "left": -112.5, - "top": 40.979898, - "right": -111.09375, - "bottom": 39.909736, - "countries": [ - "utah" - ] - }, - { - "x": 49, - "y": 96, - "left": -111.09375, - "top": 40.979898, - "right": -109.6875, - "bottom": 39.909736, - "countries": [ - "utah" - ] - }, - { - "x": 47, - "y": 97, - "left": -113.90625, - "top": 39.909736, - "right": -112.5, - "bottom": 38.822591, - "countries": [ - "utah" - ] - }, - { - "x": 48, - "y": 97, - "left": -112.5, - "top": 39.909736, - "right": -111.09375, - "bottom": 38.822591, - "countries": [ - "utah" - ] - }, - { - "x": 49, - "y": 97, - "left": -111.09375, - "top": 39.909736, - "right": -109.6875, - "bottom": 38.822591, - "countries": [ - "utah" - ] - }, - { - "x": 47, - "y": 98, - "left": -113.90625, - "top": 38.822591, - "right": -112.5, - "bottom": 37.71859, - "countries": [ - "utah" - ] - }, - { - "x": 48, - "y": 98, - "left": -112.5, - "top": 38.822591, - "right": -111.09375, - "bottom": 37.71859, - "countries": [ - "utah" - ] - }, - { - "x": 49, - "y": 98, - "left": -111.09375, - "top": 38.822591, - "right": -109.6875, - "bottom": 37.71859, - "countries": [ - "utah" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/vermont.json b/wahoomc/resources/json/united_states/vermont.json deleted file mode 100644 index 8b86ad26..00000000 --- a/wahoomc/resources/json/united_states/vermont.json +++ /dev/null @@ -1,94 +0,0 @@ -[ - { - "x": 75, - "y": 92, - "left": -74.53125, - "top": 45.089036, - "right": -73.125, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_york", - "canada" - ] - }, - { - "x": 76, - "y": 92, - "left": -73.125, - "top": 45.089036, - "right": -71.71875, - "bottom": 44.087585, - "countries": [ - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 77, - "y": 92, - "left": -71.71875, - "top": 45.089036, - "right": -70.3125, - "bottom": 44.087585, - "countries": [ - "maine", - "vermont", - "new_hampshire", - "canada" - ] - }, - { - "x": 75, - "y": 94, - "left": -74.53125, - "top": 43.068888, - "right": -73.125, - "bottom": 42.032974, - "countries": [ - "connecticut", - "new_york", - "vermont", - "massachusetts" - ] - }, - { - "x": 76, - "y": 94, - "left": -73.125, - "top": 43.068888, - "right": -71.71875, - "bottom": 42.032974, - "countries": [ - "connecticut", - "vermont", - "massachusetts", - "new_hampshire" - ] - }, - { - "x": 76, - "y": 93, - "left": -73.125, - "top": 44.087585, - "right": -71.71875, - "bottom": 43.068888, - "countries": [ - "vermont", - "new_hampshire" - ] - }, - { - "x": 75, - "y": 93, - "left": -74.53125, - "top": 44.087585, - "right": -73.125, - "bottom": 43.068888, - "countries": [ - "vermont", - "new_york" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/virginia.json b/wahoomc/resources/json/united_states/virginia.json deleted file mode 100644 index 02b26816..00000000 --- a/wahoomc/resources/json/united_states/virginia.json +++ /dev/null @@ -1,275 +0,0 @@ -[ - { - "x": 74, - "y": 98, - "left": -75.9375, - "top": 38.822591, - "right": -74.53125, - "bottom": 37.71859, - "countries": [ - "maryland", - "virginia", - "delaware" - ] - }, - { - "x": 73, - "y": 97, - "left": -77.34375, - "top": 39.909736, - "right": -75.9375, - "bottom": 38.822591, - "countries": [ - "maryland", - "district_of_columbia", - "pennsylvania", - "virginia" - ] - }, - { - "x": 73, - "y": 98, - "left": -77.34375, - "top": 38.822591, - "right": -75.9375, - "bottom": 37.71859, - "countries": [ - "maryland", - "district_of_columbia", - "virginia" - ] - }, - { - "x": 68, - "y": 99, - "left": -84.375, - "top": 37.71859, - "right": -82.96875, - "bottom": 36.597889, - "countries": [ - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 69, - "y": 99, - "left": -82.96875, - "top": 37.71859, - "right": -81.5625, - "bottom": 36.597889, - "countries": [ - "tennessee", - "west_virginia", - "virginia", - "kentucky" - ] - }, - { - "x": 68, - "y": 100, - "left": -84.375, - "top": 36.597889, - "right": -82.96875, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia", - "kentucky" - ] - }, - { - "x": 71, - "y": 97, - "left": -80.15625, - "top": 39.909736, - "right": -78.75, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 72, - "y": 97, - "left": -78.75, - "top": 39.909736, - "right": -77.34375, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 69, - "y": 100, - "left": -82.96875, - "top": 36.597889, - "right": -81.5625, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "tennessee", - "virginia" - ] - }, - { - "x": 70, - "y": 100, - "left": -81.5625, - "top": 36.597889, - "right": -80.15625, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 71, - "y": 100, - "left": -80.15625, - "top": 36.597889, - "right": -78.75, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 72, - "y": 100, - "left": -78.75, - "top": 36.597889, - "right": -77.34375, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 73, - "y": 100, - "left": -77.34375, - "top": 36.597889, - "right": -75.9375, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 74, - "y": 100, - "left": -75.9375, - "top": 36.597889, - "right": -74.53125, - "bottom": 35.46067, - "countries": [ - "north_carolina", - "virginia" - ] - }, - { - "x": 70, - "y": 98, - "left": -81.5625, - "top": 38.822591, - "right": -80.15625, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "virginia" - ] - }, - { - "x": 71, - "y": 98, - "left": -80.15625, - "top": 38.822591, - "right": -78.75, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "virginia" - ] - }, - { - "x": 72, - "y": 98, - "left": -78.75, - "top": 38.822591, - "right": -77.34375, - "bottom": 37.71859, - "countries": [ - "virginia" - ] - }, - { - "x": 70, - "y": 99, - "left": -81.5625, - "top": 37.71859, - "right": -80.15625, - "bottom": 36.597889, - "countries": [ - "west_virginia", - "virginia" - ] - }, - { - "x": 71, - "y": 99, - "left": -80.15625, - "top": 37.71859, - "right": -78.75, - "bottom": 36.597889, - "countries": [ - "virginia" - ] - }, - { - "x": 72, - "y": 99, - "left": -78.75, - "top": 37.71859, - "right": -77.34375, - "bottom": 36.597889, - "countries": [ - "virginia" - ] - }, - { - "x": 73, - "y": 99, - "left": -77.34375, - "top": 37.71859, - "right": -75.9375, - "bottom": 36.597889, - "countries": [ - "virginia" - ] - }, - { - "x": 74, - "y": 99, - "left": -75.9375, - "top": 37.71859, - "right": -74.53125, - "bottom": 36.597889, - "countries": [ - "virginia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/washington.json b/wahoomc/resources/json/united_states/washington.json deleted file mode 100644 index e19f017f..00000000 --- a/wahoomc/resources/json/united_states/washington.json +++ /dev/null @@ -1,329 +0,0 @@ -[ - { - "x": 40, - "y": 87, - "left": -123.75, - "top": 49.837982, - "right": -122.34375, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 41, - "y": 87, - "left": -122.34375, - "top": 49.837982, - "right": -120.9375, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 42, - "y": 87, - "left": -120.9375, - "top": 49.837982, - "right": -119.53125, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 43, - "y": 87, - "left": -119.53125, - "top": 49.837982, - "right": -118.125, - "bottom": 48.922499, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 44, - "y": 87, - "left": -118.125, - "top": 49.837982, - "right": -116.71875, - "bottom": 48.922499, - "countries": [ - "idaho", - "washington", - "canada" - ] - }, - { - "x": 39, - "y": 88, - "left": -125.15625, - "top": 48.922499, - "right": -123.75, - "bottom": 47.989922, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 40, - "y": 88, - "left": -123.75, - "top": 48.922499, - "right": -122.34375, - "bottom": 47.989922, - "countries": [ - "washington", - "canada" - ] - }, - { - "x": 44, - "y": 88, - "left": -118.125, - "top": 48.922499, - "right": -116.71875, - "bottom": 47.989922, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 44, - "y": 89, - "left": -118.125, - "top": 47.989922, - "right": -116.71875, - "bottom": 47.040182, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 44, - "y": 90, - "left": -118.125, - "top": 47.040182, - "right": -116.71875, - "bottom": 46.073231, - "countries": [ - "idaho", - "washington" - ] - }, - { - "x": 44, - "y": 91, - "left": -118.125, - "top": 46.073231, - "right": -116.71875, - "bottom": 45.089036, - "countries": [ - "idaho", - "oregon", - "washington" - ] - }, - { - "x": 39, - "y": 90, - "left": -125.15625, - "top": 47.040182, - "right": -123.75, - "bottom": 46.073231, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 40, - "y": 90, - "left": -123.75, - "top": 47.040182, - "right": -122.34375, - "bottom": 46.073231, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 40, - "y": 91, - "left": -123.75, - "top": 46.073231, - "right": -122.34375, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 41, - "y": 91, - "left": -122.34375, - "top": 46.073231, - "right": -120.9375, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 42, - "y": 91, - "left": -120.9375, - "top": 46.073231, - "right": -119.53125, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 43, - "y": 91, - "left": -119.53125, - "top": 46.073231, - "right": -118.125, - "bottom": 45.089036, - "countries": [ - "oregon", - "washington" - ] - }, - { - "x": 41, - "y": 88, - "left": -122.34375, - "top": 48.922499, - "right": -120.9375, - "bottom": 47.989922, - "countries": [ - "washington" - ] - }, - { - "x": 42, - "y": 88, - "left": -120.9375, - "top": 48.922499, - "right": -119.53125, - "bottom": 47.989922, - "countries": [ - "washington" - ] - }, - { - "x": 43, - "y": 88, - "left": -119.53125, - "top": 48.922499, - "right": -118.125, - "bottom": 47.989922, - "countries": [ - "washington" - ] - }, - { - "x": 39, - "y": 89, - "left": -125.15625, - "top": 47.989922, - "right": -123.75, - "bottom": 47.040182, - "countries": [ - "washington" - ] - }, - { - "x": 40, - "y": 89, - "left": -123.75, - "top": 47.989922, - "right": -122.34375, - "bottom": 47.040182, - "countries": [ - "washington" - ] - }, - { - "x": 41, - "y": 89, - "left": -122.34375, - "top": 47.989922, - "right": -120.9375, - "bottom": 47.040182, - "countries": [ - "washington" - ] - }, - { - "x": 42, - "y": 89, - "left": -120.9375, - "top": 47.989922, - "right": -119.53125, - "bottom": 47.040182, - "countries": [ - "washington" - ] - }, - { - "x": 43, - "y": 89, - "left": -119.53125, - "top": 47.989922, - "right": -118.125, - "bottom": 47.040182, - "countries": [ - "washington" - ] - }, - { - "x": 41, - "y": 90, - "left": -122.34375, - "top": 47.040182, - "right": -120.9375, - "bottom": 46.073231, - "countries": [ - "washington" - ] - }, - { - "x": 42, - "y": 90, - "left": -120.9375, - "top": 47.040182, - "right": -119.53125, - "bottom": 46.073231, - "countries": [ - "washington" - ] - }, - { - "x": 43, - "y": 90, - "left": -119.53125, - "top": 47.040182, - "right": -118.125, - "bottom": 46.073231, - "countries": [ - "washington" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/west_virginia.json b/wahoomc/resources/json/united_states/west_virginia.json deleted file mode 100644 index 8cb379f0..00000000 --- a/wahoomc/resources/json/united_states/west_virginia.json +++ /dev/null @@ -1,131 +0,0 @@ -[ - { - "x": 69, - "y": 98, - "left": -82.96875, - "top": 38.822591, - "right": -81.5625, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "ohio", - "kentucky" - ] - }, - { - "x": 69, - "y": 99, - "left": -82.96875, - "top": 37.71859, - "right": -81.5625, - "bottom": 36.597889, - "countries": [ - "tennessee", - "west_virginia", - "virginia", - "kentucky" - ] - }, - { - "x": 71, - "y": 97, - "left": -80.15625, - "top": 39.909736, - "right": -78.75, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 72, - "y": 97, - "left": -78.75, - "top": 39.909736, - "right": -77.34375, - "bottom": 38.822591, - "countries": [ - "maryland", - "pennsylvania", - "west_virginia", - "virginia" - ] - }, - { - "x": 70, - "y": 96, - "left": -81.5625, - "top": 40.979898, - "right": -80.15625, - "bottom": 39.909736, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - }, - { - "x": 69, - "y": 97, - "left": -82.96875, - "top": 39.909736, - "right": -81.5625, - "bottom": 38.822591, - "countries": [ - "west_virginia", - "ohio" - ] - }, - { - "x": 70, - "y": 97, - "left": -81.5625, - "top": 39.909736, - "right": -80.15625, - "bottom": 38.822591, - "countries": [ - "pennsylvania", - "west_virginia", - "ohio" - ] - }, - { - "x": 70, - "y": 98, - "left": -81.5625, - "top": 38.822591, - "right": -80.15625, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "virginia" - ] - }, - { - "x": 71, - "y": 98, - "left": -80.15625, - "top": 38.822591, - "right": -78.75, - "bottom": 37.71859, - "countries": [ - "west_virginia", - "virginia" - ] - }, - { - "x": 70, - "y": 99, - "left": -81.5625, - "top": 37.71859, - "right": -80.15625, - "bottom": 36.597889, - "countries": [ - "west_virginia", - "virginia" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/wisconsin.json b/wahoomc/resources/json/united_states/wisconsin.json deleted file mode 100644 index 296db017..00000000 --- a/wahoomc/resources/json/united_states/wisconsin.json +++ /dev/null @@ -1,263 +0,0 @@ -[ - { - "x": 63, - "y": 94, - "left": -91.40625, - "top": 43.068888, - "right": -90.0, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "iowa", - "illinois" - ] - }, - { - "x": 64, - "y": 94, - "left": -90.0, - "top": 43.068888, - "right": -88.59375, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "illinois" - ] - }, - { - "x": 65, - "y": 94, - "left": -88.59375, - "top": 43.068888, - "right": -87.1875, - "bottom": 42.032974, - "countries": [ - "wisconsin", - "illinois" - ] - }, - { - "x": 62, - "y": 93, - "left": -92.8125, - "top": 44.087585, - "right": -91.40625, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 63, - "y": 93, - "left": -91.40625, - "top": 44.087585, - "right": -90.0, - "bottom": 43.068888, - "countries": [ - "wisconsin", - "iowa", - "minnesota" - ] - }, - { - "x": 63, - "y": 90, - "left": -91.40625, - "top": 47.040182, - "right": -90.0, - "bottom": 46.073231, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 64, - "y": 90, - "left": -90.0, - "top": 47.040182, - "right": -88.59375, - "bottom": 46.073231, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 64, - "y": 91, - "left": -90.0, - "top": 46.073231, - "right": -88.59375, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 65, - "y": 91, - "left": -88.59375, - "top": 46.073231, - "right": -87.1875, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 66, - "y": 91, - "left": -87.1875, - "top": 46.073231, - "right": -85.78125, - "bottom": 45.089036, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 66, - "y": 92, - "left": -87.1875, - "top": 45.089036, - "right": -85.78125, - "bottom": 44.087585, - "countries": [ - "michigan", - "wisconsin" - ] - }, - { - "x": 63, - "y": 89, - "left": -91.40625, - "top": 47.989922, - "right": -90.0, - "bottom": 47.040182, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 62, - "y": 90, - "left": -92.8125, - "top": 47.040182, - "right": -91.40625, - "bottom": 46.073231, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 61, - "y": 91, - "left": -94.21875, - "top": 46.073231, - "right": -92.8125, - "bottom": 45.089036, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 62, - "y": 91, - "left": -92.8125, - "top": 46.073231, - "right": -91.40625, - "bottom": 45.089036, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 62, - "y": 92, - "left": -92.8125, - "top": 45.089036, - "right": -91.40625, - "bottom": 44.087585, - "countries": [ - "wisconsin", - "minnesota" - ] - }, - { - "x": 63, - "y": 91, - "left": -91.40625, - "top": 46.073231, - "right": -90.0, - "bottom": 45.089036, - "countries": [ - "wisconsin" - ] - }, - { - "x": 63, - "y": 92, - "left": -91.40625, - "top": 45.089036, - "right": -90.0, - "bottom": 44.087585, - "countries": [ - "wisconsin" - ] - }, - { - "x": 64, - "y": 92, - "left": -90.0, - "top": 45.089036, - "right": -88.59375, - "bottom": 44.087585, - "countries": [ - "wisconsin" - ] - }, - { - "x": 65, - "y": 92, - "left": -88.59375, - "top": 45.089036, - "right": -87.1875, - "bottom": 44.087585, - "countries": [ - "wisconsin" - ] - }, - { - "x": 64, - "y": 93, - "left": -90.0, - "top": 44.087585, - "right": -88.59375, - "bottom": 43.068888, - "countries": [ - "wisconsin" - ] - }, - { - "x": 65, - "y": 93, - "left": -88.59375, - "top": 44.087585, - "right": -87.1875, - "bottom": 43.068888, - "countries": [ - "wisconsin" - ] - } -] \ No newline at end of file diff --git a/wahoomc/resources/json/united_states/wyoming.json b/wahoomc/resources/json/united_states/wyoming.json deleted file mode 100644 index 4869d046..00000000 --- a/wahoomc/resources/json/united_states/wyoming.json +++ /dev/null @@ -1,288 +0,0 @@ -[ - { - "x": 50, - "y": 95, - "left": -109.6875, - "top": 42.032974, - "right": -108.28125, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming", - "utah" - ] - }, - { - "x": 51, - "y": 95, - "left": -108.28125, - "top": 42.032974, - "right": -106.875, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 52, - "y": 95, - "left": -106.875, - "top": 42.032974, - "right": -105.46875, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 53, - "y": 95, - "left": -105.46875, - "top": 42.032974, - "right": -104.0625, - "bottom": 40.979898, - "countries": [ - "colorado", - "wyoming" - ] - }, - { - "x": 54, - "y": 95, - "left": -104.0625, - "top": 42.032974, - "right": -102.65625, - "bottom": 40.979898, - "countries": [ - "nebraska", - "colorado", - "wyoming" - ] - }, - { - "x": 49, - "y": 92, - "left": -111.09375, - "top": 45.089036, - "right": -109.6875, - "bottom": 44.087585, - "countries": [ - "idaho", - "montana", - "wyoming" - ] - }, - { - "x": 49, - "y": 93, - "left": -111.09375, - "top": 44.087585, - "right": -109.6875, - "bottom": 43.068888, - "countries": [ - "idaho", - "wyoming" - ] - }, - { - "x": 49, - "y": 94, - "left": -111.09375, - "top": 43.068888, - "right": -109.6875, - "bottom": 42.032974, - "countries": [ - "idaho", - "wyoming" - ] - }, - { - "x": 49, - "y": 95, - "left": -111.09375, - "top": 42.032974, - "right": -109.6875, - "bottom": 40.979898, - "countries": [ - "idaho", - "wyoming", - "utah" - ] - }, - { - "x": 50, - "y": 92, - "left": -109.6875, - "top": 45.089036, - "right": -108.28125, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 51, - "y": 92, - "left": -108.28125, - "top": 45.089036, - "right": -106.875, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 52, - "y": 92, - "left": -106.875, - "top": 45.089036, - "right": -105.46875, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 53, - "y": 92, - "left": -105.46875, - "top": 45.089036, - "right": -104.0625, - "bottom": 44.087585, - "countries": [ - "montana", - "wyoming" - ] - }, - { - "x": 54, - "y": 92, - "left": -104.0625, - "top": 45.089036, - "right": -102.65625, - "bottom": 44.087585, - "countries": [ - "montana", - "south_dakota", - "wyoming" - ] - }, - { - "x": 54, - "y": 94, - "left": -104.0625, - "top": 43.068888, - "right": -102.65625, - "bottom": 42.032974, - "countries": [ - "south_dakota", - "nebraska", - "wyoming" - ] - }, - { - "x": 54, - "y": 93, - "left": -104.0625, - "top": 44.087585, - "right": -102.65625, - "bottom": 43.068888, - "countries": [ - "south_dakota", - "wyoming" - ] - }, - { - "x": 50, - "y": 93, - "left": -109.6875, - "top": 44.087585, - "right": -108.28125, - "bottom": 43.068888, - "countries": [ - "wyoming" - ] - }, - { - "x": 51, - "y": 93, - "left": -108.28125, - "top": 44.087585, - "right": -106.875, - "bottom": 43.068888, - "countries": [ - "wyoming" - ] - }, - { - "x": 52, - "y": 93, - "left": -106.875, - "top": 44.087585, - "right": -105.46875, - "bottom": 43.068888, - "countries": [ - "wyoming" - ] - }, - { - "x": 53, - "y": 93, - "left": -105.46875, - "top": 44.087585, - "right": -104.0625, - "bottom": 43.068888, - "countries": [ - "wyoming" - ] - }, - { - "x": 50, - "y": 94, - "left": -109.6875, - "top": 43.068888, - "right": -108.28125, - "bottom": 42.032974, - "countries": [ - "wyoming" - ] - }, - { - "x": 51, - "y": 94, - "left": -108.28125, - "top": 43.068888, - "right": -106.875, - "bottom": 42.032974, - "countries": [ - "wyoming" - ] - }, - { - "x": 52, - "y": 94, - "left": -106.875, - "top": 43.068888, - "right": -105.46875, - "bottom": 42.032974, - "countries": [ - "wyoming" - ] - }, - { - "x": 53, - "y": 94, - "left": -105.46875, - "top": 43.068888, - "right": -104.0625, - "bottom": 42.032974, - "countries": [ - "wyoming" - ] - } -] \ No newline at end of file diff --git a/wahoomc/setup_functions.py b/wahoomc/setup_functions.py index bc7f8495..584834d8 100644 --- a/wahoomc/setup_functions.py +++ b/wahoomc/setup_functions.py @@ -75,6 +75,9 @@ def adjustments_due_to_breaking_changes(): log.info( 'Last run was with version %s, deleting files of %s directory due to breaking changes.', version_last_run, USER_MAPS_DIR) delete_o5m_pbf_files_in_folder(USER_MAPS_DIR) + log.info( + 'Last run was with version %s, deleting files of %s directory due to breaking changes.', version_last_run, USER_OUTPUT_DIR) + delete_o5m_pbf_files_in_folder(USER_OUTPUT_DIR) def check_installation_of_required_programs():

    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