├── .gitignore ├── .travis.yml ├── test ├── karma.conf.js ├── test.js └── assets.js ├── STATS.md ├── index.js ├── LICENSE ├── bin ├── wget.js ├── stats.js ├── common.js ├── shp2geo.js └── geo2topo.js ├── package.json ├── config.json ├── README.md └── dist ├── south-america_110m.json ├── europe_110m.json ├── africa_110m.json └── usa_110m.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | build/* 4 | !build/README.md 5 | 6 | npm-debug.log 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "10" 4 | before_script: 5 | - export DISPLAY=:99.0 6 | - sh -e /etc/init.d/xvfb start 7 | -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- 1 | var isCI = process.env.CI 2 | 3 | module.exports = function (config) { 4 | config.set({ 5 | basePath: '.', 6 | 7 | files: [ 8 | 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.js', 9 | 'test.js' 10 | ], 11 | 12 | frameworks: ['jasmine', 'browserify'], 13 | 14 | preprocessors: { 'test.js': ['browserify'] }, 15 | 16 | browsers: ['Firefox'], 17 | 18 | autoWatch: !isCI, 19 | 20 | singleRun: isCI, 21 | 22 | browserNoActivityTimeout: 100000, 23 | 24 | browserify: { 25 | watch: true, 26 | debug: true 27 | } 28 | }) 29 | } 30 | -------------------------------------------------------------------------------- /STATS.md: -------------------------------------------------------------------------------- 1 | # sane-topojson file stats 2 | 3 | | dist name | raw size | gzip size | 4 | | --------- | -------- | --------- | 5 | | world_110m.json | 133.4 kB | 39.5 kB | 6 | | usa_110m.json | 48 kB | 15.8 kB | 7 | | europe_110m.json | 32.6 kB | 11.6 kB | 8 | | asia_110m.json | 54.4 kB | 18.2 kB | 9 | | africa_110m.json | 36.3 kB | 12.8 kB | 10 | | north-america_110m.json | 65.8 kB | 21.8 kB | 11 | | south-america_110m.json | 21.7 kB | 7.9 kB | 12 | | world_50m.json | 1 MB | 227.3 kB | 13 | | usa_50m.json | 459.7 kB | 143.7 kB | 14 | | europe_50m.json | 193.2 kB | 50.1 kB | 15 | | asia_50m.json | 352.4 kB | 82.5 kB | 16 | | africa_50m.json | 143.9 kB | 38.5 kB | 17 | | north-america_50m.json | 979.5 kB | 327.4 kB | 18 | | south-america_50m.json | 164.9 kB | 47.6 kB | 19 | 20 | ------------ 21 | _This is generated via `npm run stats`. Do not modify it directly._ 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | exports['world_110m'] = require('./dist/world_110m.json') 2 | exports['world_50m'] = require('./dist/world_50m.json') 3 | 4 | exports['africa_110m'] = require('./dist/africa_110m.json') 5 | exports['africa_50m'] = require('./dist/africa_50m.json') 6 | 7 | exports['asia_110m'] = require('./dist/asia_110m.json') 8 | exports['asia_50m'] = require('./dist/asia_50m.json') 9 | 10 | exports['europe_110m'] = require('./dist/europe_110m.json') 11 | exports['europe_50m'] = require('./dist/europe_50m.json') 12 | 13 | exports['north-america_110m'] = require('./dist/north-america_110m.json') 14 | exports['north-america_50m'] = require('./dist/north-america_50m.json') 15 | 16 | exports['south-america_110m'] = require('./dist/south-america_110m.json') 17 | exports['south-america_50m'] = require('./dist/south-america_50m.json') 18 | 19 | exports['usa_110m'] = require('./dist/usa_110m.json') 20 | exports['usa_50m'] = require('./dist/usa_50m.json') 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Étienne Tétreault-Pinard 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /bin/wget.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var exec = require('child_process').exec 3 | var wget = require('node-wget') 4 | var common = require('./common') 5 | 6 | fs.readFile(common.pathToConfig, 'utf8', main) 7 | 8 | function main (err, configFile) { 9 | if (err) throw err 10 | 11 | var config = JSON.parse(configFile) 12 | 13 | var bar = common.makeBar( 14 | 'Downloading shapefiles: [:bar] :current/:total', 15 | [config.resolutions, config.vectors] 16 | ) 17 | 18 | function unzip (r, v) { 19 | return [ 20 | 'unzip -o', 21 | common.wgetDir + common.srcPrefix + common.bn(r, v.src, 'zip'), 22 | '-d', common.wgetDir 23 | ].join(' ') 24 | } 25 | 26 | config.resolutions.forEach(function (r) { 27 | config.vectors.forEach(function (v) { 28 | var url = [ 29 | common.urlBase, 30 | r, 'm/', v.type + '/', 31 | common.srcPrefix, 32 | common.bn(r, v.src, 'zip') 33 | ].join('') 34 | var dest = [ 35 | common.wgetDir, 36 | common.srcPrefix, 37 | common.bn(r, v.src, 'zip') 38 | ].join('') 39 | 40 | if (common.DEBUG) console.log('wget ' + url + '\n') 41 | 42 | wget({ url: url, dest: dest }, function (err) { 43 | if (err) throw err 44 | setTimeout(function () { 45 | exec(unzip(r, v), function (err) { 46 | if (err) throw err 47 | bar.tick() 48 | }) 49 | }, 1000) 50 | }) 51 | }) 52 | }) 53 | } 54 | -------------------------------------------------------------------------------- /bin/stats.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var gzipSize = require('gzip-size') 3 | var prettySize = require('prettysize') 4 | var common = require('./common') 5 | 6 | fs.readFile(common.pathToConfig, 'utf8', main) 7 | 8 | function main (err, configFile) { 9 | if (err) throw err 10 | 11 | var config = JSON.parse(configFile) 12 | var toposToWrite = common.getToposToWrite(config) 13 | 14 | var readBar = common.makeBar( 15 | 'Measuring topojson size: [:bar] :current/:total', 16 | [toposToWrite] 17 | ) 18 | 19 | var header = [ 20 | '# sane-topojson file stats', 21 | '', 22 | '| dist name | raw size | gzip size |', 23 | '| --------- | -------- | --------- |' 24 | ] 25 | 26 | var footer = [ 27 | '', 28 | '------------', 29 | '_This is generated via `npm run stats`. Do not modify it directly._', 30 | '' 31 | ] 32 | 33 | var lines = new Array(toposToWrite.length) 34 | 35 | toposToWrite.forEach(function (topo, i) { 36 | var r = topo.r 37 | var s = topo.s 38 | var inPath = common.topojsonDir + common.out(r, s.name) 39 | 40 | fs.readFile(inPath, 'utf-8', function (err, code) { 41 | if (err) throw err 42 | 43 | lines[i] = '| ' + [ 44 | common.out(r, s.name), 45 | prettySize(code.length), 46 | prettySize(gzipSize.sync(code)) 47 | ].join(' | ') + ' |' 48 | 49 | readBar.tick() 50 | 51 | if (readBar.complete) { 52 | var content = [].concat(header).concat(lines).concat(footer) 53 | 54 | fs.writeFile(common.pathToStats, content.join('\n'), function (err) { 55 | if (err) throw err 56 | }) 57 | } 58 | }) 59 | }) 60 | } 61 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sane-topojson", 3 | "version": "4.0.0", 4 | "description": "Ready-to-use multi-layer topojson files", 5 | "main": "index.js", 6 | "scripts": { 7 | "clean": "cd build && ls | grep -v README.md | xargs rm || true", 8 | "wget": "node ./bin/wget.js", 9 | "shp2geo": "node ./bin/shp2geo.js", 10 | "geo2topo": "node ./bin/geo2topo.js", 11 | "stats": "node ./bin/stats.js", 12 | "start": "npm run clean && npm run wget && npm run shp2geo && npm run geo2topo && npm run stats", 13 | "test:lint": "standard | snazzy", 14 | "test:jasmine": "karma start test/karma.conf.js", 15 | "test": "npm run test:lint && npm run test:jasmine" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git+https://github.com/etpinard/sane-topojson.git" 20 | }, 21 | "keywords": [ 22 | "topojson", 23 | "geojson", 24 | "shapefiles", 25 | "maps" 26 | ], 27 | "author": "Étienne Tétreault-Pinard", 28 | "license": "MIT", 29 | "bugs": { 30 | "url": "https://github.com/etpinard/sane-topojson/issues" 31 | }, 32 | "homepage": "https://github.com/etpinard/sane-topojson#readme", 33 | "devDependencies": { 34 | "fast-array-diff": "^0.2.0", 35 | "geojson-utils": "^1.1.0", 36 | "gzip-size": "^5.1.1", 37 | "jasmine-core": "^3.4.0", 38 | "karma": "^4.2.0", 39 | "karma-browserify": "^6.0.0", 40 | "karma-firefox-launcher": "^1.0.0", 41 | "karma-jasmine": "^2.0.1", 42 | "mapshaper": "^0.4.122", 43 | "node-wget": "^0.4.3", 44 | "prettysize": "^2.0.0", 45 | "progress": "^2.0.3", 46 | "snazzy": "^8.0.0", 47 | "standard": "^13.0.2", 48 | "topojson": "^1.6.27", 49 | "watchify": "^3.11.1" 50 | }, 51 | "dependencies": {} 52 | } 53 | -------------------------------------------------------------------------------- /bin/common.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var path = require('path') 3 | var ProgressBar = require('progress') 4 | 5 | var common = module.exports = {} 6 | 7 | common.DEBUG = process.env.SANE_TOPOJSON_DEBUG 8 | common.pathToConfig = path.join(__dirname, '../config.json') 9 | common.wgetDir = path.join(__dirname, '../build/') 10 | common.geojsonDir = path.join(__dirname, '../build/') 11 | common.topojsonDir = path.join(__dirname, '../dist/') 12 | common.pathToStats = path.join(__dirname, '..', 'STATS.md') 13 | common.urlBase = 'https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/' 14 | common.srcPrefix = 'ne_' 15 | 16 | // base file name 17 | common.bn = function bn (r, vName, ext) { 18 | return r + 'm_' + vName + '.' + ext 19 | } 20 | 21 | // temporary file name 22 | common.tn = function tn (r, sName, vName, ext) { 23 | return r + 'm_' + sName + '_' + vName + '.' + ext 24 | } 25 | 26 | // aggregated topojson 27 | common.out = function out (r, sName) { 28 | return sName + '_' + r + 'm.json' 29 | } 30 | 31 | // make Progress bar 32 | common.makeBar = function (str, components) { 33 | function getTotal () { 34 | var total = 1 35 | components.forEach(function (c) { 36 | total *= c.length 37 | }) 38 | return total 39 | } 40 | return new ProgressBar( 41 | str, 42 | { 43 | incomplete: ' ', 44 | total: getTotal() 45 | } 46 | ) 47 | } 48 | 49 | // get list of topojsons to write 50 | common.getToposToWrite = function (config) { 51 | var toposToWrite = [] 52 | 53 | config.resolutions.forEach(function (r) { 54 | config.scopes.forEach(function (s) { 55 | var path = config.topojson_dir + common.out(r, s.name) 56 | if (!fs.existsSync(path)) { 57 | toposToWrite.push({ r: r, s: s }) 58 | } 59 | }) 60 | }) 61 | 62 | return toposToWrite 63 | } 64 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "naturalEarthVersion": "4.1.0", 3 | 4 | "resolutions": [ 5 | 110, 6 | 50 7 | ], 8 | "scopes": [ 9 | { 10 | "name": "world", 11 | "specs": false 12 | }, 13 | { 14 | "name": "usa", 15 | "specs": { 16 | "src": "admin_0_countries", 17 | "key": "ISO_A3", 18 | "val": "USA", 19 | "bounds": [-180, 0, -50, 85] 20 | } 21 | }, 22 | { 23 | "name": "europe", 24 | "specs": { 25 | "src": "admin_0_countries", 26 | "key": "CONTINENT", 27 | "val": "Europe", 28 | "bounds": [-30, 0, 60, 90] 29 | } 30 | }, 31 | { 32 | "name": "asia", 33 | "specs": { 34 | "src": "admin_0_countries", 35 | "key": "CONTINENT", 36 | "val": "Asia", 37 | "bounds": [15, -90, 180, 85] 38 | } 39 | }, 40 | { 41 | "name": "africa", 42 | "specs": { 43 | "src": "admin_0_countries", 44 | "key": "CONTINENT", 45 | "val": "Africa", 46 | "bounds": [-30, -50, 60, 50] 47 | } 48 | }, 49 | { 50 | "name": "north-america", 51 | "specs": { 52 | "src": "admin_0_countries", 53 | "key": "CONTINENT", 54 | "val": "North America", 55 | "bounds": [-180, 0, -45, 85] 56 | } 57 | }, 58 | { 59 | "name": "south-america", 60 | "specs": { 61 | "src": "admin_0_countries", 62 | "key": "CONTINENT", 63 | "val": "South America", 64 | "bounds": [-100, -70, -30, 25] 65 | } 66 | } 67 | ], 68 | "vectors": [ 69 | { 70 | "type": "physical", 71 | "src": "coastline", 72 | "name": "coastlines", 73 | "ids": false, 74 | "scopeWith": "bounds" 75 | }, 76 | { 77 | "type": "physical", 78 | "src": "land", 79 | "name": "land", 80 | "ids": false, 81 | "scopeWith": "src" 82 | }, 83 | { 84 | "type": "physical", 85 | "src": "ocean", 86 | "name": "ocean", 87 | "ids": false, 88 | "scopeWith": "bounds" 89 | }, 90 | { 91 | "type": "physical", 92 | "src": "lakes", 93 | "name": "lakes", 94 | "ids": false, 95 | "scopeWith": "src" 96 | }, 97 | { 98 | "type": "physical", 99 | "src": "rivers_lake_centerlines", 100 | "name": "rivers", 101 | "ids": false, 102 | "scopeWith": "src" 103 | }, 104 | { 105 | "type": "cultural", 106 | "src": "admin_0_countries", 107 | "name": "countries", 108 | "ids": "ISO_A3_EH", 109 | "scopeWith": "bounds" 110 | }, 111 | { 112 | "type": "cultural", 113 | "src": "admin_1_states_provinces_lakes", 114 | "name": "subunits", 115 | "ids": "postal", 116 | "scopeWith": "src" 117 | } 118 | ] 119 | } 120 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sane-topojson 2 | 3 | [![npm version][badge-version]][npm] 4 | 5 | [![Build Status][badge-travis]][travis] 6 | [![Dependency Status][badge-deps]][deps] 7 | [![devDependency Status][badge-dev-deps]][dev-deps] 8 | 9 | Ready-to-use multi-layer topojson files. 10 | 11 | **-->** Go to [Natural Earth CHANGELOG](https://github.com/nvkelso/natural-earth-vector/blob/master/CHANGELOG) 12 | 13 | This project encompasses the three step required to turn 14 | [Natural Earth Data](http://www.naturalearthdata.com/) into topojson files. 15 | 16 | These are: 17 | 18 | - `npm run wget`: download to Natural Earth shapefiles and unzips them 19 | - `npm run shp2geo`: clip and convert shapefiles into geojson files 20 | - `npm run geo2topo` add properties and convert the geojson files into topojson 21 | files 22 | 23 | ### Usage 24 | 25 | ``` 26 | npm install sane-topojson 27 | ``` 28 | 29 | and import/require the `index.js` or the one of the `dist/` files. 30 | 31 | ### Layers 32 | 33 | A topojson with the `objects` field: 34 | 35 | ```js 36 | { 37 | coastlines: { 38 | type: '', 39 | geometries: [] 40 | }, 41 | countries: { 42 | type: '', 43 | geometries: [ 44 | {type: '', id: '', arcs: [], properties: {ct: [lon, lat]}}, 45 | // ... 46 | ] 47 | }, 48 | lakes: { 49 | type: '', 50 | geometries: [] 51 | }, 52 | land: { 53 | type: '', 54 | geometries: [] 55 | }, 56 | ocean: { 57 | type: '', 58 | geometries: [] 59 | } 60 | rivers: { 61 | type: '', 62 | geometries: [] 63 | } 64 | subunits: { 65 | type: '', 66 | geometries: [ 67 | {type: '', id: '', arcs: [], properties: {ct: [lon, lat], gu: 'ISO-3'}}, 68 | // ... 69 | ] 70 | } 71 | } 72 | ``` 73 | 74 | where `id` is the ISO-3 code for the `countries` layer and two-letter postal 75 | code for the `subunits` layer. In `properties`, `ct` is the longitude and 76 | latitude coordinates (in degrees East and degrees North respectively) of the 77 | centroid of the geometry's largest polygon in area and `gu` stands for the 78 | "governing unit" for `subunits` features (i.e. the country where the subunit 79 | is). 80 | 81 | ### Development dependencies 82 | 83 | - Install gdal (info: 84 | [ubuntu](http://www.sarasafavi.com/installing-gdalogr-on-ubuntu.html) | 85 | [mac](https://trac.osgeo.org/gdal/wiki/BuildingOnMac)) 86 | - `npm i` 87 | 88 | ### Configuration 89 | 90 | In `./config.json`: 91 | 92 | - `resolutions`: array of resolutions to output 93 | - `scopes`: array of scopes to output 94 | 95 | sane-topojson will output `resolution.length` times `scopes.length` topojson 96 | files. 97 | 98 | - `vectors`: array of layers making up each topojson file 99 | 100 | ## Credits 101 | 102 | 2019 Étienne Tétreault-Pinard. MIT License 103 | 104 | [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) 105 | 106 | [npm]: https://www.npmjs.com/package/sane-topojson 107 | [travis]: https://travis-ci.org/etpinard/sane-topojson 108 | [badge-travis]: https://travis-ci.org/etpinard/sane-topojson.svg?branch=master 109 | [badge-version]: https://badge.fury.io/js/sane-topojson.svg 110 | [badge-deps]: https://david-dm.org/etpinard/sane-topojson.svg?style=flat-square 111 | [deps]: https://david-dm.org/etpinard/sane-topojson 112 | [badge-dev-deps]: https://david-dm.org/etpinard/sane-topojson/dev-status.svg?style=flat-square 113 | [dev-deps]: https://david-dm.org/etpinard/sane-topojson#info=devDependencies 114 | -------------------------------------------------------------------------------- /bin/shp2geo.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var exec = require('child_process').exec 3 | var common = require('./common') 4 | var mapshaper = './node_modules/mapshaper/bin/mapshaper' 5 | 6 | fs.readFile(common.pathToConfig, 'utf8', main) 7 | 8 | function main (err, configFile) { 9 | if (err) throw err 10 | 11 | var config = JSON.parse(configFile) 12 | var toposToWrite = common.getToposToWrite(config) 13 | 14 | var bar = common.makeBar( 15 | 'Converting shapefiles to GeoJSON: [:bar] :current/:total', 16 | [toposToWrite, config.vectors] 17 | ) 18 | 19 | function scopeBaseShapefile (r, s) { 20 | var specs = s.specs 21 | 22 | var filter 23 | 24 | var cmd 25 | 26 | function getFilter (specs) { 27 | return [ 28 | "'", 29 | '$.properties.', 30 | specs.key, 31 | ' === ', 32 | '"', specs.val, '"', 33 | "'" 34 | ].join('') 35 | } 36 | 37 | filter = getFilter(specs) 38 | cmd = [ 39 | mapshaper, 40 | common.wgetDir + common.srcPrefix + common.bn(r, specs.src, 'shp'), 41 | 'encoding=utf8', 42 | '-filter', 43 | filter, 44 | '-dissolve', 45 | '-o', 46 | common.wgetDir + common.tn(r, s.name, specs.src, 'tmp.shp'), 47 | 'force', 48 | '&&', 49 | 'ogr2ogr', 50 | '-overwrite', 51 | '-clipsrc', 52 | specs.bounds.join(' '), 53 | common.wgetDir + common.tn(r, s.name, specs.src, 'shp'), 54 | common.wgetDir + common.tn(r, s.name, specs.src, 'tmp.shp') 55 | ].join(' ') 56 | 57 | if (common.DEBUG) console.log(cmd + '\n') 58 | return cmd 59 | } 60 | 61 | function convertToGeoJSON (r, s, v, clip) { 62 | var specs = s.specs 63 | 64 | var cmd 65 | 66 | // use ogr2ogr for clip around bound 67 | // use mapshaper for clip around shapefile polygons 68 | 69 | function getCmd (program, opt) { 70 | var cmd, 71 | expr 72 | 73 | if (program === 'ogr2ogr') { 74 | if (opt === 'where') { 75 | expr = [ 76 | '-where ', 77 | '"', specs.key, ' IN ', 78 | "('", specs.val, "')\" ", 79 | '-clipsrc ', 80 | specs.bounds.join(' ') 81 | ].join('') 82 | } else if (opt === 'clipsrc') { 83 | expr = [ 84 | '-clipsrc ', 85 | specs.bounds.join(' ') 86 | ].join('') 87 | } else expr = '' 88 | 89 | cmd = [ 90 | 'ogr2ogr -f GeoJSON', 91 | expr, 92 | common.geojsonDir + common.tn(r, s.name, v.name, 'geo.json'), 93 | common.wgetDir + common.srcPrefix + common.bn(r, v.src, 'shp') 94 | ].join(' ') 95 | } else if (program === 'mapshaper') { 96 | cmd = [ 97 | mapshaper, 98 | common.wgetDir + common.srcPrefix + common.bn(r, v.src, 'shp'), 99 | 'encoding=utf8', 100 | '-clip', 101 | common.wgetDir + common.tn(r, s.name, specs.src, 'shp'), 102 | '-filter remove-empty', 103 | '-o', 104 | common.geojsonDir + common.tn(r, s.name, v.name, 'geo.json') 105 | ].join(' ') 106 | } 107 | 108 | return cmd 109 | } 110 | 111 | if (clip && specs && specs.src !== v.name) { 112 | if (v.src === specs.src) { 113 | cmd = getCmd('ogr2ogr', 'where') 114 | } else if (s.name === 'usa' && v.name === 'rivers') { 115 | // for 'usa' scope, 116 | // clip rivers with base shp instead of bounds 117 | cmd = getCmd('mapshaper') 118 | } else if (v.scopeWith === 'src') { 119 | cmd = getCmd('mapshaper') 120 | } else if (v.scopeWith === 'bounds') { 121 | cmd = getCmd('ogr2ogr', 'clipsrc') 122 | } 123 | } else cmd = getCmd('ogr2ogr', false) 124 | 125 | if (common.DEBUG) console.log(cmd + '\n') 126 | return cmd 127 | } 128 | 129 | function vectorLoop (r, s, clip) { 130 | config.vectors.forEach(function (v) { 131 | exec(convertToGeoJSON(r, s, v, clip), function (err) { 132 | if (err) throw err 133 | bar.tick() 134 | }) 135 | }) 136 | } 137 | 138 | toposToWrite.forEach(function (topo) { 139 | var r = topo.r 140 | var s = topo.s 141 | 142 | if (s.specs === false) { 143 | vectorLoop(r, s, false) 144 | } else { 145 | exec(scopeBaseShapefile(r, s), function (err) { 146 | if (err) throw err 147 | setTimeout(function () { 148 | vectorLoop(r, s, true) 149 | }, 1000) 150 | }) 151 | } 152 | }) 153 | } 154 | -------------------------------------------------------------------------------- /bin/geo2topo.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var topojson = require('topojson') 3 | var gju = require('geojson-utils') 4 | var common = require('./common') 5 | 6 | fs.readFile(common.pathToConfig, 'utf8', main) 7 | 8 | function main (err, configFile) { 9 | if (err) throw err 10 | 11 | var config = JSON.parse(configFile) 12 | var toposToWrite = common.getToposToWrite(config) 13 | 14 | var barWrite = common.makeBar( 15 | 'Writing into topojson: [:bar] :current/:total', 16 | [toposToWrite] 17 | ) 18 | 19 | function propertyTransform (feature) { return feature.properties } 20 | 21 | toposToWrite.forEach(function (topo) { 22 | var r = topo.r 23 | 24 | var s = topo.s 25 | 26 | var collections = {} 27 | 28 | config.vectors.forEach(function (v) { 29 | var path = common.geojsonDir + common.tn(r, s.name, v.name, 'geo.json') 30 | 31 | var d = fs.readFileSync(path, 'utf8') 32 | 33 | var collection = JSON.parse(d) 34 | 35 | if (collection.features) formatProperties(collection, v) 36 | collections[v.name] = collection 37 | }) 38 | 39 | // TODO experiment with simplification/quantization 40 | var topology = topojson.topology(collections, { 41 | verbose: common.DEBUG, 42 | 'property-transform': propertyTransform 43 | }) 44 | 45 | pruneProperties(topology) 46 | 47 | var outPath = common.topojsonDir + common.out(r, s.name) 48 | 49 | fs.writeFile(outPath, JSON.stringify(topology), function (err) { 50 | if (err) throw err 51 | barWrite.tick() 52 | }) 53 | }) 54 | } 55 | 56 | function formatProperties (collection, v) { 57 | var features = collection.features 58 | 59 | var N = features.length 60 | 61 | var feature 62 | 63 | var id 64 | 65 | function getCentroid (feature) { 66 | var geometry = feature.geometry 67 | 68 | function getOne (polygon) { 69 | var coords = gju.centroid(polygon).coordinates 70 | return [+coords[0].toFixed(2), +coords[1].toFixed(2)] 71 | } 72 | 73 | if (geometry.type === 'MultiPolygon') { 74 | var coordinates = geometry.coordinates 75 | 76 | var N = coordinates.length 77 | 78 | var centroids = new Array(N) 79 | 80 | var areas = new Array(N) 81 | 82 | var polygon 83 | 84 | var indexOfMax 85 | 86 | // compute one centroid per polygon and 87 | // pick the one associated with the 88 | // largest area. 89 | 90 | for (var i = 0; i < N; i++) { 91 | polygon = { 92 | type: 'Polygon', 93 | coordinates: coordinates[i] 94 | } 95 | centroids[i] = getOne(polygon) 96 | areas[i] = gju.area(polygon) 97 | } 98 | 99 | // 'min' works best, not sure why 100 | indexOfMax = areas.indexOf(Math.min.apply(Math, areas)) 101 | return centroids[indexOfMax] 102 | } else if (geometry.type === 'Polygon') { 103 | return getOne(geometry) 104 | } 105 | } 106 | 107 | for (var i = 0; i < N; i++) { 108 | feature = features[i] 109 | 110 | if (v.ids) { 111 | id = feature.properties[v.ids] 112 | 113 | if (id && id !== '-99') { 114 | feature.id = id 115 | feature.properties.ct = getCentroid(feature) 116 | feature.properties.gu = feature.properties['gu_a3'] 117 | continue 118 | } 119 | } 120 | 121 | // Unfortunately, we need this to include Norway (IS0_A3=NOR) 122 | // from Natural Earth v4.1.0 123 | // - https://github.com/nvkelso/natural-earth-vector/issues/252 124 | if (v.ids && v.ids.indexOf('ISO_A3') === 0) { 125 | id = feature.properties['SOV_A3'] 126 | 127 | if (id === 'NOR') { 128 | feature.id = id 129 | feature.properties.ct = getCentroid(feature) 130 | feature.properties.gu = feature.properties['gu_a3'] 131 | } 132 | } 133 | 134 | // France (IS0_A3=FRA) is also acting weird using IS0_A3, 135 | // but using ISO_A3_EH seems to work ok 136 | // - https://github.com/nvkelso/natural-earth-vector/issues/284 137 | } 138 | } 139 | 140 | function pruneProperties (topology) { 141 | // keep 'gu' (aka governing unit A3 code, which necessary to identify 142 | // some subunits ids (e.g. 'WA' which can be Washington state and Western 143 | // Australia) 144 | var propsToKeep = ['ct', 'gu'] 145 | 146 | var objects = topology.objects 147 | 148 | Object.keys(objects).forEach(function (objectName) { 149 | var obj = objects[objectName] 150 | 151 | delete obj.crs 152 | delete obj.name 153 | 154 | var geometries2 = [] 155 | 156 | obj.geometries.forEach(function (geometry) { 157 | var properties = geometry.properties 158 | 159 | var newProperties = {} 160 | 161 | if (properties === undefined) return 162 | 163 | propsToKeep.forEach(function (prop) { 164 | if (properties[prop] !== undefined) { 165 | newProperties[prop] = properties[prop] 166 | } 167 | }) 168 | 169 | if (Object.keys(newProperties).length) { 170 | geometry.properties = newProperties 171 | } else { 172 | delete geometry.properties 173 | } 174 | 175 | if (geometry.type !== null) { 176 | geometries2.push(geometry) 177 | } 178 | }) 179 | 180 | obj.geometries = geometries2 181 | }) 182 | } 183 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- 1 | /* global d3:false */ 2 | /* global describe:false, it:false, expect:false fail:false beforeEach:false, afterEach:false */ 3 | 4 | /* 5 | * N.B. these test assert ./index.js which itself requires dist/*, 6 | * so make sure to run `npm start` before `npm test` to test new topojson files 7 | * 8 | */ 9 | 10 | var saneTopojson = require('../') 11 | var assets = require('./assets') 12 | var topojson = require('topojson') 13 | var diff = require('fast-array-diff').diff 14 | 15 | describe('sane topojson general', () => { 16 | it('should have correct test environments', () => { 17 | expect(d3.version).toEqual('3.5.17') 18 | expect(Object.keys(saneTopojson)).toEqual(Object.keys(assets.GEOMETRY_COUNT)) 19 | }) 20 | 21 | it('should have all the correct layers', () => { 22 | Object.keys(saneTopojson).forEach((k) => { 23 | var saneTopojsonItem = saneTopojson[k] 24 | 25 | expect(Object.keys(saneTopojsonItem)).toEqual([ 26 | 'type', 'objects', 'arcs', 'transform', 'bbox' 27 | ]) 28 | 29 | expect(Object.keys(saneTopojsonItem.objects)).toEqual([ 30 | 'coastlines', 'land', 'ocean', 'lakes', 31 | 'rivers', 'countries', 'subunits' 32 | ]) 33 | 34 | var objs = saneTopojsonItem.objects 35 | Object.keys(objs).forEach((l) => { 36 | expect(Object.keys(objs[l])).toEqual(['type', 'geometries']) 37 | }) 38 | }) 39 | }) 40 | 41 | it('should have correct number of geometries per layer', () => { 42 | Object.keys(saneTopojson).forEach((k) => { 43 | var objs = saneTopojson[k].objects 44 | 45 | Object.keys(objs).forEach((l) => { 46 | expect(objs[l].geometries.length).toBe(assets.GEOMETRY_COUNT[k][l], [k, l]) 47 | }) 48 | }) 49 | }) 50 | 51 | it('should have a minimal set of *properties*', () => { 52 | Object.keys(saneTopojson).forEach((k) => { 53 | var objs = saneTopojson[k].objects 54 | 55 | Object.keys(objs).forEach((l) => { 56 | var o = objs[l] 57 | var list = [] 58 | 59 | switch (l) { 60 | case 'coastlines': 61 | case 'land': 62 | case 'ocean': 63 | case 'lakes': 64 | case 'rivers': 65 | o.geometries.forEach(function (g, i) { 66 | var msg = [k, l, i] 67 | 68 | expect(Object.keys(g).length).toBe(2, 'just two fields| ' + msg) 69 | expect(Array.isArray(g.arcs)).toBe(true, '*arcs* is an array| ' + msg) 70 | expect(typeof g.type === 'string').toBe(true, '*type* is a string |' + msg) 71 | }) 72 | break 73 | case 'countries': 74 | case 'subunits': 75 | var expNumOfProps = { countries: 1, subunits: 2 }[l] 76 | 77 | o.geometries.forEach(function (g, i) { 78 | var msg = [k, l, i] 79 | var p = g.properties 80 | 81 | if (p) { 82 | expect(Object.keys(g).length).toBe(4, 'four fields| ' + msg) 83 | expect(typeof g.id === 'string').toBe(true, '*id* is a string| ' + msg) 84 | 85 | var pLen = Object.keys(p).length 86 | expect(pLen).toBe(expNumOfProps, '# properties field| ' + msg) 87 | expect(Array.isArray(p.ct)).toBe(true, '*properties.ct* is an array| ' + msg) 88 | if (pLen > 1) { 89 | expect(typeof p.gu === 'string').toBe(true, '*properties.gu* is a string| ' + msg) 90 | } 91 | 92 | list.push(g.id) 93 | } else { 94 | expect(Object.keys(g).length).toBe(2, 'just two fields| ' + msg) 95 | } 96 | 97 | expect(Array.isArray(g.arcs)).toBe(true, '*arcs* is an array| ' + msg) 98 | expect(typeof g.type === 'string').toBe(true, '*type* is a string| ' + msg) 99 | }) 100 | break 101 | default: 102 | fail('Unknown layer ' + l + ' in topojson ' + k) 103 | break 104 | } 105 | 106 | switch (l) { 107 | case 'countries': 108 | expect(list.length).toBe(assets.COUNTRIES_CNT[k], '# of countries| ' + [k, l]) 109 | break 110 | case 'subunits': 111 | expect(list.length).toBe(assets.SUBUNITS_CNT[k], '# of subunits| ' + [k, l]) 112 | break 113 | } 114 | }) 115 | }) 116 | }) 117 | 118 | it('should have correct set of country IDs', () => { 119 | Object.keys(saneTopojson).forEach((k) => { 120 | var actual = saneTopojson[k].objects.countries.geometries 121 | .map(g => g.id).filter(Boolean).sort() 122 | var d = diff(assets.COUNTRY_LIST[k], actual) 123 | expect(d.removed).withContext('removed country for list| ' + k).toEqual([]) 124 | expect(d.added).withContext('added country for list| ' + k).toEqual([]) 125 | }) 126 | }) 127 | 128 | it('should have correct set of subunit IDs', () => { 129 | Object.keys(saneTopojson).forEach((k) => { 130 | var actual = saneTopojson[k].objects.subunits.geometries 131 | .map(g => g.id).filter(Boolean).sort() 132 | var d = diff(assets.SUBUNITS_LIST[k], actual) 133 | expect(d.removed).withContext('removed subunit for list| ' + k).toEqual([]) 134 | expect(d.added).withContext('added subunit for list| ' + k).toEqual([]) 135 | }) 136 | }) 137 | }) 138 | 139 | describe('sane topojson with d3-geo & topojson', () => { 140 | beforeEach(() => { 141 | this.svg = d3.select('body').append('svg') 142 | .attr('width', 960) 143 | .attr('height', 500) 144 | }) 145 | 146 | afterEach(() => { 147 | document.body.removeChild(this.svg.node()) 148 | }) 149 | 150 | describe('should be able to draw path all layers', () => { 151 | Object.keys(saneTopojson).forEach((k) => { 152 | var saneTopojsonItem = saneTopojson[k] 153 | 154 | Object.keys(d3.geo).forEach((p) => { 155 | var projFunc = d3.geo[p] 156 | 157 | if (!( 158 | typeof projFunc === 'function' && 159 | projFunc.raw !== undefined 160 | )) return 161 | 162 | it('in topojson ' + k + ' using projection function ' + p, () => { 163 | appendLayers(this.svg, projFunc, saneTopojsonItem) 164 | 165 | var paths = this.svg.selectAll('path') 166 | 167 | expect(paths.size()).toEqual(7) 168 | 169 | paths.each(function () { 170 | var path = d3.select(this) 171 | 172 | var l = path.attr('id') 173 | 174 | if ( 175 | l === 'subunits' && 176 | assets.ITEM_WITH_NO_SUBUNITS.indexOf(k) !== -1 177 | ) { 178 | expect(path.attr('d')).toBe(null) 179 | } else { 180 | expect(path.attr('d').length > 1).toBe(true) 181 | } 182 | }) 183 | }) 184 | }) 185 | }) 186 | }) 187 | }) 188 | 189 | function appendLayers (svg, projFunc, saneTopojsonItem) { 190 | var width = +svg.attr('width') 191 | var height = svg.attr('height') 192 | 193 | var projection = projFunc() 194 | .translate([width / 2, height / 2]) 195 | .precision(0.1) 196 | 197 | var path = d3.geo.path().projection(projection) 198 | 199 | Object.keys(saneTopojsonItem.objects).forEach((l) => { 200 | var datum = topojson.feature( 201 | saneTopojsonItem, 202 | saneTopojsonItem.objects[l] 203 | ) 204 | 205 | svg.append('path') 206 | .datum(datum) 207 | .attr('d', path) 208 | .attr('id', l) 209 | }) 210 | } 211 | -------------------------------------------------------------------------------- /test/assets.js: -------------------------------------------------------------------------------- 1 | var ITEM_WITH_NO_SUBUNITS = [ 2 | 'africa_110m', 'africa_50m', 3 | 'asia_110m', 'asia_50m', 4 | 'europe_110m', 'europe_50m', 5 | 'south-america_110m' 6 | ] 7 | 8 | var GEOMETRY_COUNT = { 9 | world_110m: { 10 | coastlines: 134, 11 | land: 127, 12 | ocean: 2, 13 | lakes: 25, 14 | rivers: 13, 15 | countries: 177, 16 | subunits: 51 17 | }, 18 | world_50m: { 19 | coastlines: 1428, 20 | land: 1420, 21 | ocean: 1, 22 | lakes: 275, 23 | rivers: 461, 24 | countries: 241, 25 | subunits: 100 26 | }, 27 | africa_110m: { 28 | coastlines: 11, 29 | land: 2, 30 | ocean: 2, 31 | lakes: 4, 32 | rivers: 2, 33 | countries: 51, 34 | subunits: 0 35 | }, 36 | africa_50m: { 37 | coastlines: 147, 38 | land: 36, 39 | ocean: 1, 40 | lakes: 20, 41 | rivers: 77, 42 | countries: 54, 43 | subunits: 0 44 | }, 45 | asia_110m: { 46 | coastlines: 65, 47 | land: 28, 48 | ocean: 2, 49 | lakes: 2, 50 | rivers: 5, 51 | countries: 47, 52 | subunits: 0 53 | }, 54 | asia_50m: { 55 | coastlines: 729, 56 | land: 331, 57 | ocean: 1, 58 | lakes: 58, 59 | rivers: 97, 60 | countries: 53, 61 | subunits: 0 62 | }, 63 | europe_110m: { 64 | coastlines: 19, 65 | land: 14, 66 | ocean: 2, 67 | lakes: 3, 68 | rivers: 1, 69 | countries: 39, 70 | subunits: 0 71 | }, 72 | europe_50m: { 73 | coastlines: 263, 74 | land: 210, 75 | ocean: 1, 76 | lakes: 45, 77 | rivers: 70, 78 | countries: 50, 79 | subunits: 0 80 | }, 81 | 'north-america_110m': { 82 | coastlines: 53, 83 | land: 47, 84 | ocean: 1, 85 | lakes: 14, 86 | rivers: 2, 87 | countries: 18, 88 | subunits: 51 89 | }, 90 | 'north-america_50m': { 91 | coastlines: 375, 92 | land: 346, 93 | ocean: 1, 94 | lakes: 123, 95 | rivers: 123, 96 | countries: 38, 97 | subunits: 64 98 | }, 99 | 'south-america_110m': { 100 | coastlines: 14, 101 | land: 3, 102 | ocean: 1, 103 | lakes: 1, 104 | rivers: 2, 105 | countries: 13, 106 | subunits: 0 107 | }, 108 | 'south-america_50m': { 109 | coastlines: 174, 110 | land: 67, 111 | ocean: 1, 112 | lakes: 8, 113 | rivers: 45, 114 | countries: 13, 115 | subunits: 27 116 | }, 117 | usa_110m: { 118 | coastlines: 53, 119 | land: 9, 120 | ocean: 1, 121 | lakes: 7, 122 | rivers: 1, 123 | countries: 1, 124 | subunits: 51 125 | }, 126 | usa_50m: { 127 | coastlines: 372, 128 | land: 120, 129 | ocean: 1, 130 | lakes: 55, 131 | rivers: 66, 132 | countries: 1, 133 | subunits: 58 134 | } 135 | } 136 | 137 | var COUNTRY_LIST = { 138 | world_110m: ['AFG', 'AGO', 'ALB', 'ARE', 'ARG', 'ARM', 'ATA', 'ATF', 'AUS', 'AUT', 'AZE', 'BDI', 'BEL', 'BEN', 'BFA', 'BGD', 'BGR', 'BHS', 'BIH', 'BLR', 'BLZ', 'BOL', 'BRA', 'BRN', 'BTN', 'BWA', 'CAF', 'CAN', 'CHE', 'CHL', 'CHN', 'CIV', 'CMR', 'COD', 'COG', 'COL', 'CRI', 'CUB', 'CYP', 'CZE', 'DEU', 'DJI', 'DNK', 'DOM', 'DZA', 'ECU', 'EGY', 'ERI', 'ESH', 'ESP', 'EST', 'ETH', 'FIN', 'FJI', 'FLK', 'FRA', 'GAB', 'GBR', 'GEO', 'GHA', 'GIN', 'GMB', 'GNB', 'GNQ', 'GRC', 'GRL', 'GTM', 'GUY', 'HND', 'HRV', 'HTI', 'HUN', 'IDN', 'IND', 'IRL', 'IRN', 'IRQ', 'ISL', 'ISR', 'ITA', 'JAM', 'JOR', 'JPN', 'KAZ', 'KEN', 'KGZ', 'KHM', 'KOR', 'KWT', 'LAO', 'LBN', 'LBR', 'LBY', 'LKA', 'LSO', 'LTU', 'LUX', 'LVA', 'MAR', 'MDA', 'MDG', 'MEX', 'MKD', 'MLI', 'MMR', 'MNE', 'MNG', 'MOZ', 'MRT', 'MWI', 'MYS', 'NAM', 'NCL', 'NER', 'NGA', 'NIC', 'NLD', 'NOR', 'NPL', 'NZL', 'OMN', 'PAK', 'PAN', 'PER', 'PHL', 'PNG', 'POL', 'PRI', 'PRK', 'PRT', 'PRY', 'PSE', 'QAT', 'ROU', 'RUS', 'RWA', 'SAU', 'SDN', 'SEN', 'SLB', 'SLE', 'SLV', 'SOM', 'SRB', 'SSD', 'SUR', 'SVK', 'SVN', 'SWE', 'SWZ', 'SYR', 'TCD', 'TGO', 'THA', 'TJK', 'TKM', 'TLS', 'TTO', 'TUN', 'TUR', 'TWN', 'TZA', 'UGA', 'UKR', 'URY', 'USA', 'UZB', 'VEN', 'VNM', 'VUT', 'YEM', 'ZAF', 'ZMB', 'ZWE'], 139 | world_50m: ['ABW', 'AFG', 'AGO', 'AIA', 'ALA', 'ALB', 'AND', 'ARE', 'ARG', 'ARM', 'ASM', 'ATA', 'ATF', 'ATG', 'AUS', 'AUT', 'AZE', 'BDI', 'BEL', 'BEN', 'BFA', 'BGD', 'BGR', 'BHR', 'BHS', 'BIH', 'BLM', 'BLR', 'BLZ', 'BMU', 'BOL', 'BRA', 'BRB', 'BRN', 'BTN', 'BWA', 'CAF', 'CAN', 'CHE', 'CHL', 'CHN', 'CIV', 'CMR', 'COD', 'COG', 'COK', 'COL', 'COM', 'CPV', 'CRI', 'CUB', 'CUW', 'CYM', 'CYP', 'CZE', 'DEU', 'DJI', 'DMA', 'DNK', 'DOM', 'DZA', 'ECU', 'EGY', 'ERI', 'ESH', 'ESP', 'EST', 'ETH', 'FIN', 'FJI', 'FLK', 'FRA', 'FRO', 'FSM', 'GAB', 'GBR', 'GEO', 'GGY', 'GHA', 'GIN', 'GMB', 'GNB', 'GNQ', 'GRC', 'GRD', 'GRL', 'GTM', 'GUM', 'GUY', 'HKG', 'HMD', 'HND', 'HRV', 'HTI', 'HUN', 'IDN', 'IMN', 'IND', 'IOT', 'IRL', 'IRN', 'IRQ', 'ISL', 'ISR', 'ITA', 'JAM', 'JEY', 'JOR', 'JPN', 'KAZ', 'KEN', 'KGZ', 'KHM', 'KIR', 'KNA', 'KOR', 'KWT', 'LAO', 'LBN', 'LBR', 'LBY', 'LCA', 'LIE', 'LKA', 'LSO', 'LTU', 'LUX', 'LVA', 'MAC', 'MAF', 'MAR', 'MCO', 'MDA', 'MDG', 'MDV', 'MEX', 'MHL', 'MKD', 'MLI', 'MLT', 'MMR', 'MNE', 'MNG', 'MNP', 'MOZ', 'MRT', 'MSR', 'MUS', 'MWI', 'MYS', 'NAM', 'NCL', 'NER', 'NFK', 'NGA', 'NIC', 'NIU', 'NLD', 'NOR', 'NPL', 'NRU', 'NZL', 'OMN', 'PAK', 'PAN', 'PCN', 'PER', 'PHL', 'PLW', 'PNG', 'POL', 'PRI', 'PRK', 'PRT', 'PRY', 'PSE', 'PYF', 'QAT', 'ROU', 'RUS', 'RWA', 'SAU', 'SDN', 'SEN', 'SGP', 'SGS', 'SHN', 'SLB', 'SLE', 'SLV', 'SMR', 'SOM', 'SPM', 'SRB', 'SSD', 'STP', 'SUR', 'SVK', 'SVN', 'SWE', 'SWZ', 'SXM', 'SYC', 'SYR', 'TCA', 'TCD', 'TGO', 'THA', 'TJK', 'TKM', 'TLS', 'TON', 'TTO', 'TUN', 'TUR', 'TWN', 'TZA', 'UGA', 'UKR', 'URY', 'USA', 'UZB', 'VAT', 'VCT', 'VEN', 'VGB', 'VIR', 'VNM', 'VUT', 'WLF', 'WSM', 'YEM', 'ZAF', 'ZMB', 'ZWE'], 140 | africa_110m: ['AGO', 'BDI', 'BEN', 'BFA', 'BWA', 'CAF', 'CIV', 'CMR', 'COD', 'COG', 'DJI', 'DZA', 'EGY', 'ERI', 'ESH', 'ETH', 'GAB', 'GHA', 'GIN', 'GMB', 'GNB', 'GNQ', 'KEN', 'LBR', 'LBY', 'LSO', 'MAR', 'MDG', 'MLI', 'MOZ', 'MRT', 'MWI', 'NAM', 'NER', 'NGA', 'RWA', 'SDN', 'SEN', 'SLE', 'SOM', 'SSD', 'SWZ', 'TCD', 'TGO', 'TUN', 'TZA', 'UGA', 'ZAF', 'ZMB', 'ZWE'], 141 | africa_50m: ['AGO', 'BDI', 'BEN', 'BFA', 'BWA', 'CAF', 'CIV', 'CMR', 'COD', 'COG', 'COM', 'CPV', 'DJI', 'DZA', 'EGY', 'ERI', 'ESH', 'ETH', 'GAB', 'GHA', 'GIN', 'GMB', 'GNB', 'GNQ', 'KEN', 'LBR', 'LBY', 'LSO', 'MAR', 'MDG', 'MLI', 'MOZ', 'MRT', 'MWI', 'NAM', 'NER', 'NGA', 'RWA', 'SDN', 'SEN', 'SLE', 'SOM', 'SSD', 'STP', 'SWZ', 'TCD', 'TGO', 'TUN', 'TZA', 'UGA', 'ZAF', 'ZMB', 'ZWE'], 142 | asia_110m: ['AFG', 'ARE', 'ARM', 'AZE', 'BGD', 'BRN', 'BTN', 'CHN', 'CYP', 'GEO', 'IDN', 'IND', 'IRN', 'IRQ', 'ISR', 'JOR', 'JPN', 'KAZ', 'KGZ', 'KHM', 'KOR', 'KWT', 'LAO', 'LBN', 'LKA', 'MMR', 'MNG', 'MYS', 'NPL', 'OMN', 'PAK', 'PHL', 'PRK', 'PSE', 'QAT', 'SAU', 'SYR', 'THA', 'TJK', 'TKM', 'TLS', 'TUR', 'TWN', 'UZB', 'VNM', 'YEM'], 143 | asia_50m: ['AFG', 'ARE', 'ARM', 'AZE', 'BGD', 'BHR', 'BRN', 'BTN', 'CHN', 'CYP', 'GEO', 'HKG', 'IDN', 'IND', 'IRN', 'IRQ', 'ISR', 'JOR', 'JPN', 'KAZ', 'KGZ', 'KHM', 'KOR', 'KWT', 'LAO', 'LBN', 'LKA', 'MAC', 'MMR', 'MNG', 'MYS', 'NPL', 'OMN', 'PAK', 'PHL', 'PRK', 'PSE', 'QAT', 'SAU', 'SGP', 'SYR', 'THA', 'TJK', 'TKM', 'TLS', 'TUR', 'TWN', 'UZB', 'VNM', 'YEM'], 144 | europe_110m: ['ALB', 'AUT', 'BEL', 'BGR', 'BIH', 'BLR', 'CHE', 'CZE', 'DEU', 'DNK', 'ESP', 'EST', 'FIN', 'FRA', 'GBR', 'GRC', 'HRV', 'HUN', 'IRL', 'ISL', 'ITA', 'LTU', 'LUX', 'LVA', 'MDA', 'MKD', 'MNE', 'NLD', 'NOR', 'POL', 'PRT', 'ROU', 'RUS', 'SRB', 'SVK', 'SVN', 'SWE', 'UKR'], 145 | europe_50m: ['ALA', 'ALB', 'AND', 'AUT', 'BEL', 'BGR', 'BIH', 'BLR', 'CHE', 'CZE', 'DEU', 'DNK', 'ESP', 'EST', 'FIN', 'FRA', 'FRO', 'GBR', 'GGY', 'GRC', 'HRV', 'HUN', 'IMN', 'IRL', 'ISL', 'ITA', 'JEY', 'LIE', 'LTU', 'LUX', 'LVA', 'MCO', 'MDA', 'MKD', 'MLT', 'MNE', 'NLD', 'NOR', 'POL', 'PRT', 'ROU', 'RUS', 'SMR', 'SRB', 'SVK', 'SVN', 'SWE', 'UKR', 'VAT'], 146 | // N.B. north-america scopes do not trim out Caribbean countries 147 | 'north-america_110m': ['BHS', 'BLZ', 'CAN', 'CRI', 'CUB', 'DOM', 'GRL', 'GTM', 'HND', 'HTI', 'JAM', 'MEX', 'NIC', 'PAN', 'PRI', 'SLV', 'TTO', 'USA'], 148 | 'north-america_50m': ['ABW', 'AIA', 'ATG', 'BHS', 'BLM', 'BLZ', 'BMU', 'BRB', 'CAN', 'CRI', 'CUB', 'CUW', 'CYM', 'DMA', 'DOM', 'GRD', 'GRL', 'GTM', 'HND', 'HTI', 'JAM', 'KNA', 'LCA', 'MAF', 'MEX', 'MSR', 'NIC', 'PAN', 'PRI', 'SLV', 'SPM', 'SXM', 'TCA', 'TTO', 'USA', 'VCT', 'VGB', 'VIR'], 149 | 'south-america_110m': ['ARG', 'BOL', 'BRA', 'CHL', 'COL', 'ECU', 'FLK', 'GUY', 'PER', 'PRY', 'SUR', 'URY', 'VEN'], 150 | 'south-america_50m': ['ARG', 'BOL', 'BRA', 'CHL', 'COL', 'ECU', 'FLK', 'GUY', 'PER', 'PRY', 'SUR', 'URY', 'VEN'], 151 | usa_110m: ['USA'], 152 | usa_50m: ['USA'] 153 | } 154 | 155 | var COUNTRIES_CNT = {} 156 | for (const k in COUNTRY_LIST) { 157 | COUNTRIES_CNT[k] = COUNTRY_LIST[k].length 158 | } 159 | 160 | var SUBUNITS_LIST = { 161 | world_110m: ['AK', 'AL', 'AR', 'AZ', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'GA', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MD', 'ME', 'MI', 'MN', 'MO', 'MS', 'MT', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NM', 'NV', 'NY', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VA', 'VT', 'WA', 'WI', 'WV', 'WY'], 162 | // states/provinces from US, Canada, Australia, Brazil 163 | world_50m: ['AB', 'AK', 'AL', 'AL', 'AM', 'AP', 'AR', 'AZ', 'BA', 'BC', 'CA', 'CE', 'CO', 'CT', 'CT', 'DC', 'DE', 'DF', 'ES', 'FL', 'GA', 'GO', 'HI', 'IA', 'ID', 'IL', 'IN', 'JB', 'KS', 'KY', 'LA', 'MA', 'MA', 'MB', 'MD', 'ME', 'MG', 'MI', 'MN', 'MO', 'MS', 'MS', 'MT', 'MT', 'NB', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NL', 'NM', 'NS', 'NS', 'NT', 'NT', 'NU', 'NV', 'NY', 'OH', 'OK', 'ON', 'OR', 'PA', 'PA', 'PB', 'PE', 'PE', 'PI', 'PR', 'QC', 'QL', 'RO', 'AC', 'RI', 'RJ', 'RN', 'RR', 'RS', 'SA', 'SC', 'SC', 'SD', 'SE', 'SK', 'SP', 'TN', 'TO', 'TS', 'TX', 'UT', 'VA', 'VI', 'VT', 'WA', 'WA', 'WI', 'WV', 'WY', 'YT'].sort(), 164 | africa_110m: [], 165 | africa_50m: [], 166 | asia_110m: [], 167 | asia_50m: [], 168 | europe_110m: [], 169 | europe_50m: [], 170 | 'north-america_110m': ['AK', 'AL', 'AR', 'AZ', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'GA', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MD', 'ME', 'MI', 'MN', 'MO', 'MS', 'MT', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NM', 'NV', 'NY', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VA', 'VT', 'WA', 'WI', 'WV', 'WY'], 171 | 'north-america_50m': ['AB', 'AK', 'AL', 'AR', 'AZ', 'BC', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'GA', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MB', 'MD', 'ME', 'MI', 'MN', 'MO', 'MS', 'MT', 'NB', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NL', 'NM', 'NS', 'NT', 'NU', 'NV', 'NY', 'OH', 'OK', 'ON', 'OR', 'PA', 'PE', 'QC', 'RI', 'SC', 'SD', 'SK', 'TN', 'TX', 'UT', 'VA', 'VT', 'WA', 'WI', 'WV', 'WY', 'YT'], 172 | 'south-america_110m': [], 173 | 'south-america_50m': ['AL', 'AM', 'AP', 'BA', 'CE', 'DF', 'ES', 'GO', 'MA', 'MG', 'MS', 'MT', 'PA', 'PB', 'PE', 'PI', 'PR', 'RO', 'AC', 'RJ', 'RN', 'RR', 'RS', 'SC', 'SE', 'SP', 'TO'].sort(), 174 | usa_110m: ['AK', 'AL', 'AR', 'AZ', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'GA', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MD', 'ME', 'MI', 'MN', 'MO', 'MS', 'MT', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NM', 'NV', 'NY', 'OH', 'OK', 'OR', 'PA', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VA', 'VT', 'WA', 'WI', 'WV', 'WY'], 175 | // ['BC', 'MB', 'NB', 'ON', 'QC', 'SK', 'YT'] show up here for some reason 176 | usa_50m: ['AK', 'AL', 'AR', 'AZ', 'BC', 'CA', 'CO', 'CT', 'DC', 'DE', 'FL', 'GA', 'HI', 'IA', 'ID', 'IL', 'IN', 'KS', 'KY', 'LA', 'MA', 'MB', 'MD', 'ME', 'MI', 'MN', 'MO', 'MS', 'MT', 'NB', 'NC', 'ND', 'NE', 'NH', 'NJ', 'NM', 'NV', 'NY', 'OH', 'OK', 'ON', 'OR', 'PA', 'QC', 'RI', 'SC', 'SD', 'SK', 'TN', 'TX', 'UT', 'VA', 'VT', 'WA', 'WI', 'WV', 'WY', 'YT'] 177 | } 178 | 179 | var SUBUNITS_CNT = {} 180 | for (const k in SUBUNITS_LIST) { 181 | SUBUNITS_CNT[k] = SUBUNITS_LIST[k].length 182 | } 183 | 184 | module.exports = { 185 | ITEM_WITH_NO_SUBUNITS: ITEM_WITH_NO_SUBUNITS, 186 | GEOMETRY_COUNT: GEOMETRY_COUNT, 187 | COUNTRIES_CNT: COUNTRIES_CNT, 188 | SUBUNITS_CNT: SUBUNITS_CNT, 189 | COUNTRY_LIST: COUNTRY_LIST, 190 | SUBUNITS_LIST: SUBUNITS_LIST 191 | } 192 | -------------------------------------------------------------------------------- /dist/south-america_110m.json: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0]},{"type":"LineString","arcs":[1]},{"type":"LineString","arcs":[2]},{"type":"LineString","arcs":[3]},{"type":"LineString","arcs":[4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107]},{"type":"LineString","arcs":[108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159]},{"type":"LineString","arcs":[160,161,162,163,164]},{"type":"MultiLineString","arcs":[[165,166,167,168,169,170,171],[172,173,174,175,176,177,178]]},{"type":"LineString","arcs":[179,180,181]},{"type":"LineString","arcs":[182,183,184]},{"type":"LineString","arcs":[185]},{"type":"LineString","arcs":[186]},{"type":"LineString","arcs":[187]},{"type":"LineString","arcs":[188]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[196,164,160,161,162]]},{"type":"Polygon","arcs":[[186]]},{"type":"Polygon","arcs":[[4,197,6,198,199,9,200,201,202,13,203,204,205,17,206,19,207,208,22,23,209,210,26,27,211,212,213,214,215,216,34,217,218,219,220,221,38,222,40,223,224,43,225,45,226,47,227,228,50,229,230,53,231,55,232,57,233,59,234,235,236,63,237,65,238,239,240,241,242,243,72,244,245,246,247,77,78,248,80,249,82,250,251,85,252,253,88,254,90,255,92,256,257,258,259,260,98,261,262,101,263,103,104,264,265,107,-160,266,-158,267,-156,268,-154,269,270,271,272,-150,273,274,-147,275,-145,276,277,278,-141,279,280,281,282,283,284,285,-133,286,287,288,-129,289,-127,290,-125,291,-123,292,293,-120,294,-118,295,-116,296,297,298,-112,299,300,301,302]]}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-186,303,-4,304,-172,305,-170,306,-168,307,-166,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,-272,308,152,153,154,155,156,157,158,159,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-222,309,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,310,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-182,311,-180,-179,312,-177,313,-175,314,-173,315,-189,316],[-3],[317,-183,-185],[-1],[-2],[-188],[-187],[-161,-165,-197,-163,-162]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[318]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[189,190,191,192,193,194]},{"type":"LineString","arcs":[195]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"ct":[-65.15,-35.22]},"id":"ARG","arcs":[[[161,319]],[[320,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,321,322,323,324,325,326]]]},{"type":"MultiPolygon","properties":{"ct":[-71.67,-37.34]},"id":"CHL","arcs":[[[-320,162,163,164,160]],[[327,-322,104,105,106,107,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,328]]]},{"type":"Polygon","properties":{"ct":[-59.42,-51.71]},"id":"FLK","arcs":[[186]]},{"type":"Polygon","properties":{"ct":[-56,-32.78]},"id":"URY","arcs":[[329,72,73,74,75,76,77,-321]]},{"type":"Polygon","properties":{"ct":[-53.05,-10.81]},"id":"BRA","arcs":[[-330,-327,330,331,-191,332,333,334,335,336,337,219,-310,221,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71]]},{"type":"Polygon","properties":{"ct":[-64.64,-16.73]},"id":"BOL","arcs":[[-333,338,-323,-328,339]]},{"type":"Polygon","properties":{"ct":[-74.39,-9.19]},"id":"PER","arcs":[[-334,-340,-329,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,340,341]]},{"type":"Polygon","properties":{"ct":[-73.08,3.93]},"id":"COL","arcs":[[-335,-342,342,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,302,4,5,6,7,8,9,10,343]]},{"type":"Polygon","properties":{"ct":[-66.16,7.16]},"id":"VEN","arcs":[[-336,-344,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,344]]},{"type":"Polygon","properties":{"ct":[-58.97,4.79]},"id":"GUY","arcs":[[-337,-345,27,28,29,30,31,345]]},{"type":"Polygon","properties":{"ct":[-55.91,4.12]},"id":"SUR","arcs":[[-338,-346,32,33,34,35,218]]},{"type":"Polygon","properties":{"ct":[-78.38,-1.45]},"id":"ECU","arcs":[[-341,-127,-126,-125,-124,-123,-122,-121,-343]]},{"type":"Polygon","properties":{"ct":[-58.39,-23.25]},"id":"PRY","arcs":[[190,-332,-331,-326,-325,-324,-339]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}},"arcs":[[[4816,9316],[73,-9],[26,-21],[-37,-26],[-107,0],[-83,-3],[-9,45],[20,15],[117,-1]],[[3204,9314],[96,-10],[76,-25],[24,-29],[-101,-2],[-43,-17],[-80,17],[-82,38],[17,24],[60,7],[33,-3]],[[2533,9808],[123,-7],[112,-1],[135,-36],[56,-39],[134,12],[51,-25],[120,-65],[89,-47],[47,1],[86,-21],[-11,-30],[106,-4],[107,-43],[-16,-25],[-95,-13],[-97,-6],[-98,9],[-205,-10],[96,58],[-58,28],[-92,7],[-49,30],[-34,60],[-81,-4],[-133,28],[-43,22],[-186,16],[-50,21],[53,26],[-140,6],[-102,-55],[-59,-1],[-21,-26],[-71,-12],[-61,10],[76,33],[31,38],[64,23],[73,21],[108,10],[35,11]],[[4038,0],[-2,52],[82,50],[131,16],[76,-39],[33,-39],[52,-40]],[[3235,8280],[74,-3]],[[3309,8277],[107,73]],[[3416,8350],[59,12]],[[3475,8362],[1,34]],[[3476,8396],[26,89]],[[3502,8485],[82,49],[90,2],[12,22],[112,-9],[112,54],[56,23],[69,51],[50,-7],[38,-27]],[[4123,8643],[-28,-36]],[[4095,8607],[-4,-25]],[[4091,8582],[-84,-12]],[[4007,8570],[47,-48],[-2,-55],[-63,-61],[54,-83],[62,6],[32,76]],[[4137,8405],[-45,38]],[[4092,8443],[-7,79]],[[4085,8522],[178,43]],[[4263,8565],[-20,50]],[[4243,8615],[50,33]],[[4293,8648],[52,-74],[100,-2]],[[4445,8572],[93,-59]],[[4538,8513],[5,-34]],[[4543,8479],[128,-1],[153,10]],[[4824,8488],[82,-47],[109,-13],[80,33],[2,27]],[[5097,8488],[177,6]],[[5274,8494],[171,2]],[[5445,8496],[-121,-32],[49,-49],[114,-8],[108,-52],[23,-84],[74,2],[56,-25]],[[5748,8248],[94,-38],[88,-69]],[[5930,8141],[4,-54]],[[5934,8087],[54,-3]],[[5988,8084],[77,-51]],[[6065,8033],[56,-37]],[[6121,7996],[171,-21]],[[6292,7975],[16,19]],[[6308,7994],[115,8]],[[6423,8002],[154,-28]],[[6577,7974],[48,-12],[105,-25],[152,-89],[23,-43]],[[6905,7805],[51,-4],[33,-49]],[[6989,7752],[80,-184]],[[7069,7568],[77,-18]],[[7146,7550],[4,-72],[-108,-87],[45,-32],[252,-16],[5,-106],[109,69],[180,-37],[237,-65],[70,-61]],[[7940,7143],[-24,-59]],[[7916,7084],[166,33]],[[8082,7117],[278,-56],[214,4],[211,-87],[182,-118],[110,-30],[122,-4],[52,-34]],[[9251,6792],[49,-134]],[[9300,6658],[23,-63],[-57,-174],[-72,-69]],[[9194,6352],[-202,-146]],[[8992,6206],[-91,-119]],[[8901,6087],[-105,-92]],[[8796,5995],[-36,-2]],[[8760,5993],[-40,-77]],[[8720,5916],[10,-197]],[[8730,5719],[-40,-163]],[[8690,5556],[-15,-69]],[[8675,5487],[-45,-41]],[[8630,5446],[-25,-141]],[[8605,5305],[-145,-138]],[[8460,5167],[-24,-108]],[[8436,5059],[-116,-46]],[[8320,5013],[-33,-63],[-156,0],[-224,-40]],[[7907,4910],[-101,-47]],[[7806,4863],[-160,-31]],[[7646,4832],[-168,-84]],[[7478,4748],[-121,-104]],[[7357,4644],[-21,-79]],[[7336,4565],[24,-58],[-27,-106],[-32,-51]],[[7301,4350],[-100,-58]],[[7201,4292],[-158,-186]],[[7043,4106],[-126,-83]],[[6917,4023],[-97,-49]],[[6820,3974],[-65,-100]],[[6755,3874],[-95,-61]],[[6660,3813],[-62,-66],[-161,-58]],[[6437,3689],[-105,21]],[[6332,3710],[-78,-11]],[[6254,3699],[-132,45]],[[6122,3744],[-97,-4]],[[6025,3740],[-87,59]],[[5938,3799],[-9,-55]],[[5929,3744],[181,-90]],[[6110,3654],[-20,-73],[90,-46]],[[6180,3535],[-8,-51]],[[6172,3484],[-137,-135],[-212,-57],[-286,-22],[-157,11]],[[5380,3281],[30,-63]],[[5410,3218],[-29,-79]],[[5381,3139],[26,-53],[-86,-37]],[[5321,3049],[-146,-14]],[[5175,3035],[-137,38]],[[5038,3073],[-55,-27]],[[4983,3046],[20,-105]],[[5003,2941],[96,-32]],[[5099,2909],[78,33]],[[5177,2942],[43,-54],[-132,-33],[-114,-65]],[[4974,2790],[-21,-106]],[[4953,2684],[-34,-57]],[[4919,2627],[-135,0]],[[4784,2627],[-112,-54]],[[4672,2573],[-41,-79]],[[4631,2494],[140,-77],[137,-21]],[[4908,2396],[-49,-94]],[[4859,2302],[-169,-60]],[[4690,2242],[-93,-123],[-130,-42],[-59,-49],[46,-109]],[[4454,1919],[96,-61]],[[4550,1858],[-61,5]],[[4489,1863],[-127,1]],[[4362,1864],[-69,-26]],[[4293,1838],[-128,-38]],[[4165,1800],[-23,-98],[-61,-3],[-161,34],[-164,74],[-177,60]],[[3159,8128],[58,-56]],[[3217,8072],[23,-89]],[[3240,7983],[-31,-28]],[[3209,7955],[32,-96]],[[3241,7859],[-27,-61],[53,-25]],[[3267,7773],[-55,-55]],[[3212,7718],[-60,-66]],[[3152,7652],[-71,-8]],[[3081,7644],[-33,-38]],[[3048,7606],[6,-52]],[[3054,7554],[-53,-8]],[[3001,7546],[19,-33]],[[3020,7513],[-98,-42]],[[2922,7471],[-78,-22]],[[2844,7449],[10,-43],[-54,-68],[-26,-66]],[[2774,7272],[-51,-16],[25,-95]],[[2748,7161],[-29,-30],[85,-46]],[[2804,7085],[55,49]],[[2859,7134],[31,-46],[-76,-79]],[[2814,7009],[-114,-66]],[[2700,6943],[-45,-74],[70,-100]],[[2725,6769],[-47,-47]],[[2678,6722],[102,-43]],[[2780,6679],[111,-69]],[[2891,6610],[45,-77],[58,-48],[135,-210]],[[3129,6275],[141,-194]],[[3270,6081],[121,-138]],[[3391,5943],[-23,-30]],[[3368,5913],[59,-87]],[[3427,5826],[110,-65]],[[3537,5761],[256,-115]],[[3793,5646],[283,-106]],[[4076,5540],[13,-43],[143,-60]],[[4232,5437],[30,-149]],[[4262,5288],[10,-172]],[[4272,5116],[-44,-235]],[[4228,4881],[-46,-219]],[[4182,4662],[-26,-204]],[[4156,4458],[-84,-128],[18,-130],[-43,-87]],[[4047,4113],[33,-157]],[[4080,3956],[-61,-157]],[[4019,3799],[-98,-169],[-88,-170],[-60,-3],[12,-119],[41,-102],[-66,-72]],[[3760,3164],[-49,-195]],[[3711,2969],[-45,-151],[91,-15]],[[3757,2803],[44,132]],[[3801,2935],[96,-28],[-75,-218],[-158,37],[-49,-175]],[[3615,2551],[-136,-93]],[[3479,2458],[217,-31]],[[3696,2427],[-151,-81]],[[3545,2346],[-61,-101],[19,-180],[71,-70]],[[3574,1995],[-40,-61]],[[3534,1934],[45,-67]],[[3619,1806],[118,-22],[201,-70],[189,-38],[74,48],[46,73],[132,43],[101,-12]],[[4480,1828],[55,-49],[72,-79],[185,-63],[200,-27],[-64,-52],[-136,-6],[-72,38]],[[4720,1590],[-48,-43],[-122,-33]],[[4550,1514],[-70,4],[-85,8]],[[4395,1526],[-104,32],[-149,15],[-180,59],[-146,57],[-197,117]],[[3159,8128],[-47,30],[-31,57],[36,28],[-37,8],[-26,34],[-71,30],[-63,-7],[-29,-37],[-58,-26],[-31,-4],[-14,-22],[68,-57],[-39,-13],[-20,-16],[-67,-5],[-24,63],[-19,-18],[-47,6],[-29,42],[-59,7],[-37,12]],[[2515,8240],[-30,0],[-31,0]],[[2454,8240],[-4,-23],[-17,16],[-77,24],[-29,22],[16,18],[-5,23],[-40,26],[-56,20],[-49,14],[-9,31],[-38,18],[9,-30],[-28,-25],[-33,29],[-46,10],[-19,21],[1,32],[18,34]],[[2048,8500],[-20,7],[-20,7]],[[2008,8514],[33,21],[-50,33],[-66,42],[-32,36],[-60,33],[-72,47],[16,17],[24,-16],[11,7],[-25,33]],[[1787,8767],[-22,5],[-21,4]],[[1744,8776],[-16,-24],[-83,1],[-51,10],[-59,21],[-80,7],[-40,22],[-74,19],[-89,2],[-65,21],[-77,43],[-161,113],[-74,34],[-117,28],[-80,-8],[-114,-39],[-72,-11],[-101,28],[-107,20],[-134,48],[-107,15],[-43,13]],[[354,9999],[-1,-1],[-25,-76],[-10,-141],[-14,-51],[25,-57],[44,-52],[28,-81],[95,-79],[34,-60],[56,-52],[151,-28],[59,-44],[126,30],[108,10],[107,19],[90,18],[91,43],[34,62],[12,88],[25,31],[96,28],[151,24],[127,-4],[87,9],[34,-22],[-5,-51],[-77,-62],[-34,-64],[27,-19],[-22,-45],[-36,-82],[-36,27],[-30,-2],[1,-16],[27,0],[-3,-29],[-23,-45]],[[1673,9225],[13,-17],[-15,-37]],[[1671,9171],[9,-10],[-17,-53],[-28,-28],[-26,-4],[-28,-36],[47,-19],[12,16]],[[1640,9037],[47,-15],[10,-3]],[[1697,9019],[31,18],[41,2],[13,-9],[22,6],[67,-10],[66,3],[46,12],[17,11],[45,-5],[34,-7],[38,2],[28,9],[65,-14],[23,-3],[43,-19],[42,-24],[52,-16],[37,-29],[-12,-10],[-7,-24],[14,-38],[-33,-36],[-15,-42],[-5,-47],[8,-27],[4,-47],[-22,-11],[-13,-45],[9,-27],[-29,-27],[7,-29],[22,-17]],[[2335,8519],[9,-16],[27,-41]],[[2371,8462],[55,-43],[67,-44]],[[2493,8375],[51,-38]],[[2544,8337],[-2,-23],[57,-4]],[[2599,8310],[13,8],[39,-26],[71,8],[60,27],[87,21],[49,31],[79,-6],[-6,-10],[80,-4],[64,-18],[46,-32],[54,-29]],[[4041,9443],[18,18]],[[4059,9461],[29,2],[82,-3]],[[4170,9460],[85,-27],[37,3],[26,-38],[78,2],[-4,-31],[63,-4],[71,-38],[-53,-43],[-68,23],[-66,-5],[-47,5],[-26,-19],[-55,-6],[-21,25],[-48,-15],[-57,-72],[-36,17],[-8,30],[-95,18],[-67,-7],[-87,7],[-67,-20],[-77,33],[13,34],[132,-14],[107,-9],[52,24],[-65,45],[1,40],[-91,17],[33,29],[87,-5],[124,-16]],[[4499,0],[-6,30],[14,41],[67,39],[56,43],[23,42],[-28,45],[-17,41],[70,48],[78,31],[93,39],[97,33],[115,31],[56,45],[78,29],[90,27],[137,6],[90,33],[100,21],[118,12],[103,27],[81,33],[112,12],[84,-27],[-53,-35],[-145,-31],[-62,-22],[-106,16],[-118,-10],[-98,-25],[-103,-27],[-70,-31],[-20,-41],[9,-39],[67,-35],[-98,-25],[-134,-8],[-79,-35],[-84,-33],[-89,-45],[-23,-40],[51,-43],[75,-33],[118,-25],[109,-33],[59,-41],[31,-39],[0,-1]],[[5542,1910],[172,63],[121,-26],[86,42],[114,-47],[-43,-37],[-193,-32],[-64,37],[-121,-47],[-72,47]],[[5474,8500],[82,14],[30,-4],[-6,-78],[-119,-12],[-26,10],[42,29],[-3,41]],[[3168,9999],[40,-69],[1,-62],[-35,-5],[-36,61],[-54,30],[21,45]],[[6417,5861],[-51,-4],[-98,-35],[-31,-18],[-8,-22],[44,-82],[21,-25],[1,-14],[-10,-13],[-61,-33],[-16,-16],[-7,-28],[-56,-55],[-28,-15],[-20,-20],[-18,-57],[-22,-43],[37,-35],[-7,-20],[-10,-9],[-22,-21],[-22,-21],[-11,-9],[-13,-6],[-11,-5],[-22,-11]],[[5976,5244],[42,-58]],[[6018,5186],[-3,-39],[-7,-104]],[[6008,5043],[-5,-8],[20,-41],[1,-28],[69,-93],[21,-36],[11,-31],[-1,-32],[-20,-35],[-44,-30],[-8,-17],[0,-9],[0,-10]],[[6052,4673],[-10,-12],[-27,-30],[-34,-38],[-33,-39],[-26,-29],[-11,-12]],[[5911,4513],[-33,-51],[-6,-38],[-26,-40],[-22,-75],[-24,-14],[-18,-22],[-10,-32],[-9,-106],[-58,-59],[-46,-27],[-30,-26],[-15,-29],[-4,-30],[2,-23],[10,-24],[22,-25],[34,-23],[54,-27],[96,-33],[76,-19],[33,0]],[[4047,5753],[24,58],[-8,53],[-15,22],[-28,18],[-40,18],[-88,26],[-67,7],[-49,43],[-42,54],[-17,32],[-24,78],[0,19],[49,9],[10,17],[-8,24],[-29,43],[-8,22],[6,34],[-23,19],[-44,68],[1,31],[19,24],[-21,13],[-25,33],[-36,25],[-16,39],[-28,30],[1,10],[11,8],[-4,51],[8,30],[24,18],[27,10],[63,35],[35,53],[13,10],[24,7],[45,56],[19,28],[20,15],[11,37],[15,14],[23,6],[57,1],[49,7],[38,-2],[46,-31],[39,-14],[53,-10],[38,7],[38,-2],[36,-17],[35,-26],[29,5],[23,14],[35,54],[44,19],[126,16],[16,8],[4,12],[39,25],[40,17],[76,5],[43,18],[78,-1],[34,-11],[20,-1],[26,-8],[123,-75],[81,-36],[119,-31],[63,19],[46,7],[86,-7],[45,9],[129,44],[95,15],[14,7],[25,2],[138,-23],[22,12],[31,2],[79,58],[41,17],[111,2],[83,36],[42,13],[44,6],[52,-19],[50,-4],[40,-28],[48,13],[56,35],[43,16],[151,42],[93,36],[112,64],[64,57]],[[4550,1514],[-155,12]],[[3309,8277],[94,65],[13,8]],[[3475,8362],[0,15],[1,19]],[[3476,8396],[23,78],[3,11]],[[4123,8643],[-3,-4],[-25,-32]],[[4095,8607],[-3,-19],[-1,-6]],[[4091,8582],[-77,-11],[-7,-1]],[[4137,8405],[-35,30],[-10,8]],[[4092,8443],[-1,16],[-6,63]],[[4085,8522],[153,37],[25,6]],[[4243,8615],[27,17],[23,16]],[[4445,8572],[55,-35],[38,-24]],[[4538,8513],[1,-8],[4,-26]],[[5097,8488],[163,6],[14,0]],[[5274,8494],[8,0],[163,2]],[[5930,8141],[4,-43],[0,-11]],[[5934,8087],[48,-2],[6,-1]],[[5988,8084],[27,-17],[50,-34]],[[6065,8033],[36,-23],[20,-14]],[[6121,7996],[134,-16],[37,-5]],[[6292,7975],[10,13],[6,6]],[[6423,8002],[132,-24],[22,-4]],[[6577,7974],[-75,-91],[12,-72],[56,-62],[-25,-46],[-13,-48],[-36,-44]],[[6496,7611],[62,-22],[44,29],[32,-5],[20,-29],[68,7],[55,40],[44,78],[84,96]],[[6905,7805],[44,5],[5,0]],[[6954,7810],[35,-58]],[[7069,7568],[37,-9],[40,-9]],[[7940,7143],[-1,-1],[-23,-58]],[[7916,7084],[79,16],[87,17]],[[9251,6792],[18,-48],[31,-86]],[[9194,6352],[-199,-145],[-3,-1]],[[8901,6087],[-40,-36],[-65,-56]],[[8796,5995],[-21,-1],[-15,-1]],[[8720,5916],[8,-156],[2,-41]],[[8730,5719],[-13,-54],[-27,-109]],[[8675,5487],[-8,-7],[-37,-34]],[[8605,5305],[-129,-123],[-16,-15]],[[8436,5059],[-57,-23],[-59,-23]],[[7907,4910],[-63,-29],[-38,-18]],[[7806,4863],[-89,-17],[-71,-14]],[[7646,4832],[-70,-35],[-98,-49]],[[7357,4644],[-13,-48],[-8,-31]],[[7301,4350],[-25,-15],[-75,-43]],[[7201,4292],[-67,-79],[-91,-107]],[[7043,4106],[-82,-54],[-44,-29]],[[6917,4023],[-36,-18],[-61,-31]],[[6820,3974],[-55,-84],[-10,-16]],[[6755,3874],[-60,-39],[-35,-22]],[[6437,3689],[-99,20],[-6,1]],[[6332,3710],[-56,-8],[-22,-3]],[[6254,3699],[-88,30],[-44,15]],[[6122,3744],[-52,-2],[-45,-2]],[[5929,3744],[48,-24],[133,-66]],[[6180,3535],[-1,-3],[-7,-48]],[[5380,3281],[25,-51],[5,-12]],[[5410,3218],[-16,-44],[-13,-35]],[[5321,3049],[-117,-11],[-29,-3]],[[5175,3035],[-43,12],[-94,26]],[[4983,3046],[16,-86],[4,-19]],[[5099,2909],[13,6],[65,27]],[[4974,2790],[-15,-73],[-6,-33]],[[4953,2684],[-4,-6],[-30,-51]],[[4919,2627],[-74,0],[-61,0]],[[4784,2627],[-56,-27],[-56,-27]],[[4672,2573],[-31,-59],[-10,-20]],[[4908,2396],[-26,-49],[-23,-45]],[[4859,2302],[-19,-7],[-150,-53]],[[4454,1919],[70,-45],[26,-16]],[[4362,1864],[-57,-22],[-12,-4]],[[4293,1838],[-31,-9],[-97,-29]],[[3534,1934],[29,44],[11,17]],[[3545,2346],[84,45],[67,36]],[[3479,2458],[69,47],[67,46]],[[3801,2935],[-16,-49],[-28,-83]],[[3757,2803],[-16,3],[-74,12]],[[3667,2818],[44,151]],[[3711,2969],[36,141],[13,54]],[[4019,3799],[37,93],[24,64]],[[4080,3956],[-15,73],[-18,84]],[[4156,4458],[14,114],[12,90]],[[4228,4881],[17,93],[27,142]],[[4272,5116],[-9,156],[-1,16]],[[4262,5288],[0,1],[-30,148]],[[4076,5540],[-267,100],[-16,6]],[[3793,5646],[-25,11],[-231,104]],[[3537,5761],[-91,53],[-19,12]],[[3427,5826],[-10,14],[-49,73]],[[3368,5913],[19,25],[4,5]],[[3391,5943],[-106,121],[-15,17]],[[3270,6081],[-17,25],[-124,169]],[[2891,6610],[-100,62],[-11,7]],[[2780,6679],[-24,10],[-78,33]],[[2678,6722],[28,28],[19,19]],[[2700,6943],[75,44],[39,22]],[[2859,7134],[-13,-12],[-42,-37]],[[2748,7161],[-24,95],[28,10],[22,6]],[[2844,7449],[58,16],[20,6]],[[2922,7471],[52,22],[46,20]],[[3001,7546],[30,4],[23,4]],[[3048,7606],[13,15],[20,23]],[[3152,7652],[45,48],[15,18]],[[3212,7718],[23,22],[32,33]],[[3267,7773],[-52,25],[26,61]],[[3209,7955],[10,9],[21,19]],[[3240,7983],[-8,30],[-15,59]],[[3217,8072],[-21,21],[-37,35]],[[3159,8128],[19,51],[46,-7],[27,31],[-33,62],[17,15]],[[4499,0],[-89,0]],[[4038,0],[-4038,0],[0,9139]],[[1744,8776],[43,-9]],[[2008,8514],[40,-14]],[[2454,8240],[61,0]],[[3667,2818],[90,-15]],[[6954,7810],[-49,-5]],[[4824,8488],[-152,-10],[-129,1]],[[2599,8310],[-57,5],[2,22]],[[2371,8462],[-36,57]],[[1697,9019],[-15,4],[-42,14]],[[1671,9171],[15,38],[-13,16]],[[354,9999],[2751,0]],[[3168,9999],[6831,0],[0,-9999],[-4652,0]],[[4170,9460],[-111,1]],[[4370,5670],[-46,21],[-36,20],[15,7],[1,13],[-2,21],[41,-6],[87,-50],[4,-3],[30,-47],[-22,-16],[-14,-3],[-13,8],[-13,6],[-10,19],[-22,10]],[[4720,1590],[-87,2],[-152,1],[-1,235]],[[6053,4187],[-36,-84],[-38,-108],[1,-105],[-31,-23],[-11,-68]],[[4489,1863],[-132,17],[-345,14],[-59,61],[2,79],[-95,-7],[-50,38],[-13,112],[110,46],[45,67],[-16,53],[75,90],[53,139],[-16,62],[63,20],[-16,40],[-66,21],[47,44],[-64,40],[-34,121],[58,22],[-24,128],[33,108],[38,94],[86,38],[-44,103],[0,96],[108,69],[-3,88],[81,103],[1,97],[-37,19],[-66,181],[88,109],[-14,102],[51,95],[94,99],[101,65],[-43,42],[30,34],[-5,175],[156,52],[49,109],[-17,27]],[[4699,4975],[119,95],[187,-26],[83,-76],[56,85],[163,-5],[23,-22]],[[5330,5026],[263,-172],[117,-16],[174,-78],[147,-41],[21,-46]],[[6052,4673],[-141,-160]],[[5911,4513],[144,-29],[161,-16],[113,17],[129,81],[23,93]],[[6481,4659],[71,20],[72,-61],[-3,-84],[-120,-58],[-96,-43],[-161,-102],[-191,-144]],[[4344,5517],[70,-71],[19,-76],[75,-45],[-45,-102],[77,-118],[56,-145],[103,15]],[[4232,5437],[74,26],[38,54]],[[6053,4187],[93,12],[143,-82],[53,3],[147,-67],[112,-58],[83,-72],[-63,-50],[39,-60]],[[6481,4659],[28,60],[20,63],[0,57],[-51,20],[-54,-18],[-53,5],[-17,41],[-13,96],[-27,32],[-97,28],[-58,-21],[-151,21]],[[6008,5043],[10,143]],[[5976,5244],[44,22],[-13,60],[39,46],[25,83],[-34,65],[-78,30],[-15,41],[21,61],[-274,4],[-55,123],[42,2],[-2,45],[-28,31],[-6,61],[-83,31],[-90,-1],[-59,30],[-97,21],[-56,40],[-160,17],[-155,94],[12,71],[-18,40],[15,79],[-187,-18],[-75,-39],[-125,-43],[-32,-32],[-73,-2],[-107,9]],[[4352,6215],[-80,-18],[-65,12],[9,160],[-117,-62],[-126,3],[-54,56],[-95,6],[31,45],[-80,64],[-59,95],[37,19],[0,44],[87,31],[-15,57],[37,36],[10,50],[164,71],[117,20],[19,16],[128,-5]],[[4300,6915],[65,289],[3,46],[-22,60],[-64,38],[1,77],[81,17],[28,-11],[5,40],[-84,11],[-2,66],[279,-2],[47,36],[40,-33],[28,-62],[26,13]],[[4731,7500],[79,-56],[111,7],[28,32],[106,25],[59,17],[16,44],[103,30],[-8,22],[-121,10],[-20,66],[6,70],[-64,28],[27,9],[105,-13],[114,-26],[41,24],[103,17],[160,39],[52,40],[-19,30]],[[5609,7915],[74,5],[33,-25],[-18,-46],[49,-16],[33,-49],[-40,-37],[-23,-89],[37,-54],[10,-48],[88,-50],[70,-5],[16,21],[45,4],[65,19],[46,28],[79,-9],[35,4]],[[6208,7568],[78,-9],[13,22],[-24,20],[14,31],[58,-9],[67,10],[82,-22]],[[5976,5244],[-3,32],[-133,54],[-133,2],[-248,-31],[-69,-92],[-4,-57],[-56,-126]],[[4344,5517],[90,114],[-62,88],[33,36],[-25,39],[55,52],[3,90],[7,74],[31,36],[-124,169]],[[2814,7009],[17,-44],[-41,-25],[4,-38],[59,8],[57,-11],[60,-53],[81,43],[27,71],[88,92],[171,41],[156,110],[45,69],[-20,80]],[[3518,7352],[38,10],[95,-50],[45,-50],[67,-27],[84,-110],[106,-14],[79,28],[51,-18],[86,9],[109,-49],[-92,-107],[43,-3],[71,-56]],[[3518,7352],[-61,25],[-71,34],[-40,-16],[-121,14],[-35,46],[-27,-2],[-143,60]],[[4095,8607],[-92,-17],[-36,-53],[-55,-30],[-42,-39],[-17,-75],[-40,-62],[74,-7],[18,-48],[32,-24],[11,-42],[-17,-39],[5,-22],[35,-9],[34,-36],[184,10],[83,-14],[100,-90],[58,11],[103,-6],[82,12],[50,-18],[-26,-56],[-32,-36],[-11,-75],[29,-70],[41,-31],[5,-24],[-73,-52],[52,-24],[38,-36],[43,-105]],[[5748,8248],[-113,-61],[-12,-39],[48,-39],[-35,-20],[-88,-17],[3,-48],[-39,-29],[97,-80]],[[6121,7996],[-23,-94],[-86,-28],[7,-25],[-26,-54],[63,-76],[46,0],[19,-60],[87,-91]]],"transform":{"scale":[0.007000700070007,0.009500950095009501],"translate":[-100,-70]},"bbox":[-100,-70,-30,25]} -------------------------------------------------------------------------------- /dist/europe_110m.json: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0,1]},{"type":"LineString","arcs":[2,3,4,5,6]},{"type":"LineString","arcs":[7]},{"type":"LineString","arcs":[8]},{"type":"LineString","arcs":[9]},{"type":"LineString","arcs":[10]},{"type":"LineString","arcs":[11,12,13,14,15,16,17]},{"type":"LineString","arcs":[18]},{"type":"LineString","arcs":[19]},{"type":"MultiLineString","arcs":[[20],[21]]},{"type":"LineString","arcs":[22]},{"type":"LineString","arcs":[23]},{"type":"LineString","arcs":[24]},{"type":"LineString","arcs":[25]},{"type":"LineString","arcs":[26]},{"type":"LineString","arcs":[27,28,29,-27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227]},{"type":"MultiLineString","arcs":[[228,229,230,231,232,233,234,235,236,237,238,239,240],[241]]},{"type":"LineString","arcs":[242,243,244]},{"type":"MultiLineString","arcs":[[245],[246]]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[7]]},{"type":"Polygon","arcs":[[25]]},{"type":"Polygon","arcs":[[8]]},{"type":"Polygon","arcs":[[9]]},{"type":"Polygon","arcs":[[1,0]]},{"type":"Polygon","arcs":[[10]]},{"type":"Polygon","arcs":[[17,11,12,13,14,15,255]]},{"type":"Polygon","arcs":[[18]]},{"type":"Polygon","arcs":[[21,20,256]]},{"type":"Polygon","arcs":[[-27,30,257,32,258,34,35,259,260,261,262,39,263,41,264,43,44,45,46,47,265,266,267,50,268,269,53,270,271,272,57,273,59,60,61,274,275,64,276,277,278,68,279,70,280,72,281,74,282,76,283,284,79,285,286,287,83,288,289,86,290,291,292,90,293,92,294,94,295,296,97,297,298,299,101,102,103,300,105,301,302,303,109,304,305,112,306,114,307,116,308,309,119,310,121,311,123,124,312,313,127,314,315,130,316,317,133,318,135,319,137,138,320,140,141,321,322,144,145,323,324,325,326,150,327,328,329,330,155,331,332,158,333,334,335,162,163,164,165,166,336,168,337,170,338,172,339,174,175,176,340,178,341,180,342,343,183,344,185,345,346,188,347,190,348,349,350,351,352,196,353,198,354,200,201,355,203,204,205,356,357,358,359,360,361,211,212,213,362,363,364,216,365,218,366,367,368,222,369,370,371,225,226,372,373,374,-243,-245,375]]},{"type":"Polygon","arcs":[[23]]},{"type":"Polygon","arcs":[[24]]},{"type":"Polygon","arcs":[[22]]},{"type":"Polygon","arcs":[[19]]}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[244,242,243]]},{"type":"MultiPolygon","arcs":[[[-24],[-25],[-23],[-20],[-19],[-18,-17,-16,-15,-14,-13,-12],[-2,-1],[-26],[-8],[-7,376,-5,377,-3],[-9],[-10],[-11],[-21,-22,378,-374,379,-226,-372,380,-224,-223,-369,-221,-220,-219,-218,-217,381,382,-215,-214,383,-212,-362,384,-209,-208,-207,-206,385,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-323,-143,-142,-141,-140,386,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-258,-31,26,-30,387,-28,-242,388,-247,389,-246,390]],[[-241,391,-239,392,-237,393,-235,394,-233,395,-231,396,-229,397]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[398]]},{"type":"Polygon","arcs":[[399]]},{"type":"Polygon","arcs":[[400]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[247,248,249,250,251,252,253,254]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"ct":[44.69,58.03]},"id":"RUS","arcs":[[[-243,-245,375,-27,30,31,32,33,34,401,402,403,404,175,405,406,201,202,203,204,205,206,207,208,209,210,211,212,213,214,-383,-382,216,217,218,219,220,368,222,223,-381,371,225,226,227,374]],[[19]],[[407,164,408]],[[20,256,21]],[[409,262,39,40,41,42,43,410]]]},{"type":"MultiPolygon","properties":{"ct":[14.24,64.54]},"id":"NOR","arcs":[[[24]],[[-407,411,412,192,193,194,195,196,197,198,199,200]],[[22]],[[23]]]},{"type":"MultiPolygon","properties":{"ct":[2.34,46.61]},"id":"FRA","arcs":[[[413,414,415,102,416,130,131,132,133,134,135,136,137,138,139,140,417,418]],[[9]]]},{"type":"Polygon","properties":{"ct":[16.6,62.81]},"id":"SWE","arcs":[[-413,419,184,185,186,187,188,189,190,191]]},{"type":"Polygon","properties":{"ct":[27.98,53.51]},"id":"BLR","arcs":[[-403,420,421,422,423]]},{"type":"Polygon","properties":{"ct":[31.23,49.15]},"id":"UKR","arcs":[[-402,35,36,37,424,-410,425,45,-255,426,427,428,429,430,431,-421]]},{"type":"Polygon","properties":{"ct":[19.31,52.15]},"id":"POL","arcs":[[-422,-432,432,433,434,163,-408,435]]},{"type":"Polygon","properties":{"ct":[14.08,47.61]},"id":"AUT","arcs":[[436,437,438,439,440,441,442]]},{"type":"Polygon","properties":{"ct":[19.36,47.2]},"id":"HUN","arcs":[[-430,443,444,445,446,-437,447,248,448]]},{"type":"Polygon","properties":{"ct":[28.41,47.2]},"id":"MDA","arcs":[[-428,449]]},{"type":"Polygon","properties":{"ct":[24.94,45.86]},"id":"ROU","arcs":[[-427,254,46,450,-253,-252,451,-444,-429,-450]]},{"type":"Polygon","properties":{"ct":[23.88,55.28]},"id":"LTU","arcs":[[-423,-436,-409,165,452]]},{"type":"Polygon","properties":{"ct":[24.83,56.81]},"id":"LVA","arcs":[[-404,-424,-453,166,167,168,169,453]]},{"type":"Polygon","properties":{"ct":[25.82,58.64]},"id":"EST","arcs":[[-405,-454,170,171,172,173,174]]},{"type":"Polygon","properties":{"ct":[10.29,51.13]},"id":"DEU","arcs":[[-435,454,-441,455,-414,456,457,458,145,146,147,459,157,158,159,160,161,162]]},{"type":"Polygon","properties":{"ct":[25.2,42.75]},"id":"BGR","arcs":[[252,-451,47,48,266,460,461,462]]},{"type":"MultiPolygon","properties":{"ct":[22.56,39.34]},"id":"GRC","arcs":[[[7]],[[-461,267,50,51,52,53,54,55,56,57,58,59,463,464]]]},{"type":"Polygon","properties":{"ct":[20.03,41.14]},"id":"ALB","arcs":[[-464,60,465,466,467]]},{"type":"Polygon","properties":{"ct":[16.57,45.02]},"id":"HRV","arcs":[[-446,468,469,470,471,64,65,66,67,68,69,70,472]]},{"type":"Polygon","properties":{"ct":[8.12,46.79]},"id":"CHE","arcs":[[-440,473,-415,-456]]},{"type":"Polygon","properties":{"ct":[5.97,49.77]},"id":"LUX","arcs":[[-457,-419,474]]},{"type":"Polygon","properties":{"ct":[4.58,50.65]},"id":"BEL","arcs":[[-458,-475,-418,141,475]]},{"type":"Polygon","properties":{"ct":[5.51,52.3]},"id":"NLD","arcs":[[-459,-476,142,143,144]]},{"type":"Polygon","properties":{"ct":[-8.06,39.63]},"id":"PRT","arcs":[[476,116,117,118,119,120,121,122,123]]},{"type":"Polygon","properties":{"ct":[-3.62,40.35]},"id":"ESP","arcs":[[-477,124,125,126,127,128,129,-417,103,104,105,106,107,108,109,110,111,112,113,114,115]]},{"type":"Polygon","properties":{"ct":[-8.01,53.18]},"id":"IRL","arcs":[[0,477]]},{"type":"MultiPolygon","properties":{"ct":[12.22,43.47]},"id":"ITA","arcs":[[[-439,478,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,-416,-474]],[[25]],[[8]]]},{"type":"MultiPolygon","properties":{"ct":[9.31,56.22]},"id":"DNK","arcs":[[[-460,148,149,150,151,152,153,154,155,156]],[[10]]]},{"type":"MultiPolygon","properties":{"ct":[-2.66,53.88]},"id":"GBR","arcs":[[[-478,1]],[[255,17,11,479,13,480,15]]]},{"type":"Polygon","properties":{"ct":[-18.76,65.07]},"id":"ISL","arcs":[[18]]},{"type":"Polygon","properties":{"ct":[14.94,46.13]},"id":"SVN","arcs":[[-438,-447,-473,71,-479]]},{"type":"Polygon","properties":{"ct":[26.21,64.5]},"id":"FIN","arcs":[[-406,176,177,178,179,180,181,182,183,-420,-412]]},{"type":"Polygon","properties":{"ct":[19.51,48.73]},"id":"SVK","arcs":[[-431,-449,-249,-448,-443,481,-433]]},{"type":"Polygon","properties":{"ct":[15.33,49.78]},"id":"CZE","arcs":[[-434,-482,-442,-455]]},{"type":"Polygon","properties":{"ct":[17.82,44.18]},"id":"BIH","arcs":[[-471,482,483]]},{"type":"Polygon","properties":{"ct":[21.7,41.61]},"id":"MKD","arcs":[[-462,-465,-468,484,485]]},{"type":"Polygon","properties":{"ct":[20.82,44.23]},"id":"SRB","arcs":[[-445,-452,251,-463,-486,486,487,-483,-470,-469]]},{"type":"Polygon","properties":{"ct":[19.29,42.79]},"id":"MNE","arcs":[[-466,61,62,63,-472,-484,-488,488]]},{"type":"Polygon","arcs":[[-467,-489,-487,-485]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}},"arcs":[[[2644,5985],[19,-80],[-84,-99],[-197,-66],[-157,17],[90,116],[-58,113],[151,87],[84,52]],[[2492,6125],[93,5],[119,-69],[-60,-76]],[[6993,3931],[80,-1],[101,33],[-75,-47]],[[7099,3916],[12,-30]],[[7111,3886],[-114,-45],[-54,14],[-26,45]],[[6917,3900],[60,5]],[[6977,3905],[16,26]],[[6254,3922],[-14,-33],[-160,-9],[1,18],[-135,22],[20,47],[61,-38],[86,7],[83,-8],[-3,-20],[61,14]],[[4301,4544],[55,34],[67,-78],[-16,-147],[-50,7],[-46,-37],[-42,29],[-4,134],[-25,64],[61,-6]],[[4305,4736],[71,42],[19,-95],[-37,-86],[-50,23],[-26,75],[23,41]],[[4707,6234],[36,-56],[-67,-90],[-116,63],[-16,46],[163,37]],[[2865,6505],[134,9],[-119,-120],[114,15],[121,0],[-29,-91],[-100,-99],[115,-7]],[[3101,6212],[108,-143]],[[3209,6069],[76,-18],[69,-127],[31,-43],[135,-22],[-14,-71],[-56,-32],[44,-58],[-100,-58],[-148,1],[-190,-30],[-51,21],[-74,-52],[-103,13],[-78,-42],[-59,22],[163,116],[100,24]],[[2954,5713],[-175,19]],[[2779,5732],[-31,44],[116,35],[-61,60],[21,72],[165,-10],[17,65]],[[3006,5998],[-76,70]],[[2930,6068],[-135,19],[-27,30],[41,50],[-37,31],[-60,-53],[-6,107],[-56,57],[40,115],[86,90],[89,-9]],[[1721,7383],[-26,-72],[126,-75],[-144,-85],[-321,-76],[-96,-21],[-146,17],[-310,35],[109,49],[-241,54],[196,22],[-4,33],[-234,25],[75,73],[169,16],[173,-75],[169,60],[140,-31],[181,59],[184,-8]],[[8315,8954],[217,20],[169,1],[23,-30],[64,27],[104,18],[165,-24],[-43,-17],[-149,-15],[-100,-8],[-15,-19],[-130,-18],[-121,26],[64,35],[-248,4]],[[9278,8194],[266,97],[-30,51],[248,58],[237,46]],[[9999,8308],[-169,-52],[-166,-109],[-174,-107],[23,-92],[212,-91],[-65,-10],[-363,15],[-30,49],[-201,30],[-16,60],[113,24],[-3,60],[220,95],[-102,14]],[[6378,8894],[-165,-60],[-322,-13],[-328,19],[-19,30],[-160,2],[-121,51],[343,31],[161,-26],[112,33],[281,-28],[218,-39]],[[6080,8650],[-248,-46],[-196,26],[76,29],[-67,35],[230,22],[45,-41],[160,-25]],[[5015,8852],[43,38],[163,4],[140,-39],[366,-83],[-280,-44],[-62,-81],[-97,-21],[-53,-92],[-134,-5],[-239,68],[101,39],[-167,33],[-216,93],[-87,87],[303,40],[61,-39],[158,2]],[[4973,4238],[84,9],[-40,-87],[17,-34],[-23,-58],[-85,42],[-57,12],[-155,57],[16,57],[130,-10],[113,12]],[[7504,4961],[126,-41],[142,-94]],[[1527,2122],[-14,55],[12,55],[-29,53],[-59,48],[5,47]],[[1442,2380],[5,52],[43,30]],[[1490,2462],[36,58],[-7,37],[38,79],[62,70],[38,18],[29,65],[3,59],[40,69],[74,40],[70,114],[58,44],[103,12],[88,76],[56,30],[92,93],[-27,138],[42,95],[15,59],[71,75],[112,51],[82,46],[74,115],[35,68],[82,-1],[67,-47],[106,8],[115,-25],[48,-1],[107,61],[120,19],[70,46],[107,34],[188,20],[184,9],[56,-17],[105,44],[118,1],[46,-26],[76,7],[121,45],[77,-14],[-3,-56],[94,41],[8,-21],[-55,-55],[-1,-51],[38,-28],[-14,-96],[-73,-56],[21,-60],[57,-2],[28,-53],[42,-17],[131,-39],[47,10],[92,-19],[148,-49],[52,-99],[100,-22],[156,-46],[119,-55],[54,28],[53,52],[-26,85],[35,54],[80,52],[76,15],[151,-23],[38,-50],[41,0],[35,-19],[111,-13],[27,-37],[148,2],[107,-29],[110,-33],[51,-17],[86,35],[46,32],[98,9],[79,-14],[30,-55],[26,36],[89,-26],[86,-7],[55,28],[32,37],[-7,6],[29,52],[23,84],[15,28],[4,1],[39,91],[55,78],[2,4],[-10,85],[27,46],[-41,50],[42,42],[-67,-10],[-93,26],[-77,-64],[-168,-12],[-90,59],[-120,4],[-26,-46],[-76,-13],[-108,59],[-121,-2],[-66,110],[-81,62],[54,86],[-70,53],[123,107],[171,4],[47,85],[211,-15],[134,72],[129,31],[184,3],[194,-79],[159,-43],[130,18],[95,-10],[132,58],[16,47],[-28,76],[-64,41],[-61,13],[-41,34]],[[7504,4961],[-96,66]],[[7408,5027],[80,17],[93,93]],[[7581,5137],[-62,44]],[[7519,5181],[163,46]],[[7682,5227],[-3,24],[-99,-18]],[[7580,5233],[-89,-9],[-74,-36]],[[7417,5188],[-104,-6]],[[7313,5182],[-96,-41]],[[7217,5141],[7,-69]],[[7224,5072],[54,-27],[113,7]],[[7391,5052],[-21,-40]],[[7370,5012],[-122,-19],[-151,-64],[-61,22]],[[7036,4951],[24,52]],[[7060,5003],[-121,33],[19,21],[107,37]],[[7065,5094],[-33,26]],[[7032,5120],[-172,28],[-8,41],[-103,-14],[-41,-61],[-86,-82]],[[6622,5032],[3,-29],[-54,-23],[-34,10],[-31,-134]],[[6506,4856],[-58,-46],[-40,-80]],[[6408,4730],[35,-63]],[[6443,4667],[14,-43],[97,-36],[-21,-27],[-132,-6],[-47,-34],[-93,-60],[-35,52],[2,23]],[[6228,4536],[-68,3]],[[6160,4539],[-58,10]],[[6102,4549],[-134,-29]],[[5968,4520],[77,-62],[-57,-18],[-62,0],[-58,57],[-21,-24],[25,-67]],[[5872,4406],[55,-52]],[[5927,4354],[-42,-24]],[[5885,4330],[62,-52]],[[5947,4278],[55,-32],[2,-63],[-103,30],[33,-57],[-71,-11],[42,-98]],[[5905,4047],[-73,-2]],[[5832,4045],[-91,48],[-42,89],[-20,74],[-43,51],[-57,64],[-7,31]],[[5572,4402],[-19,8],[-2,25],[-62,37],[-10,53],[10,76],[15,34],[-19,18]],[[5485,4653],[-23,8]],[[5462,4661],[-31,36]],[[5431,4697],[-48,23]],[[5383,4720],[-105,41],[-64,40],[-102,33],[-93,81]],[[5019,4915],[22,9]],[[5041,4924],[-50,46]],[[4991,4970],[-2,38]],[[4989,5008],[-72,17]],[[4917,5025],[-34,-47]],[[4883,4978],[-33,37],[3,38],[4,2]],[[4857,5055],[24,10]],[[4881,5065],[-88,16]],[[4793,5081],[-90,-39]],[[4703,5042],[6,-55]],[[4709,4987],[-14,-32]],[[4695,4955],[37,-56]],[[4732,4899],[104,-56]],[[4836,4843],[56,-92]],[[4892,4751],[123,-90],[87,1],[27,-25]],[[5129,4637],[-31,-22]],[[5098,4615],[100,-40]],[[5198,4575],[81,-34]],[[5279,4541],[96,-57],[11,-21],[-21,-40],[-61,52],[-97,18]],[[5207,4493],[-47,-72]],[[5160,4421],[81,-41]],[[5241,4380],[-13,-58],[-47,-6]],[[5181,4316],[-59,-96]],[[5122,4220],[-46,-8]],[[5076,4212],[0,34]],[[5076,4246],[23,59],[24,24]],[[5123,4329],[-44,64]],[[5079,4393],[-34,56]],[[5045,4449],[-46,14]],[[4999,4463],[-32,48],[-72,20],[-48,45],[-82,7]],[[4765,4583],[-87,50]],[[4678,4633],[-102,73]],[[4576,4706],[-75,64],[-35,110],[-55,12]],[[4411,4892],[-90,37]],[[4321,4929],[-52,-15]],[[4269,4914],[-64,-51]],[[4205,4863],[-46,-9]],[[4159,4854],[-101,-62],[-219,30],[-162,-36],[-12,-67]],[[3665,4719],[6,-65],[-106,-74],[-142,-23],[-10,-38]],[[3413,4519],[-68,-61]],[[3345,4458],[-43,-91],[43,-63]],[[3345,4304],[-64,-50]],[[3281,4254],[-24,-72]],[[3257,4182],[-84,-22]],[[3173,4160],[-78,-86],[-141,-1]],[[2954,4073],[-106,2]],[[2848,4075],[-70,-39]],[[2778,4036],[-42,-42],[-55,9]],[[2681,4003],[-41,37]],[[2640,4040],[-31,64]],[[2609,4104],[-104,18]],[[2505,4122],[-45,-29],[-58,15],[-58,-12]],[[2344,4096],[17,87]],[[2361,4183],[-10,68]],[[2351,4251],[-50,11],[-26,42],[8,72]],[[2283,4376],[45,41]],[[2328,4417],[8,45]],[[2336,4462],[23,67]],[[2359,4529],[-3,47],[-22,39],[-5,38]],[[2329,4653],[6,79],[-46,48],[158,80]],[[2447,4860],[136,-20]],[[2583,4840],[149,1]],[[2732,4841],[118,-19]],[[2850,4822],[92,6]],[[2942,4828],[180,-4]],[[3122,4824],[57,67]],[[3179,4891],[21,221]],[[3200,5112],[-114,117]],[[3086,5229],[-82,56],[-170,43]],[[2834,5328],[-11,81]],[[2823,5409],[144,24]],[[2967,5433],[186,-29]],[[3153,5404],[-35,126]],[[3118,5530],[105,-48],[259,87]],[[3482,5569],[33,91]],[[3515,5660],[97,23]],[[3612,5683],[89,22]],[[3701,5705],[58,30]],[[3759,5735],[97,163],[152,47]],[[4008,5945],[92,-3]],[[4100,5942],[22,23],[93,6],[20,-24],[76,55]],[[4311,6002],[-26,41]],[[4285,6043],[-5,63]],[[4280,6106],[-45,62]],[[4235,6168],[-3,114]],[[4232,6282],[18,30],[32,33],[98,7]],[[4380,6352],[39,30]],[[4419,6382],[89,32]],[[4508,6414],[-3,-57]],[[4505,6357],[-33,-37]],[[4472,6320],[13,-31],[60,-16],[-27,-42],[-33,12],[-80,-80]],[[4405,6163],[30,-54]],[[4435,6109],[2,-43]],[[4437,6066],[113,-26]],[[4550,6040],[-2,-40]],[[4548,6000],[113,21]],[[4661,6021],[63,31]],[[4724,6052],[125,-44],[53,-36]],[[4902,5972],[76,33],[173,51],[140,38],[111,-19],[8,-27],[107,-1]],[[5517,6047],[26,49],[153,36]],[[5696,6132],[-24,93]],[[5672,6225],[4,84]],[[5676,6309],[55,69]],[[5731,6378],[104,38],[89,-83],[89,3]],[[6013,6336],[21,85]],[[6034,6421],[13,65],[-41,-14]],[[6006,6472],[-70,40]],[[5936,6512],[-10,64],[141,31]],[[6067,6607],[140,16]],[[6207,6623],[120,-19],[115,4]],[[6442,6608],[126,61],[-116,53]],[[6452,6722],[-202,-9],[-195,-41]],[[6055,6672],[-181,-23]],[[5874,6649],[-64,61],[-108,36],[25,109],[-54,101]],[[5673,6956],[53,64]],[[5726,7020],[100,70]],[[5826,7090],[255,121]],[[6081,7211],[74,23]],[[6155,7234],[-12,47],[-154,52]],[[5989,7333],[-191,-31]],[[5798,7302],[-108,-78],[17,-68],[-177,-89],[-214,-96],[-81,-156],[79,-78]],[[5314,6737],[106,-62]],[[5420,6675],[-102,-125]],[[5318,6550],[-115,-26]],[[5203,6524],[-43,-187]],[[5160,6337],[-63,-104],[-135,11],[-62,-88],[-129,-5],[-35,105],[-93,126]],[[4643,6382],[-85,157]],[[4558,6539],[-74,68]],[[4484,6607],[-220,-128]],[[4264,6479],[-148,-26]],[[4116,6453],[-154,56]],[[3962,6509],[-39,120],[-35,256],[102,71],[293,94],[220,114],[203,155]],[[4706,7319],[267,215]],[[4973,7534],[186,83],[305,140],[244,48],[183,-6]],[[5891,7799],[169,92]],[[6060,7891],[203,-4],[199,22],[348,-82],[-143,-29],[121,-70]],[[6788,7728],[115,39]],[[6903,7767],[182,-68]],[[7085,7699],[305,-26],[419,-126]],[[7809,7547],[86,-53],[7,-73]],[[7902,7421],[-123,-59]],[[7779,7362],[-182,-29]],[[7597,7333],[-496,84]],[[7101,7417],[-81,-14]],[[7020,7403],[181,-81]],[[7201,7322],[7,-52],[7,-114]],[[7215,7156],[143,-33],[87,-29],[14,54]],[[7459,7148],[-66,47],[70,42]],[[7463,7237],[269,-69],[93,27],[-74,82],[259,109],[102,-7],[104,-39],[65,77]],[[8281,7417],[-93,66]],[[8188,7483],[53,68],[-80,67]],[[8161,7618],[310,-35]],[[8471,7583],[64,-63]],[[8535,7520],[-141,-13],[1,-62],[87,-38]],[[8482,7407],[172,24]],[[8654,7431],[27,71]],[[8681,7502],[620,148]],[[9301,7650],[84,-5]],[[9385,7645],[-110,-68]],[[9275,7577],[141,-13],[77,40]],[[9493,7604],[208,3],[165,46]],[[9866,7653],[126,-67]],[[9992,7586],[7,4]],[[9999,2813],[-43,7],[-121,25],[-125,15],[-48,136],[-53,20],[-85,-20],[-112,-54],[-136,37],[-112,85],[-107,32],[-74,105],[-82,148],[-60,-18],[-71,37],[-41,-43],[-66,5],[23,-49],[-10,-25],[36,-84],[44,-96],[54,-25],[19,-39],[76,-47],[7,-46],[-11,-37],[14,-37],[32,-31],[14,-37],[17,-27],[-7,81],[30,58],[30,12],[34,-34],[2,-66],[-25,-65],[21,-42],[20,5],[4,-30],[87,17],[92,-3],[67,-3],[76,75],[83,71],[70,69],[33,38],[14,-10],[-11,-46],[-14,-20],[15,-88]],[[9599,2769],[49,-76],[63,-40]],[[9711,2653],[81,-15],[66,-20],[50,-64],[30,-36],[40,-15],[-1,-24],[-40,-67],[-18,-31],[-47,-35],[-41,-76],[-50,5],[-23,-26],[-18,-56],[13,-75],[-10,-13],[-51,0],[-70,-41],[-10,-55],[-26,-23],[-69,1]],[[9517,1987],[-44,-28],[1,-45]],[[9474,1914],[-54,-31],[-61,11],[-74,-38],[-52,-6],[-80,-30]],[[9153,1820],[-21,-49],[-3,-38]],[[9129,1733],[-111,-47],[-177,-52],[-100,-78],[-49,-6],[-33,6],[-65,-46],[-71,-21],[-93,-6],[-28,-6],[-24,-30],[-29,-8],[-18,-28],[-55,2],[-35,-15],[-77,6],[-29,65],[3,61],[-18,32],[-22,83],[-32,45],[23,6],[-12,50],[14,22],[-5,48],[-15,48],[-33,33],[-9,44],[-57,40],[-59,93],[-32,91],[-76,76],[-50,19],[-74,106],[-12,77],[4,66],[-63,123],[-53,43],[-60,23],[-36,64],[6,25]],[[7467,2787],[-31,57],[-32,25]],[[7404,2869],[-44,83],[-67,90],[-57,76],[-55,-1],[17,61],[5,39],[14,45],[-4,16],[-31,-45],[-24,-84],[-30,-58],[-26,-19],[-37,36]],[[7065,3108],[-51,49],[-79,159]],[[6935,3316],[-11,-10],[46,-117],[68,-112],[84,-173],[41,-60],[36,-63],[99,-123],[-22,-19],[4,-72],[129,-100],[20,-23],[36,-109],[-25,-20],[16,-114],[41,-133],[43,-27],[60,-41],[65,-129],[30,-102],[61,-54],[152,-105],[62,-63],[60,-64],[35,-39],[54,-33],[27,-34],[-4,-47],[-63,-26],[47,-31],[37,-20],[21,-46]],[[8184,1207],[50,-47],[56,0]],[[8290,1160],[104,29],[121,13],[98,34],[55,8],[40,20],[63,4],[36,2],[51,16],[59,12],[52,38],[42,0],[3,-31],[-10,-64],[0,-59],[-23,-40],[-32,-120],[-53,-124],[-69,-142],[-95,-163],[-95,-124],[-131,-152],[-111,-90],[-166,-110],[-104,-85],[-29,-32]],[[4355,0],[10,30],[23,82],[-21,17],[38,125],[16,87],[-43,74],[-51,19],[-22,50],[-29,15],[1,31],[-115,-40],[-42,6],[-43,-25],[-89,3],[-59,69],[-37,80],[-78,74],[-84,-2],[-98,0],[-92,-13],[-89,-23],[-174,-65],[-62,-38],[-100,-33],[-99,32],[-51,-1],[-77,21],[-72,-1],[-131,-19],[-77,-32],[-110,-41],[-22,3],[-29,-1],[-114,53],[-101,84],[-95,61],[-75,72],[-30,8],[-80,45],[-58,59],[-19,41],[-14,82],[-48,66],[-44,43],[-28,15],[-28,22],[-12,49],[-17,24],[-32,19],[-59,46],[-47,7],[-26,32],[1,17],[-34,23],[-7,24],[-18,85],[14,49],[-46,87],[-55,39],[49,22],[54,78],[26,57],[-10,59],[31,55],[14,105],[-12,110]],[[8519,4956],[111,115],[108,18],[50,66]],[[8788,5155],[104,23],[128,49],[95,-27],[111,5],[20,-68],[-20,-109],[-97,17],[-95,-18],[-4,-81],[-108,10],[4,-36],[61,-28],[50,-100],[129,-38],[21,-38],[-27,-47],[6,-27],[35,-72],[11,82],[89,28],[32,-64],[81,-66],[-97,-36],[-105,27],[-25,-93],[74,-7],[-28,-76],[86,-37],[-16,-117],[21,-78],[-11,-26],[-173,-30],[-158,20],[-78,55],[-105,23],[-35,82],[-3,55],[41,26],[19,39],[19,87],[92,9],[-35,29],[-51,6],[-57,78],[-58,59]],[[8731,4645],[-122,131],[11,75],[-101,105]],[[0,9284],[322,-5],[695,-88],[-205,-43],[-425,-5],[-387,-7]],[[0,9117],[238,8],[335,-38],[215,34],[93,-40],[-122,-65],[283,41],[539,43],[333,-21],[63,-48],[-453,-79],[-63,-25],[-355,-19],[257,-6],[-130,-81],[-89,-72],[3,-123],[134,-73],[-174,-4],[-183,-36],[205,-59],[27,-94],[-119,-10],[144,-96],[-247,-8],[129,-45],[-37,-39],[-156,-17],[-155,-1],[139,-75],[2,-49],[-220,46],[-57,-30],[149,-28],[146,-68],[42,-89],[-198,-22],[-86,43],[-137,64],[38,-75],[-129,-59],[293,-5],[153,-6],[-298,-96],[-302,-88],[-250,-29]],[[4246,5338],[37,-7],[96,17],[145,57],[107,16],[39,26],[14,-3],[25,-5],[13,-3],[17,-6],[38,-13],[37,-13],[17,-7],[135,-38],[33,-3],[71,18],[34,-2],[104,-20],[68,-34]],[[5276,5318],[41,-12],[93,14]],[[5410,5320],[24,-9],[13,-15],[-11,-55],[3,-44],[-8,-55],[-13,-28],[2,-7],[3,-7],[8,-11],[14,-20],[7,-12]],[[5452,5057],[9,-8],[17,-15],[9,-7],[14,-2],[29,-4],[29,-5],[14,-2],[42,-37],[25,-6],[66,9],[23,-6]],[[5729,4974],[64,-32],[35,24],[28,-13],[-26,-19],[20,-20]],[[5850,4914],[32,-45],[43,8],[86,-17],[163,-6],[55,28],[131,26]],[[6360,4908],[4,-3],[2,-2],[9,4],[24,8],[25,7],[12,3],[14,9],[-1,9],[-19,28],[12,53],[7,7],[12,12],[8,9],[13,-4],[24,-9],[13,-6]],[[6519,5033],[53,18],[50,-19]],[[3006,5998],[-75,68],[-1,2]],[[9999,8446],[0,-138]],[[7408,5027],[81,17],[92,93]],[[7519,5181],[106,30],[57,16]],[[7417,5188],[-24,-1],[-80,-5]],[[7313,5182],[-41,-17],[-55,-24]],[[7217,5141],[3,-24],[3,-36]],[[7223,5081],[1,-9]],[[7391,5052],[-11,-21],[-10,-19]],[[7036,4951],[7,17],[17,35]],[[6408,4730],[6,-11],[29,-52]],[[6443,4667],[-95,15],[-113,-35]],[[6235,4647],[54,-29],[-35,-70],[-26,-12]],[[6160,4539],[-39,7],[-19,3]],[[6102,4549],[-14,-3],[-120,-26]],[[5872,4406],[17,-16],[38,-36]],[[5927,4354],[-38,-22],[-4,-2]],[[5885,4330],[12,-10],[50,-42]],[[5905,4047],[-14,-1],[-59,-1]],[[5462,4661],[-15,17],[-16,19]],[[5431,4697],[-12,6],[-36,17]],[[5019,4915],[13,5],[9,4]],[[5041,4924],[-21,19],[-29,27]],[[4991,4970],[-1,8],[-1,30]],[[4917,5025],[-29,-41],[-5,-6]],[[4857,5055],[6,3],[18,7]],[[4793,5081],[-35,-15],[-55,-24]],[[4709,4987],[-12,-28],[-2,-4]],[[4732,4899],[95,-52],[9,-4]],[[4836,4843],[0,-1],[56,-91]],[[5129,4637],[-9,-6],[-22,-16]],[[5098,4615],[21,-8],[79,-32]],[[5198,4575],[70,-29],[11,-5]],[[5207,4493],[-18,-28],[-29,-44]],[[5160,4421],[72,-37],[9,-4]],[[5181,4316],[-26,-43],[-33,-53]],[[5122,4220],[-20,-3],[-26,-5]],[[5076,4212],[0,1],[0,33]],[[5123,4329],[-18,26],[-26,38]],[[5045,4449],[-12,4],[-34,10]],[[4765,4583],[-83,48],[-4,2]],[[4678,4633],[-1,1],[-101,72]],[[4411,4892],[-35,15],[-55,22]],[[4321,4929],[-27,-8],[-25,-7]],[[4269,4914],[-32,-26],[-32,-25]],[[3413,4519],[-7,-6],[-61,-55]],[[3345,4304],[-9,-8],[-55,-42]],[[3281,4254],[-18,-53],[-6,-19]],[[3257,4182],[-61,-16],[-23,-6]],[[2954,4073],[-25,0],[-81,2]],[[2848,4075],[-53,-30],[-17,-9]],[[2681,4003],[-40,37],[-1,0]],[[2609,4104],[-28,5],[-76,13]],[[2344,4096],[11,56],[6,31]],[[2361,4183],[-6,40],[-4,28]],[[2283,4376],[38,35],[7,6]],[[2336,4462],[20,59],[3,8]],[[2447,4860],[103,-15],[33,-5]],[[2583,4840],[73,1],[76,0]],[[2850,4822],[58,4],[34,2]],[[2942,4828],[37,-1],[143,-3]],[[3179,4891],[0,2],[21,219]],[[3200,5112],[-8,9],[-106,108]],[[2834,5328],[-1,7],[-10,74]],[[2967,5433],[43,-7],[143,-22]],[[3482,5569],[23,63],[10,28]],[[3701,5705],[22,11],[36,19]],[[3759,5735],[97,164],[152,46]],[[4311,6002],[-21,34],[-5,7]],[[4285,6043],[-1,17],[-4,46]],[[4280,6106],[-39,54],[-6,8]],[[4235,6168],[0,10],[-3,104]],[[4380,6352],[6,4],[33,26]],[[4419,6382],[58,21],[31,11]],[[4508,6414],[-2,-38],[-1,-19]],[[4505,6357],[-23,-26],[-10,-11]],[[4405,6163],[24,-44],[6,-10]],[[4435,6109],[1,-9],[1,-34]],[[4550,6040],[-1,-19],[-1,-21]],[[4548,6000],[62,12],[51,9]],[[4661,6021],[14,7],[49,24]],[[5676,6309],[54,69],[1,0]],[[6013,6336],[1,5],[20,80]],[[6006,6472],[-68,39],[-2,1]],[[6067,6607],[61,7],[79,9]],[[6055,6672],[-20,-2],[-161,-21]],[[5673,6956],[18,22],[35,42]],[[5826,7090],[142,67],[113,54]],[[6081,7211],[32,10],[42,13]],[[5989,7333],[-58,-9],[-133,-22]],[[5314,6737],[103,-60],[3,-2]],[[5420,6675],[-8,-10],[-94,-115]],[[5203,6524],[-39,-171],[-4,-16]],[[4643,6382],[-51,94],[-34,63]],[[4558,6539],[-30,27],[-44,41]],[[4484,6607],[-82,-48],[-138,-80]],[[4264,6479],[-72,-13],[-76,-13]],[[4116,6453],[-90,33],[-64,23]],[[4706,7319],[138,111],[129,104]],[[5891,7799],[76,42],[93,50]],[[6903,7767],[75,-28],[107,-40]],[[7779,7362],[-172,-28],[-10,-1]],[[7597,7333],[-124,21],[-372,63]],[[7101,7417],[-60,-10],[-21,-4]],[[7020,7403],[65,-29],[116,-52]],[[7201,7322],[0,-1]],[[7201,7321],[14,-165]],[[8281,7417],[-24,17],[-69,49]],[[8188,7483],[45,55],[9,11]],[[8242,7549],[-11,10],[-70,59]],[[8471,7583],[41,-40],[23,-23]],[[8482,7407],[96,13],[76,11]],[[8654,7431],[13,35],[14,36]],[[8681,7502],[232,53],[388,95]],[[9385,7645],[-77,-48],[-33,-20]],[[9275,7577],[13,-1],[125,-10]],[[9413,7566],[80,38]],[[9992,7586],[1,0]],[[9993,7586],[6,4]],[[9999,7590],[0,-1815],[-4,-2],[4,-2],[0,-123],[-7,1],[-33,-33],[-142,57],[-176,-2],[-118,-47],[-131,45],[-245,77],[-174,-3],[-229,-121],[-14,-81],[-114,65],[-89,-123],[33,-22],[-65,-84],[95,-76],[82,3],[71,-74],[-11,-57],[56,-18]],[[8731,4645],[-67,-45],[-19,-28],[-49,8],[-76,67],[-31,4],[-70,25],[-34,46],[-104,23],[-67,-17],[-20,21],[-151,53],[-164,18],[-93,19],[-14,-13]],[[6977,3905],[-7,-1],[-53,-4]],[[7111,3886],[-4,9],[-8,21]],[[9999,8308],[0,-718]],[[9993,7586],[-127,67]],[[9413,7566],[-138,11]],[[8161,7618],[81,-69]],[[8242,7549],[-54,-66]],[[7463,7237],[-73,-40],[69,-49]],[[7201,7321],[-181,82]],[[7902,7421],[-7,74],[-86,52]],[[3482,5569],[-259,-86],[-105,47]],[[1490,2462],[-43,-31],[-5,-51]],[[4355,0],[-4355,0],[0,7578]],[[0,9117],[0,19]],[[0,9284],[0,715],[9999,-1553]],[[8290,1160],[-55,1],[-51,46]],[[6935,3316],[80,-159],[50,-49]],[[7404,2869],[32,-24],[31,-58]],[[9129,1733],[2,38],[22,49]],[[9474,1914],[0,45],[43,28]],[[9711,2653],[-62,40],[-50,76]],[[9999,2813],[0,-2813],[-1903,0]],[[6648,6802],[113,61],[186,-73],[46,-53],[-14,-17],[-24,5],[-2,-36],[-98,3],[-21,-35],[-45,1],[0,24],[-64,54],[-3,24],[-74,42]],[[4886,6578],[1,-14],[-8,-20],[-70,-33],[-51,-11],[-41,0],[9,30],[-2,12],[20,8],[36,4],[19,15],[44,23],[43,-14]],[[7301,6919],[38,-62],[37,-49],[-31,-29],[-85,-8],[-53,19],[38,0],[41,-3],[-47,34],[-33,17],[-42,35],[-24,40],[3,8],[41,-7],[-4,24],[23,-17],[27,-17],[16,6],[27,7],[-36,25],[-58,31],[42,-2],[26,-8],[54,-44]],[[7580,5233],[3,49],[57,31],[108,9],[17,37],[-24,61],[45,58],[-1,33],[-164,36],[-65,-1],[-69,52],[-85,-18],[-141,39],[2,22],[-39,48],[-89,6],[-9,34],[28,23],[-71,62],[-115,-10],[-34,5],[-28,-25],[-42,4]],[[6864,5788],[-27,72],[-26,37],[21,10],[90,-4],[43,24],[-32,30],[-75,20],[7,20],[-45,20],[-70,73],[24,30],[-11,52],[-109,26],[-58,-13],[-16,28],[-117,27]],[[6463,6240],[-35,66],[-10,54],[-53,25]],[[6365,6385],[47,36],[-33,103],[79,64],[-16,20]],[[6452,6722],[237,142],[104,64],[41,57],[-164,76],[45,72],[-100,83],[75,95],[-129,127],[102,83],[-170,74],[17,78]],[[6510,7673],[89,10],[189,45]],[[5858,6036],[-204,-2],[-137,13]],[[5696,6132],[116,-20],[49,-17],[-11,-31],[8,-28]],[[7048,5107],[29,28],[79,-24],[36,-4],[14,-22],[17,-4]],[[7065,5094],[-17,13]],[[6510,7673],[47,78],[-143,44],[-172,-37],[-55,-82],[-106,-49],[-119,27],[-145,-6],[-124,59],[-66,-29]],[[5627,7678],[-69,-5],[-16,-73],[-210,18],[-29,-62],[-107,0],[-73,-79],[-111,-123],[-173,-156],[41,-38],[-39,-44],[-110,2],[-73,-104],[7,-148],[71,-56],[-36,-131],[-93,-76],[-49,-64]],[[4020,5495],[53,-29],[160,-20],[-56,-76],[-14,-79]],[[4163,5291],[-31,-19],[-51,10],[4,-28],[-81,-63],[-2,-50],[53,17],[38,-48]],[[4093,5110],[-4,-32],[32,-41],[-38,-34],[29,-86],[60,-14],[-13,-49]],[[3665,4719],[-129,-15],[-125,51],[-40,-24],[-205,50],[-44,43]],[[3612,5683],[16,-39],[52,-2],[52,-45],[77,-52],[57,8],[97,-50]],[[3963,5503],[25,-10],[32,2]],[[5627,7678],[148,-55],[173,-75],[3,-171],[38,-44]],[[6864,5788],[-95,-6],[-34,-24],[-7,-56],[-45,10],[-100,-5],[-29,26],[-42,-19],[-41,16],[-88,2],[-124,27],[-112,8],[-86,-2],[-61,-30],[-53,-5]],[[5947,5730],[-2,50],[-35,51],[67,23],[1,44],[-31,43],[-5,49]],[[5942,5990],[107,-1],[121,42],[26,62],[91,36],[-10,50]],[[6277,6179],[67,19],[119,42]],[[7217,5141],[6,-60]],[[7048,5107],[-16,13]],[[6519,5033],[-49,21]],[[6470,5054],[28,12],[19,38],[31,35],[-8,20],[23,9],[11,-15],[65,-4],[30,9],[-21,11],[8,17],[-39,28],[-16,46],[-40,18],[8,38],[-51,30],[-45,4],[-82,35],[-74,-11],[-27,-17]],[[6290,5357],[-46,0],[-28,-26],[-82,-10],[-38,-17],[-52,27],[-71,0],[-69,13],[-48,-24]],[[5856,5320],[-8,29],[-61,31]],[[5787,5380],[21,45],[31,28]],[[5839,5453],[24,-6],[-28,50],[101,92],[55,13],[12,31],[-56,97]],[[5839,5453],[-105,43],[-80,-16],[-53,12],[-65,-24],[-56,39],[-46,-15],[-6,7]],[[5428,5499],[-52,55],[-82,6],[-11,35],[-76,13],[-16,-29],[-61,23],[7,31],[-83,9],[-53,36]],[[5001,5678],[-45,71],[9,38],[-28,60],[-40,39],[31,30],[-26,56]],[[5858,6036],[57,-12],[27,-34]],[[5219,5347],[-8,-46],[-63,0],[22,-24],[-37,-72]],[[5133,5205],[-21,-18],[-97,-3],[-56,-25],[-92,8]],[[4867,5167],[-159,29],[-25,39],[-110,-20],[-13,-21],[-67,16]],[[4493,5210],[-57,3],[-50,20],[17,27],[-4,20]],[[4399,5280],[33,6],[57,-31],[15,30],[98,-5],[80,20],[53,-4],[35,-22],[10,19],[-16,72],[40,14],[40,51]],[[4844,5430],[82,-36],[63,46],[39,8],[86,-34],[52,6],[51,-21]],[[5217,5399],[-9,-14],[11,-38]],[[5856,5320],[-68,-24],[-52,-75],[-67,-75],[-90,-21]],[[5579,5125],[-69,5],[-85,-30]],[[5425,5100],[-42,-16],[-91,21],[-83,48],[-36,14]],[[5173,5167],[-21,37],[-19,1]],[[5219,5347],[57,-29]],[[5410,5320],[9,22],[44,3],[54,17],[12,-7],[53,14],[26,26],[36,7],[119,-34],[24,12]],[[6470,5054],[-20,50],[12,48],[-4,49],[-64,66],[-35,47],[-35,32],[-34,11]],[[6506,4856],[-66,12],[-80,40]],[[5729,4974],[-9,46],[-68,26],[-12,35],[-61,44]],[[5672,6225],[128,34],[186,-7],[109,11],[16,-23],[59,-7],[107,-54]],[[6034,6421],[95,19],[48,-13],[96,-41],[92,-1]],[[5001,5678],[-49,-12],[-29,13],[-28,-21],[-80,-22],[-41,-27],[-81,-24],[19,-33],[12,-47],[57,-27],[63,-48]],[[4399,5280],[-119,34],[-23,-24],[-94,1]],[[4020,5495],[7,49],[-23,25]],[[4004,5569],[13,75]],[[4017,5644],[-19,117],[67,0],[28,42],[28,101],[-21,38]],[[4280,6106],[84,-14],[71,17]],[[6235,4647],[-2,-55],[-101,-11],[-78,39],[-89,-31],[-82,4]],[[5883,4593],[-8,73],[-56,36]],[[5819,4702],[19,15],[-12,14],[18,35],[43,35],[-54,48],[-10,40],[27,25]],[[5572,4402],[51,54],[7,36],[36,16],[2,30]],[[5668,4538],[73,9],[42,25],[61,-2],[18,19],[21,4]],[[5485,4653],[-7,35],[48,55],[7,-21],[30,10]],[[5563,4732],[24,-30],[26,-12],[8,-40]],[[5621,4650],[-15,-38],[16,-47],[46,-27]],[[5425,5100],[27,-43]],[[5452,5057],[35,-31],[-42,-42]],[[5445,4984],[-51,25],[-77,-2],[-95,18],[-52,-2],[-24,-23],[-40,25],[-23,-46],[54,-52],[24,-34],[51,-42],[43,-24],[42,-47],[98,-42]],[[5395,4738],[-12,-18]],[[4857,5055],[77,-4],[21,19],[37,-18],[44,-2],[-1,31],[39,11],[11,45],[88,30]],[[4493,5210],[-9,-46],[-49,-18],[-82,14],[-24,-45],[-53,-4],[-19,18],[-62,-38],[-54,-5],[-48,24]],[[3963,5503],[12,62],[29,4]],[[3701,5705],[82,-9],[103,23],[70,-49],[61,-26]],[[2329,4653],[41,28],[45,16],[28,-54],[65,0],[19,14],[65,-4],[31,-55],[-51,-31],[-2,-86],[-18,-16],[-4,-53],[-48,-9],[44,-67],[-30,-73],[38,-33],[-15,-30],[-41,-42],[9,-36]],[[2492,6125],[23,-59],[-23,-60],[68,2],[84,-23]],[[4867,5167],[-12,-55],[26,-47]],[[3101,6212],[9,-12],[99,-131]],[[2954,5713],[-1,1],[-174,18]],[[5217,5399],[16,25],[49,-2],[38,11],[3,11],[21,5],[8,25],[25,5],[17,20],[34,0]],[[5445,4984],[40,0],[-28,-49],[54,-42],[-17,-53],[-26,-5]],[[5468,4835],[-21,-10],[-36,-25],[-16,-62]],[[5621,4650],[14,-1],[5,23],[65,17],[25,4]],[[5730,4693],[38,7],[51,2]],[[5730,4693],[-4,9],[14,13],[12,27],[-16,-1],[-21,21],[-18,5],[-15,18],[-21,7],[-16,16],[-19,-7],[-16,-37],[-26,-8]],[[5584,4756],[9,10],[-43,23],[-36,12],[-16,15],[-30,19]],[[5584,4756],[-21,-24]]],"transform":{"scale":[0.009000900090009001,0.009000900090009001],"translate":[-30,0]},"bbox":[-30,0,60,90]} -------------------------------------------------------------------------------- /dist/africa_110m.json: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0,1,2,3,4]},{"type":"LineString","arcs":[5]},{"type":"LineString","arcs":[6]},{"type":"LineString","arcs":[7]},{"type":"LineString","arcs":[8]},{"type":"LineString","arcs":[9]},{"type":"LineString","arcs":[10]},{"type":"LineString","arcs":[11]},{"type":"LineString","arcs":[12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,-12,68,69,70,71,72,73,74]},{"type":"LineString","arcs":[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243]},{"type":"LineString","arcs":[244,245,246]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[6]]},{"type":"Polygon","arcs":[[252,253,254,86,255,256,89,257,258,91,92,93,259,95,260,97,261,99,100,101,102,262,263,105,264,107,265,109,266,111,267,113,268,115,269,117,270,119,271,272,122,273,274,125,275,127,276,129,277,131,132,278,279,280,136,281,138,282,140,283,284,143,285,286,146,287,288,149,289,290,291,153,292,293,156,294,158,295,296,161,297,298,299,165,300,301,168,302,303,171,304,305,306,175,307,308,309,179,310,311,182,312,184,313,314,315,188,316,317,191,318,319,320,321,196,322,323,324,325,326,327,202,203,328,205,206,329,208,330,210,211,212,213,331,332,333,216,334,218,219,335,221,336,337,338,339,340,227,341,229,342,231,232,233,234,343,344,237,345,239,240,346,242,347,348,13,349,15,350,351,18,352,353,21,354,23,355,25,356,27,357,29,358,359,360,361,34,362,363,37,364,365,366,367,42,368,369,45,370,47,371,49,372,373,374,52,375,376,55,377,378,58,59,379,61,62,380,64,381,66,382,383]]}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[244,384,246]]},{"type":"Polygon","arcs":[[-75,385,-73,386,-71,387,-69,11,-68,-67,-66,-65,-64,-63,-62,388,-59,-58,-57,-56,-55,-54,-53,389,390,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-36,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-334,391,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,392,393,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-301,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,394,-101,-100,-99,-98,-97,-96,-95,-94,-93,395,396,-90,-89,-256,-87,-86,-85,-84,-83,-82,397,-80,398,-78,399,-76,400,-10,401],[-7],[-11],[-6],[-5,402,-3,403,-1],[-8],[-9]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[404,405]]},{"type":"Polygon","arcs":[[406]]},{"type":"Polygon","arcs":[[407]]},{"type":"Polygon","arcs":[[408]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[247,248,249,250]},{"type":"LineString","arcs":[251]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"ct":[34.75,-6.26]},"id":"TZA","arcs":[[409,410,128,129,130,131,411,412,413,414,415,416,417,418]]},{"type":"Polygon","properties":{"ct":[-12.14,24.29]},"id":"ESH","arcs":[[419,420,14,421]]},{"type":"Polygon","properties":{"ct":[23.58,-2.85]},"id":"COD","arcs":[[-415,422,423,250,192,424,425,-249,426,427,428,429,430,431]]},{"type":"Polygon","properties":{"ct":[45.73,4.75]},"id":"SOM","arcs":[[432,433,434,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123]]},{"type":"Polygon","properties":{"ct":[37.79,0.6]},"id":"KEN","arcs":[[-411,-410,435,436,437,-433,124,125,126,127]]},{"type":"Polygon","properties":{"ct":[29.86,15.99]},"id":"SDN","arcs":[[438,439,440,441,93,442,443,444]]},{"type":"Polygon","properties":{"ct":[18.58,15.33]},"id":"TCD","arcs":[[-440,445,446,447,448]]},{"type":"Polygon","properties":{"ct":[25.12,-28.96]},"id":"ZAF","arcs":[[449,450,451,452,453,454,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170],[455]]},{"type":"Polygon","properties":{"ct":[28.17,-29.63]},"id":"LSO","arcs":[[-456]]},{"type":"Polygon","properties":{"ct":[29.79,-18.91]},"id":"ZWE","arcs":[[-452,456,457,458]]},{"type":"Polygon","properties":{"ct":[23.77,-22.1]},"id":"BWA","arcs":[[-451,459,460,-457]]},{"type":"Polygon","properties":{"ct":[17.16,-22.1]},"id":"NAM","arcs":[[-450,171,172,173,174,175,176,177,178,179,461,462,-460]]},{"type":"Polygon","properties":{"ct":[-14.51,14.35]},"id":"SEN","arcs":[[235,236,237,238,239,463,464,465,466,233,467]]},{"type":"Polygon","properties":{"ct":[-3.54,17.27]},"id":"MLI","arcs":[[-465,468,469,470,471,472,473]]},{"type":"Polygon","properties":{"ct":[-10.33,20.21]},"id":"MRT","arcs":[[-421,474,-469,-464,240,241,242,243,12,13]]},{"type":"Polygon","properties":{"ct":[2.34,9.65]},"id":"BEN","arcs":[[211,475,476,477,478]]},{"type":"Polygon","properties":{"ct":[9.32,17.35]},"id":"NER","arcs":[[-448,479,480,-478,481,-471,482,483]]},{"type":"Polygon","properties":{"ct":[8,9.55]},"id":"NGA","arcs":[[-479,-481,484,206,207,208,209,210]]},{"type":"Polygon","properties":{"ct":[12.61,5.66]},"id":"CMR","arcs":[[-447,485,486,487,488,203,204,205,-485,-480]]},{"type":"Polygon","properties":{"ct":[1,8.44]},"id":"TGO","arcs":[[-476,212,489,490]]},{"type":"Polygon","properties":{"ct":[-1.24,7.93]},"id":"GHA","arcs":[[-490,213,214,215,491,492]]},{"type":"Polygon","properties":{"ct":[-5.61,7.55]},"id":"CIV","arcs":[[-473,493,-492,216,217,218,494,495]]},{"type":"Polygon","properties":{"ct":[-11.06,10.45]},"id":"GIN","arcs":[[-466,-474,-496,496,497,227,228,229,230,231,498]]},{"type":"Polygon","properties":{"ct":[-15.11,12.02]},"id":"GNB","arcs":[[-467,-499,232]]},{"type":"Polygon","properties":{"ct":[-9.41,6.43]},"id":"LBR","arcs":[[-495,219,220,221,499,-497]]},{"type":"Polygon","properties":{"ct":[-11.8,8.53]},"id":"SLE","arcs":[[-498,-500,222,223,224,225,226]]},{"type":"Polygon","properties":{"ct":[-1.78,12.31]},"id":"BFA","arcs":[[-472,-482,-477,-491,-493,-494]]},{"type":"Polygon","properties":{"ct":[20.37,6.54]},"id":"CAF","arcs":[[-428,500,-486,-446,-439,501]]},{"type":"Polygon","properties":{"ct":[15.13,-0.84]},"id":"COG","arcs":[[-427,248,-426,502,194,503,-487,-501]]},{"type":"Polygon","properties":{"ct":[11.69,-0.65]},"id":"GAB","arcs":[[-488,-504,195,196,197,198,199,200,504]]},{"type":"Polygon","properties":{"ct":[10.37,1.65]},"id":"GNQ","arcs":[[-489,-505,201,202]]},{"type":"Polygon","properties":{"ct":[27.73,-13.4]},"id":"ZMB","arcs":[[-414,505,506,-458,-461,-463,507,-423]]},{"type":"Polygon","properties":{"ct":[34.19,-13.17]},"id":"MWI","arcs":[[-413,508,-506]]},{"type":"Polygon","properties":{"ct":[35.47,-17.23]},"id":"MOZ","arcs":[[-412,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,-455,509,-453,-459,-507,-509]]},{"type":"Polygon","properties":{"ct":[31.4,-26.49]},"id":"SWZ","arcs":[[-454,-510]]},{"type":"MultiPolygon","properties":{"ct":[17.5,-12.29]},"id":"AGO","arcs":[[[-425,193,-503]],[[-251,-424,-508,-462,180,181,182,183,184,185,186,187,188,189,190,191]]]},{"type":"Polygon","properties":{"ct":[29.91,-3.38]},"id":"BDI","arcs":[[-416,-432,510]]},{"type":"Polygon","properties":{"ct":[46.69,-19.36]},"id":"MDG","arcs":[[6]]},{"type":"Polygon","properties":{"ct":[-15.43,13.48]},"id":"GMB","arcs":[[-468,234]]},{"type":"Polygon","properties":{"ct":[9.53,34.17]},"id":"TUN","arcs":[[511,45,46,47,48,49,50,51,512]]},{"type":"Polygon","properties":{"ct":[2.6,28.19]},"id":"DZA","arcs":[[-420,513,34,35,36,37,38,39,40,41,42,43,44,-512,514,-483,-470,-475]]},{"type":"Polygon","properties":{"ct":[38.68,15.43]},"id":"ERI","arcs":[[-443,94,95,515,516]]},{"type":"Polygon","properties":{"ct":[-8.42,29.89]},"id":"MAR","arcs":[[-514,-422,15,16,17,18,19,517,21,22,23,24,25,26,27,28,29,30,31,32,33]]},{"type":"Polygon","properties":{"ct":[29.84,26.51]},"id":"EGY","arcs":[[-442,518,62,63,64,65,66,382,82,83,84,85,86,87,88,89,90,91,92]]},{"type":"Polygon","properties":{"ct":[17.97,27]},"id":"LBY","arcs":[[-441,-449,-484,-515,-513,52,53,54,55,56,57,58,59,60,61,-519]]},{"type":"Polygon","properties":{"ct":[39.55,8.65]},"id":"ETH","arcs":[[-434,-438,519,-444,-517,520,521]]},{"type":"Polygon","properties":{"ct":[42.5,11.77]},"id":"DJI","arcs":[[-516,96,97,98,99,522,-521]]},{"type":"Polygon","arcs":[[-435,-522,-523,100,101,102,103,104,105,106]]},{"type":"Polygon","properties":{"ct":[32.36,1.3]},"id":"UGA","arcs":[[-419,-418,523,-430,524,-436]]},{"type":"Polygon","properties":{"ct":[29.92,-2.01]},"id":"RWA","arcs":[[-417,-511,-431,-524]]},{"type":"Polygon","properties":{"ct":[30.2,7.29]},"id":"SSD","arcs":[[-429,-502,-445,-520,-437,-525]]}]},"subunits":{"type":"GeometryCollection","geometries":[]}},"arcs":[[[6993,8538],[80,-2],[101,30],[-75,-42]],[[7099,8524],[12,-27]],[[7111,8497],[-114,-41],[-54,13],[-26,40]],[[6917,8509],[60,5]],[[6977,8514],[16,24]],[[6254,8529],[-14,-29],[-160,-9],[1,17],[-135,19],[20,43],[61,-34],[86,6],[83,-7],[-3,-18],[61,12]],[[8837,3753],[30,-43],[27,-66],[18,-120],[29,-47],[-11,-48],[-20,-29],[-37,58],[-21,-29],[21,-74],[-10,-43],[-31,-23],[-7,-85],[-43,-116],[-55,-138],[-69,-189],[-42,-139],[-51,-116],[-90,-24],[-97,-42],[-64,25],[-88,36],[-31,53],[-7,88],[-39,80],[-10,72],[19,72],[52,17],[0,34],[53,75],[10,64],[-26,47],[-21,64],[-9,92],[39,56],[15,63],[55,4],[62,20],[41,18],[49,2],[64,57],[91,61],[33,51],[-15,42],[47,-12],[62,70],[2,60],[37,45],[38,-43]],[[4301,9089],[55,31],[67,-71],[-16,-132],[-50,6],[-46,-33],[-42,26],[-4,121],[-25,57],[61,-5]],[[4305,9262],[71,38],[19,-86],[-37,-77],[-50,20],[-26,68],[23,37]],[[2758,9999],[-8,-4],[-12,4]],[[4973,8814],[84,8],[-40,-78],[17,-31],[-23,-52],[-85,38],[-57,11],[-155,50],[16,52],[130,-9],[113,11]],[[7504,9465],[126,-38],[142,-84]],[[1527,6909],[-14,50]],[[1513,6959],[12,50],[-29,47],[-59,43]],[[1437,7099],[5,43]],[[1442,7142],[5,46]],[[1447,7188],[43,27]],[[1490,7215],[36,52]],[[1526,7267],[-7,34],[38,71],[62,63],[38,16],[29,59],[3,53],[40,62],[74,36]],[[1803,7661],[70,102]],[[1873,7763],[58,40]],[[1931,7803],[103,11],[88,68],[56,27],[92,84],[-27,124]],[[2243,8117],[42,86]],[[2285,8203],[15,53]],[[2300,8256],[71,67]],[[2371,8323],[112,46]],[[2483,8369],[82,41]],[[2565,8410],[74,104]],[[2639,8514],[35,61]],[[2674,8575],[82,0]],[[2756,8575],[67,-43]],[[2823,8532],[106,7]],[[2929,8539],[115,-22]],[[3044,8517],[48,-1]],[[3092,8516],[107,55]],[[3199,8571],[120,17]],[[3319,8588],[70,41]],[[3389,8629],[107,31]],[[3496,8660],[188,18]],[[3684,8678],[184,8]],[[3868,8686],[56,-15]],[[3924,8671],[105,39]],[[4029,8710],[118,1]],[[4147,8711],[46,-23]],[[4193,8688],[76,6]],[[4269,8694],[121,40],[77,-12],[-3,-50]],[[4464,8672],[94,36]],[[4558,8708],[8,-19],[-55,-49],[-1,-46],[38,-25]],[[4548,8569],[-14,-86]],[[4534,8483],[-73,-51],[21,-54]],[[4482,8378],[57,-2]],[[4539,8376],[28,-47],[42,-16]],[[4609,8313],[131,-35],[47,9],[92,-17],[148,-44],[52,-89],[100,-20]],[[5179,8117],[156,-41]],[[5335,8076],[119,-50]],[[5454,8026],[54,26],[53,46]],[[5561,8098],[-26,76]],[[5535,8174],[35,49]],[[5570,8223],[80,47]],[[5650,8270],[76,13]],[[5726,8283],[151,-20]],[[5877,8263],[38,-45],[41,0],[35,-17],[111,-12],[27,-33]],[[6129,8156],[148,2],[107,-27],[110,-29],[51,-16],[86,32]],[[6631,8118],[46,29]],[[6677,8147],[98,8],[79,-13],[30,-49],[26,32]],[[6910,8125],[89,-23]],[[6999,8102],[86,-6],[55,25]],[[7140,8121],[32,33],[-7,6],[29,46],[23,76],[15,25],[4,1],[39,82],[55,70],[2,4],[-10,76],[27,41],[-41,46],[42,37],[-67,-8],[-93,23],[-77,-58],[-168,-11],[-90,54],[-120,3],[-26,-42],[-76,-11],[-108,53],[-121,-2],[-66,99],[-81,56],[54,78],[-70,47],[123,96],[171,4],[47,76],[211,-13],[134,65],[129,28],[184,2],[194,-70],[159,-39],[130,15],[95,-9],[132,53],[16,42],[-28,69],[-64,36],[-61,12],[-41,31]],[[7504,9465],[-96,59]],[[7408,9524],[80,15],[93,84]],[[7581,9623],[-62,40]],[[7519,9663],[163,41],[-3,21]],[[7679,9725],[-99,-16],[-89,-8],[-74,-32],[-104,-5],[-96,-38],[7,-62],[54,-24],[113,6],[-21,-36],[-122,-17],[-151,-58],[-61,21],[24,47],[-121,29],[19,19],[107,33],[-33,23],[-172,25],[-8,38],[-103,-13],[-41,-55],[-86,-74],[3,-25],[-54,-22],[-34,9],[-31,-120],[-58,-42],[-40,-71],[35,-57],[14,-39],[97,-32],[-21,-24],[-132,-6],[-47,-31],[-93,-54],[-35,47],[2,21],[-68,2],[-58,10],[-134,-26],[77,-56],[-57,-17],[-62,0],[-58,52],[-21,-22],[25,-60],[55,-47],[-42,-22],[62,-46],[55,-29],[2,-56],[-103,26],[33,-51],[-71,-10],[42,-89],[-73,-1],[-91,44],[-42,80],[-20,66],[-43,46],[-57,57],[-7,29],[-19,7],[-2,22],[-62,33],[-10,48],[10,68],[15,31],[-19,16],[-23,8],[-31,32],[-48,20],[-105,37],[-64,36],[-102,30],[-93,73],[22,8],[-50,42],[-2,34],[-72,15],[-34,-43],[-33,34],[3,34],[4,2],[24,9],[-88,15],[-90,-36],[6,-49],[-14,-29],[37,-51],[104,-50],[56,-83],[123,-80],[87,0],[27,-22],[-31,-20],[100,-36],[81,-30],[96,-52],[11,-19],[-21,-36],[-61,47],[-97,16],[-47,-64],[81,-37],[-13,-53],[-47,-6],[-59,-85],[-46,-8],[0,31],[23,53],[24,22],[-44,58],[-34,50],[-46,12],[-32,44],[-72,18],[-48,40],[-82,6],[-87,46],[-102,65],[-75,57],[-35,99],[-55,12],[-90,33],[-52,-14],[-64,-46],[-46,-8],[-101,-56],[-219,27],[-162,-32],[-12,-61],[6,-58],[-106,-66],[-142,-21],[-10,-34]],[[3413,9067],[-68,-56],[-43,-81]],[[3302,8930],[43,-57],[-64,-45],[-24,-65],[-84,-20],[-78,-76],[-141,-2],[-106,2],[-70,-35],[-42,-38],[-55,8],[-41,34],[-31,57],[-104,16],[-45,-26],[-58,14],[-58,-11],[17,78],[-10,62],[-50,9],[-26,38],[8,65],[45,37],[8,40],[23,60],[-3,43],[-22,35],[-5,34],[6,71],[-46,44],[158,72],[136,-18],[149,0],[118,-17],[92,6],[180,-4],[57,60],[21,200],[-114,104],[-82,51],[-170,39],[-11,72],[144,22],[186,-26],[-35,114],[105,-43],[217,65]],[[9999,7531],[-43,6],[-121,23],[-125,13],[-48,123],[-53,18],[-85,-18],[-112,-49],[-136,33],[-112,77],[-107,29],[-74,95],[-82,133],[-60,-16],[-71,33],[-41,-39],[-66,5],[23,-44],[-10,-23],[36,-76],[44,-86],[54,-23],[19,-35],[76,-42],[7,-41],[-11,-33],[14,-34],[32,-28],[14,-33],[17,-24],[-7,72],[30,53],[30,11],[34,-32],[2,-58],[-25,-59],[21,-38],[20,5],[4,-28],[87,16],[92,-3],[67,-3],[76,68],[83,64],[70,62],[33,34],[14,-9],[-11,-41],[-14,-18],[15,-79]],[[9599,7492],[49,-69],[63,-36]],[[9711,7387],[81,-13],[66,-18],[50,-57],[30,-34],[40,-12],[-1,-23],[-40,-59],[-18,-28],[-47,-32],[-41,-69],[-50,5],[-23,-23],[-18,-51],[13,-67],[-10,-12],[-51,0],[-70,-37],[-10,-49],[-26,-21],[-69,1]],[[9517,6788],[-44,-25],[1,-41]],[[9474,6722],[-54,-28],[-61,10],[-74,-34],[-52,-6],[-80,-26]],[[9153,6638],[-21,-45],[-3,-34]],[[9129,6559],[-111,-42],[-177,-47],[-100,-70],[-49,-6],[-33,6],[-65,-41],[-71,-20],[-93,-5],[-28,-6],[-24,-26],[-29,-7],[-18,-26],[-55,3],[-35,-14],[-77,5],[-29,58],[3,55],[-18,30],[-22,74],[-32,41],[23,5],[-12,45],[14,20],[-5,43],[-15,43],[-33,30],[-9,40],[-57,36],[-59,83],[-32,82],[-76,69],[-50,16],[-74,95],[-12,70],[4,59],[-63,111],[-53,39],[-60,21],[-36,57],[6,23],[-31,52],[-32,22],[-44,74],[-67,81],[-57,69],[-55,-1],[17,55],[5,35],[14,40],[-4,14]],[[7213,7949],[-31,-40]],[[7182,7909],[-24,-75]],[[7158,7834],[-30,-52]],[[7128,7782],[-26,-18]],[[7102,7764],[-37,32]],[[7065,7796],[-51,45],[-79,143]],[[6935,7984],[-11,-9]],[[6924,7975],[46,-105],[68,-101],[84,-156],[41,-54],[36,-56],[99,-111]],[[7298,7392],[-22,-18]],[[7276,7374],[4,-64]],[[7280,7310],[129,-90],[20,-21]],[[7429,7199],[36,-98],[-25,-18],[16,-103],[41,-119],[43,-25],[60,-37]],[[7600,6799],[65,-116]],[[7665,6683],[30,-91],[61,-49],[152,-95],[62,-57],[60,-57],[35,-35],[54,-30]],[[8119,6269],[27,-31]],[[8146,6238],[-4,-41]],[[8142,6197],[-63,-24]],[[8079,6173],[47,-27]],[[8126,6146],[37,-19],[21,-41]],[[8184,6086],[50,-42],[56,0]],[[8290,6044],[104,25]],[[8394,6069],[121,12]],[[8515,6081],[98,31]],[[8613,6112],[55,7],[40,18]],[[8708,6137],[63,3]],[[8771,6140],[36,2]],[[8807,6142],[51,15]],[[8858,6157],[59,10]],[[8917,6167],[52,35]],[[8969,6202],[42,0],[3,-28]],[[9014,6174],[-10,-58]],[[9004,6116],[0,-53]],[[9004,6063],[-23,-36]],[[8981,6027],[-32,-108],[-53,-111]],[[8896,5808],[-69,-128]],[[8827,5680],[-95,-147]],[[8732,5533],[-95,-112]],[[8637,5421],[-131,-136]],[[8506,5285],[-111,-81]],[[8395,5204],[-166,-99]],[[8229,5105],[-104,-76],[-121,-121],[-26,-53]],[[7978,4855],[-25,-24]],[[7953,4831],[-78,-40]],[[7875,4791],[-27,-41],[-42,-8],[-16,-70]],[[7790,4672],[-35,-41]],[[7755,4631],[-22,-66],[-45,-33]],[[7688,4532],[-51,-123]],[[7637,4409],[7,-57],[71,-36],[3,-26],[-30,-61],[6,-30]],[[7694,4199],[-7,-48]],[[7687,4151],[38,-63],[46,-98],[41,-22]],[[7812,3968],[18,-45],[-4,-100],[13,-87],[5,-157],[19,-49],[-33,-71]],[[7830,3459],[-43,-69]],[[7787,3390],[-71,-62]],[[7716,3328],[-101,-38]],[[7615,3290],[-126,-49],[-125,-107]],[[7364,3134],[-43,-19]],[[7321,3115],[-77,-71],[-46,-23],[-10,-71],[53,-76]],[[7241,2874],[22,-58]],[[7263,2816],[1,-30],[20,5]],[[7284,2791],[-3,-98]],[[7281,2693],[-18,-47]],[[7263,2646],[26,-17],[-17,-42],[-46,-35],[-92,-34],[-133,-54]],[[7001,2464],[-49,-37]],[[6952,2427],[10,-42]],[[6962,2385],[28,-7]],[[6990,2378],[-10,-52]],[[6980,2326],[-27,-73]],[[6953,2253],[-13,-83],[-29,-45],[-76,-51],[-22,-14]],[[6813,2060],[-47,-51]],[[6766,2009],[-31,-52]],[[6735,1957],[-63,-71]],[[6672,1886],[-125,-103],[-79,-60]],[[6468,1723],[-84,-46]],[[6384,1677],[-116,-39]],[[6268,1638],[-56,-5],[-15,-28]],[[6197,1605],[-67,15]],[[6130,1620],[-55,-19]],[[6075,1601],[-121,19]],[[5954,1620],[-67,-12]],[[5887,1608],[-46,5]],[[5841,1613],[-115,-39]],[[5726,1574],[-94,-16]],[[5632,1558],[-69,-38]],[[5563,1520],[-51,-2],[-47,36],[-37,1],[-48,45],[-5,-14],[-15,27],[1,59]],[[5361,1672],[-37,67],[36,18]],[[5360,1757],[-3,77]],[[5357,1834],[-72,93]],[[5285,1927],[-56,85]],[[5229,2012],[-80,130]],[[5149,2142],[-83,76],[-43,73]],[[5023,2291],[-25,97]],[[4998,2388],[-27,72]],[[4971,2460],[-37,154]],[[4934,2614],[-3,120],[-14,55]],[[4917,2789],[-43,41]],[[4874,2830],[-58,82]],[[4816,2912],[-58,120]],[[4758,3032],[-24,63],[-91,98],[-6,76]],[[4637,3269],[-11,63]],[[4626,3332],[16,88]],[[4642,3420],[38,92],[6,43],[36,90],[26,41]],[[4748,3686],[64,65]],[[4812,3751],[36,45],[11,74]],[[4859,3870],[-5,56]],[[4854,3926],[-34,36]],[[4820,3962],[-29,61]],[[4791,4023],[-28,60],[6,21],[35,39],[-34,97]],[[4770,4240],[-23,67]],[[4747,4307],[-56,63]],[[4691,4370],[11,20]],[[4702,4390],[-16,31]],[[4686,4421],[-29,75]],[[4657,4496],[-91,106]],[[4566,4602],[-115,101]],[[4451,4703],[-73,82],[-68,103]],[[4310,4888],[4,34]],[[4314,4922],[24,32]],[[4338,4954],[27,72]],[[4365,5026],[23,75]],[[4388,5101],[-21,15]],[[4367,5116],[38,112]],[[4405,5228],[16,79],[-43,66]],[[4378,5373],[-51,17]],[[4327,5390],[-22,45],[-29,14],[1,28]],[[4277,5477],[-115,-36],[-42,5]],[[4120,5446],[-43,-22]],[[4077,5424],[-89,2],[-59,62],[-37,73],[-78,66]],[[3814,5627],[-84,-2]],[[3730,5625],[-98,0]],[[3632,5625],[-92,-11]],[[3540,5614],[-89,-22]],[[3451,5592],[-174,-58]],[[3277,5534],[-62,-34]],[[3215,5500],[-100,-30],[-99,29]],[[3016,5499],[-51,-1],[-77,19],[-72,-1],[-131,-17],[-77,-29]],[[2608,5470],[-110,-37]],[[2498,5433],[-22,3]],[[2476,5436],[-29,-1],[-114,48],[-101,76]],[[2232,5559],[-95,55]],[[2137,5614],[-75,64]],[[2062,5678],[-30,7]],[[2032,5685],[-80,41]],[[1952,5726],[-58,53]],[[1894,5779],[-19,37]],[[1875,5816],[-14,74]],[[1861,5890],[-48,59],[-44,39]],[[1769,5988],[-28,13]],[[1741,6001],[-28,20]],[[1713,6021],[-12,44]],[[1701,6065],[-17,22],[-32,16]],[[1652,6103],[-59,42],[-47,7],[-26,28],[1,15],[-34,21],[-7,22]],[[1480,6238],[-18,77]],[[1462,6315],[14,44]],[[1476,6359],[-46,78]],[[1430,6437],[-55,35]],[[1375,6472],[49,19]],[[1424,6491],[54,70]],[[1478,6561],[26,52]],[[1504,6613],[-10,54]],[[1494,6667],[31,49]],[[1525,6716],[14,94]],[[1539,6810],[-12,99]],[[8519,9460],[111,103],[108,17],[50,59],[104,21],[128,44]],[[9020,9704],[95,-25],[111,5]],[[9226,9684],[20,-61],[-20,-98],[-97,15],[-95,-16],[-4,-73],[-108,9],[4,-33],[61,-25],[50,-90],[129,-34],[21,-35],[-27,-41],[6,-25],[35,-64],[11,73],[89,25],[32,-57],[81,-60],[-97,-32],[-105,25],[-25,-85],[74,-5],[-28,-69],[86,-34],[-16,-104],[21,-71],[-11,-23],[-173,-27],[-158,17],[-78,51],[-105,20],[-35,74],[-3,50],[41,23],[19,35],[19,78],[92,8],[-35,27],[-51,4],[-57,71],[-58,53],[-122,118],[11,67],[-101,95]],[[6249,3825],[-34,9],[-33,47],[8,44],[-28,37],[-2,28],[6,64],[16,21],[31,15],[18,33],[40,49],[32,11],[14,12],[7,13],[-4,27],[14,66],[1,36],[-10,102],[6,35],[-4,25],[-15,26],[-50,41],[-25,27],[-14,32],[-2,16],[-5,34],[-6,34],[-2,16],[-1,14],[-2,35],[-2,41],[-3,35],[0,14],[-14,34],[-14,24],[-8,24],[4,48],[-12,40],[-53,19],[-71,25],[-173,116],[-43,18],[-71,2],[-160,-22],[-40,-8],[-85,-27],[-48,-39],[-25,-27],[-17,-33],[-15,-49],[-67,-74],[-8,-10]],[[5280,4925],[-73,-48],[-51,-52],[-48,-97],[3,-82],[-28,-32],[-65,-49],[-65,-62]],[[4953,4503],[-43,-1],[-13,-4],[-28,-24],[-24,-11],[-16,-39],[-4,-2],[-6,-9]],[[4819,4413],[-39,-12],[-32,2],[-46,-13]],[[7022,5026],[-2,16],[-33,89],[-10,5],[-19,11],[-13,6],[-17,7],[-13,6],[-8,2],[-1,4],[15,21],[0,14],[-12,13],[-21,8],[-26,1],[-11,-3],[-22,-5],[-11,-2],[6,10],[6,11],[-2,13],[-2,14],[2,28],[12,27],[17,21],[33,18],[-32,41],[-14,32],[0,34],[16,73],[-8,51],[-58,90],[-40,42],[-22,30],[-15,33],[-19,70],[-3,33],[8,31],[21,18],[30,6],[37,-2],[22,-3],[24,5],[27,18],[42,40],[9,18],[-7,22],[2,13],[43,56],[12,34],[6,53],[4,64],[-4,36],[-11,35],[-37,78],[-7,34],[27,117],[7,31],[16,27],[28,22],[40,21],[30,23],[21,29],[12,39],[4,36],[-4,28],[-31,61],[-25,62],[-24,2],[-27,-5],[-30,-15],[-61,-45],[-67,-65],[-20,-11],[-19,0],[-18,4],[-18,13],[-15,20],[-21,62],[-16,79],[23,27],[3,11],[-24,33],[-3,12],[30,41],[53,55],[38,49],[38,35],[26,17],[49,11],[16,13],[17,21],[13,28],[4,31],[-2,33],[1,58],[-5,32],[-28,44],[-8,28],[23,27],[2,13],[-9,8],[-60,5],[-38,35],[-53,61],[-24,20],[-18,22],[-8,25],[-2,27],[-7,23],[3,19],[41,84],[6,35],[1,47],[-6,90],[-16,51]],[[7182,7909],[-6,-18],[-18,-57]],[[7158,7834],[-22,-38],[-8,-14]],[[7128,7782],[-5,-3],[-21,-15]],[[7065,7796],[-50,45],[-80,143]],[[6935,7984],[-6,-5],[-5,-4]],[[7298,7392],[-9,-7],[-13,-10]],[[7276,7375],[0,-1]],[[7600,6799],[2,-2],[63,-114]],[[8119,6269],[21,-24],[6,-7]],[[8142,6197],[-29,-11],[-34,-13]],[[8394,6069],[91,9],[30,3]],[[8515,6081],[42,13],[56,18]],[[8708,6137],[1,0],[62,3]],[[8807,6142],[48,14],[3,1]],[[8917,6167],[14,10],[38,25]],[[9014,6174],[-4,-25],[-6,-33]],[[9004,6063],[-6,-9],[-17,-27]],[[8896,5808],[-16,-30],[-53,-98]],[[8732,5533],[-54,-63],[-41,-49]],[[8506,5285],[-70,-51],[-41,-30]],[[8395,5204],[-145,-86],[-21,-13]],[[7978,4855],[-14,-14],[-11,-10]],[[7953,4831],[-45,-23],[-33,-17]],[[7790,4672],[-34,-39],[-1,-2]],[[7688,4532],[-10,-25],[-41,-98]],[[7694,4199],[-7,-46],[0,-2]],[[7830,3459],[-38,-62],[-5,-7]],[[7787,3390],[-15,-14],[-56,-48]],[[7716,3328],[-75,-29],[-26,-9]],[[7364,3134],[-33,-14],[-10,-5]],[[7241,2874],[4,-10],[18,-48]],[[7284,2791],[-2,-69],[-1,-29]],[[7281,2693],[-7,-19],[-11,-28]],[[7001,2464],[-10,-7],[-39,-30]],[[6952,2427],[5,-23],[5,-19]],[[6990,2378],[-7,-39],[-3,-13]],[[6980,2326],[-15,-41],[-12,-32]],[[6813,2060],[-23,-25],[-24,-26]],[[6766,2009],[-19,-31],[-12,-21]],[[6735,1957],[-34,-38],[-29,-33]],[[6468,1723],[-32,-18],[-52,-28]],[[6384,1677],[-107,-36],[-9,-3]],[[6197,1605],[-59,13],[-8,2]],[[6075,1601],[-47,8],[-74,11]],[[5954,1620],[-36,-6],[-31,-6]],[[5841,1613],[-95,-32],[-20,-7]],[[5726,1574],[-78,-13],[-16,-3]],[[5632,1558],[-41,-22],[-28,-16]],[[5361,1672],[-36,67],[35,18]],[[5360,1757],[0,13],[-3,64]],[[5285,1927],[-7,10],[-49,75]],[[5229,2012],[-2,4],[-78,126]],[[5023,2291],[-20,80],[-5,17]],[[4998,2388],[-1,4],[-26,68]],[[4971,2460],[-20,85],[-17,69]],[[4917,2789],[-6,5],[-37,36]],[[4874,2830],[-57,82],[-1,0]],[[4816,2912],[-3,8],[-55,112]],[[4637,3269],[-10,57],[-1,6]],[[4626,3332],[3,14],[13,74]],[[4748,3686],[28,28],[36,37]],[[4859,3870],[0,4],[-5,52]],[[4854,3926],[-31,33],[-3,3]],[[4820,3962],[-1,4],[-28,57]],[[4770,4240],[-17,49],[-6,18]],[[4747,4307],[-7,8],[-49,55]],[[4702,4390],[-12,24],[-4,7]],[[4686,4421],[-3,8],[-26,67]],[[4657,4496],[-66,76],[-25,30]],[[4566,4602],[-40,34],[-75,67]],[[4310,4888],[4,29],[0,5]],[[4314,4922],[12,16],[12,16]],[[4338,4954],[20,51],[7,21]],[[4365,5026],[10,32],[13,42]],[[4388,5100],[0,1]],[[4388,5101],[-6,3],[-15,12]],[[4378,5373],[-24,8],[-27,9]],[[4120,5446],[-10,-5],[-33,-17]],[[3814,5627],[-81,-2],[-3,0]],[[3277,5534],[-17,-9],[-45,-25]],[[3215,5500],[-56,-17],[-44,-12]],[[3115,5471],[-99,28]],[[2608,5470],[-72,-24],[-38,-13]],[[2232,5559],[-82,47],[-13,8]],[[2062,5678],[-22,6],[-8,1]],[[2032,5685],[-12,6],[-68,35]],[[1952,5726],[-18,17],[-40,36]],[[1894,5779],[-15,29],[-4,8]],[[1875,5816],[-3,15],[-11,59]],[[1769,5988],[-23,11],[-5,2]],[[1713,6021],[-2,7],[-10,37]],[[1476,6359],[-41,69],[-5,9]],[[1430,6437],[-10,6],[-45,29]],[[1424,6491],[22,30],[32,40]],[[1494,6667],[12,19],[19,30]],[[1539,6810],[-9,73],[-3,26]],[[1527,6909],[-5,18],[-9,32]],[[1437,7099],[1,5],[4,38]],[[1447,7188],[24,15],[19,12]],[[1490,7215],[18,26],[18,26]],[[1803,7661],[1,2],[69,100]],[[1873,7763],[31,21],[27,19]],[[2243,8117],[31,64],[11,22]],[[2300,8256],[50,47],[21,20]],[[2483,8369],[22,11],[60,30]],[[2639,8514],[9,15],[26,46]],[[2756,8575],[60,-38],[7,-5]],[[2823,8532],[35,2],[71,5]],[[2929,8539],[82,-16],[33,-6]],[[3044,8517],[5,0],[43,-1]],[[3199,8571],[115,16],[5,1]],[[3319,8588],[35,21],[35,20]],[[3496,8660],[131,12],[57,6]],[[3684,8678],[50,2],[134,6]],[[3868,8686],[38,-10],[18,-5]],[[3924,8671],[55,20],[50,19]],[[4147,8711],[45,-23],[1,0]],[[4193,8688],[35,3],[41,3]],[[4464,8672],[60,23],[34,13]],[[4548,8569],[-3,-19],[-11,-67]],[[4482,8378],[40,-1],[17,-1]],[[4539,8376],[4,-6],[24,-42]],[[4567,8328],[13,-4],[29,-11]],[[5179,8117],[106,-28],[50,-13]],[[5335,8076],[42,-18],[77,-32]],[[5561,8098],[-16,48],[-10,28]],[[5535,8174],[19,26],[16,23]],[[5726,8283],[99,-13],[52,-7]],[[6631,8118],[4,2],[42,27]],[[6910,8125],[28,-7],[61,-16]],[[7140,8121],[62,-146],[11,-26]],[[7213,7949],[-23,-29],[-8,-11]],[[9020,9704],[95,-24],[111,4]],[[3302,8930],[43,82],[68,55]],[[7679,9725],[3,-22],[-163,-40]],[[7581,9623],[-92,-84],[-81,-15]],[[5877,8263],[-151,21],[-76,-14]],[[4609,8313],[-42,15]],[[4567,8328],[-28,48]],[[3115,5471],[100,28],[62,35]],[[4367,5116],[21,-16]],[[4388,5100],[-23,-74]],[[8290,6044],[-55,0],[-51,42]],[[7280,7310],[-4,65]],[[7276,7375],[22,17]],[[9129,6559],[2,34],[22,45]],[[9474,6722],[0,41],[43,25]],[[9711,7387],[-62,36],[-50,69]],[[9999,7531],[0,-7531],[-9999,0],[0,9999],[2738,0]],[[2758,9999],[682,0]],[[6977,8514],[-7,-1],[-53,-4]],[[7111,8497],[-4,8],[-8,19]],[[7118,4894],[-54,-45],[-37,-45],[44,-35],[-63,-24],[-14,11],[-64,-5],[-50,-23],[-31,39],[21,70],[3,60]],[[6873,4897],[-5,38],[51,59],[70,14],[47,24],[58,-20],[32,-44],[-8,-74]],[[6756,4142],[-38,8],[11,38],[-32,27],[-15,55],[-67,54],[-39,72],[20,42],[-30,56],[20,160],[41,-96],[-5,-48],[21,-15],[-4,-42],[22,-40],[-26,-38],[90,-68],[8,-62],[65,-118],[-18,-6],[-24,21]],[[7250,3572],[-2,-12],[-40,38],[-19,-25],[-18,22],[1,37],[-26,30],[1,43],[-33,74],[32,55],[-7,121],[-39,64],[10,31],[59,-53],[9,-105],[37,-39],[-28,-96],[20,-127],[21,-5],[22,-53]],[[7460,6184],[-15,19],[26,20],[30,-8],[-4,-33],[-16,-11],[-21,13]],[[7100,4905],[18,-11]],[[7118,4894],[403,-204],[8,-58],[159,-100]],[[7812,3968],[-88,-58],[-122,-39],[-66,2],[-40,-30],[-77,-3],[-29,-12],[-134,28],[-83,-8]],[[7173,3848],[-31,136],[-38,46],[-23,28],[-108,19]],[[6973,4077],[-63,30],[-71,16],[-44,17],[-47,26]],[[6748,4166],[-60,126],[-64,56],[-22,58],[11,52],[-20,92]],[[6593,4550],[46,4],[40,37],[43,52],[28,21],[-1,32],[-24,23],[-7,39]],[[6718,4758],[32,13],[7,59],[-44,56]],[[6713,4886],[39,12],[121,-1]],[[6873,4897],[227,8]],[[2370,7765],[0,-7],[-2,-19]],[[2368,7739],[0,-152],[-365,6],[4,-256],[-104,-9],[-27,-52],[21,-144],[-436,1],[-24,-34]],[[1442,7142],[2,-1],[250,8],[14,36],[45,45],[37,138],[154,108],[52,126],[35,8],[36,78],[94,10],[40,-13],[50,0],[36,23],[69,3],[-3,54],[17,0]],[[6748,4166],[-44,10],[-149,-17],[-30,-12],[-31,-64],[25,-44],[-20,-118],[-14,-101],[30,-18],[78,-38],[30,18],[10,-108],[-85,1],[-46,55],[-41,42],[-85,14],[-25,53],[-68,-32],[-89,14],[-37,46],[-71,9],[-52,-3],[-6,31],[-38,3]],[[5990,3907],[-51,6],[-69,-15],[-48,2],[-28,-9],[6,119],[-37,37],[-8,62],[17,60],[-23,39],[-2,62],[-135,0],[10,36],[-57,-1],[-6,-17],[-69,-4],[-28,-58],[-16,-25],[-62,14],[-36,-14],[-74,-8],[-42,52],[-26,32],[-32,60],[-27,75],[-328,1]],[[4686,4421],[29,10],[3,44],[18,25],[41,21]],[[4777,4521],[29,-10],[38,39],[61,-1],[7,-29],[41,-17]],[[5280,4925],[13,32],[2,37],[19,34],[-6,57],[14,89],[21,62],[34,54],[6,60]],[[5383,5350],[10,70],[43,50],[60,33],[91,-34],[71,-37],[81,-10],[83,-20],[33,61],[16,7],[50,-10],[124,50],[44,-21],[36,3],[16,24],[42,9],[83,-10],[72,-3],[36,11]],[[6374,5523],[68,-83],[49,-12],[30,17],[52,-7],[61,22],[27,-43],[98,-67]],[[6759,5350],[-7,-117],[44,-13],[-35,-36],[-43,-26],[-42,-52],[-24,-47],[-6,-80],[-26,-38],[-1,-76]],[[6619,4865],[-32,-27],[-4,-60],[-15,-8],[-10,-54]],[[6558,4716],[28,-46],[7,-120]],[[7953,4831],[-66,83],[-1,364],[97,113]],[[7983,5391],[30,32],[72,2],[99,70],[144,5],[314,300]],[[8642,5800],[78,83],[50,62],[0,52],[0,101],[0,41],[1,1]],[[7100,4905],[-1,105],[31,41],[55,66],[40,73],[-48,115],[-13,50],[-53,69]],[[7111,5424],[68,60],[76,66]],[[7255,5550],[57,-17],[0,-56],[38,-33],[78,0],[140,-85],[35,-1],[26,3],[25,-11],[74,-8],[33,41],[101,42],[45,-34],[76,0]],[[6062,5822],[-84,44],[-39,29],[-7,31],[18,42],[0,40],[-64,63],[-13,43]],[[5873,6114],[2,24],[-41,29],[-2,58],[-23,39],[-39,-6],[11,37],[29,42],[-12,41],[36,31],[-23,23],[29,62],[51,73],[96,-7],[-6,397]],[[5981,6957],[2,42],[128,1],[0,199]],[[6111,7199],[446,0],[431,0],[441,0]],[[7600,6799],[-56,-57],[-82,-16],[-35,-31],[-11,-66],[-47,-147],[11,-40]],[[7380,6442],[-17,-86],[-46,-99],[-67,-49],[-47,-77],[-11,-41],[-53,-28],[-33,-104],[2,-90]],[[7108,5868],[-2,78],[-15,2],[2,50],[-13,34],[-58,39],[-13,72],[13,74],[-51,7],[-8,-22],[-67,-5],[27,-29],[10,-61],[-61,-54],[-56,-73],[-57,-10],[-93,58],[-42,-20],[-12,-29],[-57,-19],[-4,-21],[-110,0],[-16,21],[-80,3],[-40,-17],[-30,9],[-58,58],[-19,28],[-80,-14],[-30,-47],[-29,-89],[-38,-19],[-34,-11],[75,-39]],[[5873,6114],[-70,-17],[-56,-41],[-81,-109],[-104,-46],[-108,6],[-31,-9],[11,-35],[-58,-35],[-47,-39],[-140,-39],[-28,23],[-18,2],[-21,-26],[-91,-7]],[[5031,5742],[17,27],[-35,69],[-16,41],[-48,17],[-66,58],[24,48],[51,-11],[31,8],[62,-1],[-60,91],[4,66],[-7,66],[-45,64]],[[4943,6285],[12,47],[-72,3],[1,64],[-47,37],[48,132],[142,94],[6,130],[43,203],[24,43],[-46,34],[-2,32],[-42,26],[-27,156]],[[4983,7286],[112,54],[443,-191],[443,-192]],[[5149,2142],[53,50],[44,-28],[19,-43],[50,-7],[69,-19],[60,8],[99,51],[0,369]],[[5543,2523],[30,-15],[66,-95],[-10,-61],[25,-35],[79,10],[56,45],[53,30],[27,48],[54,23],[47,-12],[53,-28],[90,-5],[71,23],[12,31],[19,48],[61,8],[33,38],[37,66],[100,75],[157,74]],[[6603,2791],[45,-2],[54,-16],[37,12],[59,-10]],[[6798,2775],[54,-141],[28,-71],[-19,-112],[9,-36]],[[6870,2415],[-56,19],[-32,-7],[-10,-30],[-31,-37],[1,-35],[67,-54],[65,11],[22,44]],[[6896,2326],[84,0]],[[6552,2104],[-48,31],[-52,-20],[-60,-39],[-59,-64],[83,-77],[40,10],[20,32],[62,16],[19,32],[34,49],[-39,30]],[[6603,2791],[-71,45],[-86,15],[-33,64],[0,35],[-47,11],[-126,109],[-35,58],[-22,18],[-43,80]],[[6140,3226],[124,-11],[36,-11],[38,2],[61,65],[97,82],[40,8],[13,34],[63,40],[84,14]],[[6696,3449],[8,-37],[92,2],[52,-22],[24,-24],[53,-8],[57,-32],[1,-126],[-22,-70],[-5,-74],[18,-30],[-13,-59],[-16,-9],[-30,-72],[-117,-113]],[[5543,2523],[0,292],[110,3],[3,356],[83,4],[171,35],[43,-41],[71,39],[33,0],[63,22]],[[6120,3233],[20,-7]],[[4637,3269],[53,20],[67,17],[72,-3],[66,-46],[17,7],[450,5],[77,-48],[269,-14],[204,40]],[[5912,3247],[91,23],[72,-6],[44,-22],[1,-9]],[[1504,6613],[38,32],[55,-9],[54,22],[62,1],[54,-29],[73,-27],[68,-73],[73,-69]],[[1981,6461],[5,-62],[22,-57],[41,-29],[10,-38],[-5,-31]],[[2054,6244],[-16,-6],[-61,8],[-8,-11],[-25,-2],[-79,24],[-54,1]],[[1811,6258],[-205,4],[-30,-11],[-37,3],[-59,-16]],[[1462,6315],[101,-3],[27,14],[20,1],[41,23],[47,-21],[49,-2],[48,23],[-23,29],[-36,-17],[-35,0],[-44,25],[-35,-2],[-25,-23],[-121,-3]],[[1981,6461],[37,18],[19,59],[35,2],[78,-27],[62,19],[43,-6],[17,22],[446,2],[24,70],[-19,12],[-53,431],[-54,432],[170,2]],[[2786,7497],[375,-218],[375,-219],[26,-46],[69,-29],[52,-16],[1,-64],[123,10]],[[3807,6915],[0,-230],[-60,-67],[-10,-62],[-98,-16],[-152,-8],[-41,-36],[-71,-4]],[[3375,6492],[-72,0],[-27,19],[-61,-14],[-104,-42],[-22,-31],[-86,-45],[-15,-26],[-46,-20],[-54,14],[-31,-25],[-16,-68],[-88,-83],[3,-34],[-31,-42],[8,-59]],[[2733,6036],[-46,-14],[-26,-13],[-17,43],[-32,-11],[-20,1],[-20,-29],[-86,1],[-31,15],[-14,-9]],[[2441,6020],[-34,29],[6,30],[-14,11],[-24,-10],[5,33],[22,26],[-45,42],[-13,27],[-25,22],[-22,3],[-27,-14],[-36,-14],[-30,-21],[-48,8],[-31,25],[-18,4],[-29,-14],[-18,0],[-6,37]],[[2368,7739],[418,-242]],[[3540,5614],[-27,69],[5,229],[-22,21],[-5,49],[-38,35],[-34,29],[14,53]],[[3433,6099],[38,11],[23,44],[54,9],[24,30]],[[3572,6193],[38,30],[39,0],[85,-58]],[[3734,6165],[-4,-33],[25,-59],[-22,-40],[12,-27],[-54,-62],[-34,-31],[-21,-63],[2,-64],[-6,-161]],[[4943,6285],[-31,-5],[-3,-32]],[[4909,6248],[-21,-2],[-75,109],[-26,4],[-87,-56],[-86,29],[-60,6],[-32,-14],[-65,3],[-66,-43],[-56,-2],[-135,52],[-53,-25],[-56,2],[-42,38],[-111,37],[-120,-12],[-29,-22],[-15,-57],[-32,-40],[-8,-90]],[[3572,6193],[3,69],[-128,23],[-4,48],[-62,65],[-15,46],[9,48]],[[3807,6915],[157,44],[321,197],[381,190]],[[4666,7346],[176,-43],[62,-55],[79,38]],[[4909,6248],[44,-40],[-13,-18],[-5,-33],[-94,-78],[-29,-64],[-16,-52],[-24,-22],[-22,-70],[-59,-41],[-18,-51],[-25,-40],[-10,-41],[-76,-34],[-63,41],[-42,-2],[-66,-58],[-32,-1],[-53,-97],[-29,-70]],[[5031,5742],[-56,-102],[-27,-18],[-9,-77],[11,-42],[-8,-30],[52,-53],[10,-35],[41,-52],[50,-32],[5,-46],[12,-29]],[[5112,5226],[-8,-54],[-88,24],[-90,26],[-140,4]],[[4786,5226],[-14,6],[-66,-13],[-67,13],[-53,-6]],[[4586,5226],[-181,2]],[[3451,5592],[-25,35],[-30,64],[-8,50],[24,90],[-28,36],[-10,79],[0,73],[-47,51],[9,31]],[[3336,6101],[97,-2]],[[3016,5499],[5,39],[-48,86],[29,113],[46,84],[-29,143]],[[3019,5964],[-15,75],[2,57],[193,4],[49,-7],[36,16],[52,-8]],[[2733,6036],[50,-21],[19,-33],[50,-22],[39,26],[52,3],[76,-25]],[[2476,5436],[9,82],[10,13],[-3,39],[-47,42],[-35,7],[-33,27],[24,45],[-11,48],[5,29]],[[2395,5768],[18,0],[7,44],[-9,19],[11,14],[41,12],[-28,80],[-25,41],[9,34],[22,8]],[[2395,5768],[-31,3],[-23,-41],[-31,1],[-22,21],[8,40],[-47,62],[-29,-12],[-24,-2]],[[2196,5840],[-30,-6],[1,37],[-18,26],[4,29],[-24,42],[-31,36],[-89,0],[-26,-19],[-31,-2],[-18,-22],[-13,-27],[-60,-44]],[[1652,6103],[49,49],[34,-2],[29,17],[25,0],[17,14],[-9,33],[12,10],[2,34]],[[2062,5678],[27,32],[6,29],[50,54],[51,47]],[[5383,5350],[-71,5],[-76,17],[-66,-53],[-58,-93]],[[6062,5822],[61,-40],[1,-33],[75,-52],[46,-43],[28,-60],[83,-39],[18,-32]],[[4777,4521],[-42,35],[-33,-17],[-45,-43]],[[4566,4602],[84,55],[-42,66],[38,25],[75,12],[9,45],[59,-48],[99,-5],[34,48],[14,66],[-12,78],[-53,59],[48,116],[-28,20],[-82,-8],[-31,52],[8,43]],[[4388,5101],[37,5],[162,-1],[-1,121]],[[6973,4077],[52,-45],[28,-85],[-19,-27],[-22,-81],[21,-83],[-35,-35],[-33,-93],[58,-26]],[[7023,3602],[-337,-82],[10,-71]],[[5912,3247],[-72,63],[-75,82],[5,318],[231,-1],[-9,34],[16,37],[-19,47],[12,49],[-11,31]],[[7173,3848],[-31,-76],[31,-130],[38,1],[40,-32],[47,-72],[9,-129],[-48,-21],[-34,-69],[-72,61],[-8,71],[23,46],[-7,40],[-43,26],[-31,-10],[-64,48]],[[6896,2326],[-9,45],[-17,44]],[[6558,4716],[67,-8],[34,57],[59,-7]],[[4386,8030],[-47,179],[-68,41],[-1,24],[-91,60],[-10,75],[68,56],[27,82],[-18,95],[23,52]],[[4609,8313],[-6,-77],[-54,-29],[-34,-32],[-77,-38],[12,-42],[-9,-42],[-55,-23]],[[2370,7765],[-1,118],[180,74],[111,15],[91,27],[42,50],[130,40],[5,74],[64,9],[50,37],[146,16],[20,39],[-29,22],[-39,105],[-6,61],[-42,64]],[[4386,8030],[36,-88],[6,-47],[-19,-81],[8,-46],[-14,-55],[9,-63],[-44,-41],[66,-73],[4,-43],[40,-56],[52,19],[87,-47],[49,-63]],[[8119,6269],[-33,-24],[-48,9]],[[8038,6254],[-38,32],[-45,59],[-50,32],[-28,34],[-97,40],[-76,2],[-27,20],[-65,-23],[-68,45],[-34,-74],[-130,21]],[[1873,7763],[2,2],[56,38]],[[6111,7199],[0,368],[0,356],[-34,81],[29,61],[-17,43],[40,48]],[[7255,5550],[-66,109],[-51,23],[-19,40],[-57,49],[-68,7],[38,57],[59,2],[17,31]],[[8038,6254],[-39,-45],[-37,-46],[8,-28],[2,-31],[62,-1],[27,7],[25,-18]],[[8086,6092],[-25,-35],[41,-55],[41,-49],[43,-35],[363,-119],[93,1]],[[8126,6146],[-40,-54]],[[6713,4886],[-67,-31],[-27,10]],[[6759,5350],[45,28],[71,-23],[89,24],[79,-1],[68,46]]],"transform":{"scale":[0.009000900090009001,0.010001000100010001],"translate":[-30,-50]},"bbox":[-30,-50,60,50]} -------------------------------------------------------------------------------- /dist/usa_110m.json: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"coastlines":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0]},{"type":"LineString","arcs":[1]},{"type":"LineString","arcs":[2]},{"type":"LineString","arcs":[3]},{"type":"LineString","arcs":[4]},{"type":"LineString","arcs":[5]},{"type":"LineString","arcs":[6]},{"type":"LineString","arcs":[7]},{"type":"LineString","arcs":[8]},{"type":"LineString","arcs":[9]},{"type":"LineString","arcs":[10]},{"type":"LineString","arcs":[11]},{"type":"LineString","arcs":[12]},{"type":"LineString","arcs":[13,14,15]},{"type":"LineString","arcs":[16]},{"type":"LineString","arcs":[17]},{"type":"LineString","arcs":[18,19,20,21,22]},{"type":"LineString","arcs":[23]},{"type":"LineString","arcs":[24]},{"type":"LineString","arcs":[25]},{"type":"LineString","arcs":[26]},{"type":"LineString","arcs":[27]},{"type":"LineString","arcs":[28]},{"type":"MultiLineString","arcs":[[29,30,31],[32]]},{"type":"LineString","arcs":[33]},{"type":"LineString","arcs":[34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227]},{"type":"LineString","arcs":[228]},{"type":"LineString","arcs":[229,230,231]},{"type":"LineString","arcs":[232]},{"type":"LineString","arcs":[-233,233]},{"type":"LineString","arcs":[234]},{"type":"LineString","arcs":[235]},{"type":"LineString","arcs":[236]},{"type":"LineString","arcs":[237]},{"type":"LineString","arcs":[238]},{"type":"LineString","arcs":[239]},{"type":"LineString","arcs":[240]},{"type":"LineString","arcs":[241]},{"type":"LineString","arcs":[242]},{"type":"LineString","arcs":[243]},{"type":"LineString","arcs":[244]},{"type":"LineString","arcs":[245]},{"type":"LineString","arcs":[246]},{"type":"LineString","arcs":[247]},{"type":"LineString","arcs":[248]},{"type":"LineString","arcs":[249,250]},{"type":"LineString","arcs":[251,252,253]},{"type":"LineString","arcs":[254]},{"type":"LineString","arcs":[255]},{"type":"LineString","arcs":[256,257,258]},{"type":"LineString","arcs":[259]},{"type":"LineString","arcs":[260]},{"type":"LineString","arcs":[261]}]},"land":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[236]]},{"type":"Polygon","arcs":[[237]]},{"type":"Polygon","arcs":[[238]]},{"type":"Polygon","arcs":[[239]]},{"type":"Polygon","arcs":[[240]]},{"type":"Polygon","arcs":[[24]]},{"type":"Polygon","arcs":[[23]]},{"type":"Polygon","arcs":[[27]]},{"type":"MultiPolygon","arcs":[[[141,142,143,279,145,146,147,148,280,150,151,152,281,282,155,156,157,283,284,160,285,286,163,164,287,288,289,290,169,170,171,291,292,173,174,175,176,177,293,294,180,295,182,296,297,185,298,299,300,301,302,190,191,303,193,194,195,196,197,304,199,305,306,201,307,308,204,309,310,311,312,209,313,314,315,213,316,215,216,317,318,219,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,45,337,338,48,49,50,51,52,53,54,55,56,57,58,339,60,61,340,341,64,342,66,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,139,379]],[[380,70,381,382,73,383,384,76,385,78,79,80,386,387,388,84,389,390,87,391,392,90,393,92,394,94,395,396,97,397,99,398,399,102,400,104,401,402,107,403,109,404,405,406,112,407,408,115,409,410,118,411,412,413,122,414,415,125,416,127,417,418,130,131,419,420,421,422,423,424,425,426,427,428,68,429]]]}]},"ocean":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[-12],[-255],[-248],[-247],[-11],[-249],[-16,430,-14],[-13],[-19,-23,431,-21,432],[433,-252,-254],[-262],[434,-251],[-17],[-256],[-4],[-260],[-18],[-5],[-29],[-6],[435,-257,-259],[-3],[-2],[-1],[-10],[-245],[-246],[-244],[-243],[-242],[-9],[436,-230,-232],[-7],[-8],[-236],[-237],[-238],[-239],[-240],[-241],[-27],[-26],[-25],[-24],[-28],[-234,232,437],[-235,438],[-261,439,-32,440,-30,-229,-228,441,-226,442,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,443,-312,-207,-206,-205,-309,-203,-202,-307,444,-199,-198,-197,-196,-195,-194,-193,-192,445,446,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,447,-292,-172,-171,-170,-291,448,449,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,450,-142,-141,-140,-139,451,-137,452,-135,-134,-133,-132,453,-130,-129,-128,-127,-126,-125,-124,-123,454,-120,-119,-118,-117,-116,-115,-114,-113,-112,455,-405,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,456,-79,-78,-77,-76,-75,-74,-73,-72,-71,-381,457,-69,-68,-67,-66,-65,-64,-63,-62,-61,458,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,459,-43,460,-41,461,-39,462,-37,463,-35,33,464]],[[-33,465]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[466,366,467]]},{"type":"Polygon","arcs":[[364,468,469,470,471,472]]},{"type":"Polygon","arcs":[[359,473,474,475,476]]},{"type":"Polygon","arcs":[[477]]},{"type":"Polygon","arcs":[[478]]},{"type":"Polygon","arcs":[[479,480,361,481]]},{"type":"Polygon","arcs":[[-480,482,483,484,485,486,487]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"ct":[-99.06,39.5]},"id":"USA","arcs":[[[343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66]],[[236]],[[237]],[[238]],[[239]],[[240]],[[23]],[[24]],[[421,422,423,424,425,426,427,428,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133]],[[27]]]}]},"subunits":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"ct":[-94.3,46.32],"gu":"USA"},"id":"MN","arcs":[[488,489,490,491,492,493,494,495,353,496,355,497,498,358,-477]]},{"type":"Polygon","properties":{"ct":[-109.66,47.05],"gu":"USA"},"id":"MT","arcs":[[499,500,501,502,346,503]]},{"type":"Polygon","properties":{"ct":[-100.48,47.46],"gu":"USA"},"id":"ND","arcs":[[-492,504,-500,505,348]]},{"type":"MultiPolygon","properties":{"ct":[-155.52,19.6],"gu":"USA"},"id":"HI","arcs":[[[236]],[[237]],[[238]],[[239]],[[240]]]},{"type":"Polygon","properties":{"ct":[-114.65,44.39],"gu":"USA"},"id":"ID","arcs":[[-503,506,507,508,509,510,511]]},{"type":"Polygon","properties":{"ct":[-120.4,47.38],"gu":"USA"},"id":"WA","arcs":[[-511,512,513,61,62,63,64,514,66,343,515]]},{"type":"Polygon","properties":{"ct":[-111.66,34.3],"gu":"USA"},"id":"AZ","arcs":[[516,332,517,334,518,519,520]]},{"type":"Polygon","properties":{"ct":[-119.64,37.26],"gu":"USA"},"id":"CA","arcs":[[-519,335,521,45,46,47,522,523,50,524,525,526,54,527,528,57,529,530]]},{"type":"Polygon","properties":{"ct":[-105.55,39],"gu":"USA"},"id":"CO","arcs":[[531,532,533,534,535,536]]},{"type":"Polygon","properties":{"ct":[-116.65,39.35],"gu":"USA"},"id":"NV","arcs":[[-509,537,-520,-531,538]]},{"type":"Polygon","properties":{"ct":[-106.09,34.42],"gu":"USA"},"id":"NM","arcs":[[-517,-534,539,540,331]]},{"type":"Polygon","properties":{"ct":[-120.54,43.94],"gu":"USA"},"id":"OR","arcs":[[-510,-539,-530,58,59,541,-513]]},{"type":"Polygon","properties":{"ct":[-111.67,39.33],"gu":"USA"},"id":"UT","arcs":[[-508,542,-535,-521,-538]]},{"type":"Polygon","properties":{"ct":[-107.55,43.03],"gu":"USA"},"id":"WY","arcs":[[-502,543,544,-536,-543,-507]]},{"type":"Polygon","properties":{"ct":[-92.44,34.92],"gu":"USA"},"id":"AR","arcs":[[545,275,276,546,547,548,549]]},{"type":"Polygon","properties":{"ct":[-93.51,42.08],"gu":"USA"},"id":"IA","arcs":[[-490,550,551,552,553,-267,554]]},{"type":"Polygon","properties":{"ct":[-98.38,38.48],"gu":"USA"},"id":"KS","arcs":[[-532,555,269,556,557]]},{"type":"Polygon","properties":{"ct":[-92.48,38.38],"gu":"USA"},"id":"MO","arcs":[[-550,558,-557,-270,-269,-553,559,271,272,273]]},{"type":"Polygon","properties":{"ct":[-99.82,41.53],"gu":"USA"},"id":"NE","arcs":[[-537,-545,560,263,561,265,266,-554,268,-556]]},{"type":"Polygon","properties":{"ct":[-97.5,35.58],"gu":"USA"},"id":"OK","arcs":[[-533,-558,-559,-549,562,-540]]},{"type":"Polygon","properties":{"ct":[-100.23,44.45],"gu":"USA"},"id":"SD","arcs":[[-491,-555,-266,-562,-264,-561,-544,-501,-505]]},{"type":"Polygon","properties":{"ct":[-91.96,31.05],"gu":"USA"},"id":"LA","arcs":[[-547,277,563,564,208,209,210,211,212,213,214,215,565]]},{"type":"Polygon","properties":{"ct":[-99.33,31.46],"gu":"USA"},"id":"TX","arcs":[[-541,-563,-548,-566,216,217,566,219,567,221,568,322,569,324,570,326,571,328,572,573]]},{"type":"Polygon","properties":{"ct":[-72.74,41.61],"gu":"USA"},"id":"CT","arcs":[[574,575,152,576,577]]},{"type":"Polygon","properties":{"ct":[-71.74,42.24],"gu":"USA"},"id":"MA","arcs":[[-575,578,579,580,144,145,581,147,582,583,150,584]]},{"type":"Polygon","properties":{"ct":[-71.56,43.69],"gu":"USA"},"id":"NH","arcs":[[-581,585,370,586,143]]},{"type":"Polygon","properties":{"ct":[-71.53,41.68],"gu":"USA"},"id":"RI","arcs":[[-576,-585,587]]},{"type":"Polygon","properties":{"ct":[-72.66,44.07],"gu":"USA"},"id":"VT","arcs":[[-580,588,589,-586]]},{"type":"Polygon","properties":{"ct":[-86.83,32.77],"gu":"USA"},"id":"AL","arcs":[[590,591,592,205,593]]},{"type":"Polygon","properties":{"ct":[-82.5,28.62],"gu":"USA"},"id":"FL","arcs":[[-593,594,186,187,188,-447,-446,191,192,193,595,195,596,197,198,-445,306,201,202,203,597]]},{"type":"Polygon","properties":{"ct":[-83.45,32.65],"gu":"USA"},"id":"GA","arcs":[[-592,598,599,600,185,-595]]},{"type":"Polygon","properties":{"ct":[-89.66,32.77],"gu":"USA"},"id":"MS","arcs":[[-277,601,-594,206,207,-565,-564,-278]]},{"type":"Polygon","properties":{"ct":[-80.88,33.9],"gu":"USA"},"id":"SC","arcs":[[-601,602,181,182,183,184]]},{"type":"Polygon","properties":{"ct":[-89.2,40.06],"gu":"USA"},"id":"IL","arcs":[[-552,603,-485,604,605,-272,-560]]},{"type":"Polygon","properties":{"ct":[-86.28,39.9],"gu":"USA"},"id":"IN","arcs":[[-605,-484,606,607,608]]},{"type":"Polygon","properties":{"ct":[-85.28,37.51],"gu":"USA"},"id":"KY","arcs":[[-273,-606,-609,609,610,611,612,613]]},{"type":"Polygon","properties":{"ct":[-79.25,35.54],"gu":"USA"},"id":"NC","arcs":[[-600,614,615,-616,616,617,618,178,179,180,-603]]},{"type":"Polygon","properties":{"ct":[-82.79,40.28],"gu":"USA"},"id":"OH","arcs":[[-608,619,-472,620,621,-610]]},{"type":"Polygon","properties":{"ct":[-86.32,35.84],"gu":"USA"},"id":"TN","arcs":[[-276,-546,-274,-614,-613,612,622,-616,-615,-599,-591,-602]]},{"type":"MultiPolygon","properties":{"ct":[-78.86,37.5],"gu":"USA"},"id":"VA","arcs":[[[-612,623,624,625,626,627,174,175,-617,615,-623,-613]],[[628,170]]]},{"type":"Polygon","properties":{"ct":[-90,44.65],"gu":"USA"},"id":"WI","arcs":[[-489,-476,629,630,631,632,-486,-604,-551]]},{"type":"Polygon","properties":{"ct":[-80.61,38.64],"gu":"USA"},"id":"WV","arcs":[[-611,-622,633,634,-624]]},{"type":"Polygon","properties":{"ct":[-75.5,38.99],"gu":"USA"},"id":"DE","arcs":[[635,636,637,166,167,638]]},{"type":"Polygon","properties":{"ct":[-77.02,38.9],"gu":"USA"},"id":"DC","arcs":[[-626,639]]},{"type":"Polygon","properties":{"ct":[-76.77,39.03],"gu":"USA"},"id":"MD","arcs":[[-629,171,172,-627,-640,-625,-635,640,-636,641,169]]},{"type":"Polygon","properties":{"ct":[-74.67,40.21],"gu":"USA"},"id":"NJ","arcs":[[-638,642,643,159,160,161,644,163,645,646]]},{"type":"Polygon","properties":{"ct":[-75.5,42.93],"gu":"USA"},"id":"NY","arcs":[[-578,647,154,155,648,157,158,-644,649,650,-469,365,-467,651,368,-589,-579]]},{"type":"Polygon","properties":{"ct":[-77.81,40.87],"gu":"USA"},"id":"PA","arcs":[[-621,-471,652,-650,-643,-637,-641,-634]]},{"type":"Polygon","properties":{"ct":[-69.22,45.34],"gu":"USA"},"id":"ME","arcs":[[-587,371,653,654,655,656,657,658,378,139,140,141,142]]},{"type":"MultiPolygon","properties":{"ct":[-84.61,43.48],"gu":"USA"},"id":"MI","arcs":[[[-632,-631,630,-474,360,-481,-488,659]],[[-620,-607,-483,-482,660,661,-473]]]},{"type":"MultiPolygon","properties":{"ct":[-152.72,64.44],"gu":"USA"},"id":"AK","arcs":[[[24]],[[23]],[[27]],[[71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,421,662,663,424,664,426,665,428,68,69,70]]]}]}},"arcs":[[[6645,8820],[-42,-45],[-112,8],[-93,31],[41,53],[110,32],[67,-41],[29,-38]],[[6627,9119],[-35,-3],[-144,7],[-21,33],[155,-2],[54,-21],[-9,-14]],[[6403,9266],[92,-41],[-21,-43],[-114,-24],[-62,27],[-33,44],[-7,49],[100,-5],[45,-7]],[[7065,8751],[-125,15],[-204,38],[-27,64],[-9,58],[-77,52],[-159,14],[-89,37],[29,48],[158,-8],[85,-37],[152,0],[66,-39],[-17,-44],[88,-27],[49,-28],[104,-5],[112,-10],[122,26],[157,10],[125,-8],[82,-45],[17,-48],[-48,-32],[-114,-25],[-99,14],[-220,-18],[-158,-2]],[[5287,9194],[108,-19],[-25,-35],[-144,-34],[-114,38],[63,38],[112,12]],[[5310,9270],[100,-24],[-94,-23],[-127,1],[1,16],[79,36],[41,-6]],[[8747,2178],[39,-10],[14,-24],[-20,-29],[-58,0],[-45,-4],[-4,50],[11,18],[63,-1]],[[7878,2175],[52,-10],[41,-29],[13,-32],[-54,-2],[-24,-20],[-43,19],[-44,43],[10,27],[32,8],[17,-4]],[[7517,2728],[67,-9],[60,-1],[72,-40],[31,-43],[72,13],[27,-27],[65,-73],[48,-53],[25,1],[46,-24],[-5,-33],[56,-5],[58,-48],[-9,-27],[-51,-15],[-52,-6],[-53,9],[-110,-11],[52,65],[-32,31],[-49,8],[-27,34],[-18,67],[-43,-5],[-72,32],[-23,24],[-101,19],[-26,23],[28,29],[-75,6],[-55,-61],[-32,-2],[-11,-29],[-38,-12],[-33,11],[40,36],[17,43],[35,26],[39,23],[58,11],[19,13]],[[9568,6037],[-41,-74],[-51,-103],[51,39],[51,-25],[-27,-41],[68,-32],[36,29],[77,-37],[-24,-86],[54,20],[9,-62],[24,-73],[-32,-104],[-35,-4],[-50,22],[16,96],[-21,15],[-89,-102],[-46,4],[54,56],[-74,28],[-82,-7],[-150,4],[-12,35],[48,41],[-33,32],[65,71],[79,187],[48,67],[66,41],[36,-5],[-15,-32]],[[7393,7659],[84,-40],[88,-37],[7,-56],[57,9],[55,-39],[-69,-37],[-119,29],[-44,53],[-76,-63],[-109,-61],[-27,69],[-104,-11],[67,58],[10,92],[26,108],[56,-9],[14,-52],[39,18],[45,-31]],[[7786,8511],[73,47],[171,-60],[105,-56],[10,-51],[143,27],[80,-75],[186,-47],[67,-47],[73,-110],[-141,-55],[181,-77],[122,-26],[110,-108],[121,-8],[-24,-82],[-135,-137],[-94,50],[-121,114],[-100,-15],[-9,-68],[81,-68],[104,-54],[32,-31],[50,-117],[-27,-84],[-97,32],[-193,94],[109,-102],[80,-71],[13,-41],[-209,47],[-165,69],[-93,57],[27,33],[-115,60],[-112,58],[1,-35],[-222,-18],[-65,40],[50,87],[145,2],[158,15],[-26,42],[27,58],[100,115],[-21,52],[-30,40],[-118,57],[-156,40],[50,30],[-82,73],[-68,7],[-60,40],[-41,-35],[-140,-15],[-280,27],[-162,34],[-125,18],[-64,41],[80,54],[-109,0],[-24,119],[59,106],[79,48],[198,31],[-56,-76],[60,-73],[71,94],[195,49],[132,-122],[-11,-77],[152,34]],[[6576,8721],[160,-4],[147,-29],[-115,-105],[-91,-22],[-83,-88],[-88,4],[-48,103],[1,59],[41,50],[76,32]],[[6120,8553],[-85,77],[91,57],[92,-25],[137,15],[20,-34],[-72,-57],[116,-50],[-13,-106],[-127,-46],[-74,10],[-53,45]],[[6152,8439],[-190,88],[0,40]],[[5962,8567],[158,-14]],[[5552,8922],[68,20],[81,-5],[13,-58],[-46,-56],[-261,-18],[-194,-51],[-117,-3],[-10,39],[160,52],[-347,-14],[-108,21],[105,115],[72,33],[217,-40],[136,-70],[135,-9],[-110,113],[70,43],[80,-14],[26,-56],[30,-42]],[[4395,8954],[131,88],[158,76],[118,-1],[105,17],[-10,-91],[-59,-40],[-72,-6],[-143,-50],[-123,-18],[-105,25]],[[4497,8758],[109,-25],[197,-6],[75,-34],[82,-50],[-96,-29],[-189,-83],[-95,-82]],[[4580,8449],[0,-52],[-203,-56]],[[4377,8341],[-41,51],[-177,62]],[[4159,8454],[33,50],[53,86]],[[4245,8590],[67,77],[-75,72],[260,19]],[[1041,7103],[61,-10],[7,-45],[-47,-19],[-50,22],[-47,32],[76,20]],[[2059,6819],[51,-8],[33,-36],[-67,-56],[-77,-45],[-39,30],[-12,55],[70,42],[41,18]],[[3637,6357],[74,9],[-23,-133],[67,-95],[-31,0],[-46,54],[-28,54],[-39,37],[-14,52],[4,37],[36,-15]],[[4198,5876],[38,-56],[77,-49],[32,-65],[-39,-16],[-126,54],[-23,41],[-69,41],[-14,34],[-79,21],[-30,64],[7,27],[81,-25],[47,-18],[72,-13],[26,-40]],[[636,7503],[47,-22],[48,12],[63,-31],[76,-16],[-6,-13],[-59,-25],[-58,26],[-29,21],[-68,-7],[-19,11],[5,44]],[[5731,9329],[151,-16],[208,-43],[59,-56],[30,-49],[-126,13],[-127,38],[-171,4],[74,35],[-93,29],[-5,45]],[[7895,1020],[40,-4],[58,82],[31,13],[1,39],[14,99],[44,55],[49,2],[6,25],[60,-10],[61,59],[30,26],[37,57],[27,-7],[20,-31],[-15,-40],[-2,-27],[-45,-14],[25,-54],[-1,-61],[-34,-68],[29,-94],[33,8],[18,85],[-24,41],[-4,89],[96,48],[-11,56],[27,37],[28,-83],[54,-2],[50,-65],[3,-39],[69,-1],[82,12],[44,-53],[59,-15],[43,37],[1,30],[95,7],[92,2],[-65,-35],[26,-56],[62,-9],[58,-57],[12,-95],[40,3],[30,-28],[51,-43],[48,-77],[2,-60],[29,-3],[41,-57],[30,-41],[92,-24],[9,21],[62,9],[83,-32],[26,-13],[56,-28],[82,-99],[12,-48]],[[9871,489],[28,-4],[18,-56]],[[9917,429],[43,-205],[39,-19]],[[9999,116],[-54,-90],[18,-26]],[[7854,850],[32,-63],[12,-99],[-17,-31],[18,-108],[-15,-68],[28,-28],[-29,-62],[-32,-74],[-39,-8],[-18,-42],[4,-59],[-29,-9],[11,-37],[-53,-46],[-42,-26],[5,-48],[-16,-42]],[[7854,850],[-25,34],[-17,63],[19,32],[-19,8],[-14,39],[-39,32],[-33,-7],[-16,-41],[-31,-30],[-17,-4],[-7,-24],[36,-64],[-21,-15],[-11,-18],[-36,-6],[-13,71],[-10,-20],[-25,7],[-16,47],[-31,8],[-20,13]],[[7508,975],[-17,0],[-16,0]],[[7475,975],[-3,-25],[-9,18],[-41,26],[-16,24],[9,21],[-3,26],[-21,28],[-30,23],[-27,15],[-5,35],[-20,21],[5,-35],[-16,-28],[-17,33],[-25,12],[-10,23],[0,36],[10,37]],[[7256,1265],[-11,8],[-10,9]],[[7235,1282],[17,22],[-26,37],[-36,48],[-17,40],[-33,37],[-38,53],[8,18],[13,-18],[6,8],[-14,37]],[[7115,1564],[-11,5],[-12,5]],[[7092,1574],[-8,-27],[-45,2],[-28,11],[-31,23],[-43,8],[-22,25],[-39,20],[-48,2],[-36,24],[-41,48],[-87,127],[-40,38],[-62,31],[-43,-9],[-62,-44],[-39,-12],[-54,31],[-58,23],[-72,54],[-57,16],[-88,55],[-64,56],[-19,32],[-43,7],[-79,37]],[[5884,2152],[-32,53],[-83,67]],[[5769,2272],[-38,74],[-19,58],[26,11],[-8,34],[18,30],[0,41],[-26,53],[-7,47],[-25,59],[-68,117],[-78,92],[-37,73],[-66,48],[-14,29],[12,73],[-40,27],[-45,57],[-19,82],[-42,10],[-44,62],[-36,57],[-4,37],[-41,89],[-27,90],[1,45],[-56,46],[-25,-5],[-44,33],[-13,-48],[13,-56],[8,-89],[26,-48],[57,-81],[13,-28],[11,-8],[11,-41],[13,2],[16,-76],[23,-30],[16,-42],[49,-60],[25,-109],[23,-51],[21,-56],[5,-62]],[[5334,2858],[37,-4],[31,-53]],[[5402,2801],[28,-52],[-2,-22],[-33,-43],[-13,1],[-21,71],[-50,67],[-55,57],[-40,30],[3,86],[-12,64],[-37,36],[-52,53],[-11,-15],[-19,30],[-47,29],[-46,68],[6,9],[32,-7],[28,44],[3,53],[-59,84],[-45,33],[-29,73],[-28,77],[-36,94],[-31,106]],[[4836,3827],[-13,60],[-50,68],[-36,14],[-8,34],[-43,6],[-28,32]],[[4658,4041],[-71,11]],[[4587,4052],[-20,19]],[[4567,4071],[-9,65]],[[4558,4136],[-75,118]],[[4483,4254],[-64,163]],[[4419,4417],[3,28]],[[4422,4445],[-34,39]],[[4388,4484],[-60,98]],[[4328,4582],[-10,96]],[[4318,4678],[-41,64]],[[4277,4742],[17,98]],[[4294,4840],[-3,101]],[[4291,4941],[-25,90],[30,111]],[[4296,5142],[10,106],[9,107]],[[4315,5355],[-14,158]],[[4301,5513],[-24,101],[-23,54]],[[4254,5668],[10,23]],[[4264,5691],[111,-40]],[[4375,5651],[41,-111],[19,31]],[[4435,5571],[-12,97]],[[4423,5668],[-27,96]],[[4396,5764],[-10,0],[-149,116],[-55,51],[-139,48],[-43,105],[11,72],[-98,50],[-14,95],[-93,85],[-1,61]],[[3805,6447],[-43,44]],[[3762,6491],[-68,37],[-21,103]],[[3673,6631],[-99,95],[-42,111]],[[3532,6837],[-74,8]],[[3458,6845],[-122,3]],[[3336,6848],[-90,34],[-159,122]],[[3087,7004],[-74,22]],[[3013,7026],[-134,42]],[[2879,7068],[-107,-10],[-151,54],[-92,50],[-85,-25],[16,-81]],[[2460,7056],[-43,-8]],[[2417,7048],[-89,-25],[-67,-39],[-86,-25],[-11,69]],[[2164,7028],[35,115],[82,37]],[[2281,7180],[-21,29],[-98,-65],[-53,-79]],[[2109,7065],[-111,-83]],[[1998,6982],[57,-57]],[[2055,6925],[-73,-85]],[[1982,6840],[-83,-49],[-77,-36],[-19,-52],[-120,-61]],[[1683,6642],[-24,-55]],[[1659,6587],[-90,-50]],[[1569,6537],[-53,9]],[[1516,6546],[-72,-33]],[[1444,6513],[-78,-40]],[[1366,6473],[-64,-40],[-132,-33],[-12,20],[84,55],[76,36],[82,64],[95,14]],[[1495,6589],[38,48]],[[1533,6637],[106,70]],[[1639,6707],[18,24]],[[1657,6731],[56,41],[14,89],[39,70],[-89,-36],[-25,21],[-41,-43],[-51,59],[-20,-42]],[[1540,6890],[-29,59]],[[1511,6949],[-77,-47]],[[1434,6902],[-47,0]],[[1387,6902],[-7,70]],[[1380,6972],[14,43]],[[1394,7015],[-49,42]],[[1345,7057],[-100,-23]],[[1245,7034],[-65,56],[-53,28],[0,66],[-60,51]],[[1067,7235],[30,67]],[[1097,7302],[63,66],[27,60],[63,9],[52,-19]],[[1302,7418],[62,57]],[[1364,7475],[56,-10]],[[1420,7465],[59,36]],[[1479,7501],[-14,54]],[[1465,7555],[-43,21],[56,45],[-47,-1],[-81,-26]],[[1350,7594],[-24,-26],[-60,26]],[[1266,7594],[-109,-13]],[[1157,7581],[-113,28],[-32,48],[-98,68]],[[914,7725],[109,49]],[[1023,7774],[171,58]],[[1194,7832],[63,0]],[[1257,7832],[-10,-59]],[[1247,7773],[162,5]],[[1409,7778],[-62,72]],[[1347,7850],[-95,45]],[[1252,7895],[-55,59]],[[1197,7954],[-73,50]],[[1124,8004],[-106,37]],[[1018,8041],[43,62]],[[1061,8103],[137,4]],[[1198,8107],[97,53],[18,58],[78,56]],[[1391,8274],[75,13]],[[1466,8287],[146,52]],[[1612,8339],[71,-8]],[[1683,8331],[118,63]],[[1801,8394],[117,-25],[55,-53]],[[1973,8316],[34,23],[130,-7],[-4,-27],[118,-20],[78,12],[162,-37],[148,-11],[59,-16],[103,19]],[[2801,8252],[116,-35]],[[2917,8217],[84,-16]],[[3001,8201],[143,-29],[121,-56],[81,-11],[67,49],[93,37],[114,-15],[116,52],[126,29],[52,-48],[58,27],[17,55],[53,-12],[130,-106],[103,80],[10,-89],[94,19],[30,34],[93,-6],[117,-50],[180,-43],[106,-20],[76,8],[103,-60],[-108,-58],[139,-25],[208,13],[65,21],[82,-71],[84,60],[-79,50],[50,40],[94,6],[61,11],[62,-28],[78,-64],[85,10],[136,-53],[120,18],[112,-2],[-9,73],[68,20],[120,-40],[-1,-111],[49,94],[62,-3],[35,118],[-83,73],[-89,47],[6,130],[91,85],[101,-18],[78,-52]],[[6701,8390],[104,-133],[-68,-58]],[[6737,8199],[143,-24],[0,-120],[103,92],[92,-75],[-23,-88],[74,-79],[81,85],[56,101],[4,130],[109,-9],[114,-18],[103,-58],[5,-58],[-58,-63],[55,-63],[-10,-57],[-151,-83],[-107,-18],[-79,36],[-23,-59],[-74,-100],[-23,-51],[-89,-80],[-110,-7],[-61,-50],[-5,-77],[-89,-14],[-94,-96],[-84,-132],[-30,-93],[-4,-137],[113,-19],[35,-110],[36,-90],[107,24],[143,-51],[77,-45],[55,-56],[97,-32],[81,-49],[127,-7],[84,-12],[-13,-101],[24,-119],[56,-131],[114,-112],[59,38],[42,121],[-40,186],[-54,62],[123,55],[87,82],[43,82],[-7,79],[-52,100]],[[7899,6829],[-93,88],[90,124]],[[7896,7041],[-33,106],[-26,184],[54,27],[132,-32],[79,-11],[63,31],[72,-40],[95,-68],[23,-46],[137,-9],[-2,-99],[25,-149],[71,-18],[55,-69],[112,65],[73,130],[51,55],[60,-105],[100,-150],[85,-142],[-30,-73],[102,-67],[69,-67],[123,-30],[49,-38],[30,-100],[60,-15],[31,-45],[6,-132],[-56,-44],[-55,-41],[-127,-42],[-97,-97],[-130,-19],[-164,25],[-116,1],[-79,-8],[-65,-85],[-98,-52],[-111,-156],[-88,-108],[65,19],[124,155],[161,98],[115,12],[68,-58],[-73,-79],[25,-127],[25,-89],[100,-58],[127,17],[77,132],[5,-86],[50,-42],[-95,-77],[-170,-70],[-77,-48],[-86,-85],[-58,9],[-3,100],[133,97],[-123,-4],[-85,-14]],[[8681,5310],[13,-39]],[[8694,5271],[-82,-57]],[[8612,5214],[-79,-40],[-81,-35]],[[8452,5139],[-41,-70]],[[8411,5069],[-13,-27]],[[8398,5042],[-1,-62]],[[8397,4980],[26,-62],[32,-3]],[[8455,4915],[-9,43]],[[8446,4958],[24,-26]],[[8470,4932],[-7,-34]],[[8463,4898],[-52,-19]],[[8411,4879],[-36,2]],[[8375,4881],[-57,-20]],[[8318,4861],[-34,-6],[-45,-6]],[[8239,4849],[-64,-34]],[[8175,4815],[113,22]],[[8288,4837],[23,-22]],[[8311,4815],[-108,-35]],[[8203,4780],[-49,-1]],[[8154,4779],[3,15]],[[8157,4794],[-24,-33]],[[8133,4761],[23,-5]],[[8156,4756],[-17,-85]],[[8139,4671],[-56,-90]],[[8083,4581],[-5,30]],[[8078,4611],[-17,6]],[[8061,4617],[-25,29]],[[8036,4646],[16,-63]],[[8052,4583],[19,-21]],[[8071,4562],[1,-44]],[[8072,4518],[-25,-46]],[[8047,4472],[-43,-94],[-7,5],[24,80]],[[8021,4463],[-40,45],[-9,97],[-15,-50],[17,-75]],[[7974,4480],[-51,18]],[[7923,4498],[53,-38]],[[7976,4460],[3,-111]],[[7979,4349],[22,-9],[8,-40]],[[8009,4300],[11,-118]],[[8020,4182],[-49,-87]],[[7971,4095],[-79,-35]],[[7892,4060],[-51,-69]],[[7841,3991],[-38,-8]],[[7803,3983],[-39,-43]],[[7764,3940],[-11,-39]],[[7753,3901],[-85,-77]],[[7668,3824],[-43,-56]],[[7625,3768],[-36,-69],[-12,-84]],[[7577,3615],[13,-82]],[[7590,3533],[26,-100]],[[7616,3433],[34,-84]],[[7650,3349],[1,-51]],[[7651,3298],[36,-136]],[[7687,3162],[-2,-79],[-4,-46]],[[7681,3037],[-19,-72]],[[7662,2965],[-23,-15],[-38,15]],[[7601,2965],[-12,51]],[[7589,3016],[-29,27]],[[7560,3043],[-41,101]],[[7519,3144],[-36,90]],[[7483,3234],[-11,46]],[[7472,3280],[16,78]],[[7488,3358],[-22,65]],[[7466,3423],[-60,99],[-30,18],[-77,-54]],[[7299,3486],[-14,6]],[[7285,3492],[-38,55],[-48,29]],[[7199,3576],[-87,-15]],[[7112,3561],[-68,13]],[[7044,3574],[-59,-8]],[[6985,3566],[-31,-18]],[[6954,3548],[13,-31]],[[6967,3517],[-1,-48],[17,-23]],[[6983,3446],[-15,-16]],[[6968,3430],[-29,18]],[[6939,3448],[-29,-23]],[[6910,3425],[-55,4],[-58,62],[-67,-15]],[[6730,3476],[-56,28]],[[6674,3504],[-48,-9]],[[6626,3495],[-64,-27],[-70,-87]],[[6492,3381],[-77,-51]],[[6415,3330],[-42,-56]],[[6373,3274],[-17,-53]],[[6356,3221],[-1,-81]],[[6355,3140],[4,-57]],[[6359,3083],[14,-40]],[[6373,3043],[-30,-103],[-13,-85],[-6,-157],[-7,-58],[13,-64],[24,-57],[15,-92],[51,-87],[18,-67],[31,-58],[81,-31],[32,-50],[67,33],[59,12],[58,21],[48,20],[49,48],[18,69],[7,99],[13,34],[52,31],[81,27],[68,-4],[47,10],[19,-25],[-3,-56],[-41,-70],[-19,-72],[15,-20],[-12,-51],[-19,-92],[-20,30],[-16,-2],[0,-17],[15,-1],[-1,-32],[-13,-50],[7,-19],[-8,-42],[5,-11],[-9,-59],[-15,-32],[-14,-3],[-15,-41],[25,-21],[6,17]],[[7036,1865],[26,-16],[5,-3]],[[7067,1846],[17,20],[22,2],[7,-10],[12,6],[36,-10],[35,3],[25,13],[9,13],[24,-6],[19,-8],[20,2],[15,11],[35,-17],[13,-2],[23,-22],[22,-27],[28,-18],[20,-32],[-6,-11],[-4,-27],[8,-43],[-18,-40],[-8,-47],[-3,-52],[4,-30],[2,-53],[-11,-12],[-8,-50],[6,-31],[-16,-30],[4,-32],[11,-19]],[[7410,1287],[5,-18],[15,-46]],[[7430,1223],[30,-47],[36,-51]],[[7496,1125],[27,-42],[-1,-25],[30,-5],[8,9],[21,-28],[38,8],[32,30],[47,24],[26,35],[43,-7],[-3,-12],[43,-4],[34,-20],[25,-36],[29,-32]],[[8329,2319],[10,20]],[[8339,2339],[16,3],[44,-3]],[[8399,2339],[45,-31],[20,3],[14,-41],[43,2],[-3,-35],[34,-4],[38,-44],[-28,-47],[-37,25],[-35,-5],[-26,6],[-14,-22],[-29,-7],[-12,29],[-25,-17],[-31,-81],[-20,19],[-4,34],[-51,20],[-36,-8],[-47,8],[-36,-22],[-41,37],[7,38],[70,-17],[58,-9],[28,26],[-35,51],[1,45],[-49,18],[17,33],[47,-5],[67,-19]],[[188,8023],[-188,90]],[[188,8023],[202,-117],[-7,-73],[52,-30],[-17,86],[208,-18],[151,-110],[-76,-51],[-126,-12],[-2,-115],[-31,-25],[-72,4],[-59,41],[-102,34],[-17,51],[-78,19],[-88,-15],[-42,41],[17,44],[-92,-28],[35,-55],[-44,-50]],[[0,8413],[10,5],[65,-1],[111,-33],[-6,-16],[-80,-28],[-100,-8]],[[9101,1266],[44,15],[16,-4],[-3,-88],[-64,-13],[-14,11],[22,32],[-1,47]],[[1892,2362],[14,-10],[12,-16],[20,-41],[-2,-7],[-30,-25],[-25,-18],[-11,-20],[-19,17],[2,33],[-13,43],[4,13],[14,19],[-6,23],[5,11],[6,-2],[29,-20]],[[1846,2443],[-6,-15],[-26,-8],[-13,25],[-9,9],[-1,8],[8,10],[27,-11],[20,-18]],[[1788,2491],[-3,-13],[-41,4],[6,14],[38,-5]],[[1690,2555],[7,-8],[22,-39],[-4,-7],[-6,2],[-27,4],[-9,27],[-3,4],[20,17]],[[1587,2613],[2,-27],[-9,-12],[-26,22],[4,8],[11,12],[18,-3]],[[7831,2966],[23,-5],[27,-98],[0,-68],[-19,-6],[-19,68],[-29,34],[17,75]],[[7770,3151],[36,10],[51,-4],[2,-30],[-84,-19],[-5,43]],[[7862,3181],[60,-53],[-13,-84],[-14,15],[1,62],[-34,46],[0,14]],[[8921,5533],[27,-57],[56,-16],[71,3],[-38,-48],[-28,-8],[-98,50],[-19,40],[29,36]],[[8882,5867],[27,10],[101,-30],[79,-49],[2,-22],[-38,-2],[-99,37],[-72,56]],[[7667,7303],[30,36],[31,-3],[20,-24],[-30,-62],[-34,10],[-20,35],[3,8]],[[7384,7347],[58,54],[105,-1],[-1,-23],[-90,-65],[-55,3],[-17,32]],[[8060,7934],[-50,-35],[-87,-6],[-19,58],[33,66],[70,16],[60,-33],[1,-50],[-8,-16]],[[6418,8197],[70,-67]],[[6488,8130],[-48,-42],[-104,36],[-62,-13],[-105,53],[67,36],[54,51],[82,-33],[46,-21]],[[5652,8596],[86,-47],[48,-115],[24,-83],[129,-58],[139,-56],[-9,-51],[-126,-10],[49,-45],[-26,-43],[-139,18],[-132,32],[-90,-7],[-144,-40]],[[5461,8091],[-195,-18],[-137,-11]],[[5129,8062],[-41,56],[-105,32],[-69,-13],[-94,93],[51,12],[118,20],[109,-5],[100,21],[-149,27],[-164,-9],[-109,2],[-41,43],[179,47],[-119,-1],[-134,31],[64,88],[54,47],[206,71],[79,-22],[-39,-55],[171,35],[107,-59],[87,60],[70,-39],[63,-115],[39,48],[-55,121],[68,17],[77,-19]],[[7709,8564],[-85,63],[3,42],[37,8],[176,-13],[133,-65],[7,-32],[-82,3],[-83,3],[-84,-16],[-22,7]],[[6263,9010],[6,15],[58,-55],[3,-60],[-35,-87],[-127,-12],[-83,18],[2,69],[-126,-9],[-5,91],[83,-4],[116,40],[108,-6]],[[6460,9482],[53,36],[79,8],[-34,27],[179,6],[98,-63]],[[6835,9496],[256,-48]],[[7091,9448],[61,-77],[92,-38],[-105,-35],[-142,-89],[-136,-8],[-160,15],[-83,48],[2,43],[60,31],[-140,-1],[-85,39],[-49,53],[54,53]],[[6800,9634],[115,22],[90,4],[150,19],[114,44],[95,-6],[83,-33],[58,63],[102,19],[138,13],[235,5],[41,-13],[222,20],[166,-7],[167,-8],[206,-9],[165,-15],[141,-32],[-4,-31],[-188,-51],[-186,-24],[-69,-27],[167,1],[-181,-71],[-126,-34],[-131,-96],[-159,-19],[-49,-24],[-233,-13],[106,-15],[-53,-21],[64,-58],[-73,-40],[-119,-33],[-37,-46],[-107,-35],[11,-27],[131,5],[2,-29],[-206,-71],[-201,33],[-226,-19],[-114,15],[-145,6],[-10,56],[142,27],[-38,85],[47,8],[206,-51],[-105,76],[-125,22],[62,46],[137,28],[22,41],[-109,46],[-33,60],[211,-5],[60,-12],[120,42],[-173,14],[-269,-7],[-136,39],[-64,48],[-90,35],[-17,40]],[[9999,7347],[-126,138],[-39,76],[-10,106],[-107,109],[28,86],[-51,42],[76,137],[116,44],[30,49],[16,92],[-88,-42],[-42,-17],[-69,-17],[-94,39],[-5,80],[30,62],[71,2],[157,-32],[-132,75],[-69,40],[-77,-16],[-64,29],[86,110],[-47,44],[-61,81],[-92,125],[-98,45],[1,49],[-207,69],[-163,9],[-206,-5],[-187,-8],[-90,37],[-133,74],[202,37],[155,6],[-330,31],[-173,48],[11,45],[291,57],[282,57],[29,42],[-207,43],[67,47],[266,82],[112,12],[-32,53],[182,31],[237,19],[236,1],[84,-37],[204,65],[30,-7]],[[5646,8658],[103,5],[58,-26],[-68,-78],[-120,82],[27,17]],[[5327,5261],[-14,-5],[-14,9],[-8,7],[-8,6],[-9,4],[-9,5],[-7,16],[-1,27],[16,84],[-1,23],[-2,9],[-3,8],[-3,9],[-7,17],[-4,9],[-6,9],[-7,9],[-4,15],[5,20],[17,21],[36,35],[51,38],[22,6],[31,-18],[68,-5],[9,-3],[19,-7],[20,-6],[9,-3],[7,-2],[12,-3],[7,-2],[75,24],[9,8],[18,16],[10,8],[13,1],[31,3],[38,4],[32,3],[13,2],[75,-12],[41,7],[27,-4],[58,-48],[26,-11],[8,-2],[15,-2],[8,-2],[3,-9],[3,-9],[24,-21],[4,-14],[9,-26],[4,-14],[7,-13],[7,-12],[2,-42],[17,-93],[-1,-31],[-7,-21],[-14,-19],[1,-13],[5,-12],[7,-6],[6,-6],[9,-7],[18,-14],[9,-7],[23,-3],[5,-6],[10,-10],[5,-5],[-1,-9],[-2,-17],[-1,-9],[3,-12],[10,-10],[21,-22],[21,-22],[8,-12],[-1,-3],[1,-1]],[[6261,5058],[20,-15],[29,-9],[6,5],[18,0],[28,1],[20,-15],[21,-10]],[[6403,5015],[3,-9],[7,-6]],[[6413,5000],[13,-2]],[[6426,4998],[3,-12],[5,-19],[0,-10],[14,-22],[5,-19],[0,-27],[6,-4],[5,-14],[8,-34],[2,-21]],[[6474,4816],[-2,-21],[5,-21]],[[6477,4774],[1,-10],[13,-18],[12,-15],[10,-25]],[[6513,4706],[18,-16],[10,0],[2,-17],[-10,-22],[5,-11],[10,-25],[20,-11]],[[6568,4604],[110,21],[14,-5],[12,-28],[24,-19],[18,-25],[19,-6],[46,7],[43,-4],[35,19],[6,0],[11,1],[5,-1],[-3,-14],[-2,-11]],[[6906,4539],[-7,-17],[-5,-21],[11,-18],[15,-16],[9,-1],[20,-25],[8,-4],[5,-28],[-2,-18],[9,-29],[9,3],[13,-18]],[[6991,4347],[-2,-12],[1,-18],[-12,-10],[-17,-13]],[[6961,4294],[-2,-11],[-5,-17],[-6,-28]],[[6948,4238],[-1,0],[-1,0],[2,-5],[-1,-5]],[[6947,4228],[-7,-17],[-14,-11],[-3,-20],[-12,-15],[1,-34],[-9,-11]],[[6903,4120],[-1,-10],[-14,-8],[0,-17],[-11,-32],[-8,-7],[-14,-16],[-8,-24],[-17,-41],[-2,-28],[9,-31],[-4,-23]],[[6833,3883],[6,-7],[-7,-17],[11,-24],[-3,-14],[10,-21],[-11,-12],[-3,-22],[-15,-18],[-7,-25],[-7,-28],[-10,-13],[4,-30]],[[6801,3652],[4,-28],[14,-19],[17,-44],[10,-16],[16,-10],[57,-18],[7,-11],[5,-18],[37,-58]],[[8398,5042],[0,-25],[-1,-37]],[[8463,4898],[-23,-9],[-29,-10]],[[8239,4849],[-59,-32],[-5,-2]],[[8175,4815],[33,6],[80,16]],[[8154,4779],[1,4],[2,11]],[[8157,4794],[-23,-32],[-1,-1]],[[8156,4756],[-7,-35],[-10,-50]],[[8139,4671],[-26,-43],[-30,-47]],[[8061,4617],[-10,12],[-15,17]],[[8036,4646],[-1,0]],[[8035,4646],[10,-37],[7,-26]],[[8052,4583],[18,-21],[2,-44]],[[7974,4480],[-49,18]],[[7925,4498],[-2,0]],[[7971,4095],[-48,-21],[-31,-14]],[[7892,4060],[-14,-19],[-37,-50]],[[7803,3983],[-9,-9],[-30,-34]],[[7753,3901],[-33,-30],[-52,-47]],[[7668,3824],[-34,-44],[-9,-12]],[[7577,3615],[10,-62],[3,-20]],[[7590,3533],[4,-13],[22,-87]],[[7616,3433],[30,-73],[4,-11]],[[7650,3349],[0,-2],[1,-48]],[[7651,3299],[0,-1]],[[7681,3037],[-16,-60],[-3,-12]],[[7483,3234],[-10,44],[-1,2]],[[7488,3358],[0,1]],[[7488,3359],[-22,64]],[[7299,3486],[-13,6],[-1,0]],[[7285,3492],[-37,55],[-49,29]],[[7112,3561],[-65,13],[-3,0]],[[7044,3574],[-7,-1],[-52,-7]],[[6985,3566],[-32,-16]],[[6953,3550],[2,-5],[12,-28]],[[6983,3446],[-6,-6],[-9,-10]],[[6968,3430],[-25,15],[-4,3]],[[6939,3448],[-1,-2],[-28,-21]],[[6730,3476],[0,1],[-56,27]],[[6492,3381],[-73,-48],[-4,-3]],[[6415,3330],[-9,-12],[-33,-44]],[[6356,3221],[-1,-26],[0,-55]],[[6355,3140],[2,-28],[2,-29]],[[6359,3083],[0,-2],[14,-38]],[[6373,3043],[-30,-3],[-54,26],[-60,36],[-22,55],[-17,83],[-45,67]],[[6145,3307],[-27,69]],[[6118,3376],[-38,80],[-55,47]],[[6025,3503],[-63,-2]],[[5962,3501],[-48,-93],[-64,35]],[[5850,3443],[-40,36]],[[5810,3479],[-19,64],[-25,62],[-46,52]],[[5720,3657],[-39,37]],[[5681,3694],[-28,41]],[[5653,3735],[-134,0],[0,-48],[-61,0]],[[5458,3687],[-153,-1],[-175,83]],[[5130,3769],[-116,57]],[[5014,3826],[7,23]],[[5021,3849],[-98,-13]],[[4923,3836],[-87,-9]],[[4658,4041],[-41,6],[-30,5]],[[4587,4052],[-17,16],[-3,3]],[[4296,5142],[16,175],[3,38]],[[4254,5668],[8,18],[2,5]],[[4264,5691],[14,-5],[97,-35]],[[4435,5571],[-3,20],[-9,77]],[[4396,5764],[219,0]],[[4615,5764],[228,0]],[[4843,5764],[76,0]],[[4919,5764],[234,0],[227,0],[231,0]],[[5611,5764],[231,0]],[[5842,5764],[261,0],[263,0]],[[6366,5764],[160,0]],[[6526,5764],[0,45]],[[6526,5809],[26,1]],[[6552,5810],[13,-65]],[[6565,5745],[24,-20]],[[6589,5725],[54,-7]],[[6643,5718],[79,-19]],[[6722,5699],[74,-36]],[[6796,5663],[63,15]],[[6859,5678],[94,-30]],[[6953,5648],[25,1],[69,33],[72,-43],[76,-45],[62,-39],[59,-38],[8,-31],[18,-11],[-5,-12]],[[7337,5463],[21,-4]],[[7358,5459],[15,12],[4,-27],[15,-19],[21,0],[12,-14],[-10,-21],[80,-56],[17,-106],[15,-103],[-22,-69]],[[7505,5056],[-37,-65]],[[7468,4991],[-16,-41]],[[7452,4950],[-2,-12],[8,-17],[27,-19],[19,0],[89,63],[80,19],[100,58],[2,12]],[[7775,5054],[-7,36]],[[7768,5090],[-13,23],[35,19],[76,0],[70,0],[25,46],[9,9]],[[7970,5187],[82,85]],[[8052,5272],[34,22],[117,0]],[[8203,5294],[142,1]],[[8345,5295],[8,29],[24,5]],[[8377,5329],[33,19]],[[8410,5348],[27,53]],[[8437,5401],[24,92]],[[8461,5493],[58,89]],[[8519,5582],[26,-31]],[[8545,5551],[51,20],[35,-34]],[[8631,5537],[0,-161]],[[8631,5376],[50,-66]],[[8694,5271],[-22,-15],[-60,-42]],[[3694,6529],[-21,102]],[[3532,6837],[-43,5],[-31,3]],[[3458,6845],[-37,1],[-85,2]],[[3087,7004],[-63,19],[-11,3]],[[3013,7026],[-54,17],[-80,25]],[[2460,7056],[-14,-3],[-29,-5]],[[2109,7065],[-60,-45],[-51,-38]],[[1998,6982],[40,-41],[17,-16]],[[2055,6925],[-30,-34],[-43,-51]],[[1683,6642],[-5,-12],[-19,-43]],[[1659,6587],[-85,-48],[-5,-2]],[[1516,6546],[-42,-20],[-30,-13]],[[1444,6513],[-26,-14],[-52,-26]],[[1495,6589],[29,36],[9,12]],[[1639,6707],[2,2],[16,22]],[[1540,6890],[-25,52],[-4,7]],[[1511,6949],[-14,-9],[-63,-38]],[[1387,6902],[-6,63],[-1,7]],[[1394,7015],[-47,40],[-2,2]],[[1345,7057],[-58,-13],[-42,-10]],[[1067,7235],[24,52],[6,15]],[[1302,7418],[17,15],[45,42]],[[1364,7475],[29,-5],[27,-5]],[[1479,7501],[-3,9],[-11,45]],[[1350,7594],[-24,-25]],[[1326,7569],[-29,12],[-31,13]],[[1266,7594],[-40,-4],[-69,-9]],[[914,7725],[87,39],[22,10]],[[1023,7774],[39,13],[132,45]],[[1257,7832],[-3,-18],[-7,-41]],[[1247,7773],[109,3],[53,2]],[[1347,7850],[-39,19],[-56,26]],[[1252,7895],[-51,55],[-4,4]],[[1197,7954],[-10,7],[-63,43]],[[1018,8041],[9,13],[34,49]],[[1061,8103],[124,4],[13,0]],[[1391,8274],[60,10],[15,3]],[[1612,8339],[62,-7],[9,-1]],[[1683,8331],[18,10],[100,53]],[[2801,8252],[77,-23],[39,-12]],[[2917,8217],[7,-1],[77,-15]],[[3001,8201],[-1,-437],[0,-670],[76,-3],[75,-33]],[[3151,7058],[53,-51]],[[3204,7007],[69,-78]],[[3273,6929],[74,66],[78,38],[40,-61]],[[3465,6972],[52,-48]],[[3517,6924],[71,-53]],[[3588,6871],[48,-84]],[[3636,6787],[78,-134],[131,-75],[2,-75],[-42,-56]],[[3762,6491],[-5,3],[-63,35]],[[5962,8567],[-1,-37],[191,-91]],[[4245,8590],[-60,-97],[-26,-39]],[[4377,8341],[203,58],[0,50]],[[5129,8062],[104,8],[228,21]],[[6488,8130],[-47,44],[-23,23]],[[7091,9448],[-126,23],[-130,25]],[[8399,2339],[-60,0]],[[0,8113],[0,-469]],[[0,8413],[0,-81]],[[9999,7347],[0,-7142]],[[9917,429],[-19,65],[-27,-5]],[[7430,1223],[-20,64]],[[7067,1846],[-8,4],[-23,15]],[[6967,3517],[-14,33]],[[7488,3359],[-16,-79]],[[7687,3162],[-36,137]],[[7651,3299],[-1,50]],[[7979,4349],[-3,112],[-51,37]],[[8052,4583],[-17,63]],[[8035,4646],[26,-29]],[[8398,5042],[10,20],[44,77]],[[7896,7041],[-90,-123],[93,-89]],[[6737,8199],[69,58],[-105,133]],[[1973,8316],[-55,54],[-117,24]],[[1124,8004],[74,-50],[54,-59]],[[1266,7594],[60,-25]],[[2281,7180],[-82,-36],[-35,-116]],[[3694,6529],[68,-38]],[[4315,5355],[-19,-213]],[[5402,2801],[-31,54],[-37,3]],[[5769,2272],[83,-66],[32,-54]],[[7092,1574],[23,-10]],[[7235,1282],[21,-17]],[[7475,975],[33,0]],[[7674,0],[-7674,0],[0,9999],[9999,0],[0,-308]],[[9999,116],[0,-116],[-36,0]],[[7973,5190],[8,-16],[4,-46],[-57,-39],[-63,10],[-61,4],[-36,-13]],[[7970,5187],[3,3]],[[7775,5054],[1,-11]],[[7776,5043],[-66,-71]],[[7710,4972],[-58,-34]],[[7652,4938],[-40,-15],[-45,-33],[-56,-16],[-38,6],[-48,25]],[[7425,4905],[27,45]],[[7337,5463],[-23,5],[-16,33],[-76,-11],[-68,-26],[-54,45],[-44,15],[25,62],[-68,-39],[-62,-38],[-59,-30]],[[6892,5479],[-47,40]],[[6845,5519],[-77,-24]],[[6768,5495],[0,17],[52,50],[55,47],[78,39]],[[7637,3151],[-17,4],[1,29],[17,-4],[-1,-29]],[[5216,4863],[4,-23],[-3,-34],[-39,32],[-2,5],[-13,54],[22,-22],[14,-12],[14,10],[3,-10]],[[7312,5387],[14,15]],[[7326,5402],[2,0],[68,10],[-38,47]],[[7505,5056],[-4,48],[-14,68],[-29,12],[-47,-52],[-15,1],[-4,30],[42,47],[7,54],[-6,53],[-57,46],[-66,24]],[[7312,5387],[-10,-45],[-17,-12],[-14,-58],[-7,39],[-31,-28],[-19,-39],[-20,-58],[-4,-50],[26,-73],[-3,-77],[-31,-58],[-15,-16]],[[7167,4912],[-21,-13],[-26,-1],[-7,8]],[[7113,4906],[-21,62],[-1,31]],[[7091,4999],[2,29],[-9,57],[14,67],[18,82],[40,91],[-12,-1],[-56,-76],[-11,14],[30,43]],[[7107,5305],[46,76]],[[7153,5381],[52,10],[60,24],[61,-13]],[[6768,5495],[-21,-7],[1,-66],[-2,1],[-19,-13],[-17,-12],[-11,-21],[17,-22],[-6,-30],[0,-32],[-3,-26],[23,-22],[9,-1],[25,-17],[8,-8],[6,-13],[19,-20],[26,-17],[3,-10],[0,-28],[2,-14]],[[6828,5117],[-101,2],[-112,0],[-105,-2],[-84,0]],[[6426,5117],[1,110],[-9,113],[-14,9],[-7,18],[4,16],[17,13],[1,17]],[[6419,5413],[0,22],[-4,18],[-7,19],[-4,24],[0,26],[-3,7],[-3,34],[-1,16],[-1,14],[-4,24],[-9,24],[-9,22],[-1,21],[-1,23],[2,15],[1,14],[-7,17],[-2,11]],[[6366,5764],[82,0],[78,0]],[[6526,5764],[0,31],[0,14]],[[6526,5809],[13,1],[13,0]],[[6552,5810],[4,-20],[9,-45]],[[6589,5725],[32,-4],[22,-3]],[[6722,5699],[50,-24],[24,-12]],[[6796,5663],[24,6],[39,9]],[[5838,5764],[2,-215],[4,-143]],[[5844,5406],[-4,-108]],[[5840,5298],[-129,2],[-138,-1],[-120,1],[-151,-1],[0,-59],[-1,-5]],[[5301,5235],[-9,7],[-7,16],[-9,4],[-11,-24],[-17,-3],[-44,7],[-2,-12],[-25,5],[-14,-17],[-14,31],[-9,17],[-16,3],[-4,8],[-5,31],[-14,15],[-9,37],[-9,16],[-9,3],[-8,-16],[-15,-14],[-14,12],[-1,30],[9,7],[-6,31],[7,30],[9,27],[-24,1],[-19,17],[-22,36],[-13,18],[-17,11],[-15,19],[0,21],[-20,32],[-6,123]],[[5611,5764],[227,0]],[[6419,5413],[-146,-6],[-125,0],[-158,0],[-146,-1]],[[5838,5764],[4,0]],[[5301,5235],[2,-2],[0,-292]],[[5303,4941],[-229,-1]],[[5074,4940],[-231,1]],[[4843,4941],[2,211],[6,34],[-6,15],[-14,8],[0,19],[11,26],[16,24],[11,38],[11,30],[7,15],[-4,18],[-13,10],[-18,22]],[[4852,5411],[1,21],[-7,18],[-2,164],[-1,150]],[[4843,5764],[50,0],[26,0]],[[4852,5411],[-158,-1],[-28,-12],[-20,5],[-15,-9],[-28,-13],[-35,1],[-17,-9],[-17,-4],[-12,6],[-27,5],[-18,-4],[-29,-12],[-19,-1],[-18,5],[-6,16],[-2,20],[-14,22],[-22,7],[-19,11],[-24,0],[-17,1]],[[4307,5445],[-6,68]],[[4435,5571],[-2,13],[-10,84]],[[4615,5764],[128,0],[100,0]],[[5458,4352],[0,-665]],[[5130,3769],[-81,40],[-35,17]],[[5021,3849],[10,0],[9,23],[-14,16],[-3,18],[-4,21],[15,27],[6,54],[24,24],[-15,22],[-10,22],[-6,21],[-4,16],[-2,10]],[[5027,4123],[5,24],[-4,23],[-2,22],[0,26],[-6,16],[5,14],[16,0],[15,-8],[10,-5],[5,18],[4,4],[-1,95]],[[5074,4352],[124,2],[148,-1],[112,-1]],[[4923,3836],[-80,-8],[-7,-1]],[[4567,4071],[0,2],[-9,63]],[[4558,4136],[-45,71],[-30,47]],[[4419,4417],[1,9],[2,19]],[[4422,4445],[-33,37],[-1,2]],[[4388,4484],[-26,41],[-34,57]],[[4318,4678],[-15,24],[-26,40]],[[4277,4742],[11,67],[6,31]],[[4291,4941],[324,-1]],[[4615,4940],[0,-353],[145,-159],[138,-155],[129,-150]],[[5996,4706],[0,-182],[0,-172]],[[5996,4352],[-74,0]],[[5922,4352],[-92,0],[-131,0],[-121,0],[-120,0]],[[5458,4352],[-1,471]],[[5457,4823],[77,0],[77,0],[154,0],[77,1]],[[5842,4824],[154,0],[0,-115],[0,-3]],[[5074,4940],[0,-588]],[[4615,4940],[228,0],[0,1]],[[5922,4352],[0,-58]],[[5922,4294],[0,-309],[0,-221],[-71,0],[-138,0],[-70,0],[1,-10],[9,-19]],[[4315,5355],[-8,90]],[[5303,4941],[0,-115],[154,-3]],[[5840,5298],[2,-240]],[[5842,5058],[0,-234]],[[6948,4238],[-1,-10]],[[6833,3883],[-65,4],[-84,-4],[-74,0]],[[6610,3883],[5,67],[-18,1],[-15,-2],[-4,8]],[[6578,3957],[2,103],[2,114],[-16,124]],[[6566,4298],[94,-1],[85,-1],[81,0],[88,-7],[6,-14],[-9,-13],[-8,-13],[-5,-11],[50,0]],[[6828,5117],[1,-6],[10,-19],[-7,-9],[0,-24],[4,-11],[4,-19],[26,-11],[7,-18]],[[6873,5000],[5,-9],[9,-6],[3,-13],[12,-9],[8,-10],[-4,-32],[-14,-26],[-5,-9],[-18,-7],[-26,-5],[-7,-21],[10,-9],[3,-18],[-10,-20],[-5,-18],[-20,-18],[-2,-21]],[[6812,4749],[-10,10],[-15,19],[-84,-3],[-88,-1],[-69,0],[-69,0]],[[6477,4774],[-6,21],[3,21]],[[6426,4998],[0,11],[-12,13],[6,19],[4,19],[2,13],[-10,16],[0,28],[10,0]],[[5996,4706],[134,0],[100,0],[177,0],[106,0]],[[6568,4604],[-1,-126],[0,-126]],[[6567,4352],[-68,0],[-138,0],[-139,0],[-76,0],[-77,0],[-73,0]],[[6566,4298],[1,54]],[[6812,4749],[-6,-29],[7,-36],[12,-24],[15,-20],[18,-16],[7,-5],[6,-22],[1,-20],[9,-5],[15,8],[14,-19],[-4,-22]],[[5842,5058],[150,0],[115,0],[154,0]],[[6403,5015],[3,-10],[7,-5]],[[6578,3957],[-33,23],[-22,12],[-17,-8],[-27,2],[-16,-1],[-14,-9],[-12,-5],[-12,6],[-25,-7],[-12,20],[-12,-17],[-21,8],[-22,18],[-23,-12],[-10,28],[-36,-2],[-22,6],[-26,8],[-12,25],[-20,-8],[-12,9],[-19,13],[0,112],[0,116],[-77,0],[-77,0],[-77,0]],[[6801,3652],[67,-3],[73,-1],[-2,-19],[-5,-20],[5,-14],[10,-14],[2,-20],[2,-11]],[[6953,3550],[1,-2]],[[6626,3495],[-5,13],[8,17],[11,16],[1,23],[-6,8],[7,28],[5,13],[7,43],[-7,16],[-9,27],[-6,27],[-5,18],[-12,14],[-5,125]],[[6415,3330],[-40,-54],[-2,-2]],[[6356,3221],[-1,-40],[0,-41]],[[6359,3083],[8,-24],[6,-16]],[[6145,3307],[-20,51],[-7,18]],[[6025,3503],[-29,-1],[-34,-1]],[[5850,3443],[-13,12],[-27,24]],[[5720,3657],[-4,3],[-35,34]],[[5681,3694],[-25,37],[-3,4]],[[8192,4947],[59,-2],[71,-3]],[[8322,4942],[1,-64],[-5,-17]],[[8239,4849],[-14,-8],[-45,-23]],[[8180,4818],[-1,3],[-2,15],[16,11],[-6,10],[5,90]],[[8192,4947],[16,81]],[[8208,5028],[64,-2]],[[8272,5026],[93,-1],[8,12],[16,8],[9,-3]],[[8455,4915],[-3,15],[-6,28]],[[8470,4932],[-4,-21],[-3,-13]],[[8463,4898],[-40,-15],[-12,-4]],[[8375,4881],[-3,18],[-12,14],[-5,31],[-33,-2]],[[8272,5026],[-6,12],[6,16],[1,31],[3,7],[2,28],[9,23],[6,10],[9,28],[2,19],[3,12],[14,5],[18,14],[3,15],[-6,17],[9,32]],[[8377,5329],[11,-216],[-3,-11],[14,-18],[4,-16],[8,1]],[[8375,4881],[-7,-2],[-50,-18]],[[8208,5028],[4,97],[-12,1],[-1,4],[5,18],[-7,30],[8,25],[-5,18],[-1,34],[3,16],[1,23]],[[8203,5294],[75,1],[67,0]],[[7063,4117],[97,0],[99,-1]],[[7259,4116],[20,-146],[18,-117],[11,-37],[7,-21],[-13,-21],[-4,-37],[4,-22],[-2,-21],[-2,-20],[5,-15],[4,-13]],[[7307,3646],[-157,-1],[-44,-7],[-2,-9],[18,-28],[-4,-24],[-6,-16]],[[7044,3574],[-2,180],[13,188],[14,152],[-6,23]],[[7307,3646],[11,-32],[78,-6],[124,-17],[6,-21],[10,11],[0,41],[9,4],[16,-9],[16,-2]],[[7601,2965],[-5,22],[-7,29]],[[7560,3043],[-19,47],[-22,54]],[[7199,3576],[-49,-8],[-38,-7]],[[7259,4116],[59,-1],[41,1]],[[7359,4116],[96,-1]],[[7455,4115],[-9,-10],[-12,-22],[21,-20],[13,-7],[15,-37],[9,-21],[27,-28],[5,-15],[18,-19],[9,-28],[25,-23],[5,-27],[5,-13],[-3,-9],[14,-13],[8,-22],[0,-22],[7,-5],[13,-6]],[[6903,4120],[76,0],[84,-3]],[[7455,4115],[8,3],[41,20],[71,-1],[36,-5],[1,-10],[7,7],[12,-20],[0,-13],[86,-1],[86,-112]],[[6873,5000],[79,0],[80,0],[59,-1]],[[7113,4906],[0,-136],[-1,-136],[-8,-33],[6,-8],[4,-21],[0,-15],[-7,-8],[-5,-19],[-16,-26],[-11,-31],[-3,-24]],[[7072,4449],[1,-9],[-9,-16],[7,-11],[-14,-9],[-17,-10],[3,-25],[-10,-10],[-19,11],[-20,6],[-6,-11],[3,-18]],[[7167,4912],[82,-1],[73,1],[0,-9]],[[7322,4903],[0,-107],[-1,-114],[0,-82]],[[7321,4600],[-5,-5],[6,-24],[-3,-9],[-13,0],[-12,-11],[-18,5],[-2,-23],[-11,-9],[-10,-20],[-11,-3],[-17,-35],[-15,10],[-5,14],[-13,-23],[-9,-13],[-16,13],[-18,-11],[-6,-11],[-24,18],[-16,-13],[-20,9],[-1,-13],[-10,3]],[[7321,4600],[26,-2],[13,-12],[21,-26],[16,-9],[12,-9],[18,3],[14,-7],[16,7],[15,2],[6,-17],[14,-11]],[[7492,4519],[2,-11],[-1,-25],[9,-18],[4,-18],[11,-15],[8,-14],[15,-2]],[[7540,4416],[-8,-9],[-23,-26],[-24,-14],[-2,-10],[-8,-12],[-20,-13],[-1,-1],[-1,-1],[-6,-11],[-12,-5]],[[7435,4314],[-4,-2],[-22,-7]],[[7409,4305],[-52,-3],[-68,5],[-22,-2],[-44,3],[-45,1],[-42,1],[-48,-3],[-2,5],[-15,0],[0,-19],[-110,1]],[[7359,4116],[2,25],[16,7],[6,13],[10,14],[16,3],[18,5],[18,11],[7,10],[15,9],[0,9],[19,16],[6,-11],[28,23],[14,-3],[12,20],[15,5],[-1,17],[2,15]],[[7562,4304],[-30,-2]],[[7562,4304],[130,-5],[153,-1],[82,1],[73,1],[9,0]],[[8009,4300],[3,-28],[8,-90]],[[8020,4182],[-28,-51],[-21,-36]],[[7322,4903],[39,1],[35,0],[29,1]],[[7652,4938],[0,-157]],[[7652,4781],[-11,-6],[3,-15],[-3,-27],[-8,-31],[-8,-25],[-1,-12],[-21,-27],[-9,-6],[-10,-3],[-10,2],[-17,-20],[-3,-21],[-2,-11],[-7,-5],[-1,13],[-10,3],[-11,-26],[-1,-26],[-11,-16],[-19,-3]],[[7409,4305],[114,-4],[9,1]],[[7540,4416],[3,-20],[7,-9],[2,-2],[12,-10],[17,11],[7,4],[9,-9],[24,9],[5,1],[1,7],[0,4],[9,-4],[9,8],[1,0],[10,-2],[13,10],[1,6],[0,4],[-1,14],[10,21],[15,15],[4,17],[7,12],[6,9],[8,26],[10,-9],[11,-9],[11,5],[4,11],[8,14],[5,11],[3,6],[6,-5],[11,15],[9,9],[6,6],[3,4],[7,8],[5,25],[1,6],[36,-29],[3,-2],[9,22]],[[7867,4626],[2,-1],[9,-3],[10,-9],[-4,-10],[-1,-3],[16,-7],[14,-13]],[[7913,4580],[6,-10],[0,-7]],[[7919,4563],[-1,-10],[-3,-2],[-10,-9],[-9,-26],[10,-6],[13,5],[3,-13],[1,-4]],[[7923,4498],[52,-37],[1,-1]],[[8021,4463],[8,7],[18,2]],[[6845,5519],[46,-39]],[[6891,5480],[1,-1]],[[6892,5479],[5,2],[12,-4],[6,-21],[67,-21],[45,-21],[21,0],[15,-2],[5,-19],[18,-8],[7,-16],[-5,-10],[-4,-19],[17,-1],[-5,-19],[10,-14],[0,1],[2,-1]],[[7108,5306],[-1,-1]],[[7652,4781],[0,-108],[80,0]],[[7732,4673],[-1,-60],[12,10],[13,14],[15,5],[11,12],[22,-5],[9,9],[14,9],[24,-9],[10,-17],[6,-15]],[[8072,4523],[-51,0],[-5,150]],[[8016,4673],[5,9],[7,5],[17,-6]],[[8045,4681],[-12,-12],[3,-23]],[[8071,4562],[1,-39]],[[7913,4580],[6,6],[10,-13],[-10,-10]],[[7732,4673],[71,-1],[24,1],[55,0],[66,0],[68,0]],[[8072,4523],[0,-5]],[[8045,4681],[16,11],[5,7],[18,16],[10,13],[-24,30],[-1,13],[-9,3],[1,19],[9,15],[-4,15],[12,10],[13,27],[10,5]],[[8101,4865],[59,-47],[-3,-24]],[[8139,4671],[-11,-18],[-45,-72]],[[8078,4611],[-4,1],[-13,5]],[[8061,4617],[-12,14],[-13,15]],[[8180,4818],[-5,-3]],[[8311,4815],[-76,-25],[-32,-10]],[[8101,4865],[-13,8],[-13,8],[-5,17],[2,13],[-9,11],[-17,19],[-104,0],[-112,0],[-120,0],[0,32]],[[7710,4973],[66,70]],[[7973,5190],[79,82]],[[7710,4972],[0,1]],[[8410,5348],[13,26],[14,27]],[[8437,5401],[9,35],[15,57]],[[8461,5493],[39,59],[19,30]],[[8519,5582],[20,-24],[6,-7]],[[8545,5551],[52,20],[34,-34]],[[8631,5537],[0,-96],[0,-65]],[[7153,5381],[-45,-75]],[[7505,5056],[-14,-24],[-23,-41]],[[7468,4991],[-9,-22],[-7,-19]],[[3151,7058],[46,-44],[7,-7]],[[3204,7007],[1,-1],[68,-77]],[[3465,6972],[31,-28],[21,-20]],[[3588,6871],[39,-70],[9,-14]]],"transform":{"scale":[0.013001300130013002,0.008500850085008501],"translate":[-180,0]},"bbox":[-180,0,-50,85]} --------------------------------------------------------------------------------