{ "cells": [ { "cell_type": "markdown", "id": "88c33c1c", "metadata": {}, "source": [ "Begin by installing some Python modules that aren't included in the standard SageMaker environment." ] }, { "cell_type": "code", "execution_count": null, "id": "a8b3fede", "metadata": {}, "outputs": [], "source": [ "!pip install geojson\n", "!pip install awswrangler\n", "!pip install geomet\n", "!pip install shapely" ] }, { "cell_type": "markdown", "id": "e01b8645", "metadata": {}, "source": [ "Next, import all of the packages that we'll need later." ] }, { "cell_type": "code", "execution_count": 22, "id": "5a3873ac", "metadata": {}, "outputs": [], "source": [ "from geomet import wkt\n", "import plotly.express as px\n", "from shapely.geometry import Polygon, mapping\n", "import awswrangler as wr\n", "import pandas as pd\n", "from shapely.wkt import loads\n", "import geojson\n", "import ast" ] }, { "cell_type": "markdown", "id": "e25f6aab", "metadata": {}, "source": [ "Use [AWS Python Data Wrangler](https://github.com/awslabs/aws-data-wrangler) to read earthquake data from an Athena table.\n", "\n", "Data Wrangler is a very easy way to read data from various AWS data sources into Pandas dataframes.\n", "\n", "For this visualisation, we're only interested in earthquakes [within the USA](https://en.wikipedia.org/wiki/List_of_extreme_points_of_the_United_States). So, filter out rows in the dataframe which are outside of the extremities." ] }, { "cell_type": "code", "execution_count": 29, "id": "3149a7f2", "metadata": {}, "outputs": [ { "data": { "text/html": [ "<div>\n", "<style scoped>\n", " .dataframe tbody tr th:only-of-type {\n", " vertical-align: middle;\n", " }\n", "\n", " .dataframe tbody tr th {\n", " vertical-align: top;\n", " }\n", "\n", " .dataframe thead th {\n", " text-align: right;\n", " }\n", "</style>\n", "<table border=\"1\" class=\"dataframe\">\n", " <thead>\n", " <tr style=\"text-align: right;\">\n", " <th></th>\n", " <th>h3_cell</th>\n", " <th>boundary</th>\n", " <th>quake_count</th>\n", " </tr>\n", " </thead>\n", " <tbody>\n", " <tr>\n", " <th>0</th>\n", " <td>8429807ffffffff</td>\n", " <td>[POINT (-115.811663 36.988032), POINT (-115.57...</td>\n", " <td>95</td>\n", " </tr>\n", " <tr>\n", " <th>1</th>\n", " <td>8429803ffffffff</td>\n", " <td>[POINT (-116.339706 36.897146), POINT (-116.10...</td>\n", " <td>82</td>\n", " </tr>\n", " <tr>\n", " <th>2</th>\n", " <td>8422ed5ffffffff</td>\n", " <td>[POINT (-174.745324 51.234107), POINT (-174.55...</td>\n", " <td>54</td>\n", " </tr>\n", " <tr>\n", " <th>3</th>\n", " <td>8422c69ffffffff</td>\n", " <td>[POINT (-168.529086 52.205677), POINT (-168.32...</td>\n", " <td>47</td>\n", " </tr>\n", " <tr>\n", " <th>4</th>\n", " <td>8422c45ffffffff</td>\n", " <td>[POINT (-169.099372 52.061348), POINT (-168.89...</td>\n", " <td>40</td>\n", " </tr>\n", " </tbody>\n", "</table>\n", "</div>" ], "text/plain": [ " h3_cell boundary \\\n", "0 8429807ffffffff [POINT (-115.811663 36.988032), POINT (-115.57... \n", "1 8429803ffffffff [POINT (-116.339706 36.897146), POINT (-116.10... \n", "2 8422ed5ffffffff [POINT (-174.745324 51.234107), POINT (-174.55... \n", "3 8422c69ffffffff [POINT (-168.529086 52.205677), POINT (-168.32... \n", "4 8422c45ffffffff [POINT (-169.099372 52.061348), POINT (-168.89... \n", "\n", " quake_count \n", "0 95 \n", "1 82 \n", "2 54 \n", "3 47 \n", "4 40 " ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "def run_query(lambda_arn, db, resolution):\n", " # Query is in two pieces to avoid Bandit error.\n", " query = f\"\"\"USING EXTERNAL FUNCTION cell_to_boundary_wkt(cell VARCHAR)\n", " RETURNS ARRAY(VARCHAR)\n", " LAMBDA '{lambda_arn}'\n", " SELECT h3_cell, cell_to_boundary_wkt(h3_cell) as boundary, quake_count FROM(\n", " USING EXTERNAL FUNCTION lat_lng_to_cell_address(lat DOUBLE, lng DOUBLE, res INTEGER)\n", " RETURNS VARCHAR\n", " LAMBDA '{lambda_arn}'\n", " SELECT h3_cell, COUNT(*) AS quake_count\"\"\"\n", " query += f\"\"\" FROM\n", " (SELECT *,\n", " lat_lng_to_cell_address(latitude, longitude, {resolution}) AS h3_cell\n", " FROM earthquakes\n", " WHERE latitude BETWEEN 18 AND 70 -- For this visualisation, we're only interested in earthquakes within the USA.\n", " AND longitude BETWEEN -175 AND -50\n", " )\n", " GROUP BY h3_cell ORDER BY quake_count DESC) cell_quake_count\"\"\"\n", " return wr.athena.read_sql_query(query, database=db)\n", "\n", "lambda_arn = '<MY-LAMBDA-ARN>' # Replace with ARN of your lambda.\n", "db_name = '<MY-DATABASE-NAME>' # Replace with name of your Glue database.\n", "earthquakes_df = run_query(lambda_arn=lambda_arn,db=db_name, resolution=4)\n", "earthquakes_df.head()" ] }, { "cell_type": "markdown", "id": "6decae4e", "metadata": {}, "source": [ "The next step is to make a GeoJSON-like Python dictionary that contains hexagons for each of the H3 cells that we know there were earthquakes in.\n", "\n", "As a first step, this function converts a H3 cell name to a GeoJSON geometry dictionary." ] }, { "cell_type": "code", "execution_count": 24, "id": "085e9531", "metadata": {}, "outputs": [], "source": [ "def wkt_point_to_coord(wkt_p):\n", " p = loads(wkt_p)\n", " return p.x, p.y\n", "\n", "def geometry_dict(boundary):\n", " wkt_points = [wkt_point_to_coord(p) for p in boundary]\n", " wkt_string = Polygon(wkt_points).wkt\n", " \n", " geometry_string = geojson.dumps(mapping(loads(wkt_string)))\n", "\n", " geometry_dict = ast.literal_eval(geometry_string)\n", "\n", " return geometry_dict\n", "\n", "def feature_dict(h3_id, boundary):\n", " geo_dict = {'type': 'Feature',\n", " 'properties': {},\n", " 'geometry': geometry_dict(boundary), # The function defined above.\n", " 'id': h3_id\n", " }\n", " \n", " return geo_dict\n" ] }, { "cell_type": "markdown", "id": "ff3669c3", "metadata": {}, "source": [ "Create a GeoJSON dictionary containing all of the H3 cells that have earthquakes in them." ] }, { "cell_type": "code", "execution_count": 25, "id": "5cb4e7ec", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'type': 'Feature', 'properties': {}, 'geometry': {'type': 'Polygon', 'coordinates': [[[-115.811663, 36.988032], [-115.575676, 37.152088], [-115.633331, 37.390607], [-115.928005, 37.464769], [-116.163852, 37.300385], [-116.105169, 37.062169], [-115.811663, 36.988032]]]}, 'id': '8429807ffffffff'}\n" ] } ], "source": [ "features_array = []\n", "\n", "for _, row in earthquakes_df.iterrows():\n", " features_array.append(feature_dict(row['h3_cell'], row['boundary']))\n", " \n", "h3_geojson = {'type': 'FeatureCollection',\n", " 'features': features_array\n", " }\n", "\n", "# Have a look at the first feature in the feature list.\n", "print(h3_geojson['features'][0])" ] }, { "cell_type": "markdown", "id": "39323cab", "metadata": {}, "source": [ "Now it is time to visualise the data as a [cloropleth map](https://en.wikipedia.org/wiki/Choropleth_map), colouring in each hexagon according to the number of earthquakes that have occured inside it.\n", "\n", "At this point, we have,\n", "* A dataframe with columns `h3_cell` and `quake_count`.\n", "* A GeoJSON string containing an array of features. Each feature is a H3 hexagon, including the coordinates of the vertices of the hexagon. Each hexagon has a key called `id`, which matches each `h3_cell` in the dataframe.\n", "\n", "The [Plotly Express](https://plotly.com/python/plotly-express/) module includes a [`choropleth_mapbox`](https://plotly.com/python/mapbox-county-choropleth/) method which combines a dataframe with a GeoJSON and an underlying real-world map." ] }, { "cell_type": "code", "execution_count": 26, "id": "ca1ae607", "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "coloraxis": "coloraxis", "geojson": { "features": [ { "geometry": { "coordinates": [ [ [ -115.811663, 36.988032 ], [ -115.575676, 37.152088 ], [ -115.633331, 37.390607 ], [ -115.928005, 37.464769 ], [ -116.163852, 37.300385 ], [ -116.105169, 37.062169 ], [ -115.811663, 36.988032 ] ] ], "type": "Polygon" }, "id": "8429807ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.339706, 36.897146 ], [ -116.105169, 37.062169 ], [ -116.163852, 37.300385 ], [ -116.458086, 37.373263 ], [ -116.692453, 37.207913 ], [ -116.63276, 36.970014 ], [ -116.339706, 36.897146 ] ] ], "type": "Polygon" }, "id": "8429803ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.745324, 51.234107 ], [ -174.555433, 51.428004 ], [ -174.743139, 51.637366 ], [ -175.122753, 51.652508 ], [ -175.312052, 51.457946 ], [ -175.122345, 51.248908 ], [ -174.745324, 51.234107 ] ] ], "type": "Polygon" }, "id": "8422ed5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.529086, 52.205677 ], [ -168.323607, 52.383157 ], [ -168.484391, 52.596134 ], [ -168.853092, 52.631502 ], [ -169.058583, 52.45338 ], [ -168.895374, 52.240534 ], [ -168.529086, 52.205677 ] ] ], "type": "Polygon" }, "id": "8422c69ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.099372, 52.061348 ], [ -168.895374, 52.240534 ], [ -169.058583, 52.45338 ], [ -169.428191, 52.486892 ], [ -169.632146, 52.307059 ], [ -169.466549, 52.094362 ], [ -169.099372, 52.061348 ] ] ], "type": "Polygon" }, "id": "8422c45ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.367036, 56.851685 ], [ -152.71858, 56.734442 ], [ -152.726398, 56.531776 ], [ -152.387558, 56.446646 ], [ -152.038794, 56.562545 ], [ -152.026095, 56.764907 ], [ -152.367036, 56.851685 ] ] ], "type": "Polygon" }, "id": "841db41ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.054008, 51.354013 ], [ -172.860012, 51.543956 ], [ -173.040236, 51.7548 ], [ -173.416591, 51.775431 ], [ -173.61016, 51.584824 ], [ -173.427817, 51.374251 ], [ -173.054008, 51.354013 ] ] ], "type": "Polygon" }, "id": "8422eebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.621435, 37.221066 ], [ -118.39197, 37.38949 ], [ -118.45537, 37.624773 ], [ -118.749183, 37.691263 ], [ -118.978343, 37.522525 ], [ -118.914, 37.287613 ], [ -118.621435, 37.221066 ] ] ], "type": "Polygon" }, "id": "84298c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.178557, 51.411256 ], [ -173.986814, 51.603515 ], [ -174.172468, 51.813185 ], [ -174.551933, 51.830289 ], [ -174.743139, 51.637366 ], [ -174.555433, 51.428004 ], [ -174.178557, 51.411256 ] ] ], "type": "Polygon" }, "id": "8422e89ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.958283, 52.346469 ], [ -167.751362, 52.522238 ], [ -167.909683, 52.735329 ], [ -168.277401, 52.77254 ], [ -168.484391, 52.596134 ], [ -168.323607, 52.383157 ], [ -167.958283, 52.346469 ] ] ], "type": "Polygon" }, "id": "8422c6dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.386851, 53.346867 ], [ -163.169875, 53.508858 ], [ -163.307364, 53.722192 ], [ -163.664539, 53.773571 ], [ -163.882025, 53.611002 ], [ -163.741836, 53.397634 ], [ -163.386851, 53.346867 ] ] ], "type": "Polygon" }, "id": "84228b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.815579, 52.617479 ], [ -166.605891, 52.789813 ], [ -166.759185, 53.003076 ], [ -167.124709, 53.04393 ], [ -167.334576, 52.870972 ], [ -167.178752, 52.657786 ], [ -166.815579, 52.617479 ] ] ], "type": "Polygon" }, "id": "8422f37ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.62004, 51.182658 ], [ -173.427817, 51.374251 ], [ -173.61016, 51.584824 ], [ -173.986814, 51.603515 ], [ -174.178557, 51.411256 ], [ -173.994143, 51.200972 ], [ -173.62004, 51.182658 ] ] ], "type": "Polygon" }, "id": "8422ec7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.61016, 51.584824 ], [ -173.416591, 51.775431 ], [ -173.600144, 51.985393 ], [ -173.979383, 52.004456 ], [ -174.172468, 51.813185 ], [ -173.986814, 51.603515 ], [ -173.61016, 51.584824 ] ] ], "type": "Polygon" }, "id": "8422e8dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.154143, 18.527649 ], [ -106.938328, 18.681891 ], [ -106.971597, 18.935179 ], [ -107.221583, 19.034127 ], [ -107.43768, 18.879379 ], [ -107.40351, 18.626191 ], [ -107.154143, 18.527649 ] ] ], "type": "Polygon" }, "id": "844918dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.347926, 51.84664 ], [ -171.148799, 52.031567 ], [ -171.322389, 52.243129 ], [ -171.697378, 52.269543 ], [ -171.896241, 52.083957 ], [ -171.720395, 51.872617 ], [ -171.347926, 51.84664 ] ] ], "type": "Polygon" }, "id": "8422c59ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.237945, 51.762052 ], [ -170.03702, 51.944634 ], [ -170.204966, 52.157164 ], [ -170.576158, 52.186928 ], [ -170.776929, 52.003692 ], [ -170.606676, 51.791347 ], [ -170.237945, 51.762052 ] ] ], "type": "Polygon" }, "id": "8422c4bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.495024, 54.403595 ], [ -161.271693, 54.558074 ], [ -161.401811, 54.770104 ], [ -161.758113, 54.827744 ], [ -161.982151, 54.672721 ], [ -161.849189, 54.460604 ], [ -161.495024, 54.403595 ] ] ], "type": "Polygon" }, "id": "840cd83ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.669029, 51.913474 ], [ -169.466549, 52.094362 ], [ -169.632146, 52.307059 ], [ -170.002584, 52.338703 ], [ -170.204966, 52.157164 ], [ -170.03702, 51.944634 ], [ -169.669029, 51.913474 ] ] ], "type": "Polygon" }, "id": "8422c41ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.354981, 60.255061 ], [ -153.749948, 60.13115 ], [ -153.750551, 59.91682 ], [ -153.362477, 59.826681 ], [ -152.970904, 59.94906 ], [ -152.964015, 60.163097 ], [ -153.354981, 60.255061 ] ] ], "type": "Polygon" }, "id": "840c505ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.726398, 56.531776 ], [ -153.073176, 56.413791 ], [ -153.078435, 56.212036 ], [ -152.741707, 56.128532 ], [ -152.397604, 56.245169 ], [ -152.387558, 56.446646 ], [ -152.726398, 56.531776 ] ] ], "type": "Polygon" }, "id": "841db47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.279318, 43.14228 ], [ -127.064098, 43.317153 ], [ -127.147402, 43.526795 ], [ -127.446623, 43.561117 ], [ -127.661001, 43.386062 ], [ -127.577007, 43.176867 ], [ -127.279318, 43.14228 ] ] ], "type": "Polygon" }, "id": "84280b7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.053928, 40.177894 ], [ -124.837561, 40.352874 ], [ -124.914693, 40.5734 ], [ -125.208943, 40.618487 ], [ -125.424628, 40.443278 ], [ -125.346752, 40.223212 ], [ -125.053928, 40.177894 ] ] ], "type": "Polygon" }, "id": "8428003ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.945159, 19.464654 ], [ -108.729873, 19.621465 ], [ -108.766908, 19.875217 ], [ -109.020123, 19.971994 ], [ -109.235615, 19.814669 ], [ -109.197688, 19.561083 ], [ -108.945159, 19.464654 ] ] ], "type": "Polygon" }, "id": "844919bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.204966, 52.157164 ], [ -170.002584, 52.338703 ], [ -170.171533, 52.550658 ], [ -170.54522, 52.580888 ], [ -170.747449, 52.398696 ], [ -170.576158, 52.186928 ], [ -170.204966, 52.157164 ] ] ], "type": "Polygon" }, "id": "8422c43ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.317515, 43.953735 ], [ -129.108108, 44.129983 ], [ -129.195366, 44.334081 ], [ -129.492643, 44.361478 ], [ -129.701096, 44.185085 ], [ -129.613233, 43.98144 ], [ -129.317515, 43.953735 ] ] ], "type": "Polygon" }, "id": "842852bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.062433, 56.819397 ], [ -153.411898, 56.700039 ], [ -153.41482, 56.49711 ], [ -153.073176, 56.413791 ], [ -152.726398, 56.531776 ], [ -152.71858, 56.734442 ], [ -153.062433, 56.819397 ] ] ], "type": "Polygon" }, "id": "841db45ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.776929, 52.003692 ], [ -170.576158, 52.186928 ], [ -170.747449, 52.398696 ], [ -171.121826, 52.427023 ], [ -171.322389, 52.243129 ], [ -171.148799, 52.031567 ], [ -170.776929, 52.003692 ] ] ], "type": "Polygon" }, "id": "8422c5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.086874, 63.265636 ], [ -151.538468, 63.146902 ], [ -151.55894, 62.924879 ], [ -151.135652, 62.822078 ], [ -150.688815, 62.939252 ], [ -150.660524, 63.160773 ], [ -151.086874, 63.265636 ] ] ], "type": "Polygon" }, "id": "840c761ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.006231, 51.955989 ], [ -167.800815, 52.132831 ], [ -167.958283, 52.346469 ], [ -168.323607, 52.383157 ], [ -168.529086, 52.205677 ], [ -168.369191, 51.992149 ], [ -168.006231, 51.955989 ] ] ], "type": "Polygon" }, "id": "8422f17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.147402, 43.526795 ], [ -126.930787, 43.701105 ], [ -127.014226, 43.909921 ], [ -127.31499, 43.943987 ], [ -127.530764, 43.769493 ], [ -127.446623, 43.561117 ], [ -127.147402, 43.526795 ] ] ], "type": "Polygon" }, "id": "8428e5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.310311, 39.127098 ], [ -118.075769, 39.293376 ], [ -118.139716, 39.524963 ], [ -118.439199, 39.589927 ], [ -118.673444, 39.423346 ], [ -118.608508, 39.192106 ], [ -118.310311, 39.127098 ] ] ], "type": "Polygon" }, "id": "8429887ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.655316, 32.853419 ], [ -115.427648, 33.01994 ], [ -115.482888, 33.265478 ], [ -115.766759, 33.344167 ], [ -115.994307, 33.177278 ], [ -115.938108, 32.932069 ], [ -115.655316, 32.853419 ] ] ], "type": "Polygon" }, "id": "8429a6dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.41482, 56.49711 ], [ -153.75951, 56.377051 ], [ -153.75997, 56.175059 ], [ -153.420542, 56.093352 ], [ -153.078435, 56.212036 ], [ -153.073176, 56.413791 ], [ -153.41482, 56.49711 ] ] ], "type": "Polygon" }, "id": "841db6bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.764887, 43.281382 ], [ -126.547453, 43.455503 ], [ -126.630042, 43.665584 ], [ -126.930787, 43.701105 ], [ -127.147402, 43.526795 ], [ -127.064098, 43.317153 ], [ -126.764887, 43.281382 ] ] ], "type": "Polygon" }, "id": "8428e4bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.269405, 46.085726 ], [ -122.029187, 46.249865 ], [ -122.106131, 46.458305 ], [ -122.424275, 46.502254 ], [ -122.663886, 46.337861 ], [ -122.585967, 46.129774 ], [ -122.269405, 46.085726 ] ] ], "type": "Polygon" }, "id": "8428f3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.164298, 33.910538 ], [ -115.935659, 34.077319 ], [ -115.992427, 34.320876 ], [ -116.278799, 34.39732 ], [ -116.507286, 34.230184 ], [ -116.449556, 33.986961 ], [ -116.164298, 33.910538 ] ] ], "type": "Polygon" }, "id": "8429a29ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.387077, 52.483733 ], [ -167.178752, 52.657786 ], [ -167.334576, 52.870972 ], [ -167.701235, 52.910012 ], [ -167.909683, 52.735329 ], [ -167.751362, 52.522238 ], [ -167.387077, 52.483733 ] ] ], "type": "Polygon" }, "id": "8422f33ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.842275, 60.661506 ], [ -146.26185, 60.562116 ], [ -146.322172, 60.351758 ], [ -145.968926, 60.241565 ], [ -145.55398, 60.339803 ], [ -145.487676, 60.549376 ], [ -145.842275, 60.661506 ] ] ], "type": "Polygon" }, "id": "840c455ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.62456, 17.866842 ], [ -102.40639, 18.015094 ], [ -102.430461, 18.267348 ], [ -102.673623, 18.37142 ], [ -102.892259, 18.222714 ], [ -102.867268, 17.970392 ], [ -102.62456, 17.866842 ] ] ], "type": "Polygon" }, "id": "8449a3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.515561, 19.611161 ], [ -155.677729, 19.406624 ], [ -155.571634, 19.173664 ], [ -155.303603, 19.145043 ], [ -155.141137, 19.34949 ], [ -155.246997, 19.582648 ], [ -155.515561, 19.611161 ] ] ], "type": "Polygon" }, "id": "845d139ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.677587, 49.836178 ], [ -129.454271, 50.004878 ], [ -129.548514, 50.190621 ], [ -129.86676, 50.207288 ], [ -130.088959, 50.038434 ], [ -129.994037, 49.853068 ], [ -129.677587, 49.836178 ] ] ], "type": "Polygon" }, "id": "841d651ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.058583, 52.45338 ], [ -168.853092, 52.631502 ], [ -169.017234, 52.84378 ], [ -169.389305, 52.877785 ], [ -169.594757, 52.699017 ], [ -169.428191, 52.486892 ], [ -169.058583, 52.45338 ] ] ], "type": "Polygon" }, "id": "8422c6bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.579451, 25.227676 ], [ -109.355079, 25.38676 ], [ -109.395101, 25.641943 ], [ -109.660464, 25.737877 ], [ -109.88503, 25.578351 ], [ -109.844041, 25.323335 ], [ -109.579451, 25.227676 ] ] ], "type": "Polygon" }, "id": "8448013ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.116202, 57.6879 ], [ -154.473774, 57.564265 ], [ -154.469038, 57.357877 ], [ -154.11197, 57.275323 ], [ -153.757106, 57.397506 ], [ -153.756604, 57.603684 ], [ -154.116202, 57.6879 ] ] ], "type": "Polygon" }, "id": "840ce9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.173268, 40.036776 ], [ -123.954257, 40.21078 ], [ -124.029778, 40.432927 ], [ -124.325096, 40.480622 ], [ -124.543472, 40.306377 ], [ -124.467172, 40.084678 ], [ -124.173268, 40.036776 ] ] ], "type": "Polygon" }, "id": "8428005ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.617689, 62.41712 ], [ -124.865142, 62.219678 ], [ -124.636081, 62.007323 ], [ -124.162452, 61.990703 ], [ -123.911016, 62.186953 ], [ -124.137126, 62.401019 ], [ -124.617689, 62.41712 ] ] ], "type": "Polygon" }, "id": "8412349ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -72.889578, 18.515885 ], [ -73.075699, 18.416396 ], [ -73.050904, 18.219284 ], [ -72.839773, 18.121898 ], [ -72.653854, 18.221825 ], [ -72.678863, 18.418699 ], [ -72.889578, 18.515885 ] ] ], "type": "Polygon" }, "id": "8467209ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.805318, 53.986395 ], [ -163.586193, 54.147809 ], [ -163.727565, 54.360074 ], [ -164.09083, 54.410939 ], [ -164.310438, 54.248942 ], [ -164.16631, 54.036666 ], [ -163.805318, 53.986395 ] ] ], "type": "Polygon" }, "id": "840cda5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.192253, 25.928218 ], [ -109.967508, 26.088183 ], [ -110.009, 26.342978 ], [ -110.276206, 26.437623 ], [ -110.501116, 26.277221 ], [ -110.458657, 26.022613 ], [ -110.192253, 25.928218 ] ] ], "type": "Polygon" }, "id": "84480c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.103864, 56.458531 ], [ -154.446361, 56.33641 ], [ -154.442016, 56.134222 ], [ -154.099981, 56.05434 ], [ -153.75997, 56.175059 ], [ -153.75951, 56.377051 ], [ -154.103864, 56.458531 ] ] ], "type": "Polygon" }, "id": "841db61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.195366, 44.334081 ], [ -128.984584, 44.509794 ], [ -129.072029, 44.71305 ], [ -129.370879, 44.740148 ], [ -129.580704, 44.564289 ], [ -129.492643, 44.361478 ], [ -129.195366, 44.334081 ] ] ], "type": "Polygon" }, "id": "8428523ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.42672, 43.865502 ], [ -128.214095, 44.040901 ], [ -128.299897, 44.246728 ], [ -128.598978, 44.27671 ], [ -128.810694, 44.101151 ], [ -128.724245, 43.895771 ], [ -128.42672, 43.865502 ] ] ], "type": "Polygon" }, "id": "842852dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.857251, 23.757888 ], [ -108.634513, 23.915872 ], [ -108.67262, 24.171356 ], [ -108.934423, 24.268713 ], [ -109.157385, 24.110273 ], [ -109.118323, 23.854935 ], [ -108.857251, 23.757888 ] ] ], "type": "Polygon" }, "id": "8448055ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.184565, 51.00774 ], [ -173.994143, 51.200972 ], [ -174.178557, 51.411256 ], [ -174.555433, 51.428004 ], [ -174.745324, 51.234107 ], [ -174.558886, 51.024127 ], [ -174.184565, 51.00774 ] ] ], "type": "Polygon" }, "id": "8422ec3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.558757, 23.404947 ], [ -108.336256, 23.562474 ], [ -108.373656, 23.818004 ], [ -108.634513, 23.915872 ], [ -108.857251, 23.757888 ], [ -108.818898, 23.502495 ], [ -108.558757, 23.404947 ] ] ], "type": "Polygon" }, "id": "8448043ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.454155, 51.137767 ], [ -130.592791, 50.962217 ], [ -130.408921, 50.773734 ], [ -130.087162, 50.759396 ], [ -129.946126, 50.934187 ], [ -130.129229, 51.124079 ], [ -130.454155, 51.137767 ] ] ], "type": "Polygon" }, "id": "841d641ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.235615, 19.814669 ], [ -109.020123, 19.971994 ], [ -109.057825, 20.225917 ], [ -109.311913, 20.322344 ], [ -109.527598, 20.164509 ], [ -109.489004, 19.91076 ], [ -109.235615, 19.814669 ] ] ], "type": "Polygon" }, "id": "844824dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.701096, 44.185085 ], [ -129.492643, 44.361478 ], [ -129.580704, 44.564289 ], [ -129.877816, 44.590255 ], [ -130.085294, 44.413725 ], [ -129.996642, 44.211366 ], [ -129.701096, 44.185085 ] ] ], "type": "Polygon" }, "id": "842853dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.999363, 59.700749 ], [ -145.405284, 59.604735 ], [ -145.469867, 59.398226 ], [ -145.134038, 59.288525 ], [ -144.732515, 59.383466 ], [ -144.662448, 59.589171 ], [ -144.999363, 59.700749 ] ] ], "type": "Polygon" }, "id": "840c41bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.317848, 32.527734 ], [ -115.090078, 32.693885 ], [ -115.144494, 32.940147 ], [ -115.427648, 33.01994 ], [ -115.655316, 32.853419 ], [ -115.599937, 32.607477 ], [ -115.317848, 32.527734 ] ] ], "type": "Polygon" }, "id": "84485bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.970904, 59.94906 ], [ -153.362477, 59.826681 ], [ -153.366137, 59.613487 ], [ -152.984357, 59.522976 ], [ -152.596164, 59.643856 ], [ -152.586376, 59.856735 ], [ -152.970904, 59.94906 ] ] ], "type": "Polygon" }, "id": "840c507ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.882025, 53.611002 ], [ -163.664539, 53.773571 ], [ -163.805318, 53.986395 ], [ -164.16631, 54.036666 ], [ -164.384265, 53.873512 ], [ -164.24077, 53.660675 ], [ -163.882025, 53.611002 ] ] ], "type": "Polygon" }, "id": "8422d65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.988731, 49.064733 ], [ -128.764822, 49.233846 ], [ -128.857011, 49.423207 ], [ -129.173818, 49.443074 ], [ -129.396667, 49.2738 ], [ -129.303777, 49.08482 ], [ -128.988731, 49.064733 ] ] ], "type": "Polygon" }, "id": "8428c95ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.281357, 53.256556 ], [ -167.069925, 53.428409 ], [ -167.227405, 53.640461 ], [ -167.598902, 53.680561 ], [ -167.810472, 53.508079 ], [ -167.65042, 53.296128 ], [ -167.281357, 53.256556 ] ] ], "type": "Polygon" }, "id": "8422d51ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.453077, 58.451501 ], [ -150.829927, 58.338638 ], [ -150.852213, 58.131728 ], [ -150.503037, 58.03812 ], [ -150.129564, 58.149665 ], [ -150.101899, 58.356126 ], [ -150.453077, 58.451501 ] ] ], "type": "Polygon" }, "id": "840c58dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.166535, 55.328119 ], [ -160.479, 55.189609 ], [ -160.43366, 54.989682 ], [ -160.080345, 54.928077 ], [ -159.769381, 55.065022 ], [ -159.81022, 55.265127 ], [ -160.166535, 55.328119 ] ] ], "type": "Polygon" }, "id": "840cdd3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.032465, 53.378285 ], [ -164.817343, 53.544319 ], [ -164.963528, 53.757151 ], [ -165.327507, 53.803928 ], [ -165.542986, 53.637293 ], [ -165.39414, 53.424484 ], [ -165.032465, 53.378285 ] ] ], "type": "Polygon" }, "id": "8422d6bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.769381, 55.065022 ], [ -160.080345, 54.928077 ], [ -160.03812, 54.729117 ], [ -159.689348, 54.666938 ], [ -159.379915, 54.802341 ], [ -159.417714, 55.001456 ], [ -159.769381, 55.065022 ] ] ], "type": "Polygon" }, "id": "840cca5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.810694, 44.101151 ], [ -128.598978, 44.27671 ], [ -128.685605, 44.481254 ], [ -128.984584, 44.509794 ], [ -129.195366, 44.334081 ], [ -129.108108, 44.129983 ], [ -128.810694, 44.101151 ] ] ], "type": "Polygon" }, "id": "8428521ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.139612, 51.667709 ], [ -168.937087, 51.847949 ], [ -169.099372, 52.061348 ], [ -169.466549, 52.094362 ], [ -169.669029, 51.913474 ], [ -169.50439, 51.700222 ], [ -169.139612, 51.667709 ] ] ], "type": "Polygon" }, "id": "8422c4dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.966701, 22.697623 ], [ -107.74471, 22.85423 ], [ -107.780711, 23.109763 ], [ -108.039654, 23.208575 ], [ -108.261907, 23.051507 ], [ -108.224955, 22.796091 ], [ -107.966701, 22.697623 ] ] ], "type": "Polygon" }, "id": "844804dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.652415, 42.258638 ], [ -126.436964, 42.43367 ], [ -126.518464, 42.646622 ], [ -126.816127, 42.68409 ], [ -127.030783, 42.508863 ], [ -126.948578, 42.296363 ], [ -126.652415, 42.258638 ] ] ], "type": "Polygon" }, "id": "84280abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.384265, 53.873512 ], [ -164.16631, 54.036666 ], [ -164.310438, 54.248942 ], [ -164.675264, 54.29806 ], [ -164.893646, 54.134315 ], [ -164.746787, 53.922046 ], [ -164.384265, 53.873512 ] ] ], "type": "Polygon" }, "id": "8422d67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.322172, 60.351758 ], [ -146.735857, 60.250944 ], [ -146.791812, 60.041118 ], [ -146.43999, 59.932842 ], [ -146.030766, 60.032486 ], [ -145.968926, 60.241565 ], [ -146.322172, 60.351758 ] ] ], "type": "Polygon" }, "id": "840c40bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.661001, 43.386062 ], [ -127.446623, 43.561117 ], [ -127.530764, 43.769493 ], [ -127.829965, 43.802368 ], [ -128.043479, 43.627138 ], [ -127.958662, 43.419208 ], [ -127.661001, 43.386062 ] ] ], "type": "Polygon" }, "id": "8428e59ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.566324, 60.284475 ], [ -152.964015, 60.163097 ], [ -152.970904, 59.94906 ], [ -152.586376, 59.856735 ], [ -152.192217, 59.976617 ], [ -152.17906, 60.190307 ], [ -152.566324, 60.284475 ] ] ], "type": "Polygon" }, "id": "840c501ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.088959, 50.038434 ], [ -129.86676, 50.207288 ], [ -130.045922, 50.39626 ], [ -130.364574, 50.411238 ], [ -130.500998, 50.237879 ], [ -130.40518, 50.053845 ], [ -130.088959, 50.038434 ] ] ], "type": "Polygon" }, "id": "841d655ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.543472, 40.306377 ], [ -124.325096, 40.480622 ], [ -124.401461, 40.701598 ], [ -124.696976, 40.74788 ], [ -124.914693, 40.5734 ], [ -124.837561, 40.352874 ], [ -124.543472, 40.306377 ] ] ], "type": "Polygon" }, "id": "8428007ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.676803, 33.81935 ], [ -116.449556, 33.986961 ], [ -116.507286, 34.230184 ], [ -116.793213, 34.305447 ], [ -117.02028, 34.137481 ], [ -116.961605, 33.894608 ], [ -116.676803, 33.81935 ] ] ], "type": "Polygon" }, "id": "8429a05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.894118, 35.488606 ], [ -117.666441, 35.65712 ], [ -117.727433, 35.896414 ], [ -118.017043, 35.966828 ], [ -118.244465, 35.797981 ], [ -118.182537, 35.559055 ], [ -117.894118, 35.488606 ] ] ], "type": "Polygon" }, "id": "8429ae5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.303432, 63.567626 ], [ -145.776016, 63.468704 ], [ -145.847967, 63.250238 ], [ -145.454852, 63.131594 ], [ -144.988187, 63.229289 ], [ -144.908757, 63.446842 ], [ -145.303432, 63.567626 ] ] ], "type": "Polygon" }, "id": "840c66dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.573181, 51.813606 ], [ -168.369191, 51.992149 ], [ -168.529086, 52.205677 ], [ -168.895374, 52.240534 ], [ -169.099372, 52.061348 ], [ -168.937087, 51.847949 ], [ -168.573181, 51.813606 ] ] ], "type": "Polygon" }, "id": "8422f13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.159737, 53.934343 ], [ -161.939048, 54.091727 ], [ -162.07154, 54.304396 ], [ -162.427515, 54.359754 ], [ -162.648838, 54.201813 ], [ -162.513562, 53.989074 ], [ -162.159737, 53.934343 ] ] ], "type": "Polygon" }, "id": "840cdbdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.096628, 54.910585 ], [ -161.401811, 54.770104 ], [ -161.271693, 54.558074 ], [ -160.919406, 54.499436 ], [ -160.695144, 54.652192 ], [ -160.741769, 54.850956 ], [ -161.096628, 54.910585 ] ] ], "type": "Polygon" }, "id": "840cd9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.973243, 24.524123 ], [ -108.749299, 24.682318 ], [ -108.787872, 24.937773 ], [ -109.051356, 25.034889 ], [ -109.275521, 24.876248 ], [ -109.235983, 24.620941 ], [ -108.973243, 24.524123 ] ] ], "type": "Polygon" }, "id": "844801dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.594757, 52.699017 ], [ -169.389305, 52.877785 ], [ -169.556851, 53.089323 ], [ -169.932281, 53.121922 ], [ -170.137639, 52.942506 ], [ -169.967674, 52.731141 ], [ -169.594757, 52.699017 ] ] ], "type": "Polygon" }, "id": "8422c0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.026275, 52.153982 ], [ -172.82952, 52.341915 ], [ -173.01212, 52.551529 ], [ -173.39367, 52.572931 ], [ -173.589989, 52.384334 ], [ -173.405209, 52.175001 ], [ -173.026275, 52.153982 ] ] ], "type": "Polygon" }, "id": "8422ea9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.088985, 18.485188 ], [ -103.870612, 18.635566 ], [ -103.897756, 18.88873 ], [ -104.144197, 18.991533 ], [ -104.362982, 18.840686 ], [ -104.334915, 18.587507 ], [ -104.088985, 18.485188 ] ] ], "type": "Polygon" }, "id": "8449ac7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.081468, 34.879182 ], [ -118.858147, 35.049768 ], [ -118.921062, 35.288829 ], [ -119.208189, 35.356903 ], [ -119.431193, 35.185984 ], [ -119.367391, 34.947326 ], [ -119.081468, 34.879182 ] ] ], "type": "Polygon" }, "id": "8429ac5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.934179, 40.041865 ], [ -126.724658, 40.219086 ], [ -126.804746, 40.43702 ], [ -127.095021, 40.477247 ], [ -127.303769, 40.299824 ], [ -127.22302, 40.082376 ], [ -126.934179, 40.041865 ] ] ], "type": "Polygon" }, "id": "84282a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.489858, 32.114502 ], [ -115.263286, 32.281084 ], [ -115.317848, 32.527734 ], [ -115.599937, 32.607477 ], [ -115.826399, 32.440519 ], [ -115.770886, 32.194197 ], [ -115.489858, 32.114502 ] ] ], "type": "Polygon" }, "id": "8448595ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.484391, 52.596134 ], [ -168.277401, 52.77254 ], [ -168.439082, 52.984951 ], [ -168.810228, 53.020826 ], [ -169.017234, 52.84378 ], [ -168.853092, 52.631502 ], [ -168.484391, 52.596134 ] ] ], "type": "Polygon" }, "id": "8422c61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.334576, 52.870972 ], [ -167.124709, 53.04393 ], [ -167.281357, 53.256556 ], [ -167.65042, 53.296128 ], [ -167.860417, 53.12254 ], [ -167.701235, 52.910012 ], [ -167.334576, 52.870972 ] ] ], "type": "Polygon" }, "id": "8422d59ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -132.1878, 52.829961 ], [ -132.321844, 52.649029 ], [ -132.122917, 52.46258 ], [ -131.790547, 52.455624 ], [ -131.653764, 52.635868 ], [ -131.852069, 52.823762 ], [ -132.1878, 52.829961 ] ] ], "type": "Polygon" }, "id": "8412905ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.567456, 61.642227 ], [ -147.999706, 61.536443 ], [ -148.048197, 61.321578 ], [ -147.671078, 61.213191 ], [ -147.243578, 61.317687 ], [ -147.18847, 61.531845 ], [ -147.567456, 61.642227 ] ] ], "type": "Polygon" }, "id": "840c713ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.621247, 60.672409 ], [ -147.039465, 60.570397 ], [ -147.093729, 60.359302 ], [ -146.735857, 60.250944 ], [ -146.322172, 60.351758 ], [ -146.26185, 60.562116 ], [ -146.621247, 60.672409 ] ] ], "type": "Polygon" }, "id": "840c409ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.571548, 34.980457 ], [ -118.346673, 35.150264 ], [ -118.408681, 35.389715 ], [ -118.696476, 35.458971 ], [ -118.921062, 35.288829 ], [ -118.858147, 35.049768 ], [ -118.571548, 34.980457 ] ] ], "type": "Polygon" }, "id": "8429ae9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.047359, 18.394263 ], [ -100.827705, 18.54043 ], [ -100.848668, 18.792697 ], [ -101.090216, 18.898929 ], [ -101.310402, 18.75234 ], [ -101.288508, 18.499944 ], [ -101.047359, 18.394263 ] ] ], "type": "Polygon" }, "id": "8449841ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.759185, 53.003076 ], [ -166.54794, 53.174306 ], [ -166.70202, 53.387011 ], [ -167.069925, 53.428409 ], [ -167.281357, 53.256556 ], [ -167.124709, 53.04393 ], [ -166.759185, 53.003076 ] ] ], "type": "Polygon" }, "id": "8422d5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -140.504389, 60.464072 ], [ -140.928784, 60.382766 ], [ -141.029099, 60.178818 ], [ -140.710366, 60.057245 ], [ -140.291088, 60.137724 ], [ -140.185461, 60.340595 ], [ -140.504389, 60.464072 ] ] ], "type": "Polygon" }, "id": "840c6d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.70202, 53.387011 ], [ -166.489195, 53.557127 ], [ -166.644068, 53.769261 ], [ -167.014385, 53.811199 ], [ -167.227405, 53.640461 ], [ -167.069925, 53.428409 ], [ -166.70202, 53.387011 ] ] ], "type": "Polygon" }, "id": "8422d55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.542986, 53.637293 ], [ -165.327507, 53.803928 ], [ -165.477068, 54.016171 ], [ -165.844791, 54.061736 ], [ -166.060582, 53.894492 ], [ -165.90835, 53.682295 ], [ -165.542986, 53.637293 ] ] ], "type": "Polygon" }, "id": "8422d0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.038794, 56.562545 ], [ -152.387558, 56.446646 ], [ -152.397604, 56.245169 ], [ -152.063663, 56.159899 ], [ -151.717665, 56.274477 ], [ -151.702848, 56.475636 ], [ -152.038794, 56.562545 ] ] ], "type": "Polygon" }, "id": "841db43ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.242953, 57.81179 ], [ -151.609379, 57.697036 ], [ -151.625524, 57.491758 ], [ -151.280427, 57.401611 ], [ -150.917126, 57.515034 ], [ -150.895805, 57.719924 ], [ -151.242953, 57.81179 ] ] ], "type": "Polygon" }, "id": "840c5abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.632146, 52.307059 ], [ -169.428191, 52.486892 ], [ -169.594757, 52.699017 ], [ -169.967674, 52.731141 ], [ -170.171533, 52.550658 ], [ -170.002584, 52.338703 ], [ -169.632146, 52.307059 ] ] ], "type": "Polygon" }, "id": "8422c47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.386047, 34.25924 ], [ -118.162155, 34.429144 ], [ -118.223411, 34.669971 ], [ -118.509464, 34.740503 ], [ -118.73308, 34.570256 ], [ -118.670924, 34.329821 ], [ -118.386047, 34.25924 ] ] ], "type": "Polygon" }, "id": "8429a11ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.666889, 17.930812 ], [ -105.450644, 18.082984 ], [ -105.480825, 18.335755 ], [ -105.728157, 18.436308 ], [ -105.944744, 18.28364 ], [ -105.913658, 18.030916 ], [ -105.666889, 17.930812 ] ] ], "type": "Polygon" }, "id": "8449133ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.084157, 19.786804 ], [ -155.246997, 19.582648 ], [ -155.141137, 19.34949 ], [ -154.872682, 19.320301 ], [ -154.70956, 19.524365 ], [ -154.815172, 19.75771 ], [ -155.084157, 19.786804 ] ] ], "type": "Polygon" }, "id": "845d115ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.581563, 48.852844 ], [ -128.35662, 49.02179 ], [ -128.447886, 49.212482 ], [ -128.764822, 49.233846 ], [ -128.988731, 49.064733 ], [ -128.896746, 48.874423 ], [ -128.581563, 48.852844 ] ] ], "type": "Polygon" }, "id": "8428c83ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.408549, 18.230387 ], [ -106.19248, 18.383595 ], [ -106.224202, 18.636656 ], [ -106.472898, 18.736437 ], [ -106.689279, 18.582727 ], [ -106.656654, 18.329741 ], [ -106.408549, 18.230387 ] ] ], "type": "Polygon" }, "id": "84491e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.725166, 51.032312 ], [ -118.936452, 50.86545 ], [ -118.799825, 50.650464 ], [ -118.45406, 50.601024 ], [ -118.241325, 50.766662 ], [ -118.375778, 50.982966 ], [ -118.725166, 51.032312 ] ] ], "type": "Polygon" }, "id": "8412c25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.243578, 61.317687 ], [ -147.671078, 61.213191 ], [ -147.721618, 60.999575 ], [ -147.351104, 60.891161 ], [ -146.928281, 60.994399 ], [ -146.871318, 61.207298 ], [ -147.243578, 61.317687 ] ] ], "type": "Polygon" }, "id": "840c445ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.713885, 48.491533 ], [ -128.490489, 48.661206 ], [ -128.581563, 48.852844 ], [ -128.896746, 48.874423 ], [ -129.119111, 48.704587 ], [ -129.027332, 48.513335 ], [ -128.713885, 48.491533 ] ] ], "type": "Polygon" }, "id": "8428c8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.914693, 40.5734 ], [ -124.696976, 40.74788 ], [ -124.774184, 40.967675 ], [ -125.069871, 41.012538 ], [ -125.286907, 40.83783 ], [ -125.208943, 40.618487 ], [ -124.914693, 40.5734 ] ] ], "type": "Polygon" }, "id": "8428039ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.625524, 57.491758 ], [ -151.986891, 57.376129 ], [ -152.000147, 57.1717 ], [ -151.65712, 57.08325 ], [ -151.298759, 57.197542 ], [ -151.280427, 57.401611 ], [ -151.625524, 57.491758 ] ] ], "type": "Polygon" }, "id": "840c5a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.776911, 39.227057 ], [ -117.540731, 39.392353 ], [ -117.603669, 39.624273 ], [ -117.903802, 39.690565 ], [ -118.139716, 39.524963 ], [ -118.075769, 39.293376 ], [ -117.776911, 39.227057 ] ] ], "type": "Polygon" }, "id": "84298abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.924167, 19.055813 ], [ -64.756851, 19.204613 ], [ -64.78599, 19.395945 ], [ -64.982169, 19.438233 ], [ -65.148903, 19.28973 ], [ -65.12004, 19.098643 ], [ -64.924167, 19.055813 ] ] ], "type": "Polygon" }, "id": "844cec1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.362982, 18.840686 ], [ -104.144197, 18.991533 ], [ -104.171968, 19.245053 ], [ -104.419451, 19.347735 ], [ -104.638637, 19.19642 ], [ -104.60994, 18.942894 ], [ -104.362982, 18.840686 ] ] ], "type": "Polygon" }, "id": "8449a89ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.412264, 19.403768 ], [ -109.197688, 19.561083 ], [ -109.235615, 19.814669 ], [ -109.489004, 19.91076 ], [ -109.703764, 19.752927 ], [ -109.664952, 19.499523 ], [ -109.412264, 19.403768 ] ] ], "type": "Polygon" }, "id": "84490a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.561098, 40.047526 ], [ -125.346752, 40.223212 ], [ -125.424628, 40.443278 ], [ -125.717577, 40.487191 ], [ -125.931217, 40.311283 ], [ -125.852621, 40.091685 ], [ -125.561098, 40.047526 ] ] ], "type": "Polygon" }, "id": "842801dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.455238, 56.742895 ], [ -154.800224, 56.619347 ], [ -154.79333, 56.416021 ], [ -154.446361, 56.33641 ], [ -154.103864, 56.458531 ], [ -154.105847, 56.661679 ], [ -154.455238, 56.742895 ] ] ], "type": "Polygon" }, "id": "841db6dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.906051, 50.569957 ], [ -130.045922, 50.39626 ], [ -129.86676, 50.207288 ], [ -129.548514, 50.190621 ], [ -129.406347, 50.363537 ], [ -129.584702, 50.553906 ], [ -129.906051, 50.569957 ] ] ], "type": "Polygon" }, "id": "841d65dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.199205, 36.686957 ], [ -120.978099, 36.85946 ], [ -121.046013, 37.092763 ], [ -121.335882, 37.15313 ], [ -121.556545, 36.980328 ], [ -121.487788, 36.747458 ], [ -121.199205, 36.686957 ] ] ], "type": "Polygon" }, "id": "8429a93ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.806011, 51.607077 ], [ -170.606676, 51.791347 ], [ -170.776929, 52.003692 ], [ -171.148799, 52.031567 ], [ -171.347926, 51.84664 ], [ -171.175406, 51.634497 ], [ -170.806011, 51.607077 ] ] ], "type": "Polygon" }, "id": "8422e37ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.043479, 43.627138 ], [ -127.829965, 43.802368 ], [ -127.914939, 44.009473 ], [ -128.214095, 44.040901 ], [ -128.42672, 43.865502 ], [ -128.341085, 43.658845 ], [ -128.043479, 43.627138 ] ] ], "type": "Polygon" }, "id": "8428e5bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.293504, 61.288955 ], [ -151.71041, 61.170917 ], [ -151.727933, 60.954506 ], [ -151.33526, 60.856571 ], [ -150.922388, 60.973132 ], [ -150.898166, 61.189093 ], [ -151.293504, 61.288955 ] ] ], "type": "Polygon" }, "id": "840c54bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.424628, 40.443278 ], [ -125.208943, 40.618487 ], [ -125.286907, 40.83783 ], [ -125.581293, 40.881504 ], [ -125.796272, 40.706073 ], [ -125.717577, 40.487191 ], [ -125.424628, 40.443278 ] ] ], "type": "Polygon" }, "id": "8428015ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.457097, 53.496374 ], [ -164.24077, 53.660675 ], [ -164.384265, 53.873512 ], [ -164.746787, 53.922046 ], [ -164.963528, 53.757151 ], [ -164.817343, 53.544319 ], [ -164.457097, 53.496374 ] ] ], "type": "Polygon" }, "id": "8422d61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.178809, 29.628174 ], [ -113.954247, 29.793544 ], [ -114.005113, 30.043902 ], [ -114.281487, 30.128586 ], [ -114.506012, 29.96281 ], [ -114.454203, 29.712757 ], [ -114.178809, 29.628174 ] ] ], "type": "Polygon" }, "id": "844851bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.653659, 49.982008 ], [ -114.883081, 49.822871 ], [ -114.768905, 49.601942 ], [ -114.427783, 49.538953 ], [ -114.197416, 49.696763 ], [ -114.309094, 49.918887 ], [ -114.653659, 49.982008 ] ] ], "type": "Polygon" }, "id": "8412ce3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.855715, 52.92045 ], [ -161.638919, 53.079607 ], [ -161.76732, 53.293759 ], [ -162.11521, 53.34885 ], [ -162.332644, 53.189141 ], [ -162.201559, 52.974895 ], [ -161.855715, 52.92045 ] ] ], "type": "Polygon" }, "id": "84228a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.704427, 17.954042 ], [ -101.485726, 18.101061 ], [ -101.507952, 18.353126 ], [ -101.749802, 18.458278 ], [ -101.969005, 18.31082 ], [ -101.945856, 18.058652 ], [ -101.704427, 17.954042 ] ] ], "type": "Polygon" }, "id": "8449a35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.981916, 32.200269 ], [ -114.754063, 32.366044 ], [ -114.807659, 32.613008 ], [ -115.090078, 32.693885 ], [ -115.317848, 32.527734 ], [ -115.263286, 32.281084 ], [ -114.981916, 32.200269 ] ] ], "type": "Polygon" }, "id": "84485b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.275521, 24.876248 ], [ -109.051356, 25.034889 ], [ -109.090651, 25.290222 ], [ -109.355079, 25.38676 ], [ -109.579451, 25.227676 ], [ -109.53919, 24.9725 ], [ -109.275521, 24.876248 ] ] ], "type": "Polygon" }, "id": "8448011ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.785118, 41.869346 ], [ -126.571035, 42.0449 ], [ -126.652415, 42.258638 ], [ -126.948578, 42.296363 ], [ -127.161867, 42.120615 ], [ -127.079793, 41.907336 ], [ -126.785118, 41.869346 ] ] ], "type": "Polygon" }, "id": "8428085ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.214684, 49.68349 ], [ -129.994037, 49.853068 ], [ -130.088959, 50.038434 ], [ -130.40518, 50.053845 ], [ -130.624686, 49.884125 ], [ -130.529119, 49.699138 ], [ -130.214684, 49.68349 ] ] ], "type": "Polygon" }, "id": "841d657ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.434415, 40.177462 ], [ -126.22283, 40.354041 ], [ -126.302233, 40.572453 ], [ -126.593912, 40.613808 ], [ -126.804746, 40.43702 ], [ -126.724658, 40.219086 ], [ -126.434415, 40.177462 ] ] ], "type": "Polygon" }, "id": "842801bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.216743, 37.247101 ], [ -113.976602, 37.408122 ], [ -114.031068, 37.647461 ], [ -114.326759, 37.725523 ], [ -114.566855, 37.564174 ], [ -114.511309, 37.325094 ], [ -114.216743, 37.247101 ] ] ], "type": "Polygon" }, "id": "8429825ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.871217, 52.230247 ], [ -166.663065, 52.403674 ], [ -166.815579, 52.617479 ], [ -167.178752, 52.657786 ], [ -167.387077, 52.483733 ], [ -167.232069, 52.270002 ], [ -166.871217, 52.230247 ] ] ], "type": "Polygon" }, "id": "8422f31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.556545, 36.980328 ], [ -121.335882, 37.15313 ], [ -121.404631, 37.38541 ], [ -121.694882, 37.444452 ], [ -121.91508, 37.271356 ], [ -121.845497, 37.039513 ], [ -121.556545, 36.980328 ] ] ], "type": "Polygon" }, "id": "8428345ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.648838, 54.201813 ], [ -162.427515, 54.359754 ], [ -162.563302, 54.571939 ], [ -162.923227, 54.626236 ], [ -163.145147, 54.467731 ], [ -163.006555, 54.255497 ], [ -162.648838, 54.201813 ] ] ], "type": "Polygon" }, "id": "840cdabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.060582, 53.894492 ], [ -165.844791, 54.061736 ], [ -165.997783, 54.273351 ], [ -166.369259, 54.317659 ], [ -166.585313, 54.149801 ], [ -166.429641, 53.938252 ], [ -166.060582, 53.894492 ] ] ], "type": "Polygon" }, "id": "8422d01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.90138, 18.410481 ], [ -62.729453, 18.560314 ], [ -62.760168, 18.756847 ], [ -62.962534, 18.803312 ], [ -63.1339, 18.653771 ], [ -63.103461, 18.457475 ], [ -62.90138, 18.410481 ] ] ], "type": "Polygon" }, "id": "844d4b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.816499, 53.456414 ], [ -162.598464, 53.616684 ], [ -162.73323, 53.829965 ], [ -163.088764, 53.88303 ], [ -163.307364, 53.722192 ], [ -163.169875, 53.508858 ], [ -162.816499, 53.456414 ] ] ], "type": "Polygon" }, "id": "84228b7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.909683, 52.735329 ], [ -167.701235, 52.910012 ], [ -167.860417, 53.12254 ], [ -168.23056, 53.160271 ], [ -168.439082, 52.984951 ], [ -168.277401, 52.77254 ], [ -167.909683, 52.735329 ] ] ], "type": "Polygon" }, "id": "8422c65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.656234, 19.114516 ], [ -108.441165, 19.270813 ], [ -108.477538, 19.524364 ], [ -108.729873, 19.621465 ], [ -108.945159, 19.464654 ], [ -108.907896, 19.211258 ], [ -108.656234, 19.114516 ] ] ], "type": "Polygon" }, "id": "8449199ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.405927, 57.107989 ], [ -153.758088, 56.987232 ], [ -153.758569, 56.783139 ], [ -153.411898, 56.700039 ], [ -153.062433, 56.819397 ], [ -153.056946, 57.023243 ], [ -153.405927, 57.107989 ] ] ], "type": "Polygon" }, "id": "840ce93ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.477068, 54.016171 ], [ -165.259958, 54.181666 ], [ -165.410238, 54.393329 ], [ -165.780352, 54.439452 ], [ -165.997783, 54.273351 ], [ -165.844791, 54.061736 ], [ -165.477068, 54.016171 ] ] ], "type": "Polygon" }, "id": "8422d05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.45537, 37.624773 ], [ -118.224583, 37.792621 ], [ -118.287901, 38.02727 ], [ -118.582967, 38.093709 ], [ -118.813456, 37.925549 ], [ -118.749183, 37.691263 ], [ -118.45537, 37.624773 ] ] ], "type": "Polygon" }, "id": "84298c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.290161, 35.384278 ], [ -120.069127, 35.556274 ], [ -120.134579, 35.793076 ], [ -120.421924, 35.857457 ], [ -120.642573, 35.685141 ], [ -120.576268, 35.448765 ], [ -120.290161, 35.384278 ] ] ], "type": "Polygon" }, "id": "8429ad5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.151781, 19.341918 ], [ -68.32814, 19.251186 ], [ -68.30108, 19.060459 ], [ -68.097493, 18.960755 ], [ -67.921445, 19.051945 ], [ -67.948672, 19.24238 ], [ -68.151781, 19.341918 ] ] ], "type": "Polygon" }, "id": "844cf13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.154831, 31.786731 ], [ -114.928168, 31.952933 ], [ -114.981916, 32.200269 ], [ -115.263286, 32.281084 ], [ -115.489858, 32.114502 ], [ -115.435156, 31.867487 ], [ -115.154831, 31.786731 ] ] ], "type": "Polygon" }, "id": "8448583ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.586998, 54.035353 ], [ -161.365335, 54.191015 ], [ -161.495024, 54.403595 ], [ -161.849189, 54.460604 ], [ -162.07154, 54.304396 ], [ -161.939048, 54.091727 ], [ -161.586998, 54.035353 ] ] ], "type": "Polygon" }, "id": "840cdb9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.327624, 18.07627 ], [ -100.108342, 18.221363 ], [ -100.127793, 18.473017 ], [ -100.367451, 18.579733 ], [ -100.587287, 18.434227 ], [ -100.566911, 18.182419 ], [ -100.327624, 18.07627 ] ] ], "type": "Polygon" }, "id": "8449b13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.75997, 56.175059 ], [ -154.099981, 56.05434 ], [ -154.098079, 55.853302 ], [ -153.760872, 55.773184 ], [ -153.423344, 55.892525 ], [ -153.420542, 56.093352 ], [ -153.75997, 56.175059 ] ] ], "type": "Polygon" }, "id": "841db63ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.184628, 58.43213 ], [ -151.559489, 58.316945 ], [ -151.576367, 58.109632 ], [ -151.223799, 58.017896 ], [ -150.852213, 58.131728 ], [ -150.829927, 58.338638 ], [ -151.184628, 58.43213 ] ] ], "type": "Polygon" }, "id": "840c5e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.286907, 40.83783 ], [ -125.069871, 41.012538 ], [ -125.147918, 41.231141 ], [ -125.443752, 41.274582 ], [ -125.660084, 41.099652 ], [ -125.581293, 40.881504 ], [ -125.286907, 40.83783 ] ] ], "type": "Polygon" }, "id": "842803bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.740924, 52.039015 ], [ -174.548385, 52.23095 ], [ -174.738678, 52.439025 ], [ -175.123584, 52.454834 ], [ -175.315516, 52.262236 ], [ -175.123165, 52.054493 ], [ -174.740924, 52.039015 ] ] ], "type": "Polygon" }, "id": "8422e83ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.949898, 60.593147 ], [ -153.351141, 60.470242 ], [ -153.354981, 60.255061 ], [ -152.964015, 60.163097 ], [ -152.566324, 60.284475 ], [ -152.556052, 60.49933 ], [ -152.949898, 60.593147 ] ] ], "type": "Polygon" }, "id": "840c50dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.67258, 56.880024 ], [ -152.026095, 56.764907 ], [ -152.038794, 56.562545 ], [ -151.702848, 56.475636 ], [ -151.352206, 56.589438 ], [ -151.334643, 56.791454 ], [ -151.67258, 56.880024 ] ] ], "type": "Polygon" }, "id": "841db4bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.963528, 53.757151 ], [ -164.746787, 53.922046 ], [ -164.893646, 54.134315 ], [ -165.259958, 54.181666 ], [ -165.477068, 54.016171 ], [ -165.327507, 53.803928 ], [ -164.963528, 53.757151 ] ] ], "type": "Polygon" }, "id": "8422d63ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.488201, 36.093302 ], [ -120.266273, 36.265188 ], [ -120.332518, 36.500484 ], [ -120.621555, 36.56347 ], [ -120.843084, 36.391273 ], [ -120.77598, 36.156401 ], [ -120.488201, 36.093302 ] ] ], "type": "Polygon" }, "id": "8429a9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.015126, 54.133021 ], [ -160.792537, 54.286965 ], [ -160.919406, 54.499436 ], [ -161.271693, 54.558074 ], [ -161.495024, 54.403595 ], [ -161.365335, 54.191015 ], [ -161.015126, 54.133021 ] ] ], "type": "Polygon" }, "id": "840cd95ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.608013, 53.256717 ], [ -165.39414, 53.424484 ], [ -165.542986, 53.637293 ], [ -165.90835, 53.682295 ], [ -166.122523, 53.513918 ], [ -165.971045, 53.301152 ], [ -165.608013, 53.256717 ] ] ], "type": "Polygon" }, "id": "8422d47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.335131, 57.464426 ], [ -152.694445, 57.346601 ], [ -152.702606, 57.141857 ], [ -152.356554, 57.055242 ], [ -152.000147, 57.1717 ], [ -151.986891, 57.376129 ], [ -152.335131, 57.464426 ] ] ], "type": "Polygon" }, "id": "840c5a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.55398, 60.339803 ], [ -145.968926, 60.241565 ], [ -146.030766, 60.032486 ], [ -145.683494, 59.922426 ], [ -145.273099, 60.019539 ], [ -145.20545, 60.227826 ], [ -145.55398, 60.339803 ] ] ], "type": "Polygon" }, "id": "840c457ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.029099, 60.178818 ], [ -141.448226, 60.095844 ], [ -141.543626, 59.892156 ], [ -141.225192, 59.772472 ], [ -140.811025, 59.854595 ], [ -140.710366, 60.057245 ], [ -141.029099, 60.178818 ] ] ], "type": "Polygon" }, "id": "840c68bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.705415, 51.518292 ], [ -169.50439, 51.700222 ], [ -169.669029, 51.913474 ], [ -170.03702, 51.944634 ], [ -170.237945, 51.762052 ], [ -170.070992, 51.548964 ], [ -169.705415, 51.518292 ] ] ], "type": "Polygon" }, "id": "8422c49ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.917612, 58.408516 ], [ -152.290355, 58.291018 ], [ -152.301799, 58.083347 ], [ -151.945941, 57.99352 ], [ -151.576367, 58.109632 ], [ -151.559489, 58.316945 ], [ -151.917612, 58.408516 ] ] ], "type": "Polygon" }, "id": "840c5e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.500302, 51.503315 ], [ -130.64007, 51.326677 ], [ -130.454155, 51.137767 ], [ -130.129229, 51.124079 ], [ -129.987009, 51.299958 ], [ -130.172147, 51.490288 ], [ -130.500302, 51.503315 ] ] ], "type": "Polygon" }, "id": "841d64dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.698793, 21.049234 ], [ -108.480534, 21.206419 ], [ -108.517534, 21.461195 ], [ -108.773713, 21.558637 ], [ -108.992193, 21.400962 ], [ -108.954275, 21.146337 ], [ -108.698793, 21.049234 ] ] ], "type": "Polygon" }, "id": "8448263ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.000147, 57.1717 ], [ -152.356554, 57.055242 ], [ -152.367036, 56.851685 ], [ -152.026095, 56.764907 ], [ -151.67258, 56.880024 ], [ -151.65712, 57.08325 ], [ -152.000147, 57.1717 ] ] ], "type": "Polygon" }, "id": "841db49ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.76256, 24.813157 ], [ -109.53919, 24.9725 ], [ -109.579451, 25.227676 ], [ -109.844041, 25.323335 ], [ -110.067594, 25.163543 ], [ -110.026375, 24.908543 ], [ -109.76256, 24.813157 ] ] ], "type": "Polygon" }, "id": "844801bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.885892, 44.145078 ], [ -113.627821, 44.296651 ], [ -113.6854, 44.51946 ], [ -114.002305, 44.590484 ], [ -114.260348, 44.438605 ], [ -114.201519, 44.21601 ], [ -113.885892, 44.145078 ] ] ], "type": "Polygon" }, "id": "842895bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.552884, 18.436537 ], [ -104.334915, 18.587507 ], [ -104.362982, 18.840686 ], [ -104.60994, 18.942894 ], [ -104.828301, 18.791448 ], [ -104.799314, 18.538272 ], [ -104.552884, 18.436537 ] ] ], "type": "Polygon" }, "id": "8449ac3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.287901, 38.02727 ], [ -118.055781, 38.194517 ], [ -118.119011, 38.428512 ], [ -118.415335, 38.494906 ], [ -118.647166, 38.327348 ], [ -118.582967, 38.093709 ], [ -118.287901, 38.02727 ] ] ], "type": "Polygon" }, "id": "84298c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.519053, 60.002335 ], [ -144.930461, 59.907747 ], [ -144.999363, 59.700749 ], [ -144.662448, 59.589171 ], [ -144.255593, 59.682704 ], [ -144.181127, 59.88886 ], [ -144.519053, 60.002335 ] ] ], "type": "Polygon" }, "id": "840c6a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.754537, 61.634869 ], [ -147.18847, 61.531845 ], [ -147.243578, 61.317687 ], [ -146.871318, 61.207298 ], [ -146.44225, 61.30908 ], [ -146.380603, 61.522481 ], [ -146.754537, 61.634869 ] ] ], "type": "Polygon" }, "id": "840c44dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.069352, 52.070638 ], [ -131.207705, 51.892182 ], [ -131.016828, 51.703895 ], [ -130.688309, 51.692637 ], [ -130.547392, 51.870358 ], [ -130.737537, 52.060077 ], [ -131.069352, 52.070638 ] ] ], "type": "Polygon" }, "id": "8412931ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.965357, 51.33862 ], [ -131.101539, 51.162332 ], [ -130.914908, 50.974835 ], [ -130.592791, 50.962217 ], [ -130.454155, 51.137767 ], [ -130.64007, 51.326677 ], [ -130.965357, 51.33862 ] ] ], "type": "Polygon" }, "id": "841d645ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.43366, 54.989682 ], [ -160.741769, 54.850956 ], [ -160.695144, 54.652192 ], [ -160.344799, 54.591949 ], [ -160.03812, 54.729117 ], [ -160.080345, 54.928077 ], [ -160.43366, 54.989682 ] ] ], "type": "Polygon" }, "id": "840cd99ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.307364, 53.722192 ], [ -163.088764, 53.88303 ], [ -163.226803, 54.095821 ], [ -163.586193, 54.147809 ], [ -163.805318, 53.986395 ], [ -163.664539, 53.773571 ], [ -163.307364, 53.722192 ] ] ], "type": "Polygon" }, "id": "840cda7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.478776, 61.304433 ], [ -150.898166, 61.189093 ], [ -150.922388, 60.973132 ], [ -150.533893, 60.873004 ], [ -150.118678, 60.98691 ], [ -150.087798, 61.202365 ], [ -150.478776, 61.304433 ] ] ], "type": "Polygon" }, "id": "840c737ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.601331, 18.491167 ], [ -68.77923, 18.397495 ], [ -68.752285, 18.203326 ], [ -68.547267, 18.103127 ], [ -68.369672, 18.197263 ], [ -68.396789, 18.391133 ], [ -68.601331, 18.491167 ] ] ], "type": "Polygon" }, "id": "844cc67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.828301, 18.791448 ], [ -104.60994, 18.942894 ], [ -104.638637, 19.19642 ], [ -104.886619, 19.298491 ], [ -105.105363, 19.146571 ], [ -105.075742, 18.893057 ], [ -104.828301, 18.791448 ] ] ], "type": "Polygon" }, "id": "8449ad5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.595425, 64.947214 ], [ -148.090654, 64.839728 ], [ -148.145291, 64.61553 ], [ -147.713412, 64.499599 ], [ -147.224403, 64.605649 ], [ -147.161088, 64.82905 ], [ -147.595425, 64.947214 ] ] ], "type": "Polygon" }, "id": "840d5a9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.396006, 19.322526 ], [ -67.570701, 19.23283 ], [ -67.543311, 19.042693 ], [ -67.341068, 18.942552 ], [ -67.166701, 19.032711 ], [ -67.194249, 19.222547 ], [ -67.396006, 19.322526 ] ] ], "type": "Polygon" }, "id": "844cc49ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.682533, 25.861931 ], [ -110.458657, 26.022613 ], [ -110.501116, 26.277221 ], [ -110.768412, 26.370945 ], [ -110.992429, 26.209821 ], [ -110.949012, 25.955418 ], [ -110.682533, 25.861931 ] ] ], "type": "Polygon" }, "id": "84480c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.244982, 17.99593 ], [ -101.026059, 18.142317 ], [ -101.047359, 18.394263 ], [ -101.288508, 18.499944 ], [ -101.507952, 18.353126 ], [ -101.485726, 18.101061 ], [ -101.244982, 17.99593 ] ] ], "type": "Polygon" }, "id": "8449849ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.479681, 51.536713 ], [ -131.613354, 51.35971 ], [ -131.423962, 51.173225 ], [ -131.101539, 51.162332 ], [ -130.965357, 51.33862 ], [ -131.154087, 51.52652 ], [ -131.479681, 51.536713 ] ] ], "type": "Polygon" }, "id": "841d669ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.383249, 43.033263 ], [ -126.165021, 43.207187 ], [ -126.246754, 43.418526 ], [ -126.547453, 43.455503 ], [ -126.764887, 43.281382 ], [ -126.682424, 43.070482 ], [ -126.383249, 43.033263 ] ] ], "type": "Polygon" }, "id": "8428e49ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.164307, 17.911011 ], [ -101.945856, 18.058652 ], [ -101.969005, 18.31082 ], [ -102.211526, 18.415435 ], [ -102.430461, 18.267348 ], [ -102.40639, 18.015094 ], [ -102.164307, 17.911011 ] ] ], "type": "Polygon" }, "id": "8449a31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.758569, 56.783139 ], [ -154.105847, 56.661679 ], [ -154.103864, 56.458531 ], [ -153.75951, 56.377051 ], [ -153.41482, 56.49711 ], [ -153.411898, 56.700039 ], [ -153.758569, 56.783139 ] ] ], "type": "Polygon" }, "id": "841db69ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.791812, 60.041118 ], [ -147.199707, 59.938939 ], [ -147.25146, 59.729678 ], [ -146.901126, 59.623297 ], [ -146.49753, 59.724291 ], [ -146.43999, 59.932842 ], [ -146.791812, 60.041118 ] ] ], "type": "Polygon" }, "id": "840c403ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.228179, 61.942278 ], [ -151.656042, 61.823965 ], [ -151.674472, 61.60565 ], [ -151.272097, 61.5061 ], [ -150.848491, 61.622909 ], [ -150.823016, 61.840758 ], [ -151.228179, 61.942278 ] ] ], "type": "Polygon" }, "id": "840c723ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.727433, 35.896414 ], [ -117.498476, 36.064411 ], [ -117.55937, 36.303151 ], [ -117.850176, 36.373535 ], [ -118.078886, 36.205208 ], [ -118.017043, 35.966828 ], [ -117.727433, 35.896414 ] ] ], "type": "Polygon" }, "id": "842985bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.944436, 24.398441 ], [ -109.722065, 24.558015 ], [ -109.76256, 24.813157 ], [ -110.026375, 24.908543 ], [ -110.248919, 24.748513 ], [ -110.207477, 24.493555 ], [ -109.944436, 24.398441 ] ] ], "type": "Polygon" }, "id": "84482a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.644068, 53.769261 ], [ -166.429641, 53.938252 ], [ -166.585313, 54.149801 ], [ -166.958072, 54.192275 ], [ -167.172704, 54.022662 ], [ -167.014385, 53.811199 ], [ -166.644068, 53.769261 ] ] ], "type": "Polygon" }, "id": "8422d0bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.137639, 52.942506 ], [ -169.932281, 53.121922 ], [ -170.103272, 53.332682 ], [ -170.482048, 53.363832 ], [ -170.687256, 53.183763 ], [ -170.513853, 52.973198 ], [ -170.137639, 52.942506 ] ] ], "type": "Polygon" }, "id": "8422c01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.373116, 51.448549 ], [ -171.175406, 51.634497 ], [ -171.347926, 51.84664 ], [ -171.720395, 51.872617 ], [ -171.917843, 51.686008 ], [ -171.743099, 51.474084 ], [ -171.373116, 51.448549 ] ] ], "type": "Polygon" }, "id": "8422e33ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.498538, 58.606575 ], [ -154.86699, 58.480702 ], [ -154.859123, 58.271114 ], [ -154.488409, 58.187585 ], [ -154.12279, 58.31195 ], [ -154.125053, 58.521341 ], [ -154.498538, 58.606575 ] ] ], "type": "Polygon" }, "id": "840cec3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.119111, 48.704587 ], [ -128.896746, 48.874423 ], [ -128.988731, 49.064733 ], [ -129.303777, 49.08482 ], [ -129.525084, 48.914827 ], [ -129.432411, 48.724904 ], [ -129.119111, 48.704587 ] ] ], "type": "Polygon" }, "id": "8428c9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.353718, 29.370494 ], [ -113.128014, 29.534704 ], [ -113.177136, 29.785864 ], [ -113.452924, 29.872536 ], [ -113.678635, 29.707918 ], [ -113.628554, 29.457038 ], [ -113.353718, 29.370494 ] ] ], "type": "Polygon" }, "id": "844851dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.408921, 50.773734 ], [ -130.546442, 50.599277 ], [ -130.364574, 50.411238 ], [ -130.045922, 50.39626 ], [ -129.906051, 50.569957 ], [ -130.087162, 50.759396 ], [ -130.408921, 50.773734 ] ] ], "type": "Polygon" }, "id": "841d643ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.093729, 60.359302 ], [ -147.505989, 60.255909 ], [ -147.55599, 60.045383 ], [ -147.199707, 59.938939 ], [ -146.791812, 60.041118 ], [ -146.735857, 60.250944 ], [ -147.093729, 60.359302 ] ] ], "type": "Polygon" }, "id": "840c401ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.921445, 19.051945 ], [ -68.097493, 18.960755 ], [ -68.070302, 18.769177 ], [ -67.866898, 18.669089 ], [ -67.691168, 18.760742 ], [ -67.718523, 18.95202 ], [ -67.921445, 19.051945 ] ] ], "type": "Polygon" }, "id": "844cc45ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.872178, 18.176007 ], [ -106.656654, 18.329741 ], [ -106.689279, 18.582727 ], [ -106.938328, 18.681891 ], [ -107.154143, 18.527649 ], [ -107.12062, 18.274754 ], [ -106.872178, 18.176007 ] ] ], "type": "Polygon" }, "id": "84491ebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.647532, 31.871066 ], [ -114.419616, 32.036463 ], [ -114.472395, 32.284104 ], [ -114.754063, 32.366044 ], [ -114.981916, 32.200269 ], [ -114.928168, 31.952933 ], [ -114.647532, 31.871066 ] ] ], "type": "Polygon" }, "id": "8448587ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.157385, 24.110273 ], [ -108.934423, 24.268713 ], [ -108.973243, 24.524123 ], [ -109.235983, 24.620941 ], [ -109.459155, 24.462048 ], [ -109.419379, 24.206794 ], [ -109.157385, 24.110273 ] ] ], "type": "Polygon" }, "id": "8448057ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.73323, 53.829965 ], [ -162.513562, 53.989074 ], [ -162.648838, 54.201813 ], [ -163.006555, 54.255497 ], [ -163.226803, 54.095821 ], [ -163.088764, 53.88303 ], [ -162.73323, 53.829965 ] ] ], "type": "Polygon" }, "id": "840cda3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.799214, 55.658244 ], [ -157.125299, 55.529077 ], [ -157.102701, 55.328663 ], [ -156.758612, 55.257432 ], [ -156.434533, 55.385128 ], [ -156.452533, 55.585517 ], [ -156.799214, 55.658244 ] ] ], "type": "Polygon" }, "id": "840cc8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.248052, 27.591432 ], [ -112.023625, 27.754293 ], [ -112.069842, 28.007385 ], [ -112.341444, 28.097367 ], [ -112.565934, 27.93408 ], [ -112.518762, 27.681239 ], [ -112.248052, 27.591432 ] ] ], "type": "Polygon" }, "id": "844854dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.547361, 33.847634 ], [ -118.324712, 34.017948 ], [ -118.386047, 34.25924 ], [ -118.670924, 34.329821 ], [ -118.89329, 34.159159 ], [ -118.831067, 33.918266 ], [ -118.547361, 33.847634 ] ] ], "type": "Polygon" }, "id": "8429a19ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.024469, 61.635152 ], [ -150.450521, 61.521092 ], [ -150.478776, 61.304433 ], [ -150.087798, 61.202365 ], [ -149.666105, 61.315 ], [ -149.631047, 61.531116 ], [ -150.024469, 61.635152 ] ] ], "type": "Polygon" }, "id": "840c731ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.374253, 25.513153 ], [ -110.150531, 25.673391 ], [ -110.192253, 25.928218 ], [ -110.458657, 26.022613 ], [ -110.682533, 25.861931 ], [ -110.639854, 25.607299 ], [ -110.374253, 25.513153 ] ] ], "type": "Polygon" }, "id": "84480c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.092722, 60.040608 ], [ -149.495677, 59.930815 ], [ -149.52971, 59.719708 ], [ -149.166763, 59.61895 ], [ -148.767801, 59.727433 ], [ -148.727808, 59.937973 ], [ -149.092722, 60.040608 ] ] ], "type": "Polygon" }, "id": "840c421ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.707157, 36.574218 ], [ -121.487788, 36.747458 ], [ -121.556545, 36.980328 ], [ -121.845497, 37.039513 ], [ -122.064397, 36.865977 ], [ -121.994819, 36.633553 ], [ -121.707157, 36.574218 ] ] ], "type": "Polygon" }, "id": "842834dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.651793, 58.38063 ], [ -153.022288, 58.260831 ], [ -153.02828, 58.052849 ], [ -152.669234, 57.964966 ], [ -152.301799, 58.083347 ], [ -152.290355, 58.291018 ], [ -152.651793, 58.38063 ] ] ], "type": "Polygon" }, "id": "840cedbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.811614, 26.625306 ], [ -110.586554, 26.786143 ], [ -110.629535, 27.040435 ], [ -110.898546, 27.133687 ], [ -111.123741, 26.972419 ], [ -111.079793, 26.718333 ], [ -110.811614, 26.625306 ] ] ], "type": "Polygon" }, "id": "844808bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.528953, 53.11755 ], [ -164.314232, 53.282989 ], [ -164.457097, 53.496374 ], [ -164.817343, 53.544319 ], [ -165.032465, 53.378285 ], [ -164.88695, 53.164903 ], [ -164.528953, 53.11755 ] ] ], "type": "Polygon" }, "id": "8422d69ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.723192, 58.466661 ], [ -150.101899, 58.356126 ], [ -150.129564, 58.149665 ], [ -149.783877, 58.054222 ], [ -149.408645, 58.163474 ], [ -149.375637, 58.369441 ], [ -149.723192, 58.466661 ] ] ], "type": "Polygon" }, "id": "840c589ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.503969, 33.087119 ], [ -116.277785, 33.254816 ], [ -116.334807, 33.499269 ], [ -116.618956, 33.575676 ], [ -116.844972, 33.407616 ], [ -116.787011, 33.163514 ], [ -116.503969, 33.087119 ] ] ], "type": "Polygon" }, "id": "8429a6bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.559132, 61.965195 ], [ -149.991994, 61.852476 ], [ -150.024469, 61.635152 ], [ -149.631047, 61.531116 ], [ -149.202739, 61.642421 ], [ -149.163316, 61.859163 ], [ -149.559132, 61.965195 ] ] ], "type": "Polygon" }, "id": "840c739ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.351092, 36.28014 ], [ -121.131275, 36.453079 ], [ -121.199205, 36.686957 ], [ -121.487788, 36.747458 ], [ -121.707157, 36.574218 ], [ -121.638396, 36.34078 ], [ -121.351092, 36.28014 ] ] ], "type": "Polygon" }, "id": "8429a9bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.100219, 51.170273 ], [ -167.89775, 51.349227 ], [ -168.053539, 51.563914 ], [ -168.414165, 51.599543 ], [ -168.616687, 51.419948 ], [ -168.458542, 51.205367 ], [ -168.100219, 51.170273 ] ] ], "type": "Polygon" }, "id": "8422f19ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.666105, 61.315 ], [ -150.087798, 61.202365 ], [ -150.118678, 60.98691 ], [ -149.734494, 60.884637 ], [ -149.317112, 60.99588 ], [ -149.27962, 61.210775 ], [ -149.666105, 61.315 ] ] ], "type": "Polygon" }, "id": "840c733ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.861424, 19.598164 ], [ -115.657587, 19.761898 ], [ -115.707545, 20.012233 ], [ -115.962109, 20.098425 ], [ -116.165839, 19.934145 ], [ -116.115115, 19.684219 ], [ -115.861424, 19.598164 ] ] ], "type": "Polygon" }, "id": "8449447ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.505888, 55.169268 ], [ -161.812365, 55.027191 ], [ -161.758113, 54.827744 ], [ -161.401811, 54.770104 ], [ -161.096628, 54.910585 ], [ -161.146441, 55.110293 ], [ -161.505888, 55.169268 ] ] ], "type": "Polygon" }, "id": "840cd8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.159396, 62.601207 ], [ -151.598805, 62.482662 ], [ -151.618216, 62.262475 ], [ -151.205649, 62.161303 ], [ -150.770736, 62.278318 ], [ -150.743908, 62.49802 ], [ -151.159396, 62.601207 ] ] ], "type": "Polygon" }, "id": "840c729ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.401461, 40.701598 ], [ -124.181725, 40.875321 ], [ -124.258153, 41.095559 ], [ -124.555104, 41.141632 ], [ -124.774184, 40.967675 ], [ -124.696976, 40.74788 ], [ -124.401461, 40.701598 ] ] ], "type": "Polygon" }, "id": "842803dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.6842, 39.909933 ], [ -124.467172, 40.084678 ], [ -124.543472, 40.306377 ], [ -124.837561, 40.352874 ], [ -125.053928, 40.177894 ], [ -124.976873, 39.956653 ], [ -124.6842, 39.909933 ] ] ], "type": "Polygon" }, "id": "8428001ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.469038, 57.357877 ], [ -154.821507, 57.233536 ], [ -154.81431, 57.028106 ], [ -154.459772, 56.94719 ], [ -154.109899, 57.070077 ], [ -154.11197, 57.275323 ], [ -154.469038, 57.357877 ] ] ], "type": "Polygon" }, "id": "840ce95ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.409218, 41.615422 ], [ -126.194363, 41.790775 ], [ -126.274915, 42.005743 ], [ -126.571035, 42.0449 ], [ -126.785118, 41.869346 ], [ -126.70386, 41.654836 ], [ -126.409218, 41.615422 ] ] ], "type": "Polygon" }, "id": "84280e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.14807, 35.575321 ], [ -120.9291, 35.748358 ], [ -120.996224, 35.983771 ], [ -121.28315, 36.045706 ], [ -121.501688, 35.872358 ], [ -121.433737, 35.637388 ], [ -121.14807, 35.575321 ] ] ], "type": "Polygon" }, "id": "8429ad3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.757106, 57.397506 ], [ -154.11197, 57.275323 ], [ -154.109899, 57.070077 ], [ -153.758088, 56.987232 ], [ -153.405927, 57.107989 ], [ -153.402877, 57.313006 ], [ -153.757106, 57.397506 ] ] ], "type": "Polygon" }, "id": "840ce91ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.76506, 65.979798 ], [ -150.276445, 65.864266 ], [ -150.311972, 65.635894 ], [ -149.845867, 65.523696 ], [ -149.340791, 65.637599 ], [ -149.295539, 65.865311 ], [ -149.76506, 65.979798 ] ] ], "type": "Polygon" }, "id": "840d537ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.522637, 41.491983 ], [ -125.30494, 41.66639 ], [ -125.383916, 41.883028 ], [ -125.68134, 41.92481 ], [ -125.898312, 41.750188 ], [ -125.818592, 41.533999 ], [ -125.522637, 41.491983 ] ] ], "type": "Polygon" }, "id": "84280e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.702606, 57.141857 ], [ -153.056946, 57.023243 ], [ -153.062433, 56.819397 ], [ -152.71858, 56.734442 ], [ -152.367036, 56.851685 ], [ -152.356554, 57.055242 ], [ -152.702606, 57.141857 ] ] ], "type": "Polygon" }, "id": "841db4dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.507286, 34.230184 ], [ -116.278799, 34.39732 ], [ -116.336407, 34.640067 ], [ -116.623463, 34.715339 ], [ -116.851778, 34.547853 ], [ -116.793213, 34.305447 ], [ -116.507286, 34.230184 ] ] ], "type": "Polygon" }, "id": "8429a2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -72.493422, 18.517654 ], [ -72.678863, 18.418699 ], [ -72.653854, 18.221825 ], [ -72.443192, 18.12415 ], [ -72.257963, 18.223546 ], [ -72.283183, 18.420174 ], [ -72.493422, 18.517654 ] ] ], "type": "Polygon" }, "id": "8467255ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.599853, 52.737064 ], [ -164.386715, 52.903632 ], [ -164.528953, 53.11755 ], [ -164.88695, 53.164903 ], [ -165.100477, 52.997739 ], [ -164.955628, 52.783821 ], [ -164.599853, 52.737064 ] ] ], "type": "Polygon" }, "id": "8422893ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.323047, 60.045229 ], [ -148.727808, 59.937973 ], [ -148.767801, 59.727433 ], [ -148.40896, 59.624755 ], [ -148.0083, 59.730742 ], [ -147.962398, 59.940665 ], [ -148.323047, 60.045229 ] ] ], "type": "Polygon" }, "id": "840c42bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.770736, 62.278318 ], [ -151.205649, 62.161303 ], [ -151.228179, 61.942278 ], [ -150.823016, 61.840758 ], [ -150.392556, 61.956278 ], [ -150.362821, 62.174798 ], [ -150.770736, 62.278318 ] ] ], "type": "Polygon" }, "id": "840c72bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.94003, 57.888303 ], [ -156.294952, 57.758776 ], [ -156.276719, 57.551018 ], [ -155.908915, 57.472872 ], [ -155.556469, 57.600863 ], [ -155.569348, 57.808525 ], [ -155.94003, 57.888303 ] ] ], "type": "Polygon" }, "id": "840ce85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.040386, 33.946172 ], [ -117.816239, 34.115728 ], [ -117.876668, 34.357406 ], [ -118.162155, 34.429144 ], [ -118.386047, 34.25924 ], [ -118.324712, 34.017948 ], [ -118.040386, 33.946172 ] ] ], "type": "Polygon" }, "id": "8429a1dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.255593, 59.682704 ], [ -144.662448, 59.589171 ], [ -144.732515, 59.383466 ], [ -144.40116, 59.27213 ], [ -143.998777, 59.364633 ], [ -143.923304, 59.569493 ], [ -144.255593, 59.682704 ] ] ], "type": "Polygon" }, "id": "840c6a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.978298, 54.129606 ], [ -134.105395, 53.944649 ], [ -133.892582, 53.761302 ], [ -133.55308, 53.761455 ], [ -133.422935, 53.945806 ], [ -133.635319, 54.130616 ], [ -133.978298, 54.129606 ] ] ], "type": "Polygon" }, "id": "841d2d1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.480825, 18.335755 ], [ -105.263748, 18.48787 ], [ -105.293651, 18.741025 ], [ -105.541544, 18.842029 ], [ -105.758972, 18.689425 ], [ -105.728157, 18.436308 ], [ -105.480825, 18.335755 ] ] ], "type": "Polygon" }, "id": "8449ad9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.88503, 25.578351 ], [ -109.660464, 25.737877 ], [ -109.701219, 25.99288 ], [ -109.967508, 26.088183 ], [ -110.192253, 25.928218 ], [ -110.150531, 25.673391 ], [ -109.88503, 25.578351 ] ] ], "type": "Polygon" }, "id": "84480c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.748711, 60.561796 ], [ -154.147083, 60.436322 ], [ -154.144476, 60.22087 ], [ -153.749948, 60.13115 ], [ -153.354981, 60.255061 ], [ -153.351141, 60.470242 ], [ -153.748711, 60.561796 ] ] ], "type": "Polygon" }, "id": "840c563ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.486573, 51.521798 ], [ -172.290836, 51.710079 ], [ -172.468894, 51.92118 ], [ -172.844871, 51.943745 ], [ -173.040236, 51.7548 ], [ -172.860012, 51.543956 ], [ -172.486573, 51.521798 ] ] ], "type": "Polygon" }, "id": "8422ee1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.984414, 18.497306 ], [ -69.163123, 18.403113 ], [ -69.136354, 18.208648 ], [ -68.930698, 18.10867 ], [ -68.752285, 18.203326 ], [ -68.77923, 18.397495 ], [ -68.984414, 18.497306 ] ] ], "type": "Polygon" }, "id": "844cd5bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.273099, 60.019539 ], [ -145.683494, 59.922426 ], [ -145.746752, 59.71463 ], [ -145.405284, 59.604735 ], [ -144.999363, 59.700749 ], [ -144.930461, 59.907747 ], [ -145.273099, 60.019539 ] ] ], "type": "Polygon" }, "id": "840c419ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.471834, 18.582174 ], [ -64.30336, 18.731565 ], [ -64.332871, 18.925131 ], [ -64.530581, 18.969059 ], [ -64.698477, 18.819962 ], [ -64.669242, 18.626645 ], [ -64.471834, 18.582174 ] ] ], "type": "Polygon" }, "id": "844ced5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.218491, 50.875726 ], [ -169.018848, 51.058035 ], [ -169.179315, 51.272492 ], [ -169.541725, 51.3045 ], [ -169.741316, 51.12154 ], [ -169.578562, 50.907225 ], [ -169.218491, 50.875726 ] ] ], "type": "Polygon" }, "id": "8422e21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.515664, 59.660553 ], [ -143.923304, 59.569493 ], [ -143.998777, 59.364633 ], [ -143.671962, 59.251711 ], [ -143.268864, 59.341785 ], [ -143.188067, 59.545759 ], [ -143.515664, 59.660553 ] ] ], "type": "Polygon" }, "id": "840c6a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.103969, 55.136595 ], [ -159.417714, 55.001456 ], [ -159.379915, 54.802341 ], [ -159.032814, 54.738241 ], [ -158.720699, 54.871855 ], [ -158.754047, 55.071085 ], [ -159.103969, 55.136595 ] ] ], "type": "Polygon" }, "id": "840cca1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.559906, 19.161507 ], [ -64.391797, 19.310271 ], [ -64.421211, 19.501841 ], [ -64.618459, 19.544411 ], [ -64.78599, 19.395945 ], [ -64.756851, 19.204613 ], [ -64.559906, 19.161507 ] ] ], "type": "Polygon" }, "id": "844cecbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.422488, 50.647677 ], [ -171.22755, 50.835629 ], [ -171.397968, 51.048884 ], [ -171.765498, 51.073975 ], [ -171.960176, 50.885359 ], [ -171.787597, 50.672318 ], [ -171.422488, 50.647677 ] ] ], "type": "Polygon" }, "id": "8422e15ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.148473, 55.537709 ], [ -158.469356, 55.404737 ], [ -158.437598, 55.204396 ], [ -158.089523, 55.136959 ], [ -157.770449, 55.268419 ], [ -157.797635, 55.468817 ], [ -158.148473, 55.537709 ] ] ], "type": "Polygon" }, "id": "840cc85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.392556, 61.956278 ], [ -150.823016, 61.840758 ], [ -150.848491, 61.622909 ], [ -150.450521, 61.521092 ], [ -150.024469, 61.635152 ], [ -149.991994, 61.852476 ], [ -150.392556, 61.956278 ] ] ], "type": "Polygon" }, "id": "840c73dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.965748, 67.165222 ], [ -158.469901, 67.020771 ], [ -158.420296, 66.786819 ], [ -157.877721, 66.697276 ], [ -157.378068, 66.839561 ], [ -157.416467, 67.073534 ], [ -157.965748, 67.165222 ] ] ], "type": "Polygon" }, "id": "840c229ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -98.249677, 17.864633 ], [ -98.030649, 18.006652 ], [ -98.04585, 18.256994 ], [ -98.280996, 18.365548 ], [ -98.500651, 18.223151 ], [ -98.484533, 17.97258 ], [ -98.249677, 17.864633 ] ] ], "type": "Polygon" }, "id": "8449b23ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.79354, 58.709181 ], [ -143.187807, 58.621011 ], [ -143.26586, 58.420051 ], [ -142.95456, 58.308142 ], [ -142.564587, 58.395392 ], [ -142.481646, 58.595462 ], [ -142.79354, 58.709181 ] ] ], "type": "Polygon" }, "id": "840c4d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.689279, 18.582727 ], [ -106.472898, 18.736437 ], [ -106.505262, 18.989809 ], [ -106.754914, 19.089389 ], [ -106.971597, 18.935179 ], [ -106.938328, 18.681891 ], [ -106.689279, 18.582727 ] ] ], "type": "Polygon" }, "id": "84491e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.115259, 42.400203 ], [ -110.856299, 42.548618 ], [ -110.906502, 42.778092 ], [ -111.216948, 42.859 ], [ -111.476066, 42.710282 ], [ -111.424584, 42.480962 ], [ -111.115259, 42.400203 ] ] ], "type": "Polygon" }, "id": "8426b2dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.459155, 24.462048 ], [ -109.235983, 24.620941 ], [ -109.275521, 24.876248 ], [ -109.53919, 24.9725 ], [ -109.76256, 24.813157 ], [ -109.722065, 24.558015 ], [ -109.459155, 24.462048 ] ] ], "type": "Polygon" }, "id": "8448019ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.580704, 44.564289 ], [ -129.370879, 44.740148 ], [ -129.459138, 44.942113 ], [ -129.75783, 44.967774 ], [ -129.966676, 44.791775 ], [ -129.877816, 44.590255 ], [ -129.580704, 44.564289 ] ] ], "type": "Polygon" }, "id": "8428535ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.796272, 40.706073 ], [ -125.581293, 40.881504 ], [ -125.660084, 41.099652 ], [ -125.954581, 41.141909 ], [ -126.168833, 40.966263 ], [ -126.089322, 40.748577 ], [ -125.796272, 40.706073 ] ] ], "type": "Polygon" }, "id": "8428017ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.994307, 33.177278 ], [ -115.766759, 33.344167 ], [ -115.822827, 33.588955 ], [ -116.1074, 33.666521 ], [ -116.334807, 33.499269 ], [ -116.277785, 33.254816 ], [ -115.994307, 33.177278 ] ] ], "type": "Polygon" }, "id": "8429a61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.16444, 32.764739 ], [ -115.938108, 32.932069 ], [ -115.994307, 33.177278 ], [ -116.277785, 33.254816 ], [ -116.503969, 33.087119 ], [ -116.446827, 32.842254 ], [ -116.16444, 32.764739 ] ] ], "type": "Polygon" }, "id": "8429a69ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.642573, 35.685141 ], [ -120.421924, 35.857457 ], [ -120.488201, 36.093302 ], [ -120.77598, 36.156401 ], [ -120.996224, 35.983771 ], [ -120.9291, 35.748358 ], [ -120.642573, 35.685141 ] ] ], "type": "Polygon" }, "id": "8429ad7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.778802, 60.309138 ], [ -152.17906, 60.190307 ], [ -152.192217, 59.976617 ], [ -151.811366, 59.882144 ], [ -151.414774, 59.999517 ], [ -151.395375, 60.212808 ], [ -151.778802, 60.309138 ] ] ], "type": "Polygon" }, "id": "840c50bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.161632, 18.578975 ], [ -102.942538, 18.728136 ], [ -102.967828, 18.981216 ], [ -103.213141, 19.085189 ], [ -103.432684, 18.935576 ], [ -103.406466, 18.682445 ], [ -103.161632, 18.578975 ] ] ], "type": "Polygon" }, "id": "8449ae1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.447886, 49.212482 ], [ -128.22138, 49.380685 ], [ -128.312837, 49.570423 ], [ -128.63154, 49.591582 ], [ -128.857011, 49.423207 ], [ -128.764822, 49.233846 ], [ -128.447886, 49.212482 ] ] ], "type": "Polygon" }, "id": "8428cb9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.820938, 62.948246 ], [ -150.270447, 62.83402 ], [ -150.301781, 62.613673 ], [ -149.891157, 62.508124 ], [ -149.446523, 62.620877 ], [ -149.407656, 62.840637 ], [ -149.820938, 62.948246 ] ] ], "type": "Polygon" }, "id": "840c70dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.637514, 66.667912 ], [ -150.165424, 66.552582 ], [ -150.203194, 66.322616 ], [ -149.723415, 66.208647 ], [ -149.202247, 66.322314 ], [ -149.154148, 66.551594 ], [ -149.637514, 66.667912 ] ] ], "type": "Polygon" }, "id": "840d53dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.957707, 53.233919 ], [ -163.741836, 53.397634 ], [ -163.882025, 53.611002 ], [ -164.24077, 53.660675 ], [ -164.457097, 53.496374 ], [ -164.314232, 53.282989 ], [ -163.957707, 53.233919 ] ] ], "type": "Polygon" }, "id": "8422d6dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.336407, 34.640067 ], [ -116.106672, 34.806701 ], [ -116.164152, 35.048951 ], [ -116.452341, 35.124236 ], [ -116.681913, 34.957256 ], [ -116.623463, 34.715339 ], [ -116.336407, 34.640067 ] ] ], "type": "Polygon" }, "id": "8429a23ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -77.997964, 19.336479 ], [ -77.803009, 19.441404 ], [ -77.780327, 19.665808 ], [ -77.953176, 19.786057 ], [ -78.149085, 19.681229 ], [ -78.171189, 19.456055 ], [ -77.997964, 19.336479 ] ] ], "type": "Polygon" }, "id": "844595dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.710788, 63.612876 ], [ -150.173017, 63.498645 ], [ -150.206081, 63.27651 ], [ -149.784881, 63.169201 ], [ -149.32782, 63.281933 ], [ -149.286812, 63.503459 ], [ -149.710788, 63.612876 ] ] ], "type": "Polygon" }, "id": "840c745ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.134579, 35.793076 ], [ -119.912271, 35.964646 ], [ -119.977682, 36.200911 ], [ -120.266273, 36.265188 ], [ -120.488201, 36.093302 ], [ -120.421924, 35.857457 ], [ -120.134579, 35.793076 ] ] ], "type": "Polygon" }, "id": "8429a8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.959792, 57.787041 ], [ -152.324184, 57.670049 ], [ -152.335131, 57.464426 ], [ -151.986891, 57.376129 ], [ -151.625524, 57.491758 ], [ -151.609379, 57.697036 ], [ -151.959792, 57.787041 ] ] ], "type": "Polygon" }, "id": "840c5a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.602384, 63.605602 ], [ -151.061816, 63.488315 ], [ -151.086874, 63.265636 ], [ -150.660524, 63.160773 ], [ -150.206081, 63.27651 ], [ -150.173017, 63.498645 ], [ -150.602384, 63.605602 ] ] ], "type": "Polygon" }, "id": "840c769ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.779792, 59.634357 ], [ -143.188067, 59.545759 ], [ -143.268864, 59.341785 ], [ -142.946653, 59.227326 ], [ -142.542981, 59.314981 ], [ -142.456946, 59.51803 ], [ -142.779792, 59.634357 ] ] ], "type": "Polygon" }, "id": "840c6bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.990926, 59.310934 ], [ -153.373285, 59.189108 ], [ -153.376776, 58.977927 ], [ -153.00376, 58.888864 ], [ -152.624623, 59.009218 ], [ -152.615284, 59.220095 ], [ -152.990926, 59.310934 ] ] ], "type": "Polygon" }, "id": "840c531ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.73308, 34.570256 ], [ -118.509464, 34.740503 ], [ -118.571548, 34.980457 ], [ -118.858147, 35.049768 ], [ -119.081468, 34.879182 ], [ -119.018489, 34.639625 ], [ -118.73308, 34.570256 ] ] ], "type": "Polygon" }, "id": "8429a13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.507952, 18.353126 ], [ -101.288508, 18.499944 ], [ -101.310402, 18.75234 ], [ -101.552668, 18.858034 ], [ -101.772624, 18.710787 ], [ -101.749802, 18.458278 ], [ -101.507952, 18.353126 ] ] ], "type": "Polygon" }, "id": "844984bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.189718, 19.173413 ], [ -107.973986, 19.329196 ], [ -108.009462, 19.582885 ], [ -108.261568, 19.680656 ], [ -108.477538, 19.524364 ], [ -108.441165, 19.270813 ], [ -108.189718, 19.173413 ] ] ], "type": "Polygon" }, "id": "844919dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.291583, 18.267223 ], [ -62.118355, 18.417276 ], [ -62.149535, 18.615168 ], [ -62.353666, 18.662777 ], [ -62.526341, 18.513016 ], [ -62.495438, 18.315356 ], [ -62.291583, 18.267223 ] ] ], "type": "Polygon" }, "id": "844d49dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.301799, 58.083347 ], [ -152.669234, 57.964966 ], [ -152.677762, 57.758158 ], [ -152.324184, 57.670049 ], [ -151.959792, 57.787041 ], [ -151.945941, 57.99352 ], [ -152.301799, 58.083347 ] ] ], "type": "Polygon" }, "id": "840c5adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.02028, 34.137481 ], [ -116.793213, 34.305447 ], [ -116.851778, 34.547853 ], [ -117.138355, 34.621938 ], [ -117.365222, 34.453621 ], [ -117.305716, 34.211572 ], [ -117.02028, 34.137481 ] ] ], "type": "Polygon" }, "id": "8429a07ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.738723, 55.058096 ], [ -157.058418, 54.929976 ], [ -157.036722, 54.731705 ], [ -156.699743, 54.661569 ], [ -156.381984, 54.788245 ], [ -156.399264, 54.986491 ], [ -156.738723, 55.058096 ] ] ], "type": "Polygon" }, "id": "840cc95ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.048197, 61.321578 ], [ -148.473945, 61.214368 ], [ -148.517992, 61.000086 ], [ -148.142805, 60.893668 ], [ -147.721618, 60.999575 ], [ -147.671078, 61.213191 ], [ -148.048197, 61.321578 ] ] ], "type": "Polygon" }, "id": "840c469ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.166293, 52.213494 ], [ -173.97185, 52.403766 ], [ -174.160033, 52.612156 ], [ -174.544786, 52.62996 ], [ -174.738678, 52.439025 ], [ -174.548385, 52.23095 ], [ -174.166293, 52.213494 ] ] ], "type": "Polygon" }, "id": "8422e87ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.016828, 51.703895 ], [ -131.154087, 51.52652 ], [ -130.965357, 51.33862 ], [ -130.64007, 51.326677 ], [ -130.500302, 51.503315 ], [ -130.688309, 51.692637 ], [ -131.016828, 51.703895 ] ] ], "type": "Polygon" }, "id": "8412937ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.419965, 51.58617 ], [ -166.213535, 51.760055 ], [ -166.362058, 51.974952 ], [ -166.719476, 52.015914 ], [ -166.926115, 51.841406 ], [ -166.775139, 51.626561 ], [ -166.419965, 51.58617 ] ] ], "type": "Polygon" }, "id": "8422f07ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.884112, 59.09964 ], [ -149.27359, 58.991275 ], [ -149.30812, 58.783345 ], [ -148.958732, 58.684326 ], [ -148.573003, 58.791427 ], [ -148.532929, 58.998799 ], [ -148.884112, 59.09964 ] ] ], "type": "Polygon" }, "id": "840c5cbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.707545, 20.012233 ], [ -115.50273, 20.176205 ], [ -115.552576, 20.426909 ], [ -115.808015, 20.513238 ], [ -116.01273, 20.348726 ], [ -115.962109, 20.098425 ], [ -115.707545, 20.012233 ] ] ], "type": "Polygon" }, "id": "844940dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.531839, 19.953351 ], [ -70.712692, 19.860867 ], [ -70.686806, 19.670554 ], [ -70.479877, 19.572976 ], [ -70.299282, 19.665897 ], [ -70.325357, 19.855958 ], [ -70.531839, 19.953351 ] ] ], "type": "Polygon" }, "id": "844cf25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.813456, 37.925549 ], [ -118.582967, 38.093709 ], [ -118.647166, 38.327348 ], [ -118.942808, 38.39246 ], [ -119.172978, 38.223992 ], [ -119.107831, 37.990722 ], [ -118.813456, 37.925549 ] ] ], "type": "Polygon" }, "id": "84298c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.576367, 58.109632 ], [ -151.945941, 57.99352 ], [ -151.959792, 57.787041 ], [ -151.609379, 57.697036 ], [ -151.242953, 57.81179 ], [ -151.223799, 58.017896 ], [ -151.576367, 58.109632 ] ] ], "type": "Polygon" }, "id": "840c5a9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.556851, 53.089323 ], [ -169.34988, 53.267014 ], [ -169.518417, 53.47795 ], [ -169.896393, 53.511021 ], [ -170.103272, 53.332682 ], [ -169.932281, 53.121922 ], [ -169.556851, 53.089323 ] ] ], "type": "Polygon" }, "id": "8422c05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.767801, 59.727433 ], [ -149.166763, 59.61895 ], [ -149.202924, 59.409081 ], [ -148.845939, 59.308264 ], [ -148.450922, 59.415466 ], [ -148.40896, 59.624755 ], [ -148.767801, 59.727433 ] ] ], "type": "Polygon" }, "id": "840c423ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.786028, 18.036674 ], [ -100.566911, 18.182419 ], [ -100.587287, 18.434227 ], [ -100.827705, 18.54043 ], [ -101.047359, 18.394263 ], [ -101.026059, 18.142317 ], [ -100.786028, 18.036674 ] ] ], "type": "Polygon" }, "id": "844984dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.834701, 51.208881 ], [ -170.636783, 51.394171 ], [ -170.806011, 51.607077 ], [ -171.175406, 51.634497 ], [ -171.373116, 51.448549 ], [ -171.201654, 51.235841 ], [ -170.834701, 51.208881 ] ] ], "type": "Polygon" }, "id": "8422e31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.373656, 23.818004 ], [ -108.150193, 23.9753 ], [ -108.187338, 24.230913 ], [ -108.44891, 24.329103 ], [ -108.67262, 24.171356 ], [ -108.634513, 23.915872 ], [ -108.373656, 23.818004 ] ] ], "type": "Polygon" }, "id": "8448009ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.064397, 36.865977 ], [ -121.845497, 37.039513 ], [ -121.91508, 37.271356 ], [ -122.204381, 37.329215 ], [ -122.42279, 37.155389 ], [ -122.352395, 36.923995 ], [ -122.064397, 36.865977 ] ] ], "type": "Polygon" }, "id": "8428341ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.230454, 59.339506 ], [ -152.615284, 59.220095 ], [ -152.624623, 59.009218 ], [ -152.254967, 58.918094 ], [ -151.873482, 59.036068 ], [ -151.858315, 59.246591 ], [ -152.230454, 59.339506 ] ] ], "type": "Polygon" }, "id": "840c53bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.974544, 47.763981 ], [ -128.754189, 47.935059 ], [ -128.844872, 48.12857 ], [ -129.156598, 48.150606 ], [ -129.375927, 47.979373 ], [ -129.284564, 47.786259 ], [ -128.974544, 47.763981 ] ] ], "type": "Polygon" }, "id": "8428cddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.701374, 59.417527 ], [ -148.097988, 59.31278 ], [ -148.141807, 59.104749 ], [ -147.794621, 59.00209 ], [ -147.401999, 59.105623 ], [ -147.352588, 59.313018 ], [ -147.701374, 59.417527 ] ] ], "type": "Polygon" }, "id": "840c431ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.764466, 37.675694 ], [ -121.542959, 37.848325 ], [ -121.61254, 38.078946 ], [ -121.904472, 38.136504 ], [ -122.125497, 37.963587 ], [ -122.055079, 37.733399 ], [ -121.764466, 37.675694 ] ] ], "type": "Polygon" }, "id": "842830dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.752305, 59.277833 ], [ -154.132053, 59.153606 ], [ -154.129684, 58.942171 ], [ -153.753429, 58.855205 ], [ -153.376776, 58.977927 ], [ -153.373285, 59.189108 ], [ -153.752305, 59.277833 ] ] ], "type": "Polygon" }, "id": "840c535ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.098739, 37.321697 ], [ -117.867677, 37.489228 ], [ -117.930115, 37.724869 ], [ -118.224583, 37.792621 ], [ -118.45537, 37.624773 ], [ -118.39197, 37.38949 ], [ -118.098739, 37.321697 ] ] ], "type": "Polygon" }, "id": "84298cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.366137, 59.613487 ], [ -153.75173, 59.490158 ], [ -153.752305, 59.277833 ], [ -153.373285, 59.189108 ], [ -152.990926, 59.310934 ], [ -152.984357, 59.522976 ], [ -153.366137, 59.613487 ] ] ], "type": "Polygon" }, "id": "840c53dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.827262, 59.669632 ], [ -152.217909, 59.551214 ], [ -152.230454, 59.339506 ], [ -151.858315, 59.246591 ], [ -151.471157, 59.363577 ], [ -151.452658, 59.574899 ], [ -151.827262, 59.669632 ] ] ], "type": "Polygon" }, "id": "840c515ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.62133, 56.338686 ], [ -135.745468, 56.147493 ], [ -135.512025, 55.96634 ], [ -135.154661, 55.974884 ], [ -135.02695, 56.165547 ], [ -135.26015, 56.348203 ], [ -135.62133, 56.338686 ] ] ], "type": "Polygon" }, "id": "841d21dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.434533, 55.385128 ], [ -156.758612, 55.257432 ], [ -156.738723, 55.058096 ], [ -156.399264, 54.986491 ], [ -156.077204, 55.11274 ], [ -156.092582, 55.312032 ], [ -156.434533, 55.385128 ] ] ], "type": "Polygon" }, "id": "840cc9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.992427, 34.320876 ], [ -115.762549, 34.487158 ], [ -115.819182, 34.730233 ], [ -116.106672, 34.806701 ], [ -116.336407, 34.640067 ], [ -116.278799, 34.39732 ], [ -115.992427, 34.320876 ] ] ], "type": "Polygon" }, "id": "8429a21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.83011, 30.459028 ], [ -113.603264, 30.623672 ], [ -113.65379, 30.873498 ], [ -113.932132, 30.958393 ], [ -114.15896, 30.793354 ], [ -114.107468, 30.543816 ], [ -113.83011, 30.459028 ] ] ], "type": "Polygon" }, "id": "84485e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.240013, 56.14416 ], [ -158.567302, 56.010022 ], [ -158.534198, 55.807552 ], [ -158.178563, 55.739151 ], [ -157.853145, 55.871747 ], [ -157.881485, 56.074276 ], [ -158.240013, 56.14416 ] ] ], "type": "Polygon" }, "id": "840ccebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.946126, 50.934187 ], [ -130.087162, 50.759396 ], [ -129.906051, 50.569957 ], [ -129.584702, 50.553906 ], [ -129.441321, 50.727916 ], [ -129.621614, 50.918762 ], [ -129.946126, 50.934187 ] ] ], "type": "Polygon" }, "id": "841d64bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.206418, 28.615699 ], [ -112.981849, 28.77983 ], [ -113.030372, 29.031677 ], [ -113.304418, 29.119116 ], [ -113.529002, 28.954569 ], [ -113.479528, 28.703 ], [ -113.206418, 28.615699 ] ] ], "type": "Polygon" }, "id": "8448555ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.261907, 23.051507 ], [ -108.039654, 23.208575 ], [ -108.076352, 23.464121 ], [ -108.336256, 23.562474 ], [ -108.558757, 23.404947 ], [ -108.521108, 23.149528 ], [ -108.261907, 23.051507 ] ] ], "type": "Polygon" }, "id": "8448041ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.524963, 58.733592 ], [ -151.903125, 58.617027 ], [ -151.917612, 58.408516 ], [ -151.559489, 58.316945 ], [ -151.184628, 58.43213 ], [ -151.164596, 58.640254 ], [ -151.524963, 58.733592 ] ] ], "type": "Polygon" }, "id": "840c5e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.743582, 37.016351 ], [ -117.512267, 37.183562 ], [ -117.573827, 37.420176 ], [ -117.867677, 37.489228 ], [ -118.098739, 37.321697 ], [ -118.03621, 37.085435 ], [ -117.743582, 37.016351 ] ] ], "type": "Polygon" }, "id": "842981bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.282394, 19.840942 ], [ -64.113864, 19.988996 ], [ -64.143457, 20.178786 ], [ -64.341304, 20.2203 ], [ -64.50926, 20.072547 ], [ -64.479943, 19.88298 ], [ -64.282394, 19.840942 ] ] ], "type": "Polygon" }, "id": "844d595ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.220868, 19.091608 ], [ -70.4017, 18.997269 ], [ -70.375577, 18.803997 ], [ -70.168435, 18.705333 ], [ -69.987869, 18.80012 ], [ -70.014179, 18.993123 ], [ -70.220868, 19.091608 ] ] ], "type": "Polygon" }, "id": "844cd41ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.448734, 19.08147 ], [ -69.628017, 18.988189 ], [ -69.601523, 18.795461 ], [ -69.395565, 18.696293 ], [ -69.216566, 18.790028 ], [ -69.24324, 18.982476 ], [ -69.448734, 19.08147 ] ] ], "type": "Polygon" }, "id": "844cf37ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.942548, 49.284318 ], [ -126.709914, 49.450407 ], [ -126.798834, 49.642215 ], [ -127.12121, 49.667569 ], [ -127.352891, 49.50128 ], [ -127.263158, 49.309839 ], [ -126.942548, 49.284318 ] ] ], "type": "Polygon" }, "id": "8428ca1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.848491, 61.622909 ], [ -151.272097, 61.5061 ], [ -151.293504, 61.288955 ], [ -150.898166, 61.189093 ], [ -150.478776, 61.304433 ], [ -150.450521, 61.521092 ], [ -150.848491, 61.622909 ] ] ], "type": "Polygon" }, "id": "840c735ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.988549, 36.584201 ], [ -115.753863, 36.748893 ], [ -115.811663, 36.988032 ], [ -116.105169, 37.062169 ], [ -116.339706, 36.897146 ], [ -116.280891, 36.658318 ], [ -115.988549, 36.584201 ] ] ], "type": "Polygon" }, "id": "8429801ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.396667, 49.2738 ], [ -129.173818, 49.443074 ], [ -129.266924, 49.631105 ], [ -129.58357, 49.64948 ], [ -129.805331, 49.48005 ], [ -129.711542, 49.292401 ], [ -129.396667, 49.2738 ] ] ], "type": "Polygon" }, "id": "8428c97ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.006056, 41.977438 ], [ -121.775566, 42.146554 ], [ -121.848649, 42.36689 ], [ -122.15313, 42.417721 ], [ -122.38308, 42.248347 ], [ -122.309095, 42.028402 ], [ -122.006056, 41.977438 ] ] ], "type": "Polygon" }, "id": "84281edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.005113, 30.043902 ], [ -113.779412, 30.208923 ], [ -113.83011, 30.459028 ], [ -114.107468, 30.543816 ], [ -114.33314, 30.378394 ], [ -114.281487, 30.128586 ], [ -114.005113, 30.043902 ] ] ], "type": "Polygon" }, "id": "8448513ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.078435, 56.212036 ], [ -153.420542, 56.093352 ], [ -153.423344, 55.892525 ], [ -153.088736, 55.810625 ], [ -152.749202, 55.927958 ], [ -152.741707, 56.128532 ], [ -153.078435, 56.212036 ] ] ], "type": "Polygon" }, "id": "841db0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.632161, 48.782529 ], [ -127.403667, 48.950369 ], [ -127.493236, 49.142767 ], [ -127.812076, 49.166948 ], [ -128.03959, 48.998923 ], [ -127.949253, 48.806903 ], [ -127.632161, 48.782529 ] ] ], "type": "Polygon" }, "id": "8428c85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.210148, 57.534283 ], [ -150.575265, 57.423074 ], [ -150.598649, 57.219407 ], [ -150.261948, 57.127385 ], [ -149.900022, 57.237322 ], [ -149.871615, 57.440544 ], [ -150.210148, 57.534283 ] ] ], "type": "Polygon" }, "id": "840c5b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.422935, 53.945806 ], [ -133.55308, 53.761455 ], [ -133.343294, 53.576852 ], [ -133.00384, 53.575142 ], [ -132.870707, 53.758861 ], [ -133.079994, 53.944927 ], [ -133.422935, 53.945806 ] ] ], "type": "Polygon" }, "id": "841d2dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.177136, 29.785864 ], [ -112.950304, 29.949708 ], [ -112.999242, 30.200624 ], [ -113.275984, 30.287427 ], [ -113.502832, 30.123181 ], [ -113.452924, 29.872536 ], [ -113.177136, 29.785864 ] ] ], "type": "Polygon" }, "id": "8448515ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.35434, 18.176922 ], [ -103.136031, 18.326236 ], [ -103.161632, 18.578975 ], [ -103.406466, 18.682445 ], [ -103.625214, 18.532669 ], [ -103.59869, 18.279888 ], [ -103.35434, 18.176922 ] ] ], "type": "Polygon" }, "id": "8449ae9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.916589, 41.478781 ], [ -126.70386, 41.654836 ], [ -126.785118, 41.869346 ], [ -127.079793, 41.907336 ], [ -127.291728, 41.731087 ], [ -127.209788, 41.517043 ], [ -126.916589, 41.478781 ] ] ], "type": "Polygon" }, "id": "842808dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.010299, 63.93545 ], [ -151.474772, 63.816573 ], [ -151.496395, 63.592753 ], [ -151.061816, 63.488315 ], [ -150.602384, 63.605602 ], [ -150.572506, 63.828901 ], [ -151.010299, 63.93545 ] ] ], "type": "Polygon" }, "id": "840c297ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -140.291088, 60.137724 ], [ -140.710366, 60.057245 ], [ -140.811025, 59.854595 ], [ -140.497596, 59.73349 ], [ -140.083325, 59.813164 ], [ -139.977511, 60.01474 ], [ -140.291088, 60.137724 ] ] ], "type": "Polygon" }, "id": "840c6d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.790891, 60.928173 ], [ -144.218494, 60.835564 ], [ -144.295423, 60.626404 ], [ -143.950678, 60.510759 ], [ -143.528048, 60.602327 ], [ -143.445222, 60.810572 ], [ -143.790891, 60.928173 ] ] ], "type": "Polygon" }, "id": "840c6e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.206535, 47.170433 ], [ -66.569856, 47.140244 ], [ -66.717559, 46.916702 ], [ -66.504157, 46.724525 ], [ -66.144304, 46.754575 ], [ -65.994408, 46.976939 ], [ -66.206535, 47.170433 ] ] ], "type": "Polygon" }, "id": "842b153ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.864609, 64.265108 ], [ -147.347506, 64.160454 ], [ -147.407359, 63.93867 ], [ -146.992462, 63.822356 ], [ -146.515568, 63.925654 ], [ -146.447604, 64.146607 ], [ -146.864609, 64.265108 ] ] ], "type": "Polygon" }, "id": "840d5bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.397604, 56.245169 ], [ -152.741707, 56.128532 ], [ -152.749202, 55.927958 ], [ -152.41728, 55.844304 ], [ -152.075839, 55.959617 ], [ -152.063663, 56.159899 ], [ -152.397604, 56.245169 ] ] ], "type": "Polygon" }, "id": "841db09ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.53405, 67.09364 ], [ -173.937324, 66.901189 ], [ -173.723173, 66.675352 ], [ -173.114944, 66.640593 ], [ -172.710187, 66.830521 ], [ -172.91502, 67.057717 ], [ -173.53405, 67.09364 ] ] ], "type": "Polygon" }, "id": "840d817ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.03959, 48.998923 ], [ -127.812076, 49.166948 ], [ -127.902592, 49.358017 ], [ -128.22138, 49.380685 ], [ -128.447886, 49.212482 ], [ -128.35662, 49.02179 ], [ -128.03959, 48.998923 ] ] ], "type": "Polygon" }, "id": "8428c87ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.437493, 27.318506 ], [ -111.212177, 27.480203 ], [ -111.256667, 27.73388 ], [ -111.527441, 27.825636 ], [ -111.752862, 27.663512 ], [ -111.707406, 27.41006 ], [ -111.437493, 27.318506 ] ] ], "type": "Polygon" }, "id": "8448091ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.975314, 53.23252 ], [ -168.766771, 53.408479 ], [ -168.932811, 53.619574 ], [ -169.309906, 53.654553 ], [ -169.518417, 53.47795 ], [ -169.34988, 53.267014 ], [ -168.975314, 53.23252 ] ] ], "type": "Polygon" }, "id": "8422c29ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.016851, 18.386723 ], [ -104.799314, 18.538272 ], [ -104.828301, 18.791448 ], [ -105.075742, 18.893057 ], [ -105.293651, 18.741025 ], [ -105.263748, 18.48787 ], [ -105.016851, 18.386723 ] ] ], "type": "Polygon" }, "id": "8449addffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.029778, 40.432927 ], [ -123.809408, 40.606408 ], [ -123.884983, 40.827826 ], [ -124.181725, 40.875321 ], [ -124.401461, 40.701598 ], [ -124.325096, 40.480622 ], [ -124.029778, 40.432927 ] ] ], "type": "Polygon" }, "id": "842802bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.917126, 57.515034 ], [ -151.280427, 57.401611 ], [ -151.298759, 57.197542 ], [ -150.95885, 57.107289 ], [ -150.598649, 57.219407 ], [ -150.575265, 57.423074 ], [ -150.917126, 57.515034 ] ] ], "type": "Polygon" }, "id": "840c5bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.206081, 63.27651 ], [ -150.660524, 63.160773 ], [ -150.688815, 62.939252 ], [ -150.270447, 62.83402 ], [ -149.820938, 62.948246 ], [ -149.784881, 63.169201 ], [ -150.206081, 63.27651 ] ] ], "type": "Polygon" }, "id": "840c76bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.628676, 59.090255 ], [ -150.016368, 58.979479 ], [ -150.045311, 58.771035 ], [ -149.692162, 58.67387 ], [ -149.30812, 58.783345 ], [ -149.27359, 58.991275 ], [ -149.628676, 59.090255 ] ] ], "type": "Polygon" }, "id": "840c5c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.827208, 63.899858 ], [ -153.284966, 63.774804 ], [ -153.289947, 63.550149 ], [ -152.845517, 63.450915 ], [ -152.392393, 63.574282 ], [ -152.379074, 63.798554 ], [ -152.827208, 63.899858 ] ] ], "type": "Polygon" }, "id": "840c2b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.536531, 51.901664 ], [ -131.671227, 51.723575 ], [ -131.479681, 51.536713 ], [ -131.154087, 51.52652 ], [ -131.016828, 51.703895 ], [ -131.207705, 51.892182 ], [ -131.536531, 51.901664 ] ] ], "type": "Polygon" }, "id": "8412935ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.601523, 18.795461 ], [ -69.781311, 18.701201 ], [ -69.754861, 18.507318 ], [ -69.54844, 18.407977 ], [ -69.368933, 18.502693 ], [ -69.395565, 18.696293 ], [ -69.601523, 18.795461 ] ] ], "type": "Polygon" }, "id": "844cd5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.944744, 18.28364 ], [ -105.728157, 18.436308 ], [ -105.758972, 18.689425 ], [ -106.007283, 18.78982 ], [ -106.224202, 18.636656 ], [ -106.19248, 18.383595 ], [ -105.944744, 18.28364 ] ] ], "type": "Polygon" }, "id": "84491e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.708605, 28.691519 ], [ -112.482965, 28.854904 ], [ -112.530525, 29.107013 ], [ -112.804691, 29.195476 ], [ -113.030372, 29.031677 ], [ -112.981849, 28.77983 ], [ -112.708605, 28.691519 ] ] ], "type": "Polygon" }, "id": "8448509ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.917843, 51.686008 ], [ -171.720395, 51.872617 ], [ -171.896241, 52.083957 ], [ -172.271763, 52.10845 ], [ -172.468894, 51.92118 ], [ -172.290836, 51.710079 ], [ -171.917843, 51.686008 ] ] ], "type": "Polygon" }, "id": "8422ee5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.43768, 18.879379 ], [ -107.221583, 19.034127 ], [ -107.255502, 19.287689 ], [ -107.50642, 19.386395 ], [ -107.722786, 19.231142 ], [ -107.687966, 18.97769 ], [ -107.43768, 18.879379 ] ] ], "type": "Polygon" }, "id": "8449181ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.846527, 61.696377 ], [ -140.292886, 61.616971 ], [ -140.403109, 61.410047 ], [ -140.07278, 61.283684 ], [ -139.63212, 61.362276 ], [ -139.516134, 61.568036 ], [ -139.846527, 61.696377 ] ] ], "type": "Polygon" }, "id": "8413b67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.660084, 41.099652 ], [ -125.443752, 41.274582 ], [ -125.522637, 41.491983 ], [ -125.818592, 41.533999 ], [ -126.034197, 41.358854 ], [ -125.954581, 41.141909 ], [ -125.660084, 41.099652 ] ] ], "type": "Polygon" }, "id": "84280edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.87794, 35.338733 ], [ -96.62494, 35.464562 ], [ -96.63923, 35.709539 ], [ -96.907735, 35.82897 ], [ -97.161633, 35.702999 ], [ -97.146127, 35.45774 ], [ -96.87794, 35.338733 ] ] ], "type": "Polygon" }, "id": "8426ea5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.868394, 60.362381 ], [ -148.279064, 60.256407 ], [ -148.323047, 60.045229 ], [ -147.962398, 59.940665 ], [ -147.55599, 60.045383 ], [ -147.505989, 60.255909 ], [ -147.868394, 60.362381 ] ] ], "type": "Polygon" }, "id": "840c405ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.336664, 37.821673 ], [ -119.107831, 37.990722 ], [ -119.172978, 38.223992 ], [ -119.467893, 38.287835 ], [ -119.696377, 38.118482 ], [ -119.630301, 37.885593 ], [ -119.336664, 37.821673 ] ] ], "type": "Polygon" }, "id": "84298ddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.921062, 35.288829 ], [ -118.696476, 35.458971 ], [ -118.759322, 35.697515 ], [ -119.047659, 35.765523 ], [ -119.271934, 35.595051 ], [ -119.208189, 35.356903 ], [ -118.921062, 35.288829 ] ] ], "type": "Polygon" }, "id": "8429aebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.351851, 60.970271 ], [ -145.777416, 60.872361 ], [ -145.842275, 60.661506 ], [ -145.487676, 60.549376 ], [ -145.066914, 60.646151 ], [ -144.995977, 60.856181 ], [ -145.351851, 60.970271 ] ] ], "type": "Polygon" }, "id": "840c45dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.152101, 60.619651 ], [ -152.556052, 60.49933 ], [ -152.566324, 60.284475 ], [ -152.17906, 60.190307 ], [ -151.778802, 60.309138 ], [ -151.762122, 60.523614 ], [ -152.152101, 60.619651 ] ] ], "type": "Polygon" }, "id": "840c509ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.226803, 54.095821 ], [ -163.006555, 54.255497 ], [ -163.145147, 54.467731 ], [ -163.506777, 54.520323 ], [ -163.727565, 54.360074 ], [ -163.586193, 54.147809 ], [ -163.226803, 54.095821 ] ] ], "type": "Polygon" }, "id": "840cda1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -80.6857, 18.730904 ], [ -80.485578, 18.841702 ], [ -80.467355, 19.07082 ], [ -80.649894, 19.189865 ], [ -80.850968, 19.079095 ], [ -80.868549, 18.849251 ], [ -80.6857, 18.730904 ] ] ], "type": "Polygon" }, "id": "8445a35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.105363, 19.146571 ], [ -104.886619, 19.298491 ], [ -104.915952, 19.552338 ], [ -105.164956, 19.654247 ], [ -105.384071, 19.501853 ], [ -105.353812, 19.248027 ], [ -105.105363, 19.146571 ] ] ], "type": "Polygon" }, "id": "8449ad7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.519804, 60.249055 ], [ -142.938171, 60.161041 ], [ -143.022749, 59.955391 ], [ -142.694451, 59.838707 ], [ -142.280934, 59.925777 ], [ -142.190896, 60.130466 ], [ -142.519804, 60.249055 ] ] ], "type": "Polygon" }, "id": "840c685ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.309445, 48.275661 ], [ -128.085045, 48.445165 ], [ -128.175201, 48.63813 ], [ -128.490489, 48.661206 ], [ -128.713885, 48.491533 ], [ -128.623006, 48.298954 ], [ -128.309445, 48.275661 ] ] ], "type": "Polygon" }, "id": "8428c89ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.119011, 38.428512 ], [ -117.885548, 38.595133 ], [ -117.948686, 38.828455 ], [ -118.246275, 38.894809 ], [ -118.479455, 38.727879 ], [ -118.415335, 38.494906 ], [ -118.119011, 38.428512 ] ] ], "type": "Polygon" }, "id": "842988dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.829899, 31.285789 ], [ -115.6057, 31.453149 ], [ -115.660538, 31.700503 ], [ -115.940508, 31.780154 ], [ -116.16458, 31.612408 ], [ -116.108814, 31.365399 ], [ -115.829899, 31.285789 ] ] ], "type": "Polygon" }, "id": "84485d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.914908, 50.974835 ], [ -131.050027, 50.79964 ], [ -130.865451, 50.612561 ], [ -130.546442, 50.599277 ], [ -130.408921, 50.773734 ], [ -130.592791, 50.962217 ], [ -130.914908, 50.974835 ] ] ], "type": "Polygon" }, "id": "841d647ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.733638, 39.213345 ], [ -119.502815, 39.381807 ], [ -119.569613, 39.611617 ], [ -119.868179, 39.672591 ], [ -120.098621, 39.503837 ], [ -120.030883, 39.274402 ], [ -119.733638, 39.213345 ] ] ], "type": "Polygon" }, "id": "8429891ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.594546, 52.268057 ], [ -131.730279, 52.088887 ], [ -131.536531, 51.901664 ], [ -131.207705, 51.892182 ], [ -131.069352, 52.070638 ], [ -131.262424, 52.259295 ], [ -131.594546, 52.268057 ] ] ], "type": "Polygon" }, "id": "841293dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.059706, 59.690845 ], [ -151.452658, 59.574899 ], [ -151.471157, 59.363577 ], [ -151.102638, 59.268624 ], [ -150.713296, 59.383174 ], [ -150.688873, 59.59406 ], [ -151.059706, 59.690845 ] ] ], "type": "Polygon" }, "id": "840c511ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.806868, 56.040917 ], [ -156.140002, 55.91418 ], [ -156.123976, 55.712752 ], [ -155.779522, 55.63814 ], [ -155.448583, 55.763426 ], [ -155.459902, 55.964765 ], [ -155.806868, 56.040917 ] ] ], "type": "Polygon" }, "id": "840ccd1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.265812, 20.130599 ], [ -156.427341, 19.925907 ], [ -156.32049, 19.694174 ], [ -156.052319, 19.666925 ], [ -155.890463, 19.871543 ], [ -155.997101, 20.103484 ], [ -156.265812, 20.130599 ] ] ], "type": "Polygon" }, "id": "845d105ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.460146, 58.10521 ], [ -138.570132, 57.90933 ], [ -138.313109, 57.734677 ], [ -137.945885, 57.754409 ], [ -137.831769, 57.949907 ], [ -138.088982, 58.126062 ], [ -138.460146, 58.10521 ] ] ], "type": "Polygon" }, "id": "841d359ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.302582, 50.967088 ], [ -170.104509, 51.15172 ], [ -170.270481, 51.36535 ], [ -170.636783, 51.394171 ], [ -170.834701, 51.208881 ], [ -170.666486, 50.99543 ], [ -170.302582, 50.967088 ] ] ], "type": "Polygon" }, "id": "8422e3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.759832, 53.891919 ], [ -167.546668, 54.063285 ], [ -167.708485, 54.274038 ], [ -168.086095, 54.313302 ], [ -168.299351, 54.141303 ], [ -168.134921, 53.930676 ], [ -167.759832, 53.891919 ] ] ], "type": "Polygon" }, "id": "8422d19ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.948686, 38.828455 ], [ -117.71387, 38.994427 ], [ -117.776911, 39.227057 ], [ -118.075769, 39.293376 ], [ -118.310311, 39.127098 ], [ -118.246275, 38.894809 ], [ -117.948686, 38.828455 ] ] ], "type": "Polygon" }, "id": "8429885ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.836934, 55.250599 ], [ -161.146441, 55.110293 ], [ -161.096628, 54.910585 ], [ -160.741769, 54.850956 ], [ -160.43366, 54.989682 ], [ -160.479, 55.189609 ], [ -160.836934, 55.250599 ] ] ], "type": "Polygon" }, "id": "840cdd7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.375577, 18.803997 ], [ -70.556908, 18.70868 ], [ -70.530834, 18.514249 ], [ -70.323238, 18.415405 ], [ -70.14217, 18.511173 ], [ -70.168435, 18.705333 ], [ -70.375577, 18.803997 ] ] ], "type": "Polygon" }, "id": "844cd47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.677755, 53.6654 ], [ -161.457737, 53.822236 ], [ -161.586998, 54.035353 ], [ -161.939048, 54.091727 ], [ -162.159737, 53.934343 ], [ -162.027713, 53.721136 ], [ -161.677755, 53.6654 ] ] ], "type": "Polygon" }, "id": "840cdb1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.038121, 57.207 ], [ -143.410899, 57.118921 ], [ -143.483297, 56.922778 ], [ -143.187338, 56.815532 ], [ -142.818388, 56.902715 ], [ -142.74159, 57.098033 ], [ -143.038121, 57.207 ] ] ], "type": "Polygon" }, "id": "841d14dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.160033, 52.612156 ], [ -173.964211, 52.801416 ], [ -174.153685, 53.009142 ], [ -174.541138, 53.027289 ], [ -174.7364, 52.837366 ], [ -174.544786, 52.62996 ], [ -174.160033, 52.612156 ] ] ], "type": "Polygon" }, "id": "8422ebdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -75.214203, 19.978877 ], [ -75.403428, 19.87974 ], [ -75.429765, 19.660213 ], [ -75.217388, 19.566486 ], [ -75.028702, 19.665906 ], [ -75.052254, 19.858644 ], [ -75.214203, 19.978877 ] ] ], "type": "Polygon" }, "id": "844c9abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.01212, 52.551529 ], [ -172.813956, 52.738438 ], [ -172.997766, 52.947412 ], [ -173.381968, 52.969194 ], [ -173.579692, 52.781621 ], [ -173.39367, 52.572931 ], [ -173.01212, 52.551529 ] ] ], "type": "Polygon" }, "id": "8422ea1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.936514, 63.610915 ], [ -148.403613, 63.50281 ], [ -148.452491, 63.281957 ], [ -148.042087, 63.16993 ], [ -147.580486, 63.276641 ], [ -147.52382, 63.496758 ], [ -147.936514, 63.610915 ] ] ], "type": "Polygon" }, "id": "840c74bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.678635, 29.707918 ], [ -113.452924, 29.872536 ], [ -113.502832, 30.123181 ], [ -113.779412, 30.208923 ], [ -114.005113, 30.043902 ], [ -113.954247, 29.793544 ], [ -113.678635, 29.707918 ] ] ], "type": "Polygon" }, "id": "8448511ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -140.723446, 60.792187 ], [ -141.153072, 60.710034 ], [ -141.252984, 60.504788 ], [ -140.928784, 60.382766 ], [ -140.504389, 60.464072 ], [ -140.398999, 60.668239 ], [ -140.723446, 60.792187 ] ] ], "type": "Polygon" }, "id": "840c6c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.085294, 44.413725 ], [ -129.877816, 44.590255 ], [ -129.966676, 44.791775 ], [ -130.263594, 44.816313 ], [ -130.470074, 44.639653 ], [ -130.38064, 44.438584 ], [ -130.085294, 44.413725 ] ] ], "type": "Polygon" }, "id": "8428531ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.06586, 54.499135 ], [ -134.193771, 54.313132 ], [ -133.978298, 54.129606 ], [ -133.635319, 54.130616 ], [ -133.504286, 54.316015 ], [ -133.719332, 54.501013 ], [ -134.06586, 54.499135 ] ] ], "type": "Polygon" }, "id": "841d2ddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.898312, 41.750188 ], [ -125.68134, 41.92481 ], [ -125.761161, 42.140227 ], [ -126.058691, 42.180573 ], [ -126.274915, 42.005743 ], [ -126.194363, 41.790775 ], [ -125.898312, 41.750188 ] ] ], "type": "Polygon" }, "id": "84280e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.806376, 57.798598 ], [ -143.187565, 57.710901 ], [ -143.263054, 57.512986 ], [ -142.96195, 57.403616 ], [ -142.584776, 57.490415 ], [ -142.504715, 57.687473 ], [ -142.806376, 57.798598 ] ] ], "type": "Polygon" }, "id": "841d325ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.822488, 65.205558 ], [ -171.212739, 65.022556 ], [ -171.04159, 64.797971 ], [ -170.488493, 64.755309 ], [ -170.097909, 64.935956 ], [ -170.26067, 65.161606 ], [ -170.822488, 65.205558 ] ] ], "type": "Polygon" }, "id": "840d8bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.618732, 18.471432 ], [ -107.40351, 18.626191 ], [ -107.43768, 18.879379 ], [ -107.687966, 18.97769 ], [ -107.903448, 18.822418 ], [ -107.868385, 18.56935 ], [ -107.618732, 18.471432 ] ] ], "type": "Polygon" }, "id": "8449189ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.598649, 57.219407 ], [ -150.95885, 57.107289 ], [ -150.979267, 56.904436 ], [ -150.644423, 56.814108 ], [ -150.287297, 56.924948 ], [ -150.261948, 57.127385 ], [ -150.598649, 57.219407 ] ] ], "type": "Polygon" }, "id": "840c5b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.772624, 18.710787 ], [ -101.552668, 18.858034 ], [ -101.57516, 19.110857 ], [ -101.818543, 19.216538 ], [ -102.039005, 19.068861 ], [ -102.015579, 18.815934 ], [ -101.772624, 18.710787 ] ] ], "type": "Polygon" }, "id": "844985dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -60.906113, 34.189376 ], [ -61.177976, 34.17106 ], [ -61.308269, 33.987318 ], [ -61.167634, 33.822941 ], [ -60.897742, 33.841333 ], [ -60.766523, 34.024027 ], [ -60.906113, 34.189376 ] ] ], "type": "Polygon" }, "id": "843bb29ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.430461, 18.267348 ], [ -102.211526, 18.415435 ], [ -102.235277, 18.668039 ], [ -102.478889, 18.772634 ], [ -102.6983, 18.6241 ], [ -102.673623, 18.37142 ], [ -102.430461, 18.267348 ] ] ], "type": "Polygon" }, "id": "8449a33ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.546387, 56.59811 ], [ -156.883884, 56.468394 ], [ -156.862268, 56.264794 ], [ -156.508053, 56.190948 ], [ -156.172732, 56.319161 ], [ -156.189446, 56.522713 ], [ -156.546387, 56.59811 ] ] ], "type": "Polygon" }, "id": "840cccbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.377442, 35.585467 ], [ -117.148259, 35.753129 ], [ -117.208296, 35.992777 ], [ -117.498476, 36.064411 ], [ -117.727433, 35.896414 ], [ -117.666441, 35.65712 ], [ -117.377442, 35.585467 ] ] ], "type": "Polygon" }, "id": "8429859ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.833026, 18.78383 ], [ -69.011224, 18.690619 ], [ -68.984414, 18.497306 ], [ -68.77923, 18.397495 ], [ -68.601331, 18.491167 ], [ -68.628315, 18.684187 ], [ -68.833026, 18.78383 ] ] ], "type": "Polygon" }, "id": "844cc65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.104887, 18.686814 ], [ -63.935627, 18.836169 ], [ -63.965415, 19.029979 ], [ -64.164186, 19.074192 ], [ -64.332871, 18.925131 ], [ -64.30336, 18.731565 ], [ -64.104887, 18.686814 ] ] ], "type": "Polygon" }, "id": "844ced1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.172732, 56.319161 ], [ -156.508053, 56.190948 ], [ -156.489287, 55.988428 ], [ -156.140002, 55.91418 ], [ -155.806868, 56.040917 ], [ -155.82083, 56.243368 ], [ -156.172732, 56.319161 ] ] ], "type": "Polygon" }, "id": "840ccddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.930115, 37.724869 ], [ -117.697728, 37.891802 ], [ -117.760071, 38.1268 ], [ -118.055781, 38.194517 ], [ -118.287901, 38.02727 ], [ -118.224583, 37.792621 ], [ -117.930115, 37.724869 ] ] ], "type": "Polygon" }, "id": "84298c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.302233, 40.572453 ], [ -126.089322, 40.748577 ], [ -126.168833, 40.966263 ], [ -126.461957, 41.007355 ], [ -126.674119, 40.831023 ], [ -126.593912, 40.613808 ], [ -126.302233, 40.572453 ] ] ], "type": "Polygon" }, "id": "8428013ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.303376, 52.362144 ], [ -166.093915, 52.533858 ], [ -166.243904, 52.74772 ], [ -166.605891, 52.789813 ], [ -166.815579, 52.617479 ], [ -166.663065, 52.403674 ], [ -166.303376, 52.362144 ] ] ], "type": "Polygon" }, "id": "8422f35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.883087, 58.901932 ], [ -155.254373, 58.774521 ], [ -155.243457, 58.563824 ], [ -154.86699, 58.480702 ], [ -154.498538, 58.606575 ], [ -154.503719, 58.817097 ], [ -154.883087, 58.901932 ] ] ], "type": "Polygon" }, "id": "840cec1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.040236, 51.7548 ], [ -172.844871, 51.943745 ], [ -173.026275, 52.153982 ], [ -173.405209, 52.175001 ], [ -173.600144, 51.985393 ], [ -173.416591, 51.775431 ], [ -173.040236, 51.7548 ] ] ], "type": "Polygon" }, "id": "8422ee3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.045311, 58.771035 ], [ -150.427529, 58.659191 ], [ -150.453077, 58.451501 ], [ -150.101899, 58.356126 ], [ -149.723192, 58.466661 ], [ -149.692162, 58.67387 ], [ -150.045311, 58.771035 ] ] ], "type": "Polygon" }, "id": "840c5c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.863008, 50.809134 ], [ -170.666486, 50.99543 ], [ -170.834701, 51.208881 ], [ -171.201654, 51.235841 ], [ -171.397968, 51.048884 ], [ -171.22755, 50.835629 ], [ -170.863008, 50.809134 ] ] ], "type": "Polygon" }, "id": "8422e39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.774184, 40.967675 ], [ -124.555104, 41.141632 ], [ -124.632384, 41.36068 ], [ -124.929518, 41.405327 ], [ -125.147918, 41.231141 ], [ -125.069871, 41.012538 ], [ -124.774184, 40.967675 ] ] ], "type": "Polygon" }, "id": "8428031ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.66971, 39.167531 ], [ -121.444673, 39.3389 ], [ -121.515094, 39.566447 ], [ -121.811423, 39.622211 ], [ -122.035968, 39.450567 ], [ -121.964682, 39.223435 ], [ -121.66971, 39.167531 ] ] ], "type": "Polygon" }, "id": "8428335ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.600144, 51.985393 ], [ -173.405209, 52.175001 ], [ -173.589989, 52.384334 ], [ -173.97185, 52.403766 ], [ -174.166293, 52.213494 ], [ -173.979383, 52.004456 ], [ -173.600144, 51.985393 ] ] ], "type": "Polygon" }, "id": "8422e85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.632091, 56.819388 ], [ -157.968945, 56.686103 ], [ -157.939377, 56.481456 ], [ -157.577934, 56.410065 ], [ -157.24313, 56.541799 ], [ -157.267712, 56.746464 ], [ -157.632091, 56.819388 ] ] ], "type": "Polygon" }, "id": "840cccdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.852213, 58.131728 ], [ -151.223799, 58.017896 ], [ -151.242953, 57.81179 ], [ -150.895805, 57.719924 ], [ -150.527467, 57.832432 ], [ -150.503037, 58.03812 ], [ -150.852213, 58.131728 ] ] ], "type": "Polygon" }, "id": "840c585ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.672166, 52.874468 ], [ -165.459876, 53.043356 ], [ -165.608013, 53.256717 ], [ -165.971045, 53.301152 ], [ -166.183625, 53.131653 ], [ -166.032894, 52.918332 ], [ -165.672166, 52.874468 ] ] ], "type": "Polygon" }, "id": "8422d41ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.892259, 18.222714 ], [ -102.673623, 18.37142 ], [ -102.6983, 18.6241 ], [ -102.942538, 18.728136 ], [ -103.161632, 18.578975 ], [ -103.136031, 18.326236 ], [ -102.892259, 18.222714 ] ] ], "type": "Polygon" }, "id": "8449aedffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.311972, 65.635894 ], [ -150.813823, 65.51858 ], [ -150.843552, 65.290729 ], [ -150.380937, 65.180783 ], [ -149.885078, 65.296454 ], [ -149.845867, 65.523696 ], [ -150.311972, 65.635894 ] ] ], "type": "Polygon" }, "id": "840c2ddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.252984, 60.504788 ], [ -141.677178, 60.42094 ], [ -141.772072, 60.215952 ], [ -141.448226, 60.095844 ], [ -141.029099, 60.178818 ], [ -140.928784, 60.382766 ], [ -141.252984, 60.504788 ] ] ], "type": "Polygon" }, "id": "840c689ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.77674, 50.723247 ], [ -169.578562, 50.907225 ], [ -169.741316, 51.12154 ], [ -170.104509, 51.15172 ], [ -170.302582, 50.967088 ], [ -170.13758, 50.752932 ], [ -169.77674, 50.723247 ] ] ], "type": "Polygon" }, "id": "8422e2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.034197, 41.358854 ], [ -125.818592, 41.533999 ], [ -125.898312, 41.750188 ], [ -126.194363, 41.790775 ], [ -126.409218, 41.615422 ], [ -126.32878, 41.39969 ], [ -126.034197, 41.358854 ] ] ], "type": "Polygon" }, "id": "84280e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.674472, 61.60565 ], [ -152.095445, 61.486101 ], [ -152.109966, 61.268526 ], [ -151.71041, 61.170917 ], [ -151.293504, 61.288955 ], [ -151.272097, 61.5061 ], [ -151.674472, 61.60565 ] ] ], "type": "Polygon" }, "id": "840c549ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.030766, 60.032486 ], [ -146.43999, 59.932842 ], [ -146.49753, 59.724291 ], [ -146.151587, 59.616128 ], [ -145.746752, 59.71463 ], [ -145.683494, 59.922426 ], [ -146.030766, 60.032486 ] ] ], "type": "Polygon" }, "id": "840c41dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.89329, 34.159159 ], [ -118.670924, 34.329821 ], [ -118.73308, 34.570256 ], [ -119.018489, 34.639625 ], [ -119.240554, 34.468622 ], [ -119.177516, 34.228593 ], [ -118.89329, 34.159159 ] ] ], "type": "Polygon" }, "id": "8429a1bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.804746, 40.43702 ], [ -126.593912, 40.613808 ], [ -126.674119, 40.831023 ], [ -126.965838, 40.870972 ], [ -127.175899, 40.693983 ], [ -127.095021, 40.477247 ], [ -126.804746, 40.43702 ] ] ], "type": "Polygon" }, "id": "84280cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.853136, 29.292077 ], [ -113.628554, 29.457038 ], [ -113.678635, 29.707918 ], [ -113.954247, 29.793544 ], [ -114.178809, 29.628174 ], [ -114.127782, 29.377589 ], [ -113.853136, 29.292077 ] ] ], "type": "Polygon" }, "id": "8448519ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.978343, 37.522525 ], [ -118.749183, 37.691263 ], [ -118.813456, 37.925549 ], [ -119.107831, 37.990722 ], [ -119.336664, 37.821673 ], [ -119.271455, 37.587764 ], [ -118.978343, 37.522525 ] ] ], "type": "Polygon" }, "id": "84298cbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.057005, 67.993697 ], [ -162.557681, 67.835207 ], [ -162.460559, 67.599953 ], [ -161.874627, 67.522766 ], [ -161.377229, 67.678851 ], [ -161.462426, 67.914505 ], [ -162.057005, 67.993697 ] ] ], "type": "Polygon" }, "id": "840c34bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.474109, 55.599897 ], [ -157.797635, 55.468817 ], [ -157.770449, 55.268419 ], [ -157.424319, 55.199075 ], [ -157.102701, 55.328663 ], [ -157.125299, 55.529077 ], [ -157.474109, 55.599897 ] ] ], "type": "Polygon" }, "id": "840cc81ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.2236, 56.931931 ], [ -156.565967, 56.802749 ], [ -156.546387, 56.59811 ], [ -156.189446, 56.522713 ], [ -155.849353, 56.650391 ], [ -155.863922, 56.854959 ], [ -156.2236, 56.931931 ] ] ], "type": "Polygon" }, "id": "840ceb5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.227405, 53.640461 ], [ -167.014385, 53.811199 ], [ -167.172704, 54.022662 ], [ -167.546668, 54.063285 ], [ -167.759832, 53.891919 ], [ -167.598902, 53.680561 ], [ -167.227405, 53.640461 ] ] ], "type": "Polygon" }, "id": "8422d57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.442016, 56.134222 ], [ -154.779831, 56.011482 ], [ -154.773221, 55.810273 ], [ -154.433506, 55.731964 ], [ -154.098079, 55.853302 ], [ -154.099981, 56.05434 ], [ -154.442016, 56.134222 ] ] ], "type": "Polygon" }, "id": "841db67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.109584, 53.764889 ], [ -160.888645, 53.920013 ], [ -161.015126, 54.133021 ], [ -161.365335, 54.191015 ], [ -161.586998, 54.035353 ], [ -161.457737, 53.822236 ], [ -161.109584, 53.764889 ] ] ], "type": "Polygon" }, "id": "840cdbbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.352206, 56.589438 ], [ -151.702848, 56.475636 ], [ -151.717665, 56.274477 ], [ -151.386599, 56.187471 ], [ -151.03881, 56.299983 ], [ -151.019241, 56.500782 ], [ -151.352206, 56.589438 ] ] ], "type": "Polygon" }, "id": "841db5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.755577, 58.018113 ], [ -154.118365, 57.895227 ], [ -154.116202, 57.6879 ], [ -153.756604, 57.603684 ], [ -153.39664, 57.725118 ], [ -153.393453, 57.932209 ], [ -153.755577, 58.018113 ] ] ], "type": "Polygon" }, "id": "840ced7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -91.010501, 37.073768 ], [ -90.756859, 37.182087 ], [ -90.757619, 37.419842 ], [ -91.013193, 37.549717 ], [ -91.267986, 37.441399 ], [ -91.26605, 37.203207 ], [ -91.010501, 37.073768 ] ] ], "type": "Polygon" }, "id": "84265c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.129684, 58.942171 ], [ -154.503719, 58.817097 ], [ -154.498538, 58.606575 ], [ -154.125053, 58.521341 ], [ -153.753979, 58.644908 ], [ -153.753429, 58.855205 ], [ -154.129684, 58.942171 ] ] ], "type": "Polygon" }, "id": "840cecbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.736376, 31.460919 ], [ -64.995569, 31.434051 ], [ -65.106561, 31.254026 ], [ -64.959412, 31.101777 ], [ -64.701999, 31.128552 ], [ -64.589964, 31.307669 ], [ -64.736376, 31.460919 ] ] ], "type": "Polygon" }, "id": "842a4d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.419342, 44.57636 ], [ -110.153081, 44.719695 ], [ -110.202775, 44.943512 ], [ -110.520092, 45.023862 ], [ -110.786569, 44.880223 ], [ -110.735518, 44.65654 ], [ -110.419342, 44.57636 ] ] ], "type": "Polygon" }, "id": "8428967ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.098621, 39.503837 ], [ -119.868179, 39.672591 ], [ -119.935872, 39.901316 ], [ -120.234943, 39.960907 ], [ -120.46498, 39.791864 ], [ -120.396355, 39.56352 ], [ -120.098621, 39.503837 ] ] ], "type": "Polygon" }, "id": "8429893ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.931765, 49.122258 ], [ -129.711542, 49.292401 ], [ -129.805331, 49.48005 ], [ -130.120003, 49.497172 ], [ -130.339116, 49.326885 ], [ -130.244675, 49.139621 ], [ -129.931765, 49.122258 ] ] ], "type": "Polygon" }, "id": "8428c93ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.17578, 53.220006 ], [ -159.956382, 53.37408 ], [ -160.076637, 53.587839 ], [ -160.419025, 53.647676 ], [ -160.639209, 53.493081 ], [ -160.516225, 53.279173 ], [ -160.17578, 53.220006 ] ] ], "type": "Polygon" }, "id": "8422991ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.96714, 50.459477 ], [ -128.118602, 50.286849 ], [ -127.946706, 50.093316 ], [ -127.624353, 50.071017 ], [ -127.470723, 50.242782 ], [ -127.641593, 50.437712 ], [ -127.96714, 50.459477 ] ] ], "type": "Polygon" }, "id": "84129b5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.705418, 19.292463 ], [ -103.485434, 19.442529 ], [ -103.511967, 19.696332 ], [ -103.759421, 19.800104 ], [ -103.979838, 19.649585 ], [ -103.952368, 19.39575 ], [ -103.705418, 19.292463 ] ] ], "type": "Polygon" }, "id": "8449a85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.760071, 38.1268 ], [ -117.526348, 38.293109 ], [ -117.58859, 38.527446 ], [ -117.885548, 38.595133 ], [ -118.119011, 38.428512 ], [ -118.055781, 38.194517 ], [ -117.760071, 38.1268 ] ] ], "type": "Polygon" }, "id": "84298ebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.67262, 24.171356 ], [ -108.44891, 24.329103 ], [ -108.486767, 24.584652 ], [ -108.749299, 24.682318 ], [ -108.973243, 24.524123 ], [ -108.934423, 24.268713 ], [ -108.67262, 24.171356 ] ] ], "type": "Polygon" }, "id": "844800bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.85957, 33.218541 ], [ -117.636417, 33.388145 ], [ -117.696115, 33.631089 ], [ -117.97987, 33.704043 ], [ -118.202781, 33.534082 ], [ -118.142183, 33.291524 ], [ -117.85957, 33.218541 ] ] ], "type": "Polygon" }, "id": "8429a55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.018994, 62.583434 ], [ -152.455474, 62.462006 ], [ -152.467429, 62.241397 ], [ -152.050371, 62.142623 ], [ -151.618216, 62.262475 ], [ -151.598805, 62.482662 ], [ -152.018994, 62.583434 ] ] ], "type": "Polygon" }, "id": "840c72dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.501116, 26.277221 ], [ -110.276206, 26.437623 ], [ -110.31844, 26.692181 ], [ -110.586554, 26.786143 ], [ -110.811614, 26.625306 ], [ -110.768412, 26.370945 ], [ -110.501116, 26.277221 ] ] ], "type": "Polygon" }, "id": "8448089ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.774362, 36.841895 ], [ -104.520643, 36.984112 ], [ -104.553784, 37.228304 ], [ -104.841892, 37.330305 ], [ -105.096129, 37.187818 ], [ -105.061742, 36.943601 ], [ -104.774362, 36.841895 ] ] ], "type": "Polygon" }, "id": "84268b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.482908, 60.83248 ], [ -141.912279, 60.747736 ], [ -142.006602, 60.54145 ], [ -141.677178, 60.42094 ], [ -141.252984, 60.504788 ], [ -141.153072, 60.710034 ], [ -141.482908, 60.83248 ] ] ], "type": "Polygon" }, "id": "840c6c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.403566, 60.678802 ], [ -147.820256, 60.574167 ], [ -147.868394, 60.362381 ], [ -147.505989, 60.255909 ], [ -147.093729, 60.359302 ], [ -147.039465, 60.570397 ], [ -147.403566, 60.678802 ] ] ], "type": "Polygon" }, "id": "840c40dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.52122, 50.71831 ], [ -172.328209, 50.908573 ], [ -172.504014, 51.120831 ], [ -172.874948, 51.142578 ], [ -173.067593, 50.951649 ], [ -172.889683, 50.73964 ], [ -172.52122, 50.71831 ] ] ], "type": "Polygon" }, "id": "8422e13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.743139, 51.637366 ], [ -174.551933, 51.830289 ], [ -174.740924, 52.039015 ], [ -175.123165, 52.054493 ], [ -175.313772, 51.860907 ], [ -175.122753, 51.652508 ], [ -174.743139, 51.637366 ] ] ], "type": "Polygon" }, "id": "8422e8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.922388, 60.973132 ], [ -151.33526, 60.856571 ], [ -151.355626, 60.641338 ], [ -150.96965, 60.543123 ], [ -150.560777, 60.65824 ], [ -150.533893, 60.873004 ], [ -150.922388, 60.973132 ] ] ], "type": "Polygon" }, "id": "840c55dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.171533, 52.550658 ], [ -169.967674, 52.731141 ], [ -170.137639, 52.942506 ], [ -170.513853, 52.973198 ], [ -170.717561, 52.792062 ], [ -170.54522, 52.580888 ], [ -170.171533, 52.550658 ] ] ], "type": "Polygon" }, "id": "8422c09ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -75.619027, 19.560248 ], [ -75.429765, 19.660213 ], [ -75.403428, 19.87974 ], [ -75.566868, 20.000099 ], [ -75.757071, 19.900284 ], [ -75.782891, 19.67996 ], [ -75.619027, 19.560248 ] ] ], "type": "Polygon" }, "id": "844c9a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.903448, 18.822418 ], [ -107.687966, 18.97769 ], [ -107.722786, 19.231142 ], [ -107.973986, 19.329196 ], [ -108.189718, 19.173413 ], [ -108.154002, 18.92009 ], [ -107.903448, 18.822418 ] ] ], "type": "Polygon" }, "id": "844918bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.641563, 24.047678 ], [ -109.419379, 24.206794 ], [ -109.459155, 24.462048 ], [ -109.722065, 24.558015 ], [ -109.944436, 24.398441 ], [ -109.903712, 24.143361 ], [ -109.641563, 24.047678 ] ] ], "type": "Polygon" }, "id": "8448053ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.6983, 18.6241 ], [ -102.478889, 18.772634 ], [ -102.503248, 19.025646 ], [ -102.747949, 19.130195 ], [ -102.967828, 18.981216 ], [ -102.942538, 18.728136 ], [ -102.6983, 18.6241 ] ] ], "type": "Polygon" }, "id": "8449ae5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.548181, 61.181137 ], [ -138.669671, 60.977862 ], [ -138.383808, 60.80196 ], [ -137.976176, 60.827747 ], [ -137.849582, 61.030635 ], [ -138.135691, 61.208132 ], [ -138.548181, 61.181137 ] ] ], "type": "Polygon" }, "id": "8413b23ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.335505, 56.756967 ], [ -158.669458, 56.621664 ], [ -158.634922, 56.417079 ], [ -158.271392, 56.347725 ], [ -157.939377, 56.481456 ], [ -157.968945, 56.686103 ], [ -158.335505, 56.756967 ] ] ], "type": "Polygon" }, "id": "840cc13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.376776, 58.977927 ], [ -153.753429, 58.855205 ], [ -153.753979, 58.644908 ], [ -153.383599, 58.557595 ], [ -153.01003, 58.678841 ], [ -153.00376, 58.888864 ], [ -153.376776, 58.977927 ] ] ], "type": "Polygon" }, "id": "840c537ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -74.447941, 37.373963 ], [ -74.738463, 37.322779 ], [ -74.82449, 37.11384 ], [ -74.621912, 36.956809 ], [ -74.333491, 37.007468 ], [ -74.245557, 37.21568 ], [ -74.447941, 37.373963 ] ] ], "type": "Polygon" }, "id": "842af4bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.389916, 36.70877 ], [ -117.15837, 36.875656 ], [ -117.219055, 37.113224 ], [ -117.512267, 37.183562 ], [ -117.743582, 37.016351 ], [ -117.681922, 36.779128 ], [ -117.389916, 36.70877 ] ] ], "type": "Polygon" }, "id": "8429819ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.243457, 58.563824 ], [ -155.60916, 58.435661 ], [ -155.595689, 58.225926 ], [ -155.222118, 58.144489 ], [ -154.859123, 58.271114 ], [ -154.86699, 58.480702 ], [ -155.243457, 58.563824 ] ] ], "type": "Polygon" }, "id": "840cec7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.202739, 61.642421 ], [ -149.631047, 61.531116 ], [ -149.666105, 61.315 ], [ -149.27962, 61.210775 ], [ -148.855808, 61.3207 ], [ -148.814002, 61.536217 ], [ -149.202739, 61.642421 ] ] ], "type": "Polygon" }, "id": "840c73bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.622728, 42.528937 ], [ -125.402981, 42.702448 ], [ -125.482996, 42.916281 ], [ -125.78352, 42.956166 ], [ -126.002519, 42.782445 ], [ -125.921749, 42.569049 ], [ -125.622728, 42.528937 ] ] ], "type": "Polygon" }, "id": "84280a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.83622, 57.646487 ], [ -155.191286, 57.520665 ], [ -155.181309, 57.314113 ], [ -154.821507, 57.233536 ], [ -154.469038, 57.357877 ], [ -154.473774, 57.564265 ], [ -154.83622, 57.646487 ] ] ], "type": "Polygon" }, "id": "840ce83ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.531337, 34.0428 ], [ -117.305716, 34.211572 ], [ -117.365222, 34.453621 ], [ -117.651276, 34.526528 ], [ -117.876668, 34.357406 ], [ -117.816239, 34.115728 ], [ -117.531337, 34.0428 ] ] ], "type": "Polygon" }, "id": "8429a03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.1339, 18.653771 ], [ -62.962534, 18.803312 ], [ -62.993061, 18.998718 ], [ -63.194679, 19.044351 ], [ -63.365483, 18.895105 ], [ -63.335232, 18.699933 ], [ -63.1339, 18.653771 ] ] ], "type": "Polygon" }, "id": "844d4bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.069842, 28.007385 ], [ -111.844332, 28.169932 ], [ -111.890348, 28.42288 ], [ -112.162842, 28.513039 ], [ -112.388425, 28.350071 ], [ -112.341444, 28.097367 ], [ -112.069842, 28.007385 ] ] ], "type": "Polygon" }, "id": "8448545ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -73.599882, 60.179783 ], [ -74.10552, 60.124488 ], [ -74.259078, 59.87842 ], [ -73.912657, 59.688702 ], [ -73.413395, 59.743323 ], [ -73.254234, 59.988328 ], [ -73.599882, 60.179783 ] ] ], "type": "Polygon" }, "id": "840e2adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.734801, 53.123409 ], [ -160.516225, 53.279173 ], [ -160.639209, 53.493081 ], [ -160.983493, 53.551359 ], [ -161.202806, 53.395063 ], [ -161.077105, 53.181024 ], [ -160.734801, 53.123409 ] ] ], "type": "Polygon" }, "id": "842299bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.772072, 60.215952 ], [ -142.190896, 60.130466 ], [ -142.280934, 59.925777 ], [ -141.957542, 59.807567 ], [ -141.543626, 59.892156 ], [ -141.448226, 60.095844 ], [ -141.772072, 60.215952 ] ] ], "type": "Polygon" }, "id": "840c681ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.659616, 51.024733 ], [ -168.458542, 51.205367 ], [ -168.616687, 51.419948 ], [ -168.978241, 51.453773 ], [ -169.179315, 51.272492 ], [ -169.018848, 51.058035 ], [ -168.659616, 51.024733 ] ] ], "type": "Polygon" }, "id": "8422e25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.203194, 66.322616 ], [ -150.720973, 66.205406 ], [ -150.752552, 65.975924 ], [ -150.276445, 65.864266 ], [ -149.76506, 65.979798 ], [ -149.723415, 66.208647 ], [ -150.203194, 66.322616 ] ] ], "type": "Polygon" }, "id": "840d535ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.573905, 47.545788 ], [ -128.35255, 47.716704 ], [ -128.44234, 47.911539 ], [ -128.754189, 47.935059 ], [ -128.974544, 47.763981 ], [ -128.884057, 47.569545 ], [ -128.573905, 47.545788 ] ] ], "type": "Polygon" }, "id": "8428ccbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.075839, 55.959617 ], [ -152.41728, 55.844304 ], [ -152.426916, 55.644919 ], [ -152.099694, 55.561145 ], [ -151.760902, 55.67516 ], [ -151.746688, 55.874238 ], [ -152.075839, 55.959617 ] ] ], "type": "Polygon" }, "id": "841db0bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.533916, 38.520074 ], [ -119.304089, 38.688845 ], [ -119.370054, 38.920414 ], [ -119.666787, 38.982835 ], [ -119.89625, 38.813765 ], [ -119.82935, 38.582575 ], [ -119.533916, 38.520074 ] ] ], "type": "Polygon" }, "id": "84298d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.028229, 59.024652 ], [ -143.426871, 58.935542 ], [ -143.504133, 58.733281 ], [ -143.187807, 58.621011 ], [ -142.79354, 58.709181 ], [ -142.71125, 58.910552 ], [ -143.028229, 59.024652 ] ] ], "type": "Polygon" }, "id": "840c6b7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.55599, 60.045383 ], [ -147.962398, 59.940665 ], [ -148.0083, 59.730742 ], [ -147.653665, 59.626188 ], [ -147.25146, 59.729678 ], [ -147.199707, 59.938939 ], [ -147.55599, 60.045383 ] ] ], "type": "Polygon" }, "id": "840c407ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.471157, 59.363577 ], [ -151.858315, 59.246591 ], [ -151.873482, 59.036068 ], [ -151.507303, 58.942921 ], [ -151.123609, 59.058503 ], [ -151.102638, 59.268624 ], [ -151.471157, 59.363577 ] ] ], "type": "Polygon" }, "id": "840c517ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.726407, 55.048984 ], [ -134.851879, 54.861372 ], [ -134.630542, 54.679027 ], [ -134.284057, 54.68282 ], [ -134.155326, 54.86986 ], [ -134.376316, 55.053684 ], [ -134.726407, 55.048984 ] ] ], "type": "Polygon" }, "id": "841d2c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.082425, 62.294467 ], [ -149.522244, 62.183151 ], [ -149.559132, 61.965195 ], [ -149.163316, 61.859163 ], [ -148.728251, 61.969076 ], [ -148.684269, 62.18641 ], [ -149.082425, 62.294467 ] ] ], "type": "Polygon" }, "id": "840c703ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.424989, 27.175078 ], [ -112.201639, 27.338223 ], [ -112.248052, 27.591432 ], [ -112.518762, 27.681239 ], [ -112.742166, 27.517661 ], [ -112.694808, 27.264712 ], [ -112.424989, 27.175078 ] ] ], "type": "Polygon" }, "id": "8448727ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.021715, 32.805205 ], [ -117.799782, 32.975185 ], [ -117.85957, 33.218541 ], [ -118.142183, 33.291524 ], [ -118.363867, 33.121183 ], [ -118.303191, 32.878222 ], [ -118.021715, 32.805205 ] ] ], "type": "Polygon" }, "id": "8429a5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.852136, 52.874958 ], [ -171.650381, 53.058465 ], [ -171.82962, 53.267956 ], [ -172.21294, 53.293692 ], [ -172.41437, 53.109525 ], [ -172.232821, 52.900284 ], [ -171.852136, 52.874958 ] ] ], "type": "Polygon" }, "id": "8422c19ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.259957, 39.105039 ], [ -120.030883, 39.274402 ], [ -120.098621, 39.503837 ], [ -120.396355, 39.56352 ], [ -120.625018, 39.393868 ], [ -120.556363, 39.164822 ], [ -120.259957, 39.105039 ] ] ], "type": "Polygon" }, "id": "842989bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.959882, 65.61328 ], [ -134.148341, 65.402913 ], [ -133.833451, 65.214028 ], [ -133.331008, 65.233681 ], [ -133.135868, 65.443314 ], [ -133.44978, 65.634038 ], [ -133.959882, 65.61328 ] ] ], "type": "Polygon" }, "id": "840d691ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.849353, 56.650391 ], [ -156.189446, 56.522713 ], [ -156.172732, 56.319161 ], [ -155.82083, 56.243368 ], [ -155.483019, 56.369568 ], [ -155.494825, 56.573028 ], [ -155.849353, 56.650391 ] ] ], "type": "Polygon" }, "id": "840ceb7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.862268, 56.264794 ], [ -157.195003, 56.134585 ], [ -157.171444, 55.932039 ], [ -156.819939, 55.859718 ], [ -156.489287, 55.988428 ], [ -156.508053, 56.190948 ], [ -156.862268, 56.264794 ] ] ], "type": "Polygon" }, "id": "840ccc3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.865451, 50.612561 ], [ -130.999523, 50.438464 ], [ -130.816957, 50.251818 ], [ -130.500998, 50.237879 ], [ -130.364574, 50.411238 ], [ -130.546442, 50.599277 ], [ -130.865451, 50.612561 ] ] ], "type": "Polygon" }, "id": "841d609ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.02307, 60.370779 ], [ -139.447404, 60.294501 ], [ -139.558231, 60.092743 ], [ -139.249849, 59.968403 ], [ -138.857743, 59.995089 ], [ -138.741944, 60.196107 ], [ -139.02307, 60.370779 ] ] ], "type": "Polygon" }, "id": "840c6dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.685097, 56.339682 ], [ -150.036156, 56.231325 ], [ -150.062259, 56.03216 ], [ -149.741904, 55.941792 ], [ -149.393837, 56.048943 ], [ -149.363143, 56.247659 ], [ -149.685097, 56.339682 ] ] ], "type": "Polygon" }, "id": "841da67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.322389, 52.243129 ], [ -171.121826, 52.427023 ], [ -171.2965, 52.637988 ], [ -171.674042, 52.664835 ], [ -171.874341, 52.480283 ], [ -171.697378, 52.269543 ], [ -171.322389, 52.243129 ] ] ], "type": "Polygon" }, "id": "8422c51ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.303935, 26.556771 ], [ -111.079793, 26.718333 ], [ -111.123741, 26.972419 ], [ -111.392793, 27.064722 ], [ -111.617045, 26.902725 ], [ -111.572139, 26.648862 ], [ -111.303935, 26.556771 ] ] ], "type": "Polygon" }, "id": "84480d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.056908, 48.762823 ], [ -129.838205, 48.933664 ], [ -129.931765, 49.122258 ], [ -130.244675, 49.139621 ], [ -130.462272, 48.96864 ], [ -130.368073, 48.780437 ], [ -130.056908, 48.762823 ] ] ], "type": "Polygon" }, "id": "8428c9bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.822028, 63.614628 ], [ -149.286812, 63.503459 ], [ -149.32782, 63.281933 ], [ -148.911939, 63.172235 ], [ -148.452491, 63.281957 ], [ -148.403613, 63.50281 ], [ -148.822028, 63.614628 ] ] ], "type": "Polygon" }, "id": "840c741ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.804111, 39.764614 ], [ -123.584486, 39.938371 ], [ -123.659161, 40.161676 ], [ -123.954257, 40.21078 ], [ -124.173268, 40.036776 ], [ -124.097804, 39.813917 ], [ -123.804111, 39.764614 ] ] ], "type": "Polygon" }, "id": "8428063ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.212431, 36.459602 ], [ -121.994819, 36.633553 ], [ -122.064397, 36.865977 ], [ -122.352395, 36.923995 ], [ -122.569513, 36.749752 ], [ -122.499133, 36.517784 ], [ -122.212431, 36.459602 ] ] ], "type": "Polygon" }, "id": "8428349ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.727565, 54.360074 ], [ -163.506777, 54.520323 ], [ -163.648745, 54.732017 ], [ -164.01431, 54.783473 ], [ -164.235596, 54.622642 ], [ -164.09083, 54.410939 ], [ -163.727565, 54.360074 ] ] ], "type": "Polygon" }, "id": "840cdadffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.243904, 52.74772 ], [ -166.032894, 52.918332 ], [ -166.183625, 53.131653 ], [ -166.54794, 53.174306 ], [ -166.759185, 53.003076 ], [ -166.605891, 52.789813 ], [ -166.243904, 52.74772 ] ] ], "type": "Polygon" }, "id": "8422d4bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.411598, 58.997253 ], [ -139.517589, 58.799175 ], [ -139.249557, 58.626671 ], [ -138.875149, 58.650746 ], [ -138.764741, 58.848494 ], [ -139.033133, 59.022505 ], [ -139.411598, 58.997253 ] ] ], "type": "Polygon" }, "id": "841d349ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.04573, 57.433016 ], [ -153.402877, 57.313006 ], [ -153.405927, 57.107989 ], [ -153.056946, 57.023243 ], [ -152.702606, 57.141857 ], [ -152.694445, 57.346601 ], [ -153.04573, 57.433016 ] ] ], "type": "Polygon" }, "id": "840ce9bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.552333, 43.482908 ], [ -128.341085, 43.658845 ], [ -128.42672, 43.865502 ], [ -128.724245, 43.895771 ], [ -128.934583, 43.719675 ], [ -128.848313, 43.51347 ], [ -128.552333, 43.482908 ] ] ], "type": "Polygon" }, "id": "8428567ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.362058, 51.974952 ], [ -166.154123, 52.147757 ], [ -166.303376, 52.362144 ], [ -166.663065, 52.403674 ], [ -166.871217, 52.230247 ], [ -166.719476, 52.015914 ], [ -166.362058, 51.974952 ] ] ], "type": "Polygon" }, "id": "8422f3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.341353, 58.164723 ], [ -137.45997, 57.968686 ], [ -137.206288, 57.790867 ], [ -136.833953, 57.807566 ], [ -136.711234, 58.00316 ], [ -136.964925, 58.182504 ], [ -137.341353, 58.164723 ] ] ], "type": "Polygon" }, "id": "841d26dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.139716, 39.524963 ], [ -117.903802, 39.690565 ], [ -117.967655, 39.921431 ], [ -118.268431, 39.986357 ], [ -118.504055, 39.820454 ], [ -118.439199, 39.589927 ], [ -118.139716, 39.524963 ] ] ], "type": "Polygon" }, "id": "84298bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.01003, 58.678841 ], [ -153.383599, 58.557595 ], [ -153.386933, 58.348449 ], [ -153.022288, 58.260831 ], [ -152.651793, 58.38063 ], [ -152.642874, 58.589483 ], [ -153.01003, 58.678841 ] ] ], "type": "Polygon" }, "id": "840ced9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.000535, 44.511788 ], [ -110.735518, 44.65654 ], [ -110.786569, 44.880223 ], [ -111.103982, 44.959009 ], [ -111.369174, 44.813952 ], [ -111.316782, 44.590416 ], [ -111.000535, 44.511788 ] ] ], "type": "Polygon" }, "id": "8428963ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.790654, 65.777964 ], [ -134.972238, 65.566913 ], [ -134.650743, 65.380301 ], [ -134.148341, 65.402913 ], [ -133.959882, 65.61328 ], [ -134.28063, 65.801729 ], [ -134.790654, 65.777964 ] ] ], "type": "Polygon" }, "id": "840d695ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.628538, 42.777845 ], [ -101.357266, 42.903151 ], [ -101.384524, 43.133913 ], [ -101.684475, 43.239471 ], [ -101.956525, 43.113949 ], [ -101.927846, 42.883088 ], [ -101.628538, 42.777845 ] ] ], "type": "Polygon" }, "id": "8426107ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.522329, 28.795129 ], [ -114.300026, 28.961112 ], [ -114.351211, 29.211898 ], [ -114.625625, 29.296382 ], [ -114.847875, 29.129982 ], [ -114.795767, 28.879516 ], [ -114.522329, 28.795129 ] ] ], "type": "Polygon" }, "id": "844842dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.80236, 21.278764 ], [ -106.581537, 21.433511 ], [ -106.614804, 21.688708 ], [ -106.869838, 21.789081 ], [ -107.090971, 21.633866 ], [ -107.056761, 21.378748 ], [ -106.80236, 21.278764 ] ] ], "type": "Polygon" }, "id": "8448355ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.009, 26.342978 ], [ -109.783228, 26.502641 ], [ -109.824485, 26.757377 ], [ -110.092493, 26.852274 ], [ -110.31844, 26.692181 ], [ -110.276206, 26.437623 ], [ -110.009, 26.342978 ] ] ], "type": "Polygon" }, "id": "844808dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.980287, 51.450983 ], [ -166.775139, 51.626561 ], [ -166.926115, 51.841406 ], [ -167.284673, 51.880605 ], [ -167.489978, 51.704397 ], [ -167.33658, 51.489622 ], [ -166.980287, 51.450983 ] ] ], "type": "Polygon" }, "id": "8422f03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.153179, 35.301557 ], [ -111.913206, 35.460569 ], [ -111.962358, 35.70494 ], [ -112.25258, 35.790091 ], [ -112.492632, 35.630739 ], [ -112.442387, 35.386578 ], [ -112.153179, 35.301557 ] ] ], "type": "Polygon" }, "id": "8429b27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.929782, 65.296101 ], [ -149.428639, 65.183782 ], [ -149.471288, 64.957689 ], [ -149.024192, 64.844606 ], [ -148.531463, 64.955386 ], [ -148.479732, 65.180772 ], [ -148.929782, 65.296101 ] ] ], "type": "Polygon" }, "id": "840c2dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.175201, 48.63813 ], [ -127.949253, 48.806903 ], [ -128.03959, 48.998923 ], [ -128.35662, 49.02179 ], [ -128.581563, 48.852844 ], [ -128.490489, 48.661206 ], [ -128.175201, 48.63813 ] ] ], "type": "Polygon" }, "id": "8428c81ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.857039, 43.945768 ], [ -105.585931, 44.079485 ], [ -105.624155, 44.306814 ], [ -105.934913, 44.400409 ], [ -106.206547, 44.266421 ], [ -106.166899, 44.039111 ], [ -105.857039, 43.945768 ] ] ], "type": "Polygon" }, "id": "8426a45ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.182407, 69.792636 ], [ -147.805999, 69.685606 ], [ -147.877809, 69.450456 ], [ -147.339686, 69.323299 ], [ -146.726003, 69.428623 ], [ -146.640607, 69.662785 ], [ -147.182407, 69.792636 ] ] ], "type": "Polygon" }, "id": "840d72dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.279111, 18.081889 ], [ -104.061542, 18.232383 ], [ -104.088985, 18.485188 ], [ -104.334915, 18.587507 ], [ -104.552884, 18.436537 ], [ -104.524525, 18.183725 ], [ -104.279111, 18.081889 ] ] ], "type": "Polygon" }, "id": "8449ac1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.770752, 64.276602 ], [ -148.251509, 64.168771 ], [ -148.303147, 63.946222 ], [ -147.882274, 63.832254 ], [ -147.407359, 63.93867 ], [ -147.347506, 64.160454 ], [ -147.770752, 64.276602 ] ] ], "type": "Polygon" }, "id": "840d5a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.135868, 65.443314 ], [ -133.331008, 65.233681 ], [ -133.022754, 65.042567 ], [ -132.520489, 65.059255 ], [ -132.318865, 65.268106 ], [ -132.625917, 65.461059 ], [ -133.135868, 65.443314 ] ] ], "type": "Polygon" }, "id": "840d69bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.175899, 40.693983 ], [ -126.965838, 40.870972 ], [ -127.046845, 41.086981 ], [ -127.338579, 41.125522 ], [ -127.547847, 40.948339 ], [ -127.466181, 40.732809 ], [ -127.175899, 40.693983 ] ] ], "type": "Polygon" }, "id": "84280c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.55894, 62.924879 ], [ -152.002885, 62.804766 ], [ -152.018994, 62.583434 ], [ -151.598805, 62.482662 ], [ -151.159396, 62.601207 ], [ -151.135652, 62.822078 ], [ -151.55894, 62.924879 ] ] ], "type": "Polygon" }, "id": "840c767ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.534198, 55.807552 ], [ -158.856868, 55.673044 ], [ -158.822122, 55.471681 ], [ -158.469356, 55.404737 ], [ -158.148473, 55.537709 ], [ -158.178563, 55.739151 ], [ -158.534198, 55.807552 ] ] ], "type": "Polygon" }, "id": "840cce3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.570781, 56.733067 ], [ -161.893655, 56.588273 ], [ -161.835895, 56.383485 ], [ -161.460177, 56.323215 ], [ -161.138729, 56.466338 ], [ -161.191559, 56.671393 ], [ -161.570781, 56.733067 ] ] ], "type": "Polygon" }, "id": "840cc23ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.256667, 27.73388 ], [ -111.030283, 27.895248 ], [ -111.074556, 28.148791 ], [ -111.346193, 28.24075 ], [ -111.572692, 28.078962 ], [ -111.527441, 27.825636 ], [ -111.256667, 27.73388 ] ] ], "type": "Polygon" }, "id": "8448097ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.39914, 53.655312 ], [ -157.176316, 53.801028 ], [ -157.282771, 54.013771 ], [ -157.614828, 54.08104 ], [ -157.838671, 53.934862 ], [ -157.729442, 53.72188 ], [ -157.39914, 53.655312 ] ] ], "type": "Polygon" }, "id": "84229a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.337781, 67.512739 ], [ -173.750227, 67.320462 ], [ -173.53405, 67.09364 ], [ -172.91502, 67.057717 ], [ -172.50112, 67.247434 ], [ -172.707576, 67.47562 ], [ -173.337781, 67.512739 ] ] ], "type": "Polygon" }, "id": "840d811ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.423962, 51.173225 ], [ -131.556626, 50.997314 ], [ -131.369341, 50.811222 ], [ -131.050027, 50.79964 ], [ -130.914908, 50.974835 ], [ -131.101539, 51.162332 ], [ -131.423962, 51.173225 ] ] ], "type": "Polygon" }, "id": "841d66bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.696115, 33.631089 ], [ -117.471732, 33.800292 ], [ -117.531337, 34.0428 ], [ -117.816239, 34.115728 ], [ -118.040386, 33.946172 ], [ -117.97987, 33.704043 ], [ -117.696115, 33.631089 ] ] ], "type": "Polygon" }, "id": "8429a0bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.483019, 56.369568 ], [ -155.82083, 56.243368 ], [ -155.806868, 56.040917 ], [ -155.459902, 55.964765 ], [ -155.12438, 56.089512 ], [ -155.133534, 56.291853 ], [ -155.483019, 56.369568 ] ] ], "type": "Polygon" }, "id": "840ccd9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.068545, 58.122446 ], [ -157.422954, 57.989154 ], [ -157.396116, 57.780299 ], [ -157.020322, 57.70475 ], [ -156.668251, 57.836453 ], [ -156.689631, 58.045282 ], [ -157.068545, 58.122446 ] ] ], "type": "Polygon" }, "id": "840cee7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.460955, 18.468329 ], [ -67.636362, 18.376209 ], [ -67.608912, 18.182956 ], [ -67.405893, 18.082138 ], [ -67.230814, 18.17473 ], [ -67.258425, 18.367667 ], [ -67.460955, 18.468329 ] ] ], "type": "Polygon" }, "id": "844cc09ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.25146, 59.729678 ], [ -147.653665, 59.626188 ], [ -147.701374, 59.417527 ], [ -147.352588, 59.313018 ], [ -146.954525, 59.415308 ], [ -146.901126, 59.623297 ], [ -147.25146, 59.729678 ] ] ], "type": "Polygon" }, "id": "840c439ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.310438, 54.248942 ], [ -164.09083, 54.410939 ], [ -164.235596, 54.622642 ], [ -164.602753, 54.67234 ], [ -164.822801, 54.509753 ], [ -164.675264, 54.29806 ], [ -164.310438, 54.248942 ] ] ], "type": "Polygon" }, "id": "8422d2dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.501613, 19.576307 ], [ -66.674083, 19.488608 ], [ -66.64635, 19.300211 ], [ -66.445999, 19.19982 ], [ -66.282291, 19.348063 ], [ -66.310235, 19.536433 ], [ -66.501613, 19.576307 ] ] ], "type": "Polygon" }, "id": "844ce39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.714221, 53.005075 ], [ -131.852069, 52.823762 ], [ -131.653764, 52.635868 ], [ -131.318279, 52.627839 ], [ -131.177691, 52.808441 ], [ -131.375306, 52.997788 ], [ -131.714221, 53.005075 ] ] ], "type": "Polygon" }, "id": "8412901ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.381231, 21.988747 ], [ -107.159801, 22.144427 ], [ -107.194424, 22.399849 ], [ -107.451425, 22.499496 ], [ -107.673142, 22.343351 ], [ -107.637572, 22.088027 ], [ -107.381231, 21.988747 ] ] ], "type": "Polygon" }, "id": "8448319ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.4877, 38.249063 ], [ -122.267179, 38.42226 ], [ -122.338446, 38.650734 ], [ -122.631058, 38.705571 ], [ -122.851053, 38.532101 ], [ -122.778968, 38.304068 ], [ -122.4877, 38.249063 ] ] ], "type": "Polygon" }, "id": "8428303ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.884983, 40.827826 ], [ -123.663242, 41.000763 ], [ -123.738867, 41.221435 ], [ -124.037043, 41.268737 ], [ -124.258153, 41.095559 ], [ -124.181725, 40.875321 ], [ -123.884983, 40.827826 ] ] ], "type": "Polygon" }, "id": "8428023ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.645899, 60.360945 ], [ -149.054814, 60.25239 ], [ -149.092722, 60.040608 ], [ -148.727808, 59.937973 ], [ -148.323047, 60.045229 ], [ -148.279064, 60.256407 ], [ -148.645899, 60.360945 ] ] ], "type": "Polygon" }, "id": "840c429ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.338989, 47.079205 ], [ -122.096212, 47.241917 ], [ -122.174184, 47.447202 ], [ -122.495936, 47.489432 ], [ -122.738087, 47.326464 ], [ -122.65912, 47.121524 ], [ -122.338989, 47.079205 ] ] ], "type": "Polygon" }, "id": "8428d5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.224202, 18.636656 ], [ -106.007283, 18.78982 ], [ -106.038737, 19.043257 ], [ -106.288022, 19.143467 ], [ -106.505262, 18.989809 ], [ -106.472898, 18.736437 ], [ -106.224202, 18.636656 ] ] ], "type": "Polygon" }, "id": "84491e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.300348, 55.93347 ], [ -160.618817, 55.793612 ], [ -160.571566, 55.591575 ], [ -160.210523, 55.529199 ], [ -159.893598, 55.66746 ], [ -159.936161, 55.869683 ], [ -160.300348, 55.93347 ] ] ], "type": "Polygon" }, "id": "840cdd9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.647145, 66.502753 ], [ -143.190567, 66.41263 ], [ -143.297737, 66.189106 ], [ -142.870773, 66.056902 ], [ -142.335488, 66.145858 ], [ -142.219099, 66.368171 ], [ -142.647145, 66.502753 ] ] ], "type": "Polygon" }, "id": "840d43dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.420393, 53.451439 ], [ -156.198105, 53.595065 ], [ -156.298949, 53.807768 ], [ -156.624829, 53.877121 ], [ -156.848201, 53.733055 ], [ -156.744613, 53.520078 ], [ -156.420393, 53.451439 ] ] ], "type": "Polygon" }, "id": "841d967ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.456854, 46.833701 ], [ -123.218544, 46.998589 ], [ -123.298476, 47.203177 ], [ -123.617661, 47.242519 ], [ -123.855278, 47.077391 ], [ -123.774409, 46.873162 ], [ -123.456854, 46.833701 ] ] ], "type": "Polygon" }, "id": "8428c65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -87.968414, 38.317621 ], [ -87.715323, 38.415748 ], [ -87.709092, 38.648108 ], [ -87.957085, 38.78284 ], [ -88.211441, 38.684794 ], [ -88.216535, 38.451935 ], [ -87.968414, 38.317621 ] ] ], "type": "Polygon" }, "id": "842645bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.746752, 59.71463 ], [ -146.151587, 59.616128 ], [ -146.210612, 59.408858 ], [ -145.870383, 59.30084 ], [ -145.469867, 59.398226 ], [ -145.405284, 59.604735 ], [ -145.746752, 59.71463 ] ] ], "type": "Polygon" }, "id": "840c411ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.833451, 65.214028 ], [ -134.020135, 65.004361 ], [ -133.710899, 64.815069 ], [ -133.215893, 64.833632 ], [ -133.022754, 65.042567 ], [ -133.331008, 65.233681 ], [ -133.833451, 65.214028 ] ] ], "type": "Polygon" }, "id": "840d693ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.618216, 62.262475 ], [ -152.050371, 62.142623 ], [ -152.065654, 61.923153 ], [ -151.656042, 61.823965 ], [ -151.228179, 61.942278 ], [ -151.205649, 62.161303 ], [ -151.618216, 62.262475 ] ] ], "type": "Polygon" }, "id": "840c721ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.504133, 58.733281 ], [ -143.897809, 58.642767 ], [ -143.970896, 58.440953 ], [ -143.655299, 58.330498 ], [ -143.26586, 58.420051 ], [ -143.187807, 58.621011 ], [ -143.504133, 58.733281 ] ] ], "type": "Polygon" }, "id": "840c4ddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.125089, 23.983585 ], [ -109.903712, 24.143361 ], [ -109.944436, 24.398441 ], [ -110.207477, 24.493555 ], [ -110.429016, 24.333317 ], [ -110.387354, 24.078429 ], [ -110.125089, 23.983585 ] ] ], "type": "Polygon" }, "id": "84482adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.337727, 64.281198 ], [ -131.540829, 64.074574 ], [ -131.255889, 63.878614 ], [ -130.769352, 63.887483 ], [ -130.560562, 64.093242 ], [ -130.843929, 64.291004 ], [ -131.337727, 64.281198 ] ] ], "type": "Polygon" }, "id": "8413125ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.593037, 59.350995 ], [ -136.722299, 59.152116 ], [ -136.461204, 58.971515 ], [ -136.070941, 58.988228 ], [ -135.937279, 59.186619 ], [ -136.198249, 59.368793 ], [ -136.593037, 59.350995 ] ] ], "type": "Polygon" }, "id": "8413903ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.935872, 39.901316 ], [ -119.704052, 40.069438 ], [ -119.771696, 40.297436 ], [ -120.072111, 40.35694 ], [ -120.303532, 40.188531 ], [ -120.234943, 39.960907 ], [ -119.935872, 39.901316 ] ] ], "type": "Polygon" }, "id": "8428169ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.515568, 63.925654 ], [ -146.992462, 63.822356 ], [ -147.054651, 63.601798 ], [ -146.647827, 63.485367 ], [ -146.17683, 63.587345 ], [ -146.106795, 63.80706 ], [ -146.515568, 63.925654 ] ] ], "type": "Polygon" }, "id": "840d5b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.165839, 19.934145 ], [ -115.962109, 20.098425 ], [ -116.01273, 20.348726 ], [ -116.267849, 20.434328 ], [ -116.47146, 20.269506 ], [ -116.420074, 20.019624 ], [ -116.165839, 19.934145 ] ] ], "type": "Polygon" }, "id": "8449409ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.458064, 44.06313 ], [ -114.201519, 44.21601 ], [ -114.260348, 44.438605 ], [ -114.576957, 44.508094 ], [ -114.833434, 44.354909 ], [ -114.773376, 44.132542 ], [ -114.458064, 44.06313 ] ] ], "type": "Polygon" }, "id": "8428867ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.496395, 63.592753 ], [ -151.95279, 63.47242 ], [ -151.969792, 63.249263 ], [ -151.538468, 63.146902 ], [ -151.086874, 63.265636 ], [ -151.061816, 63.488315 ], [ -151.496395, 63.592753 ] ] ], "type": "Polygon" }, "id": "840c76dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.596164, 59.643856 ], [ -152.984357, 59.522976 ], [ -152.990926, 59.310934 ], [ -152.615284, 59.220095 ], [ -152.230454, 59.339506 ], [ -152.217909, 59.551214 ], [ -152.596164, 59.643856 ] ] ], "type": "Polygon" }, "id": "840c539ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.102583, 56.136962 ], [ -136.222511, 55.946269 ], [ -135.988898, 55.766605 ], [ -135.635503, 55.776151 ], [ -135.512025, 55.96634 ], [ -135.745468, 56.147493 ], [ -136.102583, 56.136962 ] ] ], "type": "Polygon" }, "id": "841d215ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.263054, 57.512986 ], [ -143.639728, 57.423991 ], [ -143.71138, 57.22655 ], [ -143.410899, 57.118921 ], [ -143.038121, 57.207 ], [ -142.96195, 57.403616 ], [ -143.263054, 57.512986 ] ] ], "type": "Polygon" }, "id": "840c49bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.181309, 57.314113 ], [ -155.531273, 57.18763 ], [ -155.518948, 56.982061 ], [ -155.161786, 56.903104 ], [ -154.81431, 57.028106 ], [ -154.821507, 57.233536 ], [ -155.181309, 57.314113 ] ] ], "type": "Polygon" }, "id": "840ceb9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.925353, 62.288966 ], [ -150.362821, 62.174798 ], [ -150.392556, 61.956278 ], [ -149.991994, 61.852476 ], [ -149.559132, 61.965195 ], [ -149.522244, 62.183151 ], [ -149.925353, 62.288966 ] ] ], "type": "Polygon" }, "id": "840c707ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.831769, 57.949907 ], [ -137.945885, 57.754409 ], [ -137.692292, 57.578099 ], [ -137.324469, 57.595785 ], [ -137.206288, 57.790867 ], [ -137.45997, 57.968686 ], [ -137.831769, 57.949907 ] ] ], "type": "Polygon" }, "id": "841d265ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.928051, 56.877708 ], [ -157.267712, 56.746464 ], [ -157.24313, 56.541799 ], [ -156.883884, 56.468394 ], [ -156.546387, 56.59811 ], [ -156.565967, 56.802749 ], [ -156.928051, 56.877708 ] ] ], "type": "Polygon" }, "id": "840ccc9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -75.973122, 19.579318 ], [ -75.782891, 19.67996 ], [ -75.757071, 19.900284 ], [ -75.922006, 20.020759 ], [ -76.113182, 19.92026 ], [ -76.138476, 19.699142 ], [ -75.973122, 19.579318 ] ] ], "type": "Polygon" }, "id": "844c9a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.545956, 17.775109 ], [ -103.328431, 17.92455 ], [ -103.35434, 18.176922 ], [ -103.59869, 18.279888 ], [ -103.816644, 18.129978 ], [ -103.78982, 17.877574 ], [ -103.545956, 17.775109 ] ] ], "type": "Polygon" }, "id": "8449a13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.750551, 59.91682 ], [ -154.139388, 59.791957 ], [ -154.136904, 59.578501 ], [ -153.75173, 59.490158 ], [ -153.366137, 59.613487 ], [ -153.362477, 59.826681 ], [ -153.750551, 59.91682 ] ] ], "type": "Polygon" }, "id": "840c52bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.164717, 30.454428 ], [ -115.94286, 30.622455 ], [ -115.997955, 30.870413 ], [ -116.275818, 30.949985 ], [ -116.497533, 30.781562 ], [ -116.441531, 30.533965 ], [ -116.164717, 30.454428 ] ] ], "type": "Polygon" }, "id": "84485d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.129406, 17.878211 ], [ -105.913658, 18.030916 ], [ -105.944744, 18.28364 ], [ -106.19248, 18.383595 ], [ -106.408549, 18.230387 ], [ -106.376562, 17.977729 ], [ -106.129406, 17.878211 ] ] ], "type": "Polygon" }, "id": "84491edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -132.797091, 53.389312 ], [ -132.929276, 53.206652 ], [ -132.725005, 53.021076 ], [ -132.38909, 53.01671 ], [ -132.254043, 53.198709 ], [ -132.457751, 53.38574 ], [ -132.797091, 53.389312 ] ] ], "type": "Polygon" }, "id": "841296bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.805331, 49.48005 ], [ -129.58357, 49.64948 ], [ -129.677587, 49.836178 ], [ -129.994037, 49.853068 ], [ -130.214684, 49.68349 ], [ -130.120003, 49.497172 ], [ -129.805331, 49.48005 ] ] ], "type": "Polygon" }, "id": "841d653ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.68091, 19.371611 ], [ -69.860471, 19.278779 ], [ -69.834116, 19.086932 ], [ -69.628017, 18.988189 ], [ -69.448734, 19.08147 ], [ -69.475271, 19.273044 ], [ -69.68091, 19.371611 ] ] ], "type": "Polygon" }, "id": "844cf35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.355626, 60.641338 ], [ -151.762122, 60.523614 ], [ -151.778802, 60.309138 ], [ -151.395375, 60.212808 ], [ -150.992709, 60.329081 ], [ -150.96965, 60.543123 ], [ -151.355626, 60.641338 ] ] ], "type": "Polygon" }, "id": "840c555ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.747449, 52.398696 ], [ -170.54522, 52.580888 ], [ -170.717561, 52.792062 ], [ -171.094479, 52.820836 ], [ -171.2965, 52.637988 ], [ -171.121826, 52.427023 ], [ -170.747449, 52.398696 ] ] ], "type": "Polygon" }, "id": "8422c55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.79333, 56.416021 ], [ -155.133534, 56.291853 ], [ -155.12438, 56.089512 ], [ -154.779831, 56.011482 ], [ -154.442016, 56.134222 ], [ -154.446361, 56.33641 ], [ -154.79333, 56.416021 ] ] ], "type": "Polygon" }, "id": "841db65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.208337, 60.344337 ], [ -150.613249, 60.230631 ], [ -150.638859, 60.017792 ], [ -150.265741, 59.91915 ], [ -149.86475, 60.031476 ], [ -149.832968, 60.243812 ], [ -150.208337, 60.344337 ] ] ], "type": "Polygon" }, "id": "840c553ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.673142, 22.343351 ], [ -107.451425, 22.499496 ], [ -107.486734, 22.754988 ], [ -107.74471, 22.85423 ], [ -107.966701, 22.697623 ], [ -107.930443, 22.442238 ], [ -107.673142, 22.343351 ] ] ], "type": "Polygon" }, "id": "844831bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.859123, 58.271114 ], [ -155.222118, 58.144489 ], [ -155.211687, 57.935855 ], [ -154.843741, 57.854005 ], [ -154.483458, 57.979121 ], [ -154.488409, 58.187585 ], [ -154.859123, 58.271114 ] ] ], "type": "Polygon" }, "id": "840ce89ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.303769, 40.299824 ], [ -127.095021, 40.477247 ], [ -127.175899, 40.693983 ], [ -127.466181, 40.732809 ], [ -127.674135, 40.555192 ], [ -127.592608, 40.338943 ], [ -127.303769, 40.299824 ] ] ], "type": "Polygon" }, "id": "84280c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.172468, 51.813185 ], [ -173.979383, 52.004456 ], [ -174.166293, 52.213494 ], [ -174.548385, 52.23095 ], [ -174.740924, 52.039015 ], [ -174.551933, 51.830289 ], [ -174.172468, 51.813185 ] ] ], "type": "Polygon" }, "id": "8422e81ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.660538, 31.700503 ], [ -115.435156, 31.867487 ], [ -115.489858, 32.114502 ], [ -115.770886, 32.194197 ], [ -115.996149, 32.026832 ], [ -115.940508, 31.780154 ], [ -115.660538, 31.700503 ] ] ], "type": "Polygon" }, "id": "844859dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.919731, 19.957972 ], [ -71.101325, 19.864951 ], [ -71.075633, 19.674391 ], [ -70.868152, 19.577098 ], [ -70.686806, 19.670554 ], [ -70.712692, 19.860867 ], [ -70.919731, 19.957972 ] ] ], "type": "Polygon" }, "id": "844c899ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.98285, 56.631694 ], [ -150.336928, 56.522108 ], [ -150.361226, 56.321709 ], [ -150.036156, 56.231325 ], [ -149.685097, 56.339682 ], [ -149.656098, 56.539642 ], [ -149.98285, 56.631694 ] ] ], "type": "Polygon" }, "id": "841da65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.538196, 50.314264 ], [ -172.346521, 50.505499 ], [ -172.52122, 50.71831 ], [ -172.889683, 50.73964 ], [ -173.080996, 50.547739 ], [ -172.904221, 50.335175 ], [ -172.538196, 50.314264 ] ] ], "type": "Polygon" }, "id": "8422e1bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.429122, 61.944806 ], [ -158.832294, 61.802909 ], [ -158.789218, 61.582109 ], [ -158.3502, 61.503137 ], [ -157.949833, 61.643199 ], [ -157.985665, 61.864054 ], [ -158.429122, 61.944806 ] ] ], "type": "Polygon" }, "id": "840c0a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.992709, 60.329081 ], [ -151.395375, 60.212808 ], [ -151.414774, 59.999517 ], [ -151.037728, 59.902939 ], [ -150.638859, 60.017792 ], [ -150.613249, 60.230631 ], [ -150.992709, 60.329081 ] ] ], "type": "Polygon" }, "id": "840c557ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.145257, 19.947906 ], [ -70.325357, 19.855958 ], [ -70.299282, 19.665897 ], [ -70.09292, 19.568042 ], [ -69.913087, 19.66043 ], [ -69.939348, 19.850233 ], [ -70.145257, 19.947906 ] ] ], "type": "Polygon" }, "id": "844cf21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.448583, 55.763426 ], [ -155.779522, 55.63814 ], [ -155.766129, 55.437818 ], [ -155.426409, 55.362879 ], [ -155.09767, 55.486738 ], [ -155.106451, 55.686953 ], [ -155.448583, 55.763426 ] ] ], "type": "Polygon" }, "id": "840ccd3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.280934, 59.925777 ], [ -142.694451, 59.838707 ], [ -142.779792, 59.634357 ], [ -142.456946, 59.51803 ], [ -142.048183, 59.604179 ], [ -141.957542, 59.807567 ], [ -142.280934, 59.925777 ] ] ], "type": "Polygon" }, "id": "840c687ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.650743, 65.380301 ], [ -134.830785, 65.169949 ], [ -134.515134, 64.982885 ], [ -134.020135, 65.004361 ], [ -133.833451, 65.214028 ], [ -134.148341, 65.402913 ], [ -134.650743, 65.380301 ] ] ], "type": "Polygon" }, "id": "840d697ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.28519, 59.018272 ], [ -135.423167, 58.820406 ], [ -135.169967, 58.636395 ], [ -134.779112, 58.648673 ], [ -134.636907, 58.845981 ], [ -134.889753, 59.031576 ], [ -135.28519, 59.018272 ] ] ], "type": "Polygon" }, "id": "8413917ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.293651, 18.741025 ], [ -105.075742, 18.893057 ], [ -105.105363, 19.146571 ], [ -105.353812, 19.248027 ], [ -105.572083, 19.095514 ], [ -105.541544, 18.842029 ], [ -105.293651, 18.741025 ] ] ], "type": "Polygon" }, "id": "8449ad1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.810472, 53.508079 ], [ -167.598902, 53.680561 ], [ -167.759832, 53.891919 ], [ -168.134921, 53.930676 ], [ -168.346576, 53.75756 ], [ -168.183071, 53.546324 ], [ -167.810472, 53.508079 ] ] ], "type": "Polygon" }, "id": "8422d53ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.065654, 61.923153 ], [ -152.490725, 61.802058 ], [ -152.502076, 61.583335 ], [ -152.095445, 61.486101 ], [ -151.674472, 61.60565 ], [ -151.656042, 61.823965 ], [ -152.065654, 61.923153 ] ] ], "type": "Polygon" }, "id": "840c727ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.880192, 62.560312 ], [ -153.313535, 62.436017 ], [ -153.318006, 62.215048 ], [ -152.896624, 62.11872 ], [ -152.467429, 62.241397 ], [ -152.455474, 62.462006 ], [ -152.880192, 62.560312 ] ] ], "type": "Polygon" }, "id": "840c0d3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.080996, 50.547739 ], [ -172.889683, 50.73964 ], [ -173.067593, 50.951649 ], [ -173.438891, 50.971491 ], [ -173.629786, 50.778924 ], [ -173.449816, 50.567182 ], [ -173.080996, 50.547739 ] ] ], "type": "Polygon" }, "id": "8422ecdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.542686, 52.591221 ], [ -163.328891, 52.75549 ], [ -163.465285, 52.969868 ], [ -163.818106, 53.020019 ], [ -164.032383, 52.855168 ], [ -163.893367, 52.640751 ], [ -163.542686, 52.591221 ] ] ], "type": "Polygon" }, "id": "8422895ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.648745, 54.732017 ], [ -163.42627, 54.891094 ], [ -163.568836, 55.102204 ], [ -163.936729, 55.154246 ], [ -164.159717, 54.994589 ], [ -164.01431, 54.783473 ], [ -163.648745, 54.732017 ] ] ], "type": "Polygon" }, "id": "840cde7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.928281, 60.994399 ], [ -147.351104, 60.891161 ], [ -147.403566, 60.678802 ], [ -147.039465, 60.570397 ], [ -146.621247, 60.672409 ], [ -146.562548, 60.88404 ], [ -146.928281, 60.994399 ] ] ], "type": "Polygon" }, "id": "840c447ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.798834, 49.642215 ], [ -126.564579, 49.8075 ], [ -126.653646, 49.99834 ], [ -126.977804, 50.023535 ], [ -127.211106, 49.858047 ], [ -127.12121, 49.667569 ], [ -126.798834, 49.642215 ] ] ], "type": "Polygon" }, "id": "8428ca7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -97.344607, 17.930758 ], [ -97.125593, 18.071399 ], [ -97.138966, 18.321231 ], [ -97.372266, 18.430687 ], [ -97.591937, 18.289686 ], [ -97.577651, 18.039591 ], [ -97.344607, 17.930758 ] ] ], "type": "Polygon" }, "id": "846d365ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.386933, 58.348449 ], [ -153.755052, 58.22636 ], [ -153.755577, 58.018113 ], [ -153.393453, 57.932209 ], [ -153.02828, 58.052849 ], [ -153.022288, 58.260831 ], [ -153.386933, 58.348449 ] ] ], "type": "Polygon" }, "id": "840ced1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.517534, 21.461195 ], [ -108.298347, 21.618277 ], [ -108.335105, 21.873283 ], [ -108.591977, 21.971066 ], [ -108.811396, 21.8135 ], [ -108.773713, 21.558637 ], [ -108.517534, 21.461195 ] ] ], "type": "Polygon" }, "id": "8448229ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -74.46472, 19.961161 ], [ -74.652365, 19.863244 ], [ -74.628582, 19.670698 ], [ -74.416927, 19.576268 ], [ -74.229441, 19.674597 ], [ -74.253451, 19.866943 ], [ -74.46472, 19.961161 ] ] ], "type": "Polygon" }, "id": "844c983ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.201738, 40.360428 ], [ -120.972583, 40.530032 ], [ -121.042965, 40.755412 ], [ -121.343412, 40.810796 ], [ -121.57209, 40.640918 ], [ -121.500804, 40.415932 ], [ -121.201738, 40.360428 ] ] ], "type": "Polygon" }, "id": "8428109ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.891379, 18.055835 ], [ -81.689866, 18.169558 ], [ -81.673776, 18.400185 ], [ -81.859861, 18.517787 ], [ -82.062312, 18.404051 ], [ -82.077738, 18.172725 ], [ -81.891379, 18.055835 ] ] ], "type": "Polygon" }, "id": "8445a1dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.068424, 53.72116 ], [ -169.860002, 53.898411 ], [ -170.033084, 54.107916 ], [ -170.417089, 54.139968 ], [ -170.625364, 53.962065 ], [ -170.449797, 53.752763 ], [ -170.068424, 53.72116 ] ] ], "type": "Polygon" }, "id": "8422c3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.274915, 42.005743 ], [ -126.058691, 42.180573 ], [ -126.139354, 42.394762 ], [ -126.436964, 42.43367 ], [ -126.652415, 42.258638 ], [ -126.571035, 42.0449 ], [ -126.274915, 42.005743 ] ] ], "type": "Polygon" }, "id": "84280a9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.398334, 34.057199 ], [ -119.177516, 34.228593 ], [ -119.240554, 34.468622 ], [ -119.525278, 34.53684 ], [ -119.745768, 34.365106 ], [ -119.681866, 34.125495 ], [ -119.398334, 34.057199 ] ] ], "type": "Polygon" }, "id": "8429127ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.028096, 27.542408 ], [ -114.809131, 27.709097 ], [ -114.860761, 27.960329 ], [ -115.132251, 28.04453 ], [ -115.351137, 27.877406 ], [ -115.298616, 27.626519 ], [ -115.028096, 27.542408 ] ] ], "type": "Polygon" }, "id": "8448469ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.49753, 59.724291 ], [ -146.901126, 59.623297 ], [ -146.954525, 59.415308 ], [ -146.609975, 59.309021 ], [ -146.210612, 59.408858 ], [ -146.151587, 59.616128 ], [ -146.49753, 59.724291 ] ] ], "type": "Polygon" }, "id": "840c415ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.698477, 18.819962 ], [ -64.530581, 18.969059 ], [ -64.559906, 19.161507 ], [ -64.756851, 19.204613 ], [ -64.924167, 19.055813 ], [ -64.895118, 18.863611 ], [ -64.698477, 18.819962 ] ] ], "type": "Polygon" }, "id": "844cec3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.641577, 20.388292 ], [ -156.802765, 20.183534 ], [ -156.695548, 19.952449 ], [ -156.427341, 19.925907 ], [ -156.265812, 20.130599 ], [ -156.372827, 20.361897 ], [ -156.641577, 20.388292 ] ] ], "type": "Polygon" }, "id": "845d163ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.760168, 18.756847 ], [ -62.588047, 18.906314 ], [ -62.618851, 19.10195 ], [ -62.821498, 19.14789 ], [ -62.993061, 18.998718 ], [ -62.962534, 18.803312 ], [ -62.760168, 18.756847 ] ] ], "type": "Polygon" }, "id": "844d487ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.612725, 66.652228 ], [ -148.146865, 66.54413 ], [ -148.205183, 66.315619 ], [ -147.739496, 66.196035 ], [ -147.21258, 66.302605 ], [ -147.144172, 66.530269 ], [ -147.612725, 66.652228 ] ] ], "type": "Polygon" }, "id": "840d515ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.147918, 41.231141 ], [ -124.929518, 41.405327 ], [ -125.007647, 41.623174 ], [ -125.30494, 41.66639 ], [ -125.522637, 41.491983 ], [ -125.443752, 41.274582 ], [ -125.147918, 41.231141 ] ] ], "type": "Polygon" }, "id": "8428033ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.26289, 65.613758 ], [ -152.757362, 65.489654 ], [ -152.767933, 65.260818 ], [ -152.293651, 65.156521 ], [ -151.804681, 65.278868 ], [ -151.784504, 65.507251 ], [ -152.26289, 65.613758 ] ] ], "type": "Polygon" }, "id": "840c2c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.7364, 52.837366 ], [ -174.541138, 53.027289 ], [ -174.73409, 53.234011 ], [ -175.124439, 53.25047 ], [ -175.319077, 53.059884 ], [ -175.124008, 52.853502 ], [ -174.7364, 52.837366 ] ] ], "type": "Polygon" }, "id": "8422eb1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.542981, 59.314981 ], [ -142.946653, 59.227326 ], [ -143.028229, 59.024652 ], [ -142.71125, 58.910552 ], [ -142.312094, 58.997287 ], [ -142.22543, 59.199035 ], [ -142.542981, 59.314981 ] ] ], "type": "Polygon" }, "id": "840c6b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.078886, 36.205208 ], [ -117.850176, 36.373535 ], [ -117.91193, 36.611346 ], [ -118.203342, 36.680466 ], [ -118.431784, 36.511813 ], [ -118.369087, 36.274368 ], [ -118.078886, 36.205208 ] ] ], "type": "Polygon" }, "id": "8429aadffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.647166, 38.327348 ], [ -118.415335, 38.494906 ], [ -118.479455, 38.727879 ], [ -118.776372, 38.792936 ], [ -119.00789, 38.625073 ], [ -118.942808, 38.39246 ], [ -118.647166, 38.327348 ] ] ], "type": "Polygon" }, "id": "8429889ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.841384, 39.024872 ], [ -118.608508, 39.192106 ], [ -118.673444, 39.423346 ], [ -118.972229, 39.486995 ], [ -119.204776, 39.31946 ], [ -119.138872, 39.088579 ], [ -118.841384, 39.024872 ] ] ], "type": "Polygon" }, "id": "8429883ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.766129, 55.437818 ], [ -156.092582, 55.312032 ], [ -156.077204, 55.11274 ], [ -155.739888, 55.039311 ], [ -155.415548, 55.163672 ], [ -155.426409, 55.362879 ], [ -155.766129, 55.437818 ] ] ], "type": "Polygon" }, "id": "840cc99ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.638637, 19.19642 ], [ -104.419451, 19.347735 ], [ -104.447854, 19.601585 ], [ -104.696374, 19.70412 ], [ -104.915952, 19.552338 ], [ -104.886619, 19.298491 ], [ -104.638637, 19.19642 ] ] ], "type": "Polygon" }, "id": "8449a8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.688815, 62.939252 ], [ -151.135652, 62.822078 ], [ -151.159396, 62.601207 ], [ -150.743908, 62.49802 ], [ -150.301781, 62.613673 ], [ -150.270447, 62.83402 ], [ -150.688815, 62.939252 ] ] ], "type": "Polygon" }, "id": "840c763ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.141137, 19.34949 ], [ -155.303603, 19.145043 ], [ -155.197898, 18.911504 ], [ -154.929971, 18.882219 ], [ -154.767224, 19.086569 ], [ -154.872682, 19.320301 ], [ -155.141137, 19.34949 ] ] ], "type": "Polygon" }, "id": "845d13bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.992429, 26.209821 ], [ -110.768412, 26.370945 ], [ -110.811614, 26.625306 ], [ -111.079793, 26.718333 ], [ -111.303935, 26.556771 ], [ -111.259776, 26.302623 ], [ -110.992429, 26.209821 ] ] ], "type": "Polygon" }, "id": "84480d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.529002, 28.954569 ], [ -113.304418, 29.119116 ], [ -113.353718, 29.370494 ], [ -113.628554, 29.457038 ], [ -113.853136, 29.292077 ], [ -113.802887, 29.040987 ], [ -113.529002, 28.954569 ] ] ], "type": "Polygon" }, "id": "8448557ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.434828, 63.542716 ], [ -144.908757, 63.446842 ], [ -144.988187, 63.229289 ], [ -144.601088, 63.108568 ], [ -144.133198, 63.203273 ], [ -144.046409, 63.419856 ], [ -144.434828, 63.542716 ] ] ], "type": "Polygon" }, "id": "840c669ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.163852, 37.300385 ], [ -115.928005, 37.464769 ], [ -115.986549, 37.702353 ], [ -116.281969, 37.775246 ], [ -116.517655, 37.610538 ], [ -116.458086, 37.373263 ], [ -116.163852, 37.300385 ] ] ], "type": "Polygon" }, "id": "8429839ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.122275, 19.054463 ], [ -108.907896, 19.211258 ], [ -108.945159, 19.464654 ], [ -109.197688, 19.561083 ], [ -109.412264, 19.403768 ], [ -109.374117, 19.150545 ], [ -109.122275, 19.054463 ] ] ], "type": "Polygon" }, "id": "84490a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.530353, 44.672543 ], [ -112.26788, 44.820385 ], [ -112.32264, 45.042646 ], [ -112.641182, 45.116885 ], [ -112.903722, 44.968735 ], [ -112.847657, 44.746656 ], [ -112.530353, 44.672543 ] ] ], "type": "Polygon" }, "id": "842890bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.053539, 51.563914 ], [ -167.849606, 51.741818 ], [ -168.006231, 51.955989 ], [ -168.369191, 51.992149 ], [ -168.573181, 51.813606 ], [ -168.414165, 51.599543 ], [ -168.053539, 51.563914 ] ] ], "type": "Polygon" }, "id": "8422f11ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.230093, 20.568115 ], [ -106.009921, 20.721925 ], [ -106.041854, 20.976783 ], [ -106.294898, 21.077774 ], [ -106.515401, 20.923495 ], [ -106.48253, 20.668696 ], [ -106.230093, 20.568115 ] ] ], "type": "Polygon" }, "id": "8448341ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.057825, 20.225917 ], [ -108.841414, 20.383223 ], [ -108.878887, 20.637457 ], [ -109.133673, 20.734221 ], [ -109.350286, 20.576411 ], [ -109.311913, 20.322344 ], [ -109.057825, 20.225917 ] ] ], "type": "Polygon" }, "id": "8448245ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.50112, 67.247434 ], [ -172.91502, 67.057717 ], [ -172.710187, 66.830521 ], [ -172.101008, 66.791744 ], [ -171.68603, 66.978926 ], [ -171.88119, 67.207406 ], [ -172.50112, 67.247434 ] ] ], "type": "Polygon" }, "id": "840d813ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.452491, 63.281957 ], [ -148.911939, 63.172235 ], [ -148.955696, 62.951908 ], [ -148.547659, 62.841981 ], [ -148.093471, 62.950294 ], [ -148.042087, 63.16993 ], [ -148.452491, 63.281957 ] ] ], "type": "Polygon" }, "id": "840c743ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.926115, 51.841406 ], [ -166.719476, 52.015914 ], [ -166.871217, 52.230247 ], [ -167.232069, 52.270002 ], [ -167.438873, 52.094866 ], [ -167.284673, 51.880605 ], [ -166.926115, 51.841406 ] ] ], "type": "Polygon" }, "id": "8422f39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.425972, 60.354945 ], [ -149.832968, 60.243812 ], [ -149.86475, 60.031476 ], [ -149.495677, 59.930815 ], [ -149.092722, 60.040608 ], [ -149.054814, 60.25239 ], [ -149.425972, 60.354945 ] ] ], "type": "Polygon" }, "id": "840c42dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.254186, 61.951023 ], [ -146.694671, 61.849533 ], [ -146.754537, 61.634869 ], [ -146.380603, 61.522481 ], [ -145.945178, 61.622747 ], [ -145.878655, 61.836612 ], [ -146.254186, 61.951023 ] ] ], "type": "Polygon" }, "id": "840c627ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.2965, 52.637988 ], [ -171.094479, 52.820836 ], [ -171.27025, 53.031189 ], [ -171.650381, 53.058465 ], [ -171.852136, 52.874958 ], [ -171.674042, 52.664835 ], [ -171.2965, 52.637988 ] ] ], "type": "Polygon" }, "id": "8422c57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.931217, 40.311283 ], [ -125.717577, 40.487191 ], [ -125.796272, 40.706073 ], [ -126.089322, 40.748577 ], [ -126.302233, 40.572453 ], [ -126.22283, 40.354041 ], [ -125.931217, 40.311283 ] ] ], "type": "Polygon" }, "id": "8428011ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.890939, 50.407864 ], [ -170.695794, 50.595155 ], [ -170.863008, 50.809134 ], [ -171.22755, 50.835629 ], [ -171.422488, 50.647677 ], [ -171.253103, 50.433892 ], [ -170.890939, 50.407864 ] ] ], "type": "Polygon" }, "id": "8422e03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.971597, 18.935179 ], [ -106.754914, 19.089389 ], [ -106.787926, 19.343045 ], [ -107.038528, 19.442399 ], [ -107.255502, 19.287689 ], [ -107.221583, 19.034127 ], [ -106.971597, 18.935179 ] ] ], "type": "Polygon" }, "id": "8449185ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.735664, 66.965954 ], [ -135.302629, 66.904882 ], [ -135.488629, 66.690771 ], [ -135.115649, 66.539457 ], [ -134.558254, 66.599969 ], [ -134.364372, 66.812348 ], [ -134.735664, 66.965954 ] ] ], "type": "Polygon" }, "id": "840d68dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.215531, 38.812675 ], [ -122.996085, 38.986413 ], [ -123.069035, 39.212682 ], [ -123.362235, 39.264765 ], [ -123.581109, 39.090766 ], [ -123.507361, 38.864945 ], [ -123.215531, 38.812675 ] ] ], "type": "Polygon" }, "id": "8428317ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -77.314717, 18.440081 ], [ -77.507275, 18.334727 ], [ -77.485077, 18.135398 ], [ -77.270067, 18.041592 ], [ -77.077591, 18.147356 ], [ -77.100042, 18.346515 ], [ -77.314717, 18.440081 ] ] ], "type": "Polygon" }, "id": "8445b25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.504055, 39.820454 ], [ -118.268431, 39.986357 ], [ -118.333201, 40.216153 ], [ -118.634598, 40.279702 ], [ -118.869909, 40.1135 ], [ -118.804143, 39.884049 ], [ -118.504055, 39.820454 ] ] ], "type": "Polygon" }, "id": "84298b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.385603, 63.709115 ], [ -157.822462, 63.568978 ], [ -157.785648, 63.343467 ], [ -157.320294, 63.258104 ], [ -156.886925, 63.396345 ], [ -156.915408, 63.621827 ], [ -157.385603, 63.709115 ] ] ], "type": "Polygon" }, "id": "840c017ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.22018, 38.279338 ], [ -111.973609, 38.435522 ], [ -112.024274, 38.674157 ], [ -112.322667, 38.756412 ], [ -112.569316, 38.599909 ], [ -112.517498, 38.361473 ], [ -112.22018, 38.279338 ] ] ], "type": "Polygon" }, "id": "8429931ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.057462, 38.412922 ], [ -119.82935, 38.582575 ], [ -119.89625, 38.813765 ], [ -120.19218, 38.874913 ], [ -120.419899, 38.704964 ], [ -120.352086, 38.474165 ], [ -120.057462, 38.412922 ] ] ], "type": "Polygon" }, "id": "84298d3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.649322, 48.663161 ], [ -122.402927, 48.823749 ], [ -122.483019, 49.023551 ], [ -122.810532, 49.062432 ], [ -123.056255, 48.901583 ], [ -122.975145, 48.702115 ], [ -122.649322, 48.663161 ] ] ], "type": "Polygon" }, "id": "8428d17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.727933, 60.954506 ], [ -152.138288, 60.835298 ], [ -152.152101, 60.619651 ], [ -151.762122, 60.523614 ], [ -151.355626, 60.641338 ], [ -151.33526, 60.856571 ], [ -151.727933, 60.954506 ] ] ], "type": "Polygon" }, "id": "840c543ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.603302, 55.185316 ], [ -116.854257, 55.011703 ], [ -116.71226, 54.78686 ], [ -116.322308, 54.734267 ], [ -116.069825, 54.906518 ], [ -116.208787, 55.132723 ], [ -116.603302, 55.185316 ] ] ], "type": "Polygon" }, "id": "8412e47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.21258, 66.302605 ], [ -147.739496, 66.196035 ], [ -147.800967, 65.96869 ], [ -147.345297, 65.848765 ], [ -146.825472, 65.953853 ], [ -146.754271, 66.180331 ], [ -147.21258, 66.302605 ] ] ], "type": "Polygon" }, "id": "840d517ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -98.04585, 18.256994 ], [ -97.826173, 18.398696 ], [ -97.841005, 18.649321 ], [ -98.076435, 18.758483 ], [ -98.29675, 18.616412 ], [ -98.280996, 18.365548 ], [ -98.04585, 18.256994 ] ] ], "type": "Polygon" }, "id": "8449949ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.930482, 38.815085 ], [ -110.680272, 38.968054 ], [ -110.728317, 39.206301 ], [ -111.027771, 39.291422 ], [ -111.278141, 39.138141 ], [ -111.228901, 38.900054 ], [ -110.930482, 38.815085 ] ] ], "type": "Polygon" }, "id": "8426931ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -53.746276, 55.325401 ], [ -54.177281, 55.341877 ], [ -54.424436, 55.134074 ], [ -54.241845, 54.911392 ], [ -53.815725, 54.895549 ], [ -53.567349, 55.101759 ], [ -53.746276, 55.325401 ] ] ], "type": "Polygon" }, "id": "841ba11ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.286556, 18.949818 ], [ -65.12004, 19.098643 ], [ -65.148903, 19.28973 ], [ -65.344007, 19.331744 ], [ -65.509937, 19.183216 ], [ -65.481349, 18.992379 ], [ -65.286556, 18.949818 ] ] ], "type": "Polygon" }, "id": "844cec5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.334257, 50.567294 ], [ -170.13758, 50.752932 ], [ -170.302582, 50.967088 ], [ -170.666486, 50.99543 ], [ -170.863008, 50.809134 ], [ -170.695794, 50.595155 ], [ -170.334257, 50.567294 ] ] ], "type": "Polygon" }, "id": "8422e07ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.334281, 37.008097 ], [ -113.092833, 37.167733 ], [ -113.145304, 37.4082 ], [ -113.440325, 37.488796 ], [ -113.681782, 37.32883 ], [ -113.628213, 37.088599 ], [ -113.334281, 37.008097 ] ] ], "type": "Polygon" }, "id": "8429957ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.443398, 17.992393 ], [ -96.224508, 18.131629 ], [ -96.236062, 18.380887 ], [ -96.467413, 18.491207 ], [ -96.68699, 18.35163 ], [ -96.674528, 18.102077 ], [ -96.443398, 17.992393 ] ] ], "type": "Polygon" }, "id": "846d36bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.779055, 20.743289 ], [ -155.941668, 20.5393 ], [ -155.834868, 20.307801 ], [ -155.565682, 20.2801 ], [ -155.402759, 20.484018 ], [ -155.50933, 20.715707 ], [ -155.779055, 20.743289 ] ] ], "type": "Polygon" }, "id": "845d109ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.294814, 53.023566 ], [ -161.077105, 53.181024 ], [ -161.202806, 53.395063 ], [ -161.548924, 53.45176 ], [ -161.76732, 53.293759 ], [ -161.638919, 53.079607 ], [ -161.294814, 53.023566 ] ] ], "type": "Polygon" }, "id": "84228a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.90378, 22.044404 ], [ -106.681739, 22.199426 ], [ -106.715409, 22.454927 ], [ -106.972074, 22.555329 ], [ -107.194424, 22.399849 ], [ -107.159801, 22.144427 ], [ -106.90378, 22.044404 ] ] ], "type": "Polygon" }, "id": "844831dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.951672, 53.574507 ], [ -157.729442, 53.72188 ], [ -157.838671, 53.934862 ], [ -158.172904, 54.000694 ], [ -158.396108, 53.852846 ], [ -158.284111, 53.639643 ], [ -157.951672, 53.574507 ] ] ], "type": "Polygon" }, "id": "84229a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.998777, 59.364633 ], [ -144.40116, 59.27213 ], [ -144.472309, 59.06772 ], [ -144.146356, 58.956653 ], [ -143.748366, 59.04815 ], [ -143.671962, 59.251711 ], [ -143.998777, 59.364633 ] ] ], "type": "Polygon" }, "id": "840c4c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.929341, 62.770958 ], [ -156.355636, 62.636389 ], [ -156.333234, 62.41372 ], [ -155.892244, 62.325742 ], [ -155.469517, 62.458535 ], [ -155.484208, 62.681068 ], [ -155.929341, 62.770958 ] ] ], "type": "Polygon" }, "id": "840c08dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.596125, 19.134486 ], [ -63.425886, 19.283436 ], [ -63.456039, 19.476592 ], [ -63.656154, 19.520569 ], [ -63.825825, 19.371916 ], [ -63.795949, 19.178991 ], [ -63.596125, 19.134486 ] ] ], "type": "Polygon" }, "id": "844d4a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.932194, 65.712799 ], [ -167.356004, 65.540701 ], [ -167.219829, 65.312285 ], [ -166.669076, 65.255179 ], [ -166.246292, 65.424934 ], [ -166.373165, 65.654121 ], [ -166.932194, 65.712799 ] ] ], "type": "Polygon" }, "id": "840d89bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.414415, 64.954055 ], [ -150.901285, 64.836696 ], [ -150.929322, 64.610524 ], [ -150.479458, 64.502282 ], [ -149.998215, 64.618031 ], [ -149.961231, 64.843616 ], [ -150.414415, 64.954055 ] ] ], "type": "Polygon" }, "id": "840c2d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.693576, 41.136691 ], [ -109.435479, 41.283904 ], [ -109.481752, 41.517361 ], [ -109.787403, 41.603488 ], [ -110.045748, 41.455977 ], [ -109.998198, 41.222639 ], [ -109.693576, 41.136691 ] ] ], "type": "Polygon" }, "id": "8426b37ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.123609, 59.058503 ], [ -151.507303, 58.942921 ], [ -151.524963, 58.733592 ], [ -151.164596, 58.640254 ], [ -150.784339, 58.754462 ], [ -150.761021, 58.963372 ], [ -151.123609, 59.058503 ] ] ], "type": "Polygon" }, "id": "840c5e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.983458, 31.207634 ], [ -113.755469, 31.372263 ], [ -113.806624, 31.621182 ], [ -114.086747, 31.705187 ], [ -114.314709, 31.540173 ], [ -114.262579, 31.291542 ], [ -113.983458, 31.207634 ] ] ], "type": "Polygon" }, "id": "84485e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.682189, 19.068224 ], [ -68.859876, 18.975993 ], [ -68.833026, 18.78383 ], [ -68.628315, 18.684187 ], [ -68.450929, 18.776877 ], [ -68.477952, 18.96875 ], [ -68.682189, 19.068224 ] ] ], "type": "Polygon" }, "id": "844cc6dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -77.959896, 38.079063 ], [ -78.250809, 38.018683 ], [ -78.322632, 37.805192 ], [ -78.10567, 37.652666 ], [ -77.81678, 37.712364 ], [ -77.742839, 37.925265 ], [ -77.959896, 38.079063 ] ] ], "type": "Polygon" }, "id": "842a8cbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.432798, 52.715071 ], [ -172.232821, 52.900284 ], [ -172.41437, 53.109525 ], [ -172.798173, 53.133287 ], [ -172.997766, 52.947412 ], [ -172.813956, 52.738438 ], [ -172.432798, 52.715071 ] ] ], "type": "Polygon" }, "id": "8422ea5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.015269, 56.394997 ], [ -120.251512, 56.214233 ], [ -120.086023, 55.994995 ], [ -119.686981, 55.95505 ], [ -119.448608, 56.13455 ], [ -119.611369, 56.355259 ], [ -120.015269, 56.394997 ] ] ], "type": "Polygon" }, "id": "8412181ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.997766, 52.947412 ], [ -172.798173, 53.133287 ], [ -172.983211, 53.341605 ], [ -173.370102, 53.363762 ], [ -173.56925, 53.177224 ], [ -173.381968, 52.969194 ], [ -172.997766, 52.947412 ] ] ], "type": "Polygon" }, "id": "8422ea7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.904629, 61.898866 ], [ -153.326716, 61.775001 ], [ -153.33096, 61.55593 ], [ -152.92023, 61.461058 ], [ -152.502076, 61.583335 ], [ -152.490725, 61.802058 ], [ -152.904629, 61.898866 ] ] ], "type": "Polygon" }, "id": "840c09bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.142101, 18.396459 ], [ -65.977435, 18.545577 ], [ -66.005657, 18.737004 ], [ -66.198271, 18.779047 ], [ -66.362344, 18.630224 ], [ -66.334396, 18.439064 ], [ -66.142101, 18.396459 ] ] ], "type": "Polygon" }, "id": "844cee5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.942493, 62.849133 ], [ -160.353772, 62.701513 ], [ -160.295497, 62.478137 ], [ -159.833676, 62.402198 ], [ -159.42504, 62.547874 ], [ -159.475561, 62.771418 ], [ -159.942493, 62.849133 ] ] ], "type": "Polygon" }, "id": "840c1ddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.383916, 41.883028 ], [ -125.164839, 42.05689 ], [ -125.243904, 42.272749 ], [ -125.542808, 42.314305 ], [ -125.761161, 42.140227 ], [ -125.68134, 41.92481 ], [ -125.383916, 41.883028 ] ] ], "type": "Polygon" }, "id": "84281dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.115066, 50.265284 ], [ -115.343477, 50.104827 ], [ -115.226254, 49.884229 ], [ -114.883081, 49.822871 ], [ -114.653659, 49.982008 ], [ -114.768398, 50.203821 ], [ -115.115066, 50.265284 ] ] ], "type": "Polygon" }, "id": "8412ce1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.271888, 30.004075 ], [ -67.524039, 29.972375 ], [ -67.623485, 29.794658 ], [ -67.471896, 29.649456 ], [ -67.221413, 29.680964 ], [ -67.120859, 29.857864 ], [ -67.271888, 30.004075 ] ] ], "type": "Polygon" }, "id": "844da57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.694788, 60.311562 ], [ -70.206728, 60.271309 ], [ -70.389373, 60.03052 ], [ -70.065159, 59.831248 ], [ -69.559954, 59.871085 ], [ -69.372291, 60.110604 ], [ -69.694788, 60.311562 ] ] ], "type": "Polygon" }, "id": "840e2c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.326419, 31.372449 ], [ -115.100937, 31.539049 ], [ -115.154831, 31.786731 ], [ -115.435156, 31.867487 ], [ -115.660538, 31.700503 ], [ -115.6057, 31.453149 ], [ -115.326419, 31.372449 ] ] ], "type": "Polygon" }, "id": "844858bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.659794, 22.738736 ], [ -110.441378, 22.898946 ], [ -110.482759, 23.153677 ], [ -110.743471, 23.247983 ], [ -110.962021, 23.08729 ], [ -110.919728, 22.832776 ], [ -110.659794, 22.738736 ] ] ], "type": "Polygon" }, "id": "84482e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.341168, 58.083307 ], [ -142.726927, 57.996956 ], [ -142.806376, 57.798598 ], [ -142.504715, 57.687473 ], [ -142.123093, 57.772945 ], [ -142.039021, 57.970412 ], [ -142.341168, 58.083307 ] ] ], "type": "Polygon" }, "id": "841d32dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.266924, 49.631105 ], [ -129.042517, 49.799645 ], [ -129.135838, 49.98672 ], [ -129.454271, 50.004878 ], [ -129.677587, 49.836178 ], [ -129.58357, 49.64948 ], [ -129.266924, 49.631105 ] ] ], "type": "Polygon" }, "id": "841d65bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.988539, 18.19047 ], [ -68.165306, 18.096851 ], [ -68.138056, 17.902142 ], [ -67.933873, 17.801365 ], [ -67.757424, 17.895456 ], [ -67.78484, 18.089851 ], [ -67.988539, 18.19047 ] ] ], "type": "Polygon" }, "id": "844cc05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.854597, 32.091612 ], [ -102.610023, 32.235074 ], [ -102.637489, 32.486444 ], [ -102.910687, 32.594446 ], [ -103.155835, 32.450704 ], [ -103.127212, 32.199242 ], [ -102.854597, 32.091612 ] ] ], "type": "Polygon" }, "id": "8448d61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.638113, 54.863961 ], [ -142.981479, 54.778752 ], [ -143.050763, 54.591373 ], [ -142.780394, 54.489961 ], [ -142.440297, 54.574348 ], [ -142.367317, 54.760963 ], [ -142.638113, 54.863961 ] ] ], "type": "Polygon" }, "id": "841d1e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.193787, 19.266881 ], [ -64.024892, 19.415596 ], [ -64.054582, 19.6074 ], [ -64.252891, 19.650258 ], [ -64.421211, 19.501841 ], [ -64.391797, 19.310271 ], [ -64.193787, 19.266881 ] ] ], "type": "Polygon" }, "id": "844d593ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.165302, 21.780479 ], [ -95.939881, 21.918173 ], [ -95.951192, 22.170161 ], [ -96.188887, 22.284777 ], [ -96.415046, 22.146802 ], [ -96.402773, 21.894493 ], [ -96.165302, 21.780479 ] ] ], "type": "Polygon" }, "id": "84456c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.202924, 59.409081 ], [ -149.596197, 59.299425 ], [ -149.628676, 59.090255 ], [ -149.27359, 58.991275 ], [ -148.884112, 59.09964 ], [ -148.845939, 59.308264 ], [ -149.202924, 59.409081 ] ] ], "type": "Polygon" }, "id": "840c5c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.334396, 18.439064 ], [ -66.507222, 18.348473 ], [ -66.479302, 18.156182 ], [ -66.278407, 18.054811 ], [ -66.113969, 18.204195 ], [ -66.142101, 18.396459 ], [ -66.334396, 18.439064 ] ] ], "type": "Polygon" }, "id": "844cc5bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.204776, 39.31946 ], [ -118.972229, 39.486995 ], [ -119.038066, 39.71717 ], [ -119.337417, 39.779448 ], [ -119.569613, 39.611617 ], [ -119.502815, 39.381807 ], [ -119.204776, 39.31946 ] ] ], "type": "Polygon" }, "id": "8429895ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.527754, 41.638778 ], [ -111.27157, 41.789209 ], [ -111.322338, 42.02042 ], [ -111.630543, 42.101036 ], [ -111.886856, 41.950299 ], [ -111.834839, 41.719255 ], [ -111.527754, 41.638778 ] ] ], "type": "Polygon" }, "id": "8428b65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -58.827767, 61.574893 ], [ -59.35673, 61.577438 ], [ -59.622416, 61.357124 ], [ -59.362258, 61.13596 ], [ -58.840711, 61.133752 ], [ -58.57198, 61.352375 ], [ -58.827767, 61.574893 ] ] ], "type": "Polygon" }, "id": "840f44dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.770449, 55.268419 ], [ -158.089523, 55.136959 ], [ -158.060646, 54.937654 ], [ -157.717176, 54.869763 ], [ -157.399929, 54.999734 ], [ -157.424319, 55.199075 ], [ -157.770449, 55.268419 ] ] ], "type": "Polygon" }, "id": "840cc87ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.798667, 18.063903 ], [ -107.584317, 18.218646 ], [ -107.618732, 18.471432 ], [ -107.868385, 18.56935 ], [ -108.082986, 18.414087 ], [ -108.047684, 18.161428 ], [ -107.798667, 18.063903 ] ] ], "type": "Polygon" }, "id": "84491c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.476999, 51.093859 ], [ -129.621614, 50.918762 ], [ -129.441321, 50.727916 ], [ -129.117275, 50.710759 ], [ -128.97032, 50.885055 ], [ -129.149731, 51.077313 ], [ -129.476999, 51.093859 ] ] ], "type": "Polygon" }, "id": "84129adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.187338, 24.230913 ], [ -107.962911, 24.387951 ], [ -107.999797, 24.643619 ], [ -108.262082, 24.742132 ], [ -108.486767, 24.584652 ], [ -108.44891, 24.329103 ], [ -108.187338, 24.230913 ] ] ], "type": "Polygon" }, "id": "8448001ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.742918, 65.965677 ], [ -152.247042, 65.843213 ], [ -152.26289, 65.613758 ], [ -151.784504, 65.507251 ], [ -151.286189, 65.627966 ], [ -151.260469, 65.85692 ], [ -151.742918, 65.965677 ] ] ], "type": "Polygon" }, "id": "840c2c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.668159, 24.402617 ], [ -112.450179, 24.565813 ], [ -112.496043, 24.819668 ], [ -112.76079, 24.910048 ], [ -112.97881, 24.74638 ], [ -112.932046, 24.492806 ], [ -112.668159, 24.402617 ] ] ], "type": "Polygon" }, "id": "8448291ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.365312, 40.952034 ], [ -123.141582, 41.124157 ], [ -123.21638, 41.345253 ], [ -123.515741, 41.393804 ], [ -123.738867, 41.221435 ], [ -123.663242, 41.000763 ], [ -123.365312, 40.952034 ] ] ], "type": "Polygon" }, "id": "8428027ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.952672, 34.707542 ], [ -110.711848, 34.864831 ], [ -110.758163, 35.110875 ], [ -111.046412, 35.199456 ], [ -111.287383, 35.041826 ], [ -111.239961, 34.795958 ], [ -110.952672, 34.707542 ] ] ], "type": "Polygon" }, "id": "8448cd7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.738858, 51.971208 ], [ -164.52882, 52.14 ], [ -164.669815, 52.354942 ], [ -165.023395, 52.401098 ], [ -165.233799, 52.231705 ], [ -165.090267, 52.01676 ], [ -164.738858, 51.971208 ] ] ], "type": "Polygon" }, "id": "8422f25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.946667, 55.326021 ], [ -138.050821, 55.137597 ], [ -137.817203, 54.963755 ], [ -137.479318, 54.976909 ], [ -137.371723, 55.164924 ], [ -137.605434, 55.3402 ], [ -137.946667, 55.326021 ] ] ], "type": "Polygon" }, "id": "841d051ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.939377, 56.481456 ], [ -158.271392, 56.347725 ], [ -158.240013, 56.14416 ], [ -157.881485, 56.074276 ], [ -157.551428, 56.206461 ], [ -157.577934, 56.410065 ], [ -157.939377, 56.481456 ] ] ], "type": "Polygon" }, "id": "840ccc5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.738678, 52.439025 ], [ -174.544786, 52.62996 ], [ -174.7364, 52.837366 ], [ -175.124008, 52.853502 ], [ -175.317284, 52.661904 ], [ -175.123584, 52.454834 ], [ -174.738678, 52.439025 ] ] ], "type": "Polygon" }, "id": "8422eb9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.902592, 49.358017 ], [ -127.673494, 49.525278 ], [ -127.764186, 49.715389 ], [ -128.084749, 49.737867 ], [ -128.312837, 49.570423 ], [ -128.22138, 49.380685 ], [ -127.902592, 49.358017 ] ] ], "type": "Polygon" }, "id": "8428cbdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.945178, 61.622747 ], [ -146.380603, 61.522481 ], [ -146.44225, 61.30908 ], [ -146.074957, 61.196742 ], [ -145.644505, 61.295816 ], [ -145.576402, 61.508408 ], [ -145.945178, 61.622747 ] ] ], "type": "Polygon" }, "id": "840c449ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.847491, 57.086373 ], [ -135.972943, 56.893199 ], [ -135.733123, 56.712041 ], [ -135.368047, 56.722544 ], [ -135.238838, 56.915198 ], [ -135.478437, 57.097876 ], [ -135.847491, 57.086373 ] ] ], "type": "Polygon" }, "id": "841d209ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.202781, 33.534082 ], [ -117.97987, 33.704043 ], [ -118.040386, 33.946172 ], [ -118.324712, 34.017948 ], [ -118.547361, 33.847634 ], [ -118.485951, 33.605898 ], [ -118.202781, 33.534082 ] ] ], "type": "Polygon" }, "id": "8429a57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.44234, 47.911539 ], [ -128.219471, 48.081757 ], [ -128.309445, 48.275661 ], [ -128.623006, 48.298954 ], [ -128.844872, 48.12857 ], [ -128.754189, 47.935059 ], [ -128.44234, 47.911539 ] ] ], "type": "Polygon" }, "id": "8428cc3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.084679, 43.768781 ], [ -113.828092, 43.921354 ], [ -113.885892, 44.145078 ], [ -114.201519, 44.21601 ], [ -114.458064, 44.06313 ], [ -114.39903, 43.839627 ], [ -114.084679, 43.768781 ] ] ], "type": "Polygon" }, "id": "8428865ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.511027, 40.867691 ], [ -120.278626, 41.035725 ], [ -120.348046, 41.260725 ], [ -120.650814, 41.317317 ], [ -120.882775, 41.149006 ], [ -120.812414, 40.924381 ], [ -120.511027, 40.867691 ] ] ], "type": "Polygon" }, "id": "8428105ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.312094, 58.997287 ], [ -142.71125, 58.910552 ], [ -142.79354, 58.709181 ], [ -142.481646, 58.595462 ], [ -142.086919, 58.681297 ], [ -141.999685, 58.881743 ], [ -142.312094, 58.997287 ] ] ], "type": "Polygon" }, "id": "840c6b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.681913, 34.957256 ], [ -116.452341, 35.124236 ], [ -116.510671, 35.36564 ], [ -116.799542, 35.439725 ], [ -117.02893, 35.272401 ], [ -116.969635, 35.031338 ], [ -116.681913, 34.957256 ] ] ], "type": "Polygon" }, "id": "8429a35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.801533, 59.099752 ], [ -157.169487, 58.966099 ], [ -157.143668, 58.754159 ], [ -156.75574, 58.675909 ], [ -156.39034, 58.807937 ], [ -156.410308, 59.019828 ], [ -156.801533, 59.099752 ] ] ], "type": "Polygon" }, "id": "840ce17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.64635, 19.300211 ], [ -66.819341, 19.21154 ], [ -66.791638, 19.022011 ], [ -66.590793, 18.921464 ], [ -66.418145, 19.010603 ], [ -66.445999, 19.19982 ], [ -66.64635, 19.300211 ] ] ], "type": "Polygon" }, "id": "844ce31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.726468, 62.056371 ], [ -157.137977, 61.919839 ], [ -157.109423, 61.698995 ], [ -156.676652, 61.614739 ], [ -156.268346, 61.749498 ], [ -156.2896, 61.970271 ], [ -156.726468, 62.056371 ] ] ], "type": "Polygon" }, "id": "840c0abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.967655, 39.921431 ], [ -117.730359, 40.086333 ], [ -117.794113, 40.316461 ], [ -118.096186, 40.381356 ], [ -118.333201, 40.216153 ], [ -118.268431, 39.986357 ], [ -117.967655, 39.921431 ] ] ], "type": "Polygon" }, "id": "84298b5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.368843, 18.764309 ], [ -108.154002, 18.92009 ], [ -108.189718, 19.173413 ], [ -108.441165, 19.270813 ], [ -108.656234, 19.114516 ], [ -108.619629, 18.861338 ], [ -108.368843, 18.764309 ] ] ], "type": "Polygon" }, "id": "84491d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.625385, 19.611124 ], [ -67.800402, 19.521886 ], [ -67.77314, 19.332593 ], [ -67.570701, 19.23283 ], [ -67.396006, 19.322526 ], [ -67.423428, 19.511526 ], [ -67.625385, 19.611124 ] ] ], "type": "Polygon" }, "id": "844ce27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.818388, 56.902715 ], [ -143.187338, 56.815532 ], [ -143.260427, 56.620685 ], [ -142.968872, 56.51384 ], [ -142.603684, 56.600146 ], [ -142.526309, 56.794167 ], [ -142.818388, 56.902715 ] ] ], "type": "Polygon" }, "id": "841d141ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.647057, 18.843542 ], [ -65.481349, 18.992379 ], [ -65.509937, 19.183216 ], [ -65.703957, 19.224963 ], [ -65.869076, 19.076423 ], [ -65.840764, 18.885841 ], [ -65.647057, 18.843542 ] ] ], "type": "Polygon" }, "id": "844cee9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.27479, 37.560015 ], [ -122.055079, 37.733399 ], [ -122.125497, 37.963587 ], [ -122.416448, 38.019946 ], [ -122.635651, 37.84628 ], [ -122.564417, 37.616538 ], [ -122.27479, 37.560015 ] ] ], "type": "Polygon" }, "id": "8428309ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.439082, 52.984951 ], [ -168.23056, 53.160271 ], [ -168.393148, 53.372102 ], [ -168.766771, 53.408479 ], [ -168.975314, 53.23252 ], [ -168.810228, 53.020826 ], [ -168.439082, 52.984951 ] ] ], "type": "Polygon" }, "id": "8422c67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.341408, 38.011876 ], [ -116.104394, 38.175918 ], [ -116.163697, 38.411884 ], [ -116.46105, 38.483502 ], [ -116.69789, 38.319142 ], [ -116.637555, 38.083484 ], [ -116.341408, 38.011876 ] ] ], "type": "Polygon" }, "id": "8429833ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.223585, 60.423309 ], [ -138.344487, 60.221774 ], [ -138.067361, 60.045228 ], [ -137.66913, 60.068649 ], [ -137.543406, 60.269783 ], [ -137.820705, 60.447906 ], [ -138.223585, 60.423309 ] ] ], "type": "Polygon" }, "id": "8413941ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.113531, 41.488221 ], [ -123.891033, 41.660831 ], [ -123.967578, 41.879546 ], [ -124.267431, 41.925223 ], [ -124.489277, 41.752378 ], [ -124.411928, 41.534093 ], [ -124.113531, 41.488221 ] ] ], "type": "Polygon" }, "id": "84281cbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.729493, 67.650753 ], [ -146.294862, 67.549264 ], [ -146.375508, 67.319944 ], [ -145.901643, 67.193126 ], [ -145.34466, 67.293162 ], [ -145.253219, 67.521452 ], [ -145.729493, 67.650753 ] ] ], "type": "Polygon" }, "id": "840d551ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.974536, 58.322507 ], [ -138.088982, 58.126062 ], [ -137.831769, 57.949907 ], [ -137.45997, 57.968686 ], [ -137.341353, 58.164723 ], [ -137.598679, 58.342396 ], [ -137.974536, 58.322507 ] ] ], "type": "Polygon" }, "id": "8413927ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.587406, 54.687453 ], [ -133.719332, 54.501013 ], [ -133.504286, 54.316015 ], [ -133.157788, 54.31598 ], [ -133.022729, 54.501792 ], [ -133.237277, 54.688273 ], [ -133.587406, 54.687453 ] ] ], "type": "Polygon" }, "id": "8412b25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.417403, 49.336997 ], [ -125.178831, 49.500802 ], [ -125.265012, 49.694654 ], [ -125.590669, 49.724347 ], [ -125.828379, 49.560317 ], [ -125.741303, 49.36682 ], [ -125.417403, 49.336997 ] ] ], "type": "Polygon" }, "id": "8428dd7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -86.447885, 25.995284 ], [ -86.223886, 26.109743 ], [ -86.215331, 26.352011 ], [ -86.431647, 26.480445 ], [ -86.656681, 26.365999 ], [ -86.664361, 26.123106 ], [ -86.447885, 25.995284 ] ] ], "type": "Polygon" }, "id": "844401bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -71.308904, 19.961762 ], [ -71.491226, 19.868202 ], [ -71.465732, 19.6774 ], [ -71.257717, 19.580399 ], [ -71.075633, 19.674391 ], [ -71.101325, 19.864951 ], [ -71.308904, 19.961762 ] ] ], "type": "Polygon" }, "id": "844c89dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.233799, 52.231705 ], [ -165.023395, 52.401098 ], [ -165.167583, 52.615537 ], [ -165.524732, 52.660569 ], [ -165.735461, 52.490569 ], [ -165.588726, 52.276147 ], [ -165.233799, 52.231705 ] ] ], "type": "Polygon" }, "id": "8422f27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.530473, 34.491115 ], [ -112.292949, 34.651465 ], [ -112.342547, 34.896932 ], [ -112.630741, 34.981827 ], [ -112.86832, 34.821129 ], [ -112.817654, 34.575887 ], [ -112.530473, 34.491115 ] ] ], "type": "Polygon" }, "id": "8429b29ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.64853, 60.168634 ], [ -135.789043, 59.96803 ], [ -135.52436, 59.784429 ], [ -135.119443, 59.799824 ], [ -134.974337, 59.99988 ], [ -135.238705, 60.185096 ], [ -135.64853, 60.168634 ] ] ], "type": "Polygon" }, "id": "8413953ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.423971, 24.040819 ], [ -167.567541, 23.83522 ], [ -167.455415, 23.624202 ], [ -167.199589, 23.618469 ], [ -167.055325, 23.824208 ], [ -167.167579, 24.035539 ], [ -167.423971, 24.040819 ] ] ], "type": "Polygon" }, "id": "84460e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -78.631772, 47.195525 ], [ -78.985256, 47.126144 ], [ -79.068722, 46.88881 ], [ -78.8019, 46.721484 ], [ -78.451371, 46.790052 ], [ -78.364725, 47.026753 ], [ -78.631772, 47.195525 ] ] ], "type": "Polygon" }, "id": "842b957ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.238245, 63.093424 ], [ -128.459955, 62.891204 ], [ -128.204155, 62.687422 ], [ -127.72878, 62.684104 ], [ -127.502292, 62.885308 ], [ -127.75589, 63.09085 ], [ -128.238245, 63.093424 ] ] ], "type": "Polygon" }, "id": "8413ad5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.976195, 53.953991 ], [ -159.753553, 54.105707 ], [ -159.87443, 54.318439 ], [ -160.220765, 54.379604 ], [ -160.444233, 54.227373 ], [ -160.320547, 54.014494 ], [ -159.976195, 53.953991 ] ] ], "type": "Polygon" }, "id": "840cd93ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.239049, 19.338644 ], [ -103.01871, 19.488069 ], [ -103.044303, 19.741821 ], [ -103.291176, 19.846201 ], [ -103.511967, 19.696332 ], [ -103.485434, 19.442529 ], [ -103.239049, 19.338644 ] ] ], "type": "Polygon" }, "id": "8449aa9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -83.803899, 38.324034 ], [ -84.086366, 38.249374 ], [ -84.131994, 38.032906 ], [ -83.897471, 37.891417 ], [ -83.616733, 37.96517 ], [ -83.568794, 38.181314 ], [ -83.803899, 38.324034 ] ] ], "type": "Polygon" }, "id": "842a9e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.459362, 57.253929 ], [ -136.580986, 57.060267 ], [ -136.337726, 56.880656 ], [ -135.972943, 56.893199 ], [ -135.847491, 57.086373 ], [ -136.090624, 57.267498 ], [ -136.459362, 57.253929 ] ] ], "type": "Polygon" }, "id": "841d20dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.521851, 18.213222 ], [ -69.701866, 18.117523 ], [ -69.67532, 17.921613 ], [ -69.468577, 17.821693 ], [ -69.288846, 17.917854 ], [ -69.315574, 18.113472 ], [ -69.521851, 18.213222 ] ] ], "type": "Polygon" }, "id": "844cd57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -87.759412, 65.082126 ], [ -88.307931, 64.973671 ], [ -88.360154, 64.719021 ], [ -87.873338, 64.573003 ], [ -87.330698, 64.679863 ], [ -87.269018, 64.934319 ], [ -87.759412, 65.082126 ] ] ], "type": "Polygon" }, "id": "840f8e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.581109, 39.090766 ], [ -123.362235, 39.264765 ], [ -123.436024, 39.48991 ], [ -123.729483, 39.540606 ], [ -123.947764, 39.366352 ], [ -123.873187, 39.141657 ], [ -123.581109, 39.090766 ] ] ], "type": "Polygon" }, "id": "8428069ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.749202, 55.927958 ], [ -153.088736, 55.810625 ], [ -153.09378, 55.610972 ], [ -152.763887, 55.528911 ], [ -152.426916, 55.644919 ], [ -152.41728, 55.844304 ], [ -152.749202, 55.927958 ] ] ], "type": "Polygon" }, "id": "841db01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.397968, 51.048884 ], [ -171.201654, 51.235841 ], [ -171.373116, 51.448549 ], [ -171.743099, 51.474084 ], [ -171.939153, 51.286466 ], [ -171.765498, 51.073975 ], [ -171.397968, 51.048884 ] ] ], "type": "Polygon" }, "id": "8422e3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.99876, 56.374642 ], [ -147.35509, 56.274643 ], [ -147.399353, 56.077501 ], [ -147.091744, 55.980946 ], [ -146.738686, 56.079866 ], [ -146.68998, 56.276412 ], [ -146.99876, 56.374642 ] ] ], "type": "Polygon" }, "id": "841da55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.91508, 37.271356 ], [ -121.694882, 37.444452 ], [ -121.764466, 37.675694 ], [ -122.055079, 37.733399 ], [ -122.27479, 37.560015 ], [ -122.204381, 37.329215 ], [ -121.91508, 37.271356 ] ] ], "type": "Polygon" }, "id": "8428347ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.038066, 39.71717 ], [ -118.804143, 39.884049 ], [ -118.869909, 40.1135 ], [ -119.170578, 40.175716 ], [ -119.404157, 40.008542 ], [ -119.337417, 39.779448 ], [ -119.038066, 39.71717 ] ] ], "type": "Polygon" }, "id": "84298bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.806786, 53.659251 ], [ -171.602054, 53.840633 ], [ -171.783628, 54.048815 ], [ -172.172329, 54.075358 ], [ -172.376731, 53.893315 ], [ -172.192778, 53.685392 ], [ -171.806786, 53.659251 ] ] ], "type": "Polygon" }, "id": "8422c17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.123976, 55.712752 ], [ -156.452533, 55.585517 ], [ -156.434533, 55.385128 ], [ -156.092582, 55.312032 ], [ -155.766129, 55.437818 ], [ -155.779522, 55.63814 ], [ -156.123976, 55.712752 ] ] ], "type": "Polygon" }, "id": "840ccd7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.587287, 18.434227 ], [ -100.367451, 18.579733 ], [ -100.387483, 18.831854 ], [ -100.628283, 18.938617 ], [ -100.848668, 18.792697 ], [ -100.827705, 18.54043 ], [ -100.587287, 18.434227 ] ] ], "type": "Polygon" }, "id": "8449845ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.844972, 33.407616 ], [ -116.618956, 33.575676 ], [ -116.676803, 33.81935 ], [ -116.961605, 33.894608 ], [ -117.187432, 33.72619 ], [ -117.128651, 33.482874 ], [ -116.844972, 33.407616 ] ] ], "type": "Polygon" }, "id": "8429a0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.856581, 42.19773 ], [ -105.590388, 42.334483 ], [ -105.627929, 42.566534 ], [ -105.933036, 42.661821 ], [ -106.199735, 42.5248 ], [ -106.160823, 42.292763 ], [ -105.856581, 42.19773 ] ] ], "type": "Polygon" }, "id": "8426a3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.747479, 50.829268 ], [ -174.558886, 51.024127 ], [ -174.745324, 51.234107 ], [ -175.122345, 51.248908 ], [ -175.310356, 51.053385 ], [ -175.121944, 50.843725 ], [ -174.747479, 50.829268 ] ] ], "type": "Polygon" }, "id": "8422eddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.041577, 65.118631 ], [ -162.482306, 64.962244 ], [ -162.39745, 64.733314 ], [ -161.881072, 64.660398 ], [ -161.442887, 64.814616 ], [ -161.518496, 65.0439 ], [ -162.041577, 65.118631 ] ] ], "type": "Polygon" }, "id": "840c065ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.430468, 39.904542 ], [ -127.22302, 40.082376 ], [ -127.303769, 40.299824 ], [ -127.592608, 40.338943 ], [ -127.799263, 40.160914 ], [ -127.717877, 39.943961 ], [ -127.430468, 39.904542 ] ] ], "type": "Polygon" }, "id": "84282a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.447014, 21.848393 ], [ -63.277263, 21.993981 ], [ -63.307385, 22.178247 ], [ -63.506984, 22.216746 ], [ -63.676175, 22.071465 ], [ -63.646326, 21.887379 ], [ -63.447014, 21.848393 ] ] ], "type": "Polygon" }, "id": "844d517ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.09422, 50.142316 ], [ -172.904221, 50.335175 ], [ -173.080996, 50.547739 ], [ -173.449816, 50.567182 ], [ -173.639402, 50.373655 ], [ -173.460595, 50.161354 ], [ -173.09422, 50.142316 ] ] ], "type": "Polygon" }, "id": "8422527ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.662708, 30.711348 ], [ -114.437081, 30.877166 ], [ -114.489371, 31.126111 ], [ -114.768241, 31.208926 ], [ -114.993805, 31.042715 ], [ -114.940566, 30.794083 ], [ -114.662708, 30.711348 ] ] ], "type": "Polygon" }, "id": "84485c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.885392, 28.275519 ], [ -112.660854, 28.43923 ], [ -112.708605, 28.691519 ], [ -112.981849, 28.77983 ], [ -113.206418, 28.615699 ], [ -113.157715, 28.36368 ], [ -112.885392, 28.275519 ] ] ], "type": "Polygon" }, "id": "8448543ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.52684, 22.938366 ], [ -65.362063, 23.082362 ], [ -65.390534, 23.259648 ], [ -65.583511, 23.292765 ], [ -65.747709, 23.14908 ], [ -65.719509, 22.971969 ], [ -65.52684, 22.938366 ] ] ], "type": "Polygon" }, "id": "844c2e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.404631, 37.38541 ], [ -121.182663, 37.55775 ], [ -121.251401, 37.789422 ], [ -121.542959, 37.848325 ], [ -121.764466, 37.675694 ], [ -121.694882, 37.444452 ], [ -121.404631, 37.38541 ] ] ], "type": "Polygon" }, "id": "842836bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.395806, 24.198586 ], [ -111.176017, 24.360101 ], [ -111.219328, 24.614638 ], [ -111.483352, 24.707423 ], [ -111.703243, 24.54544 ], [ -111.659011, 24.291141 ], [ -111.395806, 24.198586 ] ] ], "type": "Polygon" }, "id": "8448287ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.977151, 60.677844 ], [ -149.390273, 60.567961 ], [ -149.425972, 60.354945 ], [ -149.054814, 60.25239 ], [ -148.645899, 60.360945 ], [ -148.603952, 60.573371 ], [ -148.977151, 60.677844 ] ] ], "type": "Polygon" }, "id": "840c467ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.842265, 54.495342 ], [ -152.167511, 54.382524 ], [ -152.178299, 54.188546 ], [ -151.86798, 54.107674 ], [ -151.545156, 54.219256 ], [ -151.530234, 54.412939 ], [ -151.842265, 54.495342 ] ] ], "type": "Polygon" }, "id": "841d861ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.90589, 67.214422 ], [ -157.416467, 67.073534 ], [ -157.378068, 66.839561 ], [ -156.840334, 66.746528 ], [ -156.334638, 66.885298 ], [ -156.361779, 67.119197 ], [ -156.90589, 67.214422 ] ] ], "type": "Polygon" }, "id": "840c205ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.95757, 68.202139 ], [ -168.424042, 68.024942 ], [ -168.260067, 67.79211 ], [ -167.640969, 67.735513 ], [ -167.175337, 67.910126 ], [ -167.327858, 68.143899 ], [ -167.95757, 68.202139 ] ] ], "type": "Polygon" }, "id": "840dab9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.782197, 55.946433 ], [ -163.092302, 55.799433 ], [ -163.027599, 55.597352 ], [ -162.657423, 55.54192 ], [ -162.348481, 55.687256 ], [ -162.408536, 55.889678 ], [ -162.782197, 55.946433 ] ] ], "type": "Polygon" }, "id": "840cdc5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.153685, 53.009142 ], [ -173.956464, 53.197378 ], [ -174.147246, 53.404424 ], [ -174.537437, 53.422911 ], [ -174.73409, 53.234011 ], [ -174.541138, 53.027289 ], [ -174.153685, 53.009142 ] ] ], "type": "Polygon" }, "id": "8422eb5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.439923, 54.250068 ], [ -169.228261, 54.424465 ], [ -169.39984, 54.63351 ], [ -169.785663, 54.66797 ], [ -169.997242, 54.492925 ], [ -169.823096, 54.284069 ], [ -169.439923, 54.250068 ] ] ], "type": "Polygon" }, "id": "8422dc9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.226309, 18.969369 ], [ -66.062008, 19.117909 ], [ -66.090136, 19.307385 ], [ -66.282291, 19.348063 ], [ -66.445999, 19.19982 ], [ -66.418145, 19.010603 ], [ -66.226309, 18.969369 ] ] ], "type": "Polygon" }, "id": "844ce3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.721368, 65.859956 ], [ -156.207196, 65.723849 ], [ -156.183245, 65.49321 ], [ -155.683421, 65.398829 ], [ -155.202265, 65.532977 ], [ -155.216255, 65.763445 ], [ -155.721368, 65.859956 ] ] ], "type": "Polygon" }, "id": "840c233ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.267585, 55.249378 ], [ -163.568836, 55.102204 ], [ -163.42627, 54.891094 ], [ -163.062372, 54.837902 ], [ -162.838756, 54.995226 ], [ -162.900844, 55.195246 ], [ -163.267585, 55.249378 ] ] ], "type": "Polygon" }, "id": "840cde3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -71.312106, 18.51803 ], [ -71.49542, 18.420673 ], [ -71.46979, 18.224552 ], [ -71.260645, 18.126048 ], [ -71.077571, 18.223852 ], [ -71.103401, 18.419712 ], [ -71.312106, 18.51803 ] ] ], "type": "Polygon" }, "id": "844cd67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.536622, 24.811034 ], [ -106.309291, 24.965505 ], [ -106.342933, 25.221424 ], [ -106.604907, 25.322819 ], [ -106.832578, 25.167931 ], [ -106.797937, 24.912067 ], [ -106.536622, 24.811034 ] ] ], "type": "Polygon" }, "id": "8448025ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.524422, 64.958211 ], [ -159.974722, 64.810069 ], [ -159.914963, 64.581239 ], [ -159.414094, 64.500388 ], [ -158.967055, 64.646464 ], [ -159.017598, 64.875439 ], [ -159.524422, 64.958211 ] ] ], "type": "Polygon" }, "id": "840c00dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.00789, 38.625073 ], [ -118.776372, 38.792936 ], [ -118.841384, 39.024872 ], [ -119.138872, 39.088579 ], [ -119.370054, 38.920414 ], [ -119.304089, 38.688845 ], [ -119.00789, 38.625073 ] ] ], "type": "Polygon" }, "id": "842988bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.899675, 46.95771 ], [ -122.65912, 47.121524 ], [ -122.738087, 47.326464 ], [ -123.058581, 47.36724 ], [ -123.298476, 47.203177 ], [ -123.218544, 46.998589 ], [ -122.899675, 46.95771 ] ] ], "type": "Polygon" }, "id": "8428d59ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -132.122917, 52.46258 ], [ -132.255972, 52.282721 ], [ -132.059355, 52.09659 ], [ -131.730279, 52.088887 ], [ -131.594546, 52.268057 ], [ -131.790547, 52.455624 ], [ -132.122917, 52.46258 ] ] ], "type": "Polygon" }, "id": "841292bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.880957, 61.874008 ], [ -131.070773, 61.671932 ], [ -130.812164, 61.475028 ], [ -130.365101, 61.47849 ], [ -130.170569, 61.679725 ], [ -130.427763, 61.878345 ], [ -130.880957, 61.874008 ] ] ], "type": "Polygon" }, "id": "8413aadffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.027741, 18.769246 ], [ -95.807659, 18.907694 ], [ -95.818435, 19.157417 ], [ -96.05021, 19.269007 ], [ -96.271001, 19.130237 ], [ -96.259308, 18.880201 ], [ -96.027741, 18.769246 ] ] ], "type": "Polygon" }, "id": "846d34dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.847967, 63.250238 ], [ -146.313176, 63.149544 ], [ -146.379552, 62.931468 ], [ -145.988102, 62.81494 ], [ -145.528575, 62.914385 ], [ -145.454852, 63.131594 ], [ -145.847967, 63.250238 ] ] ], "type": "Polygon" }, "id": "840c665ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.242305, 62.294869 ], [ -148.684269, 62.18641 ], [ -148.728251, 61.969076 ], [ -148.337319, 61.860866 ], [ -147.900248, 61.967971 ], [ -147.84924, 62.184626 ], [ -148.242305, 62.294869 ] ] ], "type": "Polygon" }, "id": "840c71dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.813552, 57.848996 ], [ -150.183679, 57.738742 ], [ -150.210148, 57.534283 ], [ -149.871615, 57.440544 ], [ -149.504801, 57.549534 ], [ -149.473217, 57.753518 ], [ -149.813552, 57.848996 ] ] ], "type": "Polygon" }, "id": "840c583ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.210612, 59.408858 ], [ -146.609975, 59.309021 ], [ -146.66492, 59.102309 ], [ -146.325995, 58.996149 ], [ -145.930799, 59.094854 ], [ -145.870383, 59.30084 ], [ -146.210612, 59.408858 ] ] ], "type": "Polygon" }, "id": "840c417ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.270022, 43.900056 ], [ -110.005427, 44.044204 ], [ -110.054409, 44.270037 ], [ -110.36933, 44.351594 ], [ -110.634148, 44.207145 ], [ -110.583826, 43.981443 ], [ -110.270022, 43.900056 ] ] ], "type": "Polygon" }, "id": "842896dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -71.138285, 46.872101 ], [ -71.497894, 46.826226 ], [ -71.620212, 46.596528 ], [ -71.385557, 46.413689 ], [ -71.029253, 46.459145 ], [ -70.904319, 46.687857 ], [ -71.138285, 46.872101 ] ] ], "type": "Polygon" }, "id": "842bac5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.368933, 18.502693 ], [ -69.54844, 18.407977 ], [ -69.521851, 18.213222 ], [ -69.315574, 18.113472 ], [ -69.136354, 18.208648 ], [ -69.163123, 18.403113 ], [ -69.368933, 18.502693 ] ] ], "type": "Polygon" }, "id": "844cd51ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -74.126922, 44.110594 ], [ -74.462608, 44.056467 ], [ -74.563207, 43.829442 ], [ -74.330655, 43.657363 ], [ -73.997779, 43.710928 ], [ -73.894662, 43.937131 ], [ -74.126922, 44.110594 ] ] ], "type": "Polygon" }, "id": "842b889ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.554821, 33.644961 ], [ -119.33524, 33.816718 ], [ -119.398334, 34.057199 ], [ -119.681866, 34.125495 ], [ -119.901112, 33.953394 ], [ -119.837166, 33.71334 ], [ -119.554821, 33.644961 ] ] ], "type": "Polygon" }, "id": "8429121ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.308582, 64.928749 ], [ -152.788458, 64.804848 ], [ -152.798425, 64.577725 ], [ -152.337587, 64.474923 ], [ -151.862887, 64.597105 ], [ -151.843861, 64.82379 ], [ -152.308582, 64.928749 ] ] ], "type": "Polygon" }, "id": "840c281ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.997783, 54.273351 ], [ -165.780352, 54.439452 ], [ -165.93411, 54.650472 ], [ -166.308034, 54.695323 ], [ -166.525738, 54.528608 ], [ -166.369259, 54.317659 ], [ -165.997783, 54.273351 ] ] ], "type": "Polygon" }, "id": "8422d07ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.16458, 31.612408 ], [ -115.940508, 31.780154 ], [ -115.996149, 32.026832 ], [ -116.276792, 32.105414 ], [ -116.500719, 31.937288 ], [ -116.444153, 31.690961 ], [ -116.16458, 31.612408 ] ] ], "type": "Polygon" }, "id": "8448599ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.542362, 53.861076 ], [ -160.320547, 54.014494 ], [ -160.444233, 54.227373 ], [ -160.792537, 54.286965 ], [ -161.015126, 54.133021 ], [ -160.888645, 53.920013 ], [ -160.542362, 53.861076 ] ] ], "type": "Polygon" }, "id": "840cd97ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.448063, 19.589658 ], [ -100.226219, 19.735003 ], [ -100.246142, 19.988078 ], [ -100.488857, 20.095966 ], [ -100.711265, 19.950225 ], [ -100.690394, 19.696994 ], [ -100.448063, 19.589658 ] ] ], "type": "Polygon" }, "id": "8449805ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.438494, 43.572044 ], [ -129.230446, 43.748807 ], [ -129.317515, 43.953735 ], [ -129.613233, 43.98144 ], [ -129.82033, 43.804533 ], [ -129.732667, 43.600064 ], [ -129.438494, 43.572044 ] ] ], "type": "Polygon" }, "id": "8428505ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.845113, 67.256481 ], [ -156.361779, 67.119197 ], [ -156.334638, 66.885298 ], [ -155.802109, 66.788828 ], [ -155.290696, 66.924044 ], [ -155.30655, 67.157776 ], [ -155.845113, 67.256481 ] ] ], "type": "Polygon" }, "id": "840c201ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.053119, 42.272999 ], [ -108.790998, 42.417053 ], [ -108.836283, 42.647898 ], [ -109.145014, 42.734589 ], [ -109.407432, 42.590241 ], [ -109.360825, 42.359498 ], [ -109.053119, 42.272999 ] ] ], "type": "Polygon" }, "id": "8426b03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.196337, 50.196064 ], [ -174.008505, 50.391205 ], [ -174.190491, 50.602665 ], [ -174.562292, 50.618688 ], [ -174.749606, 50.422881 ], [ -174.565652, 50.211718 ], [ -174.196337, 50.196064 ] ] ], "type": "Polygon" }, "id": "8422535ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.375257, 59.076555 ], [ -150.761021, 58.963372 ], [ -150.784339, 58.754462 ], [ -150.427529, 58.659191 ], [ -150.045311, 58.771035 ], [ -150.016368, 58.979479 ], [ -150.375257, 59.076555 ] ] ], "type": "Polygon" }, "id": "840c5c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.276719, 57.551018 ], [ -156.626436, 57.420877 ], [ -156.605986, 57.214134 ], [ -156.241049, 57.137594 ], [ -155.893699, 57.266202 ], [ -155.908915, 57.472872 ], [ -156.276719, 57.551018 ] ] ], "type": "Polygon" }, "id": "840ceabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.118202, 65.964093 ], [ -135.659016, 65.901393 ], [ -135.833423, 65.689201 ], [ -135.474375, 65.541348 ], [ -134.972238, 65.566913 ], [ -134.790654, 65.777964 ], [ -135.118202, 65.964093 ] ] ], "type": "Polygon" }, "id": "840d6b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.593069, 23.136067 ], [ -67.765597, 23.056613 ], [ -67.738697, 22.880658 ], [ -67.539112, 22.78439 ], [ -67.366898, 22.864256 ], [ -67.393954, 23.039977 ], [ -67.593069, 23.136067 ] ] ], "type": "Polygon" }, "id": "844c035ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.921626, 22.425781 ], [ -70.099559, 22.340855 ], [ -70.073626, 22.160401 ], [ -69.869579, 22.065093 ], [ -69.691912, 22.150427 ], [ -69.718025, 22.330659 ], [ -69.921626, 22.425781 ] ] ], "type": "Polygon" }, "id": "844cad1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.168833, 40.966263 ], [ -125.954581, 41.141909 ], [ -126.034197, 41.358854 ], [ -126.32878, 41.39969 ], [ -126.542281, 41.223836 ], [ -126.461957, 41.007355 ], [ -126.168833, 40.966263 ] ] ], "type": "Polygon" }, "id": "84280e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.624686, 49.884125 ], [ -130.40518, 50.053845 ], [ -130.500998, 50.237879 ], [ -130.816957, 50.251818 ], [ -131.035296, 50.081964 ], [ -130.938851, 49.898307 ], [ -130.624686, 49.884125 ] ] ], "type": "Polygon" }, "id": "841d60bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.083869, 18.459275 ], [ -67.258425, 18.367667 ], [ -67.230814, 18.17473 ], [ -67.02849, 18.07372 ], [ -66.85427, 18.165802 ], [ -66.882037, 18.358419 ], [ -67.083869, 18.459275 ] ] ], "type": "Polygon" }, "id": "844cc55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.721871, 17.709005 ], [ -81.521293, 17.822714 ], [ -81.504963, 18.05264 ], [ -81.689866, 18.169558 ], [ -81.891379, 18.055835 ], [ -81.907052, 17.825209 ], [ -81.721871, 17.709005 ] ] ], "type": "Polygon" }, "id": "8445a0bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.687634, 44.945132 ], [ -125.462208, 45.115924 ], [ -125.544482, 45.323011 ], [ -125.852982, 45.358899 ], [ -126.077616, 45.187902 ], [ -125.994549, 44.981222 ], [ -125.687634, 44.945132 ] ] ], "type": "Polygon" }, "id": "8428e2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.479455, 38.727879 ], [ -118.246275, 38.894809 ], [ -118.310311, 39.127098 ], [ -118.608508, 39.192106 ], [ -118.841384, 39.024872 ], [ -118.776372, 38.792936 ], [ -118.479455, 38.727879 ] ] ], "type": "Polygon" }, "id": "8429881ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.996224, 35.983771 ], [ -120.77598, 36.156401 ], [ -120.843084, 36.391273 ], [ -121.131275, 36.453079 ], [ -121.351092, 36.28014 ], [ -121.28315, 36.045706 ], [ -120.996224, 35.983771 ] ] ], "type": "Polygon" }, "id": "8429a99ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.504801, 57.549534 ], [ -149.871615, 57.440544 ], [ -149.900022, 57.237322 ], [ -149.566616, 57.143567 ], [ -149.203081, 57.251318 ], [ -149.169684, 57.454054 ], [ -149.504801, 57.549534 ] ] ], "type": "Polygon" }, "id": "840c595ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.369174, 44.813952 ], [ -111.103982, 44.959009 ], [ -111.15608, 45.181595 ], [ -111.474714, 45.258971 ], [ -111.740055, 45.113607 ], [ -111.686617, 44.891176 ], [ -111.369174, 44.813952 ] ] ], "type": "Polygon" }, "id": "8428905ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -57.265042, 31.678236 ], [ -57.407203, 31.499165 ], [ -57.306293, 31.285626 ], [ -57.06354, 31.250235 ], [ -56.920342, 31.428912 ], [ -57.020928, 31.643376 ], [ -57.265042, 31.678236 ] ] ], "type": "Polygon" }, "id": "843b833ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.822827, 33.588955 ], [ -115.594057, 33.755377 ], [ -115.649987, 33.999722 ], [ -115.935659, 34.077319 ], [ -116.164298, 33.910538 ], [ -116.1074, 33.666521 ], [ -115.822827, 33.588955 ] ] ], "type": "Polygon" }, "id": "8429a67ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -51.964693, 26.691447 ], [ -52.119691, 26.521729 ], [ -52.032268, 26.299718 ], [ -51.790355, 26.246526 ], [ -51.634565, 26.415655 ], [ -51.721475, 26.638566 ], [ -51.964693, 26.691447 ] ] ], "type": "Polygon" }, "id": "843a1a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.77494, 59.690692 ], [ -139.880893, 59.490411 ], [ -139.577545, 59.36847 ], [ -139.19494, 59.394915 ], [ -139.084204, 59.594487 ], [ -139.360708, 59.767935 ], [ -139.77494, 59.690692 ] ] ], "type": "Polygon" }, "id": "841396dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.735574, 65.949003 ], [ -153.235587, 65.823093 ], [ -153.241515, 65.593219 ], [ -152.757362, 65.489654 ], [ -152.26289, 65.613758 ], [ -152.247042, 65.843213 ], [ -152.735574, 65.949003 ] ] ], "type": "Polygon" }, "id": "840c2c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.638859, 60.017792 ], [ -151.037728, 59.902939 ], [ -151.059706, 59.690845 ], [ -150.688873, 59.59406 ], [ -150.293766, 59.707525 ], [ -150.265741, 59.91915 ], [ -150.638859, 60.017792 ] ] ], "type": "Polygon" }, "id": "840c519ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.885924, 64.846924 ], [ -138.397777, 64.774092 ], [ -138.540089, 64.560772 ], [ -138.177752, 64.421702 ], [ -137.673524, 64.49378 ], [ -137.524078, 64.705672 ], [ -137.885924, 64.846924 ] ] ], "type": "Polygon" }, "id": "840d4d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.476066, 42.710282 ], [ -111.216948, 42.859 ], [ -111.268152, 43.087436 ], [ -111.579757, 43.166993 ], [ -111.839011, 43.017971 ], [ -111.786529, 42.789698 ], [ -111.476066, 42.710282 ] ] ], "type": "Polygon" }, "id": "8428b25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.075814, 48.783298 ], [ -121.827119, 48.942708 ], [ -121.906163, 49.142836 ], [ -122.234959, 49.183229 ], [ -122.483019, 49.023551 ], [ -122.402927, 48.823749 ], [ -122.075814, 48.783298 ] ] ], "type": "Polygon" }, "id": "8428d3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.935681, 36.659892 ], [ -106.684659, 36.807081 ], [ -106.722746, 37.051269 ], [ -107.013076, 37.148226 ], [ -107.264489, 37.000741 ], [ -107.225184, 36.756597 ], [ -106.935681, 36.659892 ] ] ], "type": "Polygon" }, "id": "8426993ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.844872, 48.12857 ], [ -128.623006, 48.298954 ], [ -128.713885, 48.491533 ], [ -129.027332, 48.513335 ], [ -129.24817, 48.342792 ], [ -129.156598, 48.150606 ], [ -128.844872, 48.12857 ] ] ], "type": "Polygon" }, "id": "8428cd5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.122828, 43.217803 ], [ -109.859883, 43.362745 ], [ -109.908166, 43.590553 ], [ -110.220724, 43.673293 ], [ -110.483899, 43.528051 ], [ -110.434291, 43.300371 ], [ -110.122828, 43.217803 ] ] ], "type": "Polygon" }, "id": "8426b6bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.836924, 18.477231 ], [ -64.669242, 18.626645 ], [ -64.698477, 18.819962 ], [ -64.895118, 18.863611 ], [ -65.062218, 18.714491 ], [ -65.033259, 18.521429 ], [ -64.836924, 18.477231 ] ] ], "type": "Polygon" }, "id": "844ce89ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.052194, 33.747218 ], [ -118.831067, 33.918266 ], [ -118.89329, 34.159159 ], [ -119.177516, 34.228593 ], [ -119.398334, 34.057199 ], [ -119.33524, 33.816718 ], [ -119.052194, 33.747218 ] ] ], "type": "Polygon" }, "id": "8429125ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.148903, 19.28973 ], [ -64.982169, 19.438233 ], [ -65.011122, 19.628449 ], [ -65.206534, 19.669922 ], [ -65.372684, 19.521718 ], [ -65.344007, 19.331744 ], [ -65.148903, 19.28973 ] ] ], "type": "Polygon" }, "id": "844cecdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.138712, 31.95348 ], [ -113.909572, 32.11805 ], [ -113.961368, 32.36598 ], [ -114.243291, 32.449052 ], [ -114.472395, 32.284104 ], [ -114.419616, 32.036463 ], [ -114.138712, 31.95348 ] ] ], "type": "Polygon" }, "id": "84485abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.32264, 45.042646 ], [ -112.058676, 45.189412 ], [ -112.113166, 45.410724 ], [ -112.432947, 45.485095 ], [ -112.696994, 45.33802 ], [ -112.641182, 45.116885 ], [ -112.32264, 45.042646 ] ] ], "type": "Polygon" }, "id": "8428903ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.634148, 44.207145 ], [ -110.36933, 44.351594 ], [ -110.419342, 44.57636 ], [ -110.735518, 44.65654 ], [ -111.000535, 44.511788 ], [ -110.949182, 44.287161 ], [ -110.634148, 44.207145 ] ] ], "type": "Polygon" }, "id": "8428961ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.103272, 53.332682 ], [ -169.896393, 53.511021 ], [ -170.068424, 53.72116 ], [ -170.449797, 53.752763 ], [ -170.656527, 53.573772 ], [ -170.482048, 53.363832 ], [ -170.103272, 53.332682 ] ] ], "type": "Polygon" }, "id": "8422c07ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.89298, 65.472073 ], [ -169.30023, 65.294369 ], [ -169.1461, 65.067723 ], [ -168.593509, 65.017844 ], [ -168.18659, 65.193192 ], [ -168.331854, 65.42076 ], [ -168.89298, 65.472073 ] ] ], "type": "Polygon" }, "id": "840d895ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.893493, 17.962135 ], [ -96.674528, 18.102077 ], [ -96.68699, 18.35163 ], [ -96.919328, 18.461523 ], [ -97.138966, 18.321231 ], [ -97.125593, 18.071399 ], [ -96.893493, 17.962135 ] ] ], "type": "Polygon" }, "id": "846d361ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.45927, 20.047962 ], [ -155.621814, 19.843722 ], [ -155.515561, 19.611161 ], [ -155.246997, 19.582648 ], [ -155.084157, 19.786804 ], [ -155.190172, 20.019557 ], [ -155.45927, 20.047962 ] ] ], "type": "Polygon" }, "id": "845d103ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.593993, 62.622867 ], [ -149.04092, 62.51302 ], [ -149.082425, 62.294467 ], [ -148.684269, 62.18641 ], [ -148.242305, 62.294869 ], [ -148.193557, 62.512759 ], [ -148.593993, 62.622867 ] ] ], "type": "Polygon" }, "id": "840c70bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.890348, 28.42288 ], [ -111.66375, 28.585085 ], [ -111.709561, 28.837862 ], [ -111.982948, 28.9282 ], [ -112.209628, 28.765581 ], [ -112.162842, 28.513039 ], [ -111.890348, 28.42288 ] ] ], "type": "Polygon" }, "id": "844856bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -167.438873, 52.094866 ], [ -167.232069, 52.270002 ], [ -167.387077, 52.483733 ], [ -167.751362, 52.522238 ], [ -167.958283, 52.346469 ], [ -167.800815, 52.132831 ], [ -167.438873, 52.094866 ] ] ], "type": "Polygon" }, "id": "8422f3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -99.112713, 20.456396 ], [ -98.889199, 20.599553 ], [ -98.906489, 20.852629 ], [ -99.148251, 20.962761 ], [ -99.372387, 20.819245 ], [ -99.354139, 20.565958 ], [ -99.112713, 20.456396 ] ] ], "type": "Polygon" }, "id": "844991bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -88.994831, 36.97377 ], [ -88.743702, 37.077102 ], [ -88.739865, 37.312972 ], [ -88.988287, 37.446001 ], [ -89.240623, 37.342722 ], [ -89.243328, 37.106362 ], [ -88.994831, 36.97377 ] ] ], "type": "Polygon" }, "id": "8426417ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.937279, 59.186619 ], [ -136.070941, 58.988228 ], [ -135.81378, 58.805907 ], [ -135.423167, 58.820406 ], [ -135.28519, 59.018272 ], [ -135.54211, 59.202172 ], [ -135.937279, 59.186619 ] ] ], "type": "Polygon" }, "id": "8413915ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.804681, 65.278868 ], [ -152.293651, 65.156521 ], [ -152.308582, 64.928749 ], [ -151.843861, 64.82379 ], [ -151.360348, 64.944427 ], [ -151.336114, 65.171715 ], [ -151.804681, 65.278868 ] ] ], "type": "Polygon" }, "id": "840c289ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.477538, 19.524364 ], [ -108.261568, 19.680656 ], [ -108.297705, 19.934555 ], [ -108.550712, 20.032016 ], [ -108.766908, 19.875217 ], [ -108.729873, 19.621465 ], [ -108.477538, 19.524364 ] ] ], "type": "Polygon" }, "id": "8449191ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.204294, 17.982298 ], [ -104.987579, 18.133923 ], [ -105.016851, 18.386723 ], [ -105.263748, 18.48787 ], [ -105.480825, 18.335755 ], [ -105.450644, 18.082984 ], [ -105.204294, 17.982298 ] ] ], "type": "Polygon" }, "id": "8449137ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.658251, 49.558637 ], [ -173.471231, 49.754041 ], [ -173.648889, 49.966881 ], [ -174.015543, 49.984043 ], [ -174.202106, 49.78797 ], [ -174.022487, 49.575406 ], [ -173.658251, 49.558637 ] ] ], "type": "Polygon" }, "id": "842252bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.002519, 42.782445 ], [ -125.78352, 42.956166 ], [ -125.864396, 43.168755 ], [ -126.165021, 43.207187 ], [ -126.383249, 43.033263 ], [ -126.301631, 42.821111 ], [ -126.002519, 42.782445 ] ] ], "type": "Polygon" }, "id": "84280a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.511059, 64.277246 ], [ -150.983814, 64.159896 ], [ -151.010299, 63.93545 ], [ -150.572506, 63.828901 ], [ -150.105045, 63.944671 ], [ -150.070103, 64.168553 ], [ -150.511059, 64.277246 ] ] ], "type": "Polygon" }, "id": "840c291ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.876283, 39.696315 ], [ -71.183716, 39.653115 ], [ -71.28969, 39.440616 ], [ -71.090139, 39.272211 ], [ -70.785129, 39.315035 ], [ -70.67726, 39.526639 ], [ -70.876283, 39.696315 ] ] ], "type": "Polygon" }, "id": "842a03dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -61.676515, 18.120527 ], [ -61.50201, 18.270786 ], [ -61.533653, 18.470034 ], [ -61.739525, 18.518798 ], [ -61.913486, 18.368831 ], [ -61.882119, 18.16981 ], [ -61.676515, 18.120527 ] ] ], "type": "Polygon" }, "id": "844d4d3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.859548, 51.717928 ], [ -165.651875, 51.890117 ], [ -165.797916, 52.105047 ], [ -166.154123, 52.147757 ], [ -166.362058, 51.974952 ], [ -166.213535, 51.760055 ], [ -165.859548, 51.717928 ] ] ], "type": "Polygon" }, "id": "8422f2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.109966, 61.268526 ], [ -152.524208, 61.147801 ], [ -152.534999, 60.930996 ], [ -152.138288, 60.835298 ], [ -151.727933, 60.954506 ], [ -151.71041, 61.170917 ], [ -152.109966, 61.268526 ] ] ], "type": "Polygon" }, "id": "840c541ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -95.994372, 18.021534 ], [ -95.775585, 18.160057 ], [ -95.786234, 18.409005 ], [ -96.016574, 18.519742 ], [ -96.236062, 18.380887 ], [ -96.224508, 18.131629 ], [ -95.994372, 18.021534 ] ] ], "type": "Polygon" }, "id": "846d347ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.502076, 61.583335 ], [ -152.92023, 61.461058 ], [ -152.927834, 61.243112 ], [ -152.524208, 61.147801 ], [ -152.109966, 61.268526 ], [ -152.095445, 61.486101 ], [ -152.502076, 61.583335 ] ] ], "type": "Polygon" }, "id": "840c54dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.150226, 46.320499 ], [ -120.905745, 46.48242 ], [ -120.980657, 46.691537 ], [ -121.301086, 46.738401 ], [ -121.545029, 46.576213 ], [ -121.469087, 46.36743 ], [ -121.150226, 46.320499 ] ] ], "type": "Polygon" }, "id": "8428f27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.513468, 43.848994 ], [ -113.255394, 44.00026 ], [ -113.311942, 44.224191 ], [ -113.627821, 44.296651 ], [ -113.885892, 44.145078 ], [ -113.828092, 43.921354 ], [ -113.513468, 43.848994 ] ] ], "type": "Polygon" }, "id": "8428959ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.328748, 39.12004 ], [ -126.119048, 39.297244 ], [ -126.19744, 39.518227 ], [ -126.486212, 39.561514 ], [ -126.695183, 39.384092 ], [ -126.616116, 39.163601 ], [ -126.328748, 39.12004 ] ] ], "type": "Polygon" }, "id": "842805bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.717561, 52.792062 ], [ -170.513853, 52.973198 ], [ -170.687256, 53.183763 ], [ -171.066751, 53.212981 ], [ -171.27025, 53.031189 ], [ -171.094479, 52.820836 ], [ -170.717561, 52.792062 ] ] ], "type": "Polygon" }, "id": "8422c0bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.773221, 55.810273 ], [ -155.106451, 55.686953 ], [ -155.09767, 55.486738 ], [ -154.760273, 55.409979 ], [ -154.429338, 55.531896 ], [ -154.433506, 55.731964 ], [ -154.773221, 55.810273 ] ] ], "type": "Polygon" }, "id": "841db2dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.479637, 58.539376 ], [ -137.598679, 58.342396 ], [ -137.341353, 58.164723 ], [ -136.964925, 58.182504 ], [ -136.841674, 58.379049 ], [ -137.099032, 58.558255 ], [ -137.479637, 58.539376 ] ] ], "type": "Polygon" }, "id": "8413923ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.058781, 68.083398 ], [ -172.492185, 67.894244 ], [ -172.284135, 67.66508 ], [ -171.653087, 67.623765 ], [ -171.218719, 67.810306 ], [ -171.416232, 68.040759 ], [ -172.058781, 68.083398 ] ] ], "type": "Polygon" }, "id": "840daa5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.571634, 19.173664 ], [ -155.733426, 18.968856 ], [ -155.627489, 18.735522 ], [ -155.359989, 18.706791 ], [ -155.197898, 18.911504 ], [ -155.303603, 19.145043 ], [ -155.571634, 19.173664 ] ] ], "type": "Polygon" }, "id": "845d131ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.975462, 21.407488 ], [ -161.130436, 21.201339 ], [ -161.020554, 20.976432 ], [ -160.755762, 20.957396 ], [ -160.600291, 21.163552 ], [ -160.710106, 21.388737 ], [ -160.975462, 21.407488 ] ] ], "type": "Polygon" }, "id": "84465d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.76732, 53.293759 ], [ -161.548924, 53.45176 ], [ -161.677755, 53.6654 ], [ -162.027713, 53.721136 ], [ -162.246763, 53.562584 ], [ -162.11521, 53.34885 ], [ -161.76732, 53.293759 ] ] ], "type": "Polygon" }, "id": "840cdb7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.515094, 39.566447 ], [ -121.288697, 39.737251 ], [ -121.359109, 39.964093 ], [ -121.656802, 40.019724 ], [ -121.882713, 39.848645 ], [ -121.811423, 39.622211 ], [ -121.515094, 39.566447 ] ] ], "type": "Polygon" }, "id": "842814bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -89.729741, 65.909553 ], [ -90.285256, 65.79399 ], [ -90.320335, 65.539667 ], [ -89.810007, 65.400942 ], [ -89.260161, 65.514795 ], [ -89.214987, 65.769065 ], [ -89.729741, 65.909553 ] ] ], "type": "Polygon" }, "id": "840f831ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.141841, 37.118321 ], [ -118.914, 37.287613 ], [ -118.978343, 37.522525 ], [ -119.271455, 37.587764 ], [ -119.498962, 37.418161 ], [ -119.433696, 37.183632 ], [ -119.141841, 37.118321 ] ] ], "type": "Polygon" }, "id": "8429ab5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.931873, 36.760589 ], [ -114.694382, 36.923325 ], [ -114.750099, 37.163039 ], [ -115.044362, 37.239739 ], [ -115.281767, 37.076673 ], [ -115.225, 36.837239 ], [ -114.931873, 36.760589 ] ] ], "type": "Polygon" }, "id": "8429829ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.391295, 57.87002 ], [ -148.764629, 57.764286 ], [ -148.801292, 57.560819 ], [ -148.469674, 57.463635 ], [ -148.099826, 57.568173 ], [ -148.058124, 57.771082 ], [ -148.391295, 57.87002 ] ] ], "type": "Polygon" }, "id": "840c599ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.753979, 58.644908 ], [ -154.125053, 58.521341 ], [ -154.12279, 58.31195 ], [ -153.755052, 58.22636 ], [ -153.386933, 58.348449 ], [ -153.383599, 58.557595 ], [ -153.753979, 58.644908 ] ] ], "type": "Polygon" }, "id": "840ceddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.160867, 40.610403 ], [ -117.92245, 40.774882 ], [ -117.987035, 41.003164 ], [ -118.291066, 41.066639 ], [ -118.529186, 40.901863 ], [ -118.463578, 40.673912 ], [ -118.160867, 40.610403 ] ] ], "type": "Polygon" }, "id": "8428a5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.691075, 54.671507 ], [ -158.004047, 54.541187 ], [ -157.97631, 54.344027 ], [ -157.639908, 54.277145 ], [ -157.328701, 54.406005 ], [ -157.352127, 54.603198 ], [ -157.691075, 54.671507 ] ] ], "type": "Polygon" }, "id": "840ccb1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.723932, 49.779989 ], [ -128.496882, 49.94761 ], [ -128.589474, 50.135057 ], [ -128.909854, 50.154512 ], [ -129.135838, 49.98672 ], [ -129.042517, 49.799645 ], [ -128.723932, 49.779989 ] ] ], "type": "Polygon" }, "id": "8428cb3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.225268, 21.108592 ], [ -108.006325, 21.26519 ], [ -108.042401, 21.520098 ], [ -108.298347, 21.618277 ], [ -108.517534, 21.461195 ], [ -108.480534, 21.206419 ], [ -108.225268, 21.108592 ] ] ], "type": "Polygon" }, "id": "8448267ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.600291, 21.163552 ], [ -160.755762, 20.957396 ], [ -160.646137, 20.731684 ], [ -160.381117, 20.711853 ], [ -160.225163, 20.918008 ], [ -160.334709, 21.143994 ], [ -160.600291, 21.163552 ] ] ], "type": "Polygon" }, "id": "84465d7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.385632, 52.65042 ], [ -161.169506, 52.80903 ], [ -161.294814, 53.023566 ], [ -161.638919, 53.079607 ], [ -161.855715, 52.92045 ], [ -161.727745, 52.705801 ], [ -161.385632, 52.65042 ] ] ], "type": "Polygon" }, "id": "84228a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.988484, 58.51664 ], [ -156.351315, 58.386207 ], [ -156.332244, 58.176373 ], [ -155.955938, 58.097058 ], [ -155.595689, 58.225926 ], [ -155.60916, 58.435661 ], [ -155.988484, 58.51664 ] ] ], "type": "Polygon" }, "id": "840ceebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.252324, 59.511381 ], [ -137.377103, 59.312049 ], [ -137.112102, 59.133196 ], [ -136.722299, 59.152116 ], [ -136.593037, 59.350995 ], [ -136.85803, 59.531415 ], [ -137.252324, 59.511381 ] ] ], "type": "Polygon" }, "id": "8413901ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.76102, 60.419377 ], [ -140.185461, 60.340595 ], [ -140.291088, 60.137724 ], [ -139.977511, 60.01474 ], [ -139.558231, 60.092743 ], [ -139.447404, 60.294501 ], [ -139.76102, 60.419377 ] ] ], "type": "Polygon" }, "id": "840c6d1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.21971, 18.484285 ], [ -68.396789, 18.391133 ], [ -68.369672, 18.197263 ], [ -68.165306, 18.096851 ], [ -67.988539, 18.19047 ], [ -68.015825, 18.384034 ], [ -68.21971, 18.484285 ] ] ], "type": "Polygon" }, "id": "844cc63ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.53087, 59.879872 ], [ -154.916823, 59.752542 ], [ -154.908189, 59.538877 ], [ -154.519753, 59.452739 ], [ -154.136904, 59.578501 ], [ -154.139388, 59.791957 ], [ -154.53087, 59.879872 ] ] ], "type": "Polygon" }, "id": "840c521ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.446903, 69.045942 ], [ -156.011569, 68.909308 ], [ -155.98613, 68.671714 ], [ -155.409379, 68.570938 ], [ -154.851091, 68.705376 ], [ -154.863169, 68.94276 ], [ -155.446903, 69.045942 ] ] ], "type": "Polygon" }, "id": "840d0a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.098336, 40.524253 ], [ -121.871553, 40.695011 ], [ -121.943727, 40.918851 ], [ -122.243562, 40.971526 ], [ -122.469815, 40.800504 ], [ -122.39677, 40.577072 ], [ -122.098336, 40.524253 ] ] ], "type": "Polygon" }, "id": "8428157ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.589989, 52.384334 ], [ -173.39367, 52.572931 ], [ -173.579692, 52.781621 ], [ -173.964211, 52.801416 ], [ -174.160033, 52.612156 ], [ -173.97185, 52.403766 ], [ -173.589989, 52.384334 ] ] ], "type": "Polygon" }, "id": "8422eabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.411157, 30.139475 ], [ -103.170976, 30.285819 ], [ -103.199231, 30.539227 ], [ -103.468783, 30.646366 ], [ -103.709492, 30.499715 ], [ -103.680122, 30.246235 ], [ -103.411157, 30.139475 ] ] ], "type": "Polygon" }, "id": "84488d3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.070048, 64.619679 ], [ -149.554155, 64.50716 ], [ -149.594418, 64.282734 ], [ -149.159186, 64.171492 ], [ -148.680834, 64.282499 ], [ -148.631986, 64.506245 ], [ -149.070048, 64.619679 ] ] ], "type": "Polygon" }, "id": "840d5a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -73.813618, 44.793567 ], [ -74.154717, 44.740073 ], [ -74.258378, 44.511791 ], [ -74.02353, 44.337843 ], [ -73.68534, 44.390787 ], [ -73.579105, 44.618225 ], [ -73.813618, 44.793567 ] ] ], "type": "Polygon" }, "id": "842b8c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.407359, 63.93867 ], [ -147.882274, 63.832254 ], [ -147.936514, 63.610915 ], [ -147.52382, 63.496758 ], [ -147.054651, 63.601798 ], [ -146.992462, 63.822356 ], [ -147.407359, 63.93867 ] ] ], "type": "Polygon" }, "id": "840d5b5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.206288, 57.790867 ], [ -137.324469, 57.595785 ], [ -137.074335, 57.417844 ], [ -136.706007, 57.433475 ], [ -136.583831, 57.628108 ], [ -136.833953, 57.807566 ], [ -137.206288, 57.790867 ] ] ], "type": "Polygon" }, "id": "841d261ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.802856, 19.078665 ], [ -156.962915, 18.873124 ], [ -156.856195, 18.640826 ], [ -156.589608, 18.613838 ], [ -156.429206, 18.819297 ], [ -156.53573, 19.051827 ], [ -156.802856, 19.078665 ] ] ], "type": "Polygon" }, "id": "845d127ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.133198, 63.203273 ], [ -144.601088, 63.108568 ], [ -144.682048, 62.892281 ], [ -144.302276, 62.771664 ], [ -143.840301, 62.865231 ], [ -143.752223, 63.080542 ], [ -144.133198, 63.203273 ] ] ], "type": "Polygon" }, "id": "840c66bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -85.675917, 64.988587 ], [ -86.231941, 64.887687 ], [ -86.303004, 64.633504 ], [ -85.827371, 64.480555 ], [ -85.277728, 64.57996 ], [ -85.197371, 64.833792 ], [ -85.675917, 64.988587 ] ] ], "type": "Polygon" }, "id": "840f8c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.592052, 64.416447 ], [ -133.775239, 64.208222 ], [ -133.476745, 64.018205 ], [ -132.995984, 64.034629 ], [ -132.80676, 64.242124 ], [ -133.104271, 64.433933 ], [ -133.592052, 64.416447 ] ] ], "type": "Polygon" }, "id": "8413a55ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -55.792628, 19.576744 ], [ -55.608685, 19.72414 ], [ -55.644328, 19.926016 ], [ -55.863658, 19.980369 ], [ -56.047172, 19.833269 ], [ -56.011785, 19.631521 ], [ -55.792628, 19.576744 ] ] ], "type": "Polygon" }, "id": "845ecedffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.455617, 18.743792 ], [ -81.253834, 18.856056 ], [ -81.236904, 19.086619 ], [ -81.422417, 19.20563 ], [ -81.625151, 19.093376 ], [ -81.641419, 18.862101 ], [ -81.455617, 18.743792 ] ] ], "type": "Polygon" }, "id": "8445a3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.230011, 47.03002 ], [ -129.012629, 47.202435 ], [ -129.102917, 47.397789 ], [ -129.411248, 47.420319 ], [ -129.627608, 47.247756 ], [ -129.536667, 47.052811 ], [ -129.230011, 47.03002 ] ] ], "type": "Polygon" }, "id": "8428eb1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.630542, 54.679027 ], [ -134.755271, 54.492449 ], [ -134.53672, 54.310234 ], [ -134.193771, 54.313132 ], [ -134.06586, 54.499135 ], [ -134.284057, 54.68282 ], [ -134.630542, 54.679027 ] ] ], "type": "Polygon" }, "id": "841d2c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.874569, 28.940286 ], [ -107.641011, 29.095754 ], [ -107.678653, 29.349773 ], [ -107.950907, 29.448234 ], [ -108.184759, 29.292388 ], [ -108.146065, 29.038462 ], [ -107.874569, 28.940286 ] ] ], "type": "Polygon" }, "id": "8448e61ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.547392, 51.870358 ], [ -130.688309, 51.692637 ], [ -130.500302, 51.503315 ], [ -130.172147, 51.490288 ], [ -130.028724, 51.667249 ], [ -130.215942, 51.858001 ], [ -130.547392, 51.870358 ] ] ], "type": "Polygon" }, "id": "8412933ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.800424, 63.489524 ], [ -127.038197, 63.288033 ], [ -126.787012, 63.080726 ], [ -126.300615, 63.073145 ], [ -126.058157, 63.27353 ], [ -126.306709, 63.482605 ], [ -126.800424, 63.489524 ] ] ], "type": "Polygon" }, "id": "8413adbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.21092, 20.566282 ], [ -156.372827, 20.361897 ], [ -156.265812, 20.130599 ], [ -155.997101, 20.103484 ], [ -155.834868, 20.307801 ], [ -155.941668, 20.5393 ], [ -156.21092, 20.566282 ] ] ], "type": "Polygon" }, "id": "845d10dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.020402, 19.311729 ], [ -67.194249, 19.222547 ], [ -67.166701, 19.032711 ], [ -66.96515, 18.932364 ], [ -66.791638, 19.022011 ], [ -66.819341, 19.21154 ], [ -67.020402, 19.311729 ] ] ], "type": "Polygon" }, "id": "844ce35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.04411, 23.894276 ], [ -64.145445, 23.736767 ], [ -64.048192, 23.545082 ], [ -63.849623, 23.510008 ], [ -63.747382, 23.667168 ], [ -63.844614, 23.859752 ], [ -64.04411, 23.894276 ] ] ], "type": "Polygon" }, "id": "844d52dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.299282, 19.665897 ], [ -70.479877, 19.572976 ], [ -70.45385, 19.381759 ], [ -70.247037, 19.283721 ], [ -70.066705, 19.377084 ], [ -70.09292, 19.568042 ], [ -70.299282, 19.665897 ] ] ], "type": "Polygon" }, "id": "844cf27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.81431, 57.028106 ], [ -155.161786, 56.903104 ], [ -155.152234, 56.69865 ], [ -154.800224, 56.619347 ], [ -154.455238, 56.742895 ], [ -154.459772, 56.94719 ], [ -154.81431, 57.028106 ] ] ], "type": "Polygon" }, "id": "840cebbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.219214, 48.540377 ], [ -122.975145, 48.702115 ], [ -123.056255, 48.901583 ], [ -123.38243, 48.938973 ], [ -123.625791, 48.776983 ], [ -123.543694, 48.577856 ], [ -123.219214, 48.540377 ] ] ], "type": "Polygon" }, "id": "8428d13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.927834, 61.243112 ], [ -153.339235, 61.119711 ], [ -153.343269, 60.90257 ], [ -152.942665, 60.809153 ], [ -152.534999, 60.930996 ], [ -152.524208, 61.147801 ], [ -152.927834, 61.243112 ] ] ], "type": "Polygon" }, "id": "840c545ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.172978, 38.223992 ], [ -118.942808, 38.39246 ], [ -119.00789, 38.625073 ], [ -119.304089, 38.688845 ], [ -119.533916, 38.520074 ], [ -119.467893, 38.287835 ], [ -119.172978, 38.223992 ] ] ], "type": "Polygon" }, "id": "84298d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.44626, 22.638829 ], [ -108.224955, 22.796091 ], [ -108.261907, 23.051507 ], [ -108.521108, 23.149528 ], [ -108.742652, 22.991799 ], [ -108.704757, 22.736518 ], [ -108.44626, 22.638829 ] ] ], "type": "Polygon" }, "id": "8448049ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.621257, 58.914791 ], [ -137.740708, 58.716877 ], [ -137.479637, 58.539376 ], [ -137.099032, 58.558255 ], [ -136.975258, 58.755739 ], [ -137.236385, 58.934782 ], [ -137.621257, 58.914791 ] ] ], "type": "Polygon" }, "id": "841392bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.10409, 59.249758 ], [ -141.508486, 59.166901 ], [ -141.600151, 58.966115 ], [ -141.292358, 58.849176 ], [ -140.892579, 58.931199 ], [ -140.796006, 59.130988 ], [ -141.10409, 59.249758 ] ] ], "type": "Polygon" }, "id": "840c697ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.279045, 28.43052 ], [ -69.523177, 28.39563 ], [ -69.612906, 28.2218 ], [ -69.459636, 28.08359 ], [ -69.21705, 28.118218 ], [ -69.126195, 28.291316 ], [ -69.279045, 28.43052 ] ] ], "type": "Polygon" }, "id": "844d853ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.402759, 20.484018 ], [ -155.565682, 20.2801 ], [ -155.45927, 20.047962 ], [ -155.190172, 20.019557 ], [ -155.026955, 20.223396 ], [ -155.133126, 20.455719 ], [ -155.402759, 20.484018 ] ] ], "type": "Polygon" }, "id": "845d10bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.303147, 63.946222 ], [ -148.77583, 63.836686 ], [ -148.822028, 63.614628 ], [ -148.403613, 63.50281 ], [ -147.936514, 63.610915 ], [ -147.882274, 63.832254 ], [ -148.303147, 63.946222 ] ] ], "type": "Polygon" }, "id": "840c749ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.691168, 18.760742 ], [ -67.866898, 18.669089 ], [ -67.839576, 18.476669 ], [ -67.636362, 18.376209 ], [ -67.460955, 18.468329 ], [ -67.488438, 18.660441 ], [ -67.691168, 18.760742 ] ] ], "type": "Polygon" }, "id": "844cc47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.289955, 55.908839 ], [ -165.590327, 55.754884 ], [ -165.508071, 55.553329 ], [ -165.129975, 55.505224 ], [ -164.830362, 55.657461 ], [ -164.908065, 55.859511 ], [ -165.289955, 55.908839 ] ] ], "type": "Polygon" }, "id": "840cd31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.384071, 19.501853 ], [ -105.164956, 19.654247 ], [ -105.19493, 19.908388 ], [ -105.444951, 20.010107 ], [ -105.664429, 19.85724 ], [ -105.633525, 19.603129 ], [ -105.384071, 19.501853 ] ] ], "type": "Polygon" }, "id": "8449a99ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -77.050113, 19.633044 ], [ -76.857011, 19.735753 ], [ -76.8328, 19.958448 ], [ -77.002244, 20.079216 ], [ -77.1963, 19.976629 ], [ -77.219955, 19.753151 ], [ -77.050113, 19.633044 ] ] ], "type": "Polygon" }, "id": "844590dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.137291, 22.671988 ], [ -110.919728, 22.832776 ], [ -110.962021, 23.08729 ], [ -111.222783, 23.180784 ], [ -111.440457, 23.019509 ], [ -111.397261, 22.765229 ], [ -111.137291, 22.671988 ] ] ], "type": "Polygon" }, "id": "84482c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -97.796686, 17.898258 ], [ -97.577651, 18.039591 ], [ -97.591937, 18.289686 ], [ -97.826173, 18.398696 ], [ -98.04585, 18.256994 ], [ -98.030649, 18.006652 ], [ -97.796686, 17.898258 ] ] ], "type": "Polygon" }, "id": "8449b27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -132.682627, 55.438476 ], [ -132.823947, 55.250228 ], [ -132.607246, 55.062067 ], [ -132.249855, 55.060647 ], [ -132.10531, 55.248219 ], [ -132.321355, 55.437892 ], [ -132.682627, 55.438476 ] ] ], "type": "Polygon" }, "id": "8412b05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.870064, 57.238275 ], [ -160.204573, 57.097715 ], [ -160.158218, 56.891304 ], [ -159.782474, 56.825284 ], [ -159.449724, 56.9642 ], [ -159.490949, 57.170769 ], [ -159.870064, 57.238275 ] ] ], "type": "Polygon" }, "id": "840cc03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.873482, 59.036068 ], [ -152.254967, 58.918094 ], [ -152.266943, 58.708394 ], [ -151.903125, 58.617027 ], [ -151.524963, 58.733592 ], [ -151.507303, 58.942921 ], [ -151.873482, 59.036068 ] ] ], "type": "Polygon" }, "id": "840c5edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.957133, 59.39833 ], [ -150.348514, 59.286224 ], [ -150.375257, 59.076555 ], [ -150.016368, 58.979479 ], [ -149.628676, 59.090255 ], [ -149.596197, 59.299425 ], [ -149.957133, 59.39833 ] ] ], "type": "Polygon" }, "id": "840c5cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.067593, 50.951649 ], [ -172.874948, 51.142578 ], [ -173.054008, 51.354013 ], [ -173.427817, 51.374251 ], [ -173.62004, 51.182658 ], [ -173.438891, 50.971491 ], [ -173.067593, 50.951649 ] ] ], "type": "Polygon" }, "id": "8422ec5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.682164, 32.293168 ], [ -118.462907, 32.464186 ], [ -118.523657, 32.707528 ], [ -118.804528, 32.779438 ], [ -119.023503, 32.608056 ], [ -118.961893, 32.36513 ], [ -118.682164, 32.293168 ] ] ], "type": "Polygon" }, "id": "84484b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -58.853297, 60.692662 ], [ -59.367634, 60.694534 ], [ -59.625941, 60.473977 ], [ -59.372863, 60.253213 ], [ -58.865539, 60.251676 ], [ -58.604348, 60.47057 ], [ -58.853297, 60.692662 ] ] ], "type": "Polygon" }, "id": "840f443ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.539185, 68.537893 ], [ -137.149372, 68.470511 ], [ -137.331131, 68.24995 ], [ -136.912521, 68.098495 ], [ -136.313261, 68.165122 ], [ -136.121807, 68.383947 ], [ -136.539185, 68.537893 ] ] ], "type": "Polygon" }, "id": "840d639ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.477112, 51.195826 ], [ -166.272165, 51.370779 ], [ -166.419965, 51.58617 ], [ -166.775139, 51.626561 ], [ -166.980287, 51.450983 ], [ -166.83007, 51.235641 ], [ -166.477112, 51.195826 ] ] ], "type": "Polygon" }, "id": "8422f01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.134177, 40.483055 ], [ -111.882101, 40.636356 ], [ -111.93366, 40.870058 ], [ -112.238505, 40.950275 ], [ -112.490669, 40.796664 ], [ -112.437904, 40.563149 ], [ -112.134177, 40.483055 ] ] ], "type": "Polygon" }, "id": "8426961ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.692453, 37.207913 ], [ -116.458086, 37.373263 ], [ -116.517655, 37.610538 ], [ -116.8126, 37.682141 ], [ -117.046774, 37.516468 ], [ -116.9862, 37.279517 ], [ -116.692453, 37.207913 ] ] ], "type": "Polygon" }, "id": "8429815ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.270402, 59.06994 ], [ -138.385455, 58.871632 ], [ -138.120706, 58.695864 ], [ -137.740708, 58.716877 ], [ -137.621257, 58.914791 ], [ -137.886175, 59.092093 ], [ -138.270402, 59.06994 ] ] ], "type": "Polygon" }, "id": "8413929ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.834868, 20.307801 ], [ -155.997101, 20.103484 ], [ -155.890463, 19.871543 ], [ -155.621814, 19.843722 ], [ -155.45927, 20.047962 ], [ -155.565682, 20.2801 ], [ -155.834868, 20.307801 ] ] ], "type": "Polygon" }, "id": "845d101ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.702148, 20.514268 ], [ -106.48253, 20.668696 ], [ -106.515401, 20.923495 ], [ -106.768823, 21.023791 ], [ -106.988751, 20.868887 ], [ -106.954948, 20.614164 ], [ -106.702148, 20.514268 ] ] ], "type": "Polygon" }, "id": "844834bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -99.984671, 19.627119 ], [ -99.762679, 19.77175 ], [ -99.781655, 20.024651 ], [ -100.023569, 20.133096 ], [ -100.246142, 19.988078 ], [ -100.226219, 19.735003 ], [ -99.984671, 19.627119 ] ] ], "type": "Polygon" }, "id": "8449829ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.751636, 62.1436 ], [ -164.134482, 61.984893 ], [ -164.044658, 61.763965 ], [ -163.579151, 61.701277 ], [ -163.197882, 61.857964 ], [ -163.280509, 62.079345 ], [ -163.751636, 62.1436 ] ] ], "type": "Polygon" }, "id": "840c1e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.194193, 27.124214 ], [ -114.976327, 27.291081 ], [ -115.028096, 27.542408 ], [ -115.298616, 27.626519 ], [ -115.516395, 27.459211 ], [ -115.463745, 27.208236 ], [ -115.194193, 27.124214 ] ] ], "type": "Polygon" }, "id": "8448713ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.519537, 39.452875 ], [ -108.263908, 39.599911 ], [ -108.306711, 39.837855 ], [ -108.606406, 39.928676 ], [ -108.86235, 39.781345 ], [ -108.818288, 39.54349 ], [ -108.519537, 39.452875 ] ] ], "type": "Polygon" }, "id": "8426827ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.310402, 18.75234 ], [ -101.090216, 18.898929 ], [ -101.111773, 19.15163 ], [ -101.354451, 19.257867 ], [ -101.57516, 19.110857 ], [ -101.552668, 18.858034 ], [ -101.310402, 18.75234 ] ] ], "type": "Polygon" }, "id": "8449843ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.701219, 25.99288 ], [ -109.475637, 26.152111 ], [ -109.516152, 26.407075 ], [ -109.783228, 26.502641 ], [ -110.009, 26.342978 ], [ -109.967508, 26.088183 ], [ -109.701219, 25.99288 ] ] ], "type": "Polygon" }, "id": "84480ebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.101424, 57.861514 ], [ -149.473217, 57.753518 ], [ -149.504801, 57.549534 ], [ -149.169684, 57.454054 ], [ -148.801292, 57.560819 ], [ -148.764629, 57.764286 ], [ -149.101424, 57.861514 ] ] ], "type": "Polygon" }, "id": "840c59dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.526401, 17.679624 ], [ -100.307829, 17.824947 ], [ -100.327624, 18.07627 ], [ -100.566911, 18.182419 ], [ -100.786028, 18.036674 ], [ -100.765313, 17.785205 ], [ -100.526401, 17.679624 ] ] ], "type": "Polygon" }, "id": "8449b1bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.109899, 57.070077 ], [ -154.459772, 56.94719 ], [ -154.455238, 56.742895 ], [ -154.105847, 56.661679 ], [ -153.758569, 56.783139 ], [ -153.758088, 56.987232 ], [ -154.109899, 57.070077 ] ] ], "type": "Polygon" }, "id": "840ce97ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.105045, 63.944671 ], [ -150.572506, 63.828901 ], [ -150.602384, 63.605602 ], [ -150.173017, 63.498645 ], [ -149.710788, 63.612876 ], [ -149.672715, 63.835588 ], [ -150.105045, 63.944671 ] ] ], "type": "Polygon" }, "id": "840c293ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.736097, 18.791131 ], [ -63.566061, 18.940438 ], [ -63.596125, 19.134486 ], [ -63.795949, 19.178991 ], [ -63.965415, 19.029979 ], [ -63.935627, 18.836169 ], [ -63.736097, 18.791131 ] ] ], "type": "Polygon" }, "id": "844cedbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -99.158179, 17.794007 ], [ -98.939248, 17.937373 ], [ -98.956285, 18.188158 ], [ -99.19317, 18.295775 ], [ -99.412695, 18.152013 ], [ -99.39474, 17.901032 ], [ -99.158179, 17.794007 ] ] ], "type": "Polygon" }, "id": "8449b39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.980918, 50.482719 ], [ -171.787597, 50.672318 ], [ -171.960176, 50.885359 ], [ -172.328209, 50.908573 ], [ -172.52122, 50.71831 ], [ -172.346521, 50.505499 ], [ -171.980918, 50.482719 ] ] ], "type": "Polygon" }, "id": "8422e11ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.65118, 67.120452 ], [ -171.076305, 66.936111 ], [ -170.892005, 66.707433 ], [ -170.2924, 66.661952 ], [ -169.866955, 66.843778 ], [ -170.041328, 67.073583 ], [ -170.65118, 67.120452 ] ] ], "type": "Polygon" }, "id": "840d8c1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.581351, 69.399317 ], [ -146.19797, 69.298228 ], [ -146.286879, 69.065191 ], [ -145.77203, 68.934332 ], [ -145.165397, 69.033869 ], [ -145.063709, 69.265795 ], [ -145.581351, 69.399317 ] ] ], "type": "Polygon" }, "id": "840d72bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.514235, 40.867066 ], [ -114.266187, 41.024602 ], [ -114.323233, 41.255648 ], [ -114.629482, 41.328914 ], [ -114.877463, 41.171068 ], [ -114.819268, 40.940268 ], [ -114.514235, 40.867066 ] ] ], "type": "Polygon" }, "id": "84299b7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.683761, 67.056781 ], [ -136.252367, 66.992236 ], [ -136.430177, 66.776439 ], [ -136.047672, 66.626865 ], [ -135.488629, 66.690771 ], [ -135.302629, 66.904882 ], [ -135.683761, 67.056781 ] ] ], "type": "Polygon" }, "id": "840d6e3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.084795, 54.379507 ], [ -122.293865, 54.200841 ], [ -122.127785, 53.988192 ], [ -121.754737, 53.952751 ], [ -121.543531, 54.130265 ], [ -121.707478, 54.344373 ], [ -122.084795, 54.379507 ] ] ], "type": "Polygon" }, "id": "8412f69ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.276716, 59.19796 ], [ -155.650832, 59.068981 ], [ -155.636726, 58.857192 ], [ -155.254373, 58.774521 ], [ -154.883087, 58.901932 ], [ -154.891324, 59.113569 ], [ -155.276716, 59.19796 ] ] ], "type": "Polygon" }, "id": "840cecdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.663649, 64.933243 ], [ -147.161088, 64.82905 ], [ -147.224403, 64.605649 ], [ -146.798881, 64.487291 ], [ -146.307834, 64.590109 ], [ -146.235957, 64.812645 ], [ -146.663649, 64.933243 ] ] ], "type": "Polygon" }, "id": "840d585ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.02695, 56.165547 ], [ -135.154661, 55.974884 ], [ -134.92454, 55.792274 ], [ -134.56701, 55.798827 ], [ -134.435793, 55.988931 ], [ -134.665585, 56.173047 ], [ -135.02695, 56.165547 ] ] ], "type": "Polygon" }, "id": "841d219ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.964259, 21.079028 ], [ -157.12547, 20.874531 ], [ -157.017726, 20.644585 ], [ -156.748961, 20.618925 ], [ -156.587394, 20.82337 ], [ -156.694945, 21.053526 ], [ -156.964259, 21.079028 ] ] ], "type": "Polygon" }, "id": "845d169ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.715409, 22.454927 ], [ -106.492456, 22.609728 ], [ -106.525849, 22.865379 ], [ -106.783157, 22.966161 ], [ -107.006428, 22.81091 ], [ -106.972074, 22.555329 ], [ -106.715409, 22.454927 ] ] ], "type": "Polygon" }, "id": "8448315ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.824665, 18.648126 ], [ -154.98704, 18.443516 ], [ -154.881886, 18.209086 ], [ -154.61461, 18.17907 ], [ -154.451966, 18.383568 ], [ -154.556866, 18.618193 ], [ -154.824665, 18.648126 ] ] ], "type": "Polygon" }, "id": "845d1e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.657362, 29.203355 ], [ -116.438961, 29.372171 ], [ -116.494409, 29.620845 ], [ -116.769135, 29.700321 ], [ -116.987371, 29.531093 ], [ -116.93105, 29.282803 ], [ -116.657362, 29.203355 ] ] ], "type": "Polygon" }, "id": "8448415ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.076637, 53.587839 ], [ -159.855628, 53.740739 ], [ -159.976195, 53.953991 ], [ -160.320547, 54.014494 ], [ -160.542362, 53.861076 ], [ -160.419025, 53.647676 ], [ -160.076637, 53.587839 ] ] ], "type": "Polygon" }, "id": "8422997ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.106075, 52.474774 ], [ -163.893367, 52.640751 ], [ -164.032383, 52.855168 ], [ -164.386715, 52.903632 ], [ -164.599853, 52.737064 ], [ -164.458238, 52.522627 ], [ -164.106075, 52.474774 ] ] ], "type": "Polygon" }, "id": "8422891ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -77.564544, 40.787714 ], [ -77.873057, 40.726033 ], [ -77.950853, 40.504804 ], [ -77.722501, 40.345885 ], [ -77.416273, 40.406871 ], [ -77.336123, 40.627467 ], [ -77.564544, 40.787714 ] ] ], "type": "Polygon" }, "id": "842aa3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.522016, 23.282198 ], [ -109.301007, 23.441041 ], [ -109.340306, 23.69628 ], [ -109.601555, 23.792504 ], [ -109.822754, 23.633194 ], [ -109.782517, 23.378128 ], [ -109.522016, 23.282198 ] ] ], "type": "Polygon" }, "id": "8448059ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.011122, 19.628449 ], [ -64.844171, 19.776616 ], [ -64.873213, 19.965953 ], [ -65.068932, 20.006892 ], [ -65.235301, 19.859026 ], [ -65.206534, 19.669922 ], [ -65.011122, 19.628449 ] ] ], "type": "Polygon" }, "id": "844d5b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -78.584585, 19.018697 ], [ -78.388756, 19.125124 ], [ -78.367061, 19.350421 ], [ -78.541785, 19.47005 ], [ -78.738566, 19.363701 ], [ -78.75967, 19.137644 ], [ -78.584585, 19.018697 ] ] ], "type": "Polygon" }, "id": "8445b33ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -73.11215, 20.254022 ], [ -73.297443, 20.158708 ], [ -73.272929, 19.967944 ], [ -73.062907, 19.872706 ], [ -72.877808, 19.968437 ], [ -72.902535, 20.158987 ], [ -73.11215, 20.254022 ] ] ], "type": "Polygon" }, "id": "844c8adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -107.147106, 36.266931 ], [ -106.897246, 36.415034 ], [ -106.935681, 36.659892 ], [ -107.225184, 36.756597 ], [ -107.475421, 36.608194 ], [ -107.43578, 36.363388 ], [ -107.147106, 36.266931 ] ] ], "type": "Polygon" }, "id": "8448d97ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.318897, 62.428472 ], [ -164.70321, 62.267712 ], [ -164.60736, 62.046179 ], [ -164.134482, 61.984893 ], [ -163.751636, 62.1436 ], [ -163.840162, 62.365632 ], [ -164.318897, 62.428472 ] ] ], "type": "Polygon" }, "id": "840c1e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -140.855613, 56.081376 ], [ -140.941834, 55.891353 ], [ -140.694041, 55.724992 ], [ -140.359515, 55.747268 ], [ -140.269615, 55.937032 ], [ -140.517904, 56.104785 ], [ -140.855613, 56.081376 ] ] ], "type": "Polygon" }, "id": "841d067ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.135838, 49.98672 ], [ -128.909854, 50.154512 ], [ -129.085458, 50.345781 ], [ -129.406347, 50.363537 ], [ -129.548514, 50.190621 ], [ -129.454271, 50.004878 ], [ -129.135838, 49.98672 ] ] ], "type": "Polygon" }, "id": "841d659ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.219055, 37.113224 ], [ -116.9862, 37.279517 ], [ -117.046774, 37.516468 ], [ -117.341195, 37.58679 ], [ -117.573827, 37.420176 ], [ -117.512267, 37.183562 ], [ -117.219055, 37.113224 ] ] ], "type": "Polygon" }, "id": "8429811ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.317112, 60.99588 ], [ -149.734494, 60.884637 ], [ -149.767853, 60.670396 ], [ -149.390273, 60.567961 ], [ -148.977151, 60.677844 ], [ -148.937365, 60.89151 ], [ -149.317112, 60.99588 ] ] ], "type": "Polygon" }, "id": "840c465ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.515193, 53.679366 ], [ -159.293406, 53.830575 ], [ -159.411192, 54.043661 ], [ -159.753553, 54.105707 ], [ -159.976195, 53.953991 ], [ -159.855628, 53.740739 ], [ -159.515193, 53.679366 ] ] ], "type": "Polygon" }, "id": "84229bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.017234, 52.84378 ], [ -168.810228, 53.020826 ], [ -168.975314, 53.23252 ], [ -169.34988, 53.267014 ], [ -169.556851, 53.089323 ], [ -169.389305, 52.877785 ], [ -169.017234, 52.84378 ] ] ], "type": "Polygon" }, "id": "8422c63ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.24676, 55.241753 ], [ -134.376316, 55.053684 ], [ -134.155326, 54.86986 ], [ -133.805179, 54.87262 ], [ -133.67235, 55.060093 ], [ -133.892918, 55.245408 ], [ -134.24676, 55.241753 ] ] ], "type": "Polygon" }, "id": "841d2c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -75.757071, 19.900284 ], [ -75.566868, 20.000099 ], [ -75.540654, 20.220235 ], [ -75.705163, 20.341354 ], [ -75.896315, 20.241693 ], [ -75.922006, 20.020759 ], [ -75.757071, 19.900284 ] ] ], "type": "Polygon" }, "id": "844c9adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.77314, 19.332593 ], [ -67.948672, 19.24238 ], [ -67.921445, 19.051945 ], [ -67.718523, 18.95202 ], [ -67.543311, 19.042693 ], [ -67.570701, 19.23283 ], [ -67.77314, 19.332593 ] ] ], "type": "Polygon" }, "id": "844cc4dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.56925, 53.177224 ], [ -173.370102, 53.363762 ], [ -173.55866, 53.571117 ], [ -173.948607, 53.591626 ], [ -174.147246, 53.404424 ], [ -173.956464, 53.197378 ], [ -173.56925, 53.177224 ] ] ], "type": "Polygon" }, "id": "8422cc9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.129564, 58.149665 ], [ -150.503037, 58.03812 ], [ -150.527467, 57.832432 ], [ -150.183679, 57.738742 ], [ -149.813552, 57.848996 ], [ -149.783877, 58.054222 ], [ -150.129564, 58.149665 ] ] ], "type": "Polygon" }, "id": "840c581ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -123.5129, 40.557496 ], [ -123.290552, 40.730186 ], [ -123.365312, 40.952034 ], [ -123.663242, 41.000763 ], [ -123.884983, 40.827826 ], [ -123.809408, 40.606408 ], [ -123.5129, 40.557496 ] ] ], "type": "Polygon" }, "id": "8428021ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.785643, 47.333097 ], [ -67.150373, 47.301074 ], [ -67.295808, 47.076372 ], [ -67.078803, 46.884852 ], [ -66.717559, 46.916702 ], [ -66.569856, 47.140244 ], [ -66.785643, 47.333097 ] ] ], "type": "Polygon" }, "id": "842b157ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.067587, 26.529777 ], [ -113.848485, 26.695137 ], [ -113.897859, 26.947582 ], [ -114.167238, 27.03435 ], [ -114.38631, 26.868543 ], [ -114.336037, 26.616417 ], [ -114.067587, 26.529777 ] ] ], "type": "Polygon" }, "id": "8448703ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.475282, 52.275648 ], [ -161.260717, 52.435402 ], [ -161.385632, 52.65042 ], [ -161.727745, 52.705801 ], [ -161.942964, 52.545499 ], [ -161.815424, 52.330366 ], [ -161.475282, 52.275648 ] ] ], "type": "Polygon" }, "id": "84228a9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.299143, 51.846269 ], [ -165.090267, 52.01676 ], [ -165.233799, 52.231705 ], [ -165.588726, 52.276147 ], [ -165.797916, 52.105047 ], [ -165.651875, 51.890117 ], [ -165.299143, 51.846269 ] ] ], "type": "Polygon" }, "id": "8422f21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -60.100216, 21.889714 ], [ -59.923851, 22.03488 ], [ -59.956429, 22.223657 ], [ -60.165103, 22.267122 ], [ -60.340957, 22.122257 ], [ -60.308647, 21.933628 ], [ -60.100216, 21.889714 ] ] ], "type": "Polygon" }, "id": "844d449ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.335105, 21.873283 ], [ -108.114986, 22.030236 ], [ -108.151496, 22.285445 ], [ -108.40906, 22.383569 ], [ -108.629421, 22.226141 ], [ -108.591977, 21.971066 ], [ -108.335105, 21.873283 ] ] ], "type": "Polygon" }, "id": "8448221ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.901112, 33.953394 ], [ -119.681866, 34.125495 ], [ -119.745768, 34.365106 ], [ -120.029767, 34.432185 ], [ -120.248659, 34.259745 ], [ -120.183911, 34.020566 ], [ -119.901112, 33.953394 ] ] ], "type": "Polygon" }, "id": "8429123ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.647687, 19.734864 ], [ -64.479943, 19.88298 ], [ -64.50926, 20.072547 ], [ -64.706047, 20.113769 ], [ -64.873213, 19.965953 ], [ -64.844171, 19.776616 ], [ -64.647687, 19.734864 ] ] ], "type": "Polygon" }, "id": "844d5bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.33314, 30.378394 ], [ -114.107468, 30.543816 ], [ -114.15896, 30.793354 ], [ -114.437081, 30.877166 ], [ -114.662708, 30.711348 ], [ -114.610264, 30.462115 ], [ -114.33314, 30.378394 ] ] ], "type": "Polygon" }, "id": "84485c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.084444, 19.580889 ], [ -62.913245, 19.729379 ], [ -62.943761, 19.921851 ], [ -63.145201, 19.965617 ], [ -63.31584, 19.817425 ], [ -63.285599, 19.62517 ], [ -63.084444, 19.580889 ] ] ], "type": "Polygon" }, "id": "844d4adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.364782, 30.871131 ], [ -157.532799, 30.678724 ], [ -157.419841, 30.467675 ], [ -157.13906, 30.448918 ], [ -156.970638, 30.641362 ], [ -157.083398, 30.852526 ], [ -157.364782, 30.871131 ] ] ], "type": "Polygon" }, "id": "8436b01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.069507, 18.737722 ], [ -80.868549, 18.849251 ], [ -80.850968, 19.079095 ], [ -81.034995, 19.198129 ], [ -81.236904, 19.086619 ], [ -81.253834, 18.856056 ], [ -81.069507, 18.737722 ] ] ], "type": "Polygon" }, "id": "8445a31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.378068, 66.839561 ], [ -157.877721, 66.697276 ], [ -157.835095, 66.464089 ], [ -157.30368, 66.373199 ], [ -156.80859, 66.513374 ], [ -156.840334, 66.746528 ], [ -157.378068, 66.839561 ] ] ], "type": "Polygon" }, "id": "840c22bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.97814, 48.397115 ], [ -71.350762, 48.351519 ], [ -71.478223, 48.119255 ], [ -71.235878, 47.933598 ], [ -70.866808, 47.978779 ], [ -70.736555, 48.210029 ], [ -70.97814, 48.397115 ] ] ], "type": "Polygon" }, "id": "842ba57ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.903429, 54.120823 ], [ -132.044559, 53.936346 ], [ -131.839012, 53.747578 ], [ -131.493023, 53.741808 ], [ -131.348958, 53.925577 ], [ -131.553793, 54.115829 ], [ -131.903429, 54.120823 ] ] ], "type": "Polygon" }, "id": "841294bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.437598, 55.204396 ], [ -158.754047, 55.071085 ], [ -158.720699, 54.871855 ], [ -158.375366, 54.80585 ], [ -158.060646, 54.937654 ], [ -158.089523, 55.136959 ], [ -158.437598, 55.204396 ] ] ], "type": "Polygon" }, "id": "840ccabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -80.455786, 41.632193 ], [ -80.76536, 41.562089 ], [ -80.830575, 41.336936 ], [ -80.588784, 41.182383 ], [ -80.281418, 41.251657 ], [ -80.213644, 41.476308 ], [ -80.455786, 41.632193 ] ] ], "type": "Polygon" }, "id": "842ab11ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -98.956285, 18.188158 ], [ -98.736681, 18.331242 ], [ -98.753357, 18.582328 ], [ -98.990561, 18.690538 ], [ -99.210771, 18.547068 ], [ -99.19317, 18.295775 ], [ -98.956285, 18.188158 ] ] ], "type": "Polygon" }, "id": "8449b31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.415659, 38.926764 ], [ -117.179236, 39.091752 ], [ -117.241262, 39.324709 ], [ -117.540731, 39.392353 ], [ -117.776911, 39.227057 ], [ -117.71387, 38.994427 ], [ -117.415659, 38.926764 ] ] ], "type": "Polygon" }, "id": "84298a9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.668251, 57.836453 ], [ -157.020322, 57.70475 ], [ -156.996744, 57.496943 ], [ -156.626436, 57.420877 ], [ -156.276719, 57.551018 ], [ -156.294952, 57.758776 ], [ -156.668251, 57.836453 ] ] ], "type": "Polygon" }, "id": "840cea9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.673776, 18.400185 ], [ -81.472126, 18.513187 ], [ -81.455617, 18.743792 ], [ -81.641419, 18.862101 ], [ -81.844015, 18.749098 ], [ -81.859861, 18.517787 ], [ -81.673776, 18.400185 ] ] ], "type": "Polygon" }, "id": "8445a15ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.335916, 67.72138 ], [ -165.809806, 67.552587 ], [ -165.678081, 67.319118 ], [ -165.083702, 67.25373 ], [ -164.611698, 67.420041 ], [ -164.732106, 67.654201 ], [ -165.335916, 67.72138 ] ] ], "type": "Polygon" }, "id": "840c369ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -144.173998, 64.197788 ], [ -144.661737, 64.102626 ], [ -144.745571, 63.883516 ], [ -144.349451, 63.760566 ], [ -143.868132, 63.85455 ], [ -143.776559, 64.072649 ], [ -144.173998, 64.197788 ] ] ], "type": "Polygon" }, "id": "840d591ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.294607, 65.809935 ], [ -162.747178, 65.652175 ], [ -162.657119, 65.421682 ], [ -162.124236, 65.348546 ], [ -161.67428, 65.504076 ], [ -161.754546, 65.734954 ], [ -162.294607, 65.809935 ] ] ], "type": "Polygon" }, "id": "840c33bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -90.03301, 27.540057 ], [ -89.801214, 27.660496 ], [ -89.799898, 27.907103 ], [ -90.03135, 28.033797 ], [ -90.26414, 27.913302 ], [ -90.264483, 27.66617 ], [ -90.03301, 27.540057 ] ] ], "type": "Polygon" }, "id": "8444709ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.246763, 53.562584 ], [ -162.027713, 53.721136 ], [ -162.159737, 53.934343 ], [ -162.513562, 53.989074 ], [ -162.73323, 53.829965 ], [ -162.598464, 53.616684 ], [ -162.246763, 53.562584 ] ] ], "type": "Polygon" }, "id": "840cdb5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.941065, 66.024293 ], [ -164.388578, 65.861143 ], [ -164.280892, 65.630654 ], [ -163.735494, 65.562768 ], [ -163.290085, 65.723621 ], [ -163.387914, 65.954638 ], [ -163.941065, 66.024293 ] ] ], "type": "Polygon" }, "id": "840c33dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.898668, 53.081185 ], [ -162.682242, 53.242607 ], [ -162.816499, 53.456414 ], [ -163.169875, 53.508858 ], [ -163.386851, 53.346867 ], [ -163.249911, 53.133004 ], [ -162.898668, 53.081185 ] ] ], "type": "Polygon" }, "id": "84228b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.482759, 23.153677 ], [ -110.26336, 23.31377 ], [ -110.304527, 23.568645 ], [ -110.566015, 23.66322 ], [ -110.785558, 23.50265 ], [ -110.743471, 23.247983 ], [ -110.482759, 23.153677 ] ] ], "type": "Polygon" }, "id": "84482e1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.001004, 18.996922 ], [ -156.162109, 18.791776 ], [ -156.055953, 18.558659 ], [ -155.788908, 18.53047 ], [ -155.627489, 18.735522 ], [ -155.733426, 18.968856 ], [ -156.001004, 18.996922 ] ] ], "type": "Polygon" }, "id": "845d135ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.32782, 63.281933 ], [ -149.784881, 63.169201 ], [ -149.820938, 62.948246 ], [ -149.407656, 62.840637 ], [ -148.955696, 62.951908 ], [ -148.911939, 63.172235 ], [ -149.32782, 63.281933 ] ] ], "type": "Polygon" }, "id": "840c747ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.896241, 52.083957 ], [ -171.697378, 52.269543 ], [ -171.874341, 52.480283 ], [ -172.252427, 52.505195 ], [ -172.45097, 52.318947 ], [ -172.271763, 52.10845 ], [ -171.896241, 52.083957 ] ] ], "type": "Polygon" }, "id": "8422c5bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.468894, 51.92118 ], [ -172.271763, 52.10845 ], [ -172.45097, 52.318947 ], [ -172.82952, 52.341915 ], [ -173.026275, 52.153982 ], [ -172.844871, 51.943745 ], [ -172.468894, 51.92118 ] ] ], "type": "Polygon" }, "id": "8422ee7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.397548, 56.361048 ], [ -139.494837, 56.169921 ], [ -139.249045, 55.999202 ], [ -138.905639, 56.018185 ], [ -138.804635, 56.208979 ], [ -139.050731, 56.381131 ], [ -139.397548, 56.361048 ] ] ], "type": "Polygon" }, "id": "841d045ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.296494, 19.365348 ], [ -69.475271, 19.273044 ], [ -69.448734, 19.08147 ], [ -69.24324, 18.982476 ], [ -69.06475, 19.075231 ], [ -69.091465, 19.266528 ], [ -69.296494, 19.365348 ] ] ], "type": "Polygon" }, "id": "844cf31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.768861, 59.980931 ], [ -144.181127, 59.88886 ], [ -144.255593, 59.682704 ], [ -143.923304, 59.569493 ], [ -143.515664, 59.660553 ], [ -143.435717, 59.865826 ], [ -143.768861, 59.980931 ] ] ], "type": "Polygon" }, "id": "840c6a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -65.869076, 19.076423 ], [ -65.703957, 19.224963 ], [ -65.73236, 19.41469 ], [ -65.925607, 19.455627 ], [ -66.090136, 19.307385 ], [ -66.062008, 19.117909 ], [ -65.869076, 19.076423 ] ] ], "type": "Polygon" }, "id": "844ce17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.527467, 57.832432 ], [ -150.895805, 57.719924 ], [ -150.917126, 57.515034 ], [ -150.575265, 57.423074 ], [ -150.210148, 57.534283 ], [ -150.183679, 57.738742 ], [ -150.527467, 57.832432 ] ] ], "type": "Polygon" }, "id": "840c587ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.325714, 30.537812 ], [ -113.097724, 30.701658 ], [ -113.147271, 30.951755 ], [ -113.425791, 31.037737 ], [ -113.65379, 30.873498 ], [ -113.603264, 30.623672 ], [ -113.325714, 30.537812 ] ] ], "type": "Polygon" }, "id": "84485edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.300801, 20.102693 ], [ -158.459343, 19.896909 ], [ -158.351279, 19.667206 ], [ -158.084818, 19.643038 ], [ -157.925876, 19.848774 ], [ -158.03379, 20.078726 ], [ -158.300801, 20.102693 ] ] ], "type": "Polygon" }, "id": "845da5dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.955696, 62.951908 ], [ -149.407656, 62.840637 ], [ -149.446523, 62.620877 ], [ -149.04092, 62.51302 ], [ -148.593993, 62.622867 ], [ -148.547659, 62.841981 ], [ -148.955696, 62.951908 ] ] ], "type": "Polygon" }, "id": "840c709ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.530764, 43.769493 ], [ -127.31499, 43.943987 ], [ -127.399277, 44.151532 ], [ -127.700031, 44.184143 ], [ -127.914939, 44.009473 ], [ -127.829965, 43.802368 ], [ -127.530764, 43.769493 ] ] ], "type": "Polygon" }, "id": "8428e51ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.095066, 56.034867 ], [ -162.408536, 55.889678 ], [ -162.348481, 55.687256 ], [ -161.979634, 55.629717 ], [ -161.667443, 55.773255 ], [ -161.722806, 55.975974 ], [ -162.095066, 56.034867 ] ] ], "type": "Polygon" }, "id": "840cdc1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.209803, 33.334481 ], [ -118.989907, 33.505889 ], [ -119.052194, 33.747218 ], [ -119.33524, 33.816718 ], [ -119.554821, 33.644961 ], [ -119.491675, 33.404053 ], [ -119.209803, 33.334481 ] ] ], "type": "Polygon" }, "id": "842912dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.054651, 63.601798 ], [ -147.52382, 63.496758 ], [ -147.580486, 63.276641 ], [ -147.175708, 63.162345 ], [ -146.712187, 63.266045 ], [ -146.647827, 63.485367 ], [ -147.054651, 63.601798 ] ] ], "type": "Polygon" }, "id": "840d5b7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.652195, 48.554208 ], [ -129.432411, 48.724904 ], [ -129.525084, 48.914827 ], [ -129.838205, 48.933664 ], [ -130.056908, 48.762823 ], [ -129.963579, 48.573291 ], [ -129.652195, 48.554208 ] ] ], "type": "Polygon" }, "id": "8428c99ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.011693, 56.999899 ], [ -162.335948, 56.85341 ], [ -162.274431, 56.64775 ], [ -161.893655, 56.588273 ], [ -161.570781, 56.733067 ], [ -161.627286, 56.939022 ], [ -162.011693, 56.999899 ] ] ], "type": "Polygon" }, "id": "840cc21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.761161, 42.140227 ], [ -125.542808, 42.314305 ], [ -125.622728, 42.528937 ], [ -125.921749, 42.569049 ], [ -126.139354, 42.394762 ], [ -126.058691, 42.180573 ], [ -125.761161, 42.140227 ] ] ], "type": "Polygon" }, "id": "84280adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.405127, 55.595035 ], [ -135.527943, 55.405859 ], [ -135.30056, 55.2248 ], [ -134.9506, 55.231439 ], [ -134.824383, 55.420076 ], [ -135.051504, 55.602619 ], [ -135.405127, 55.595035 ] ] ], "type": "Polygon" }, "id": "841d213ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.855054, 65.932936 ], [ -146.377034, 65.831325 ], [ -146.450806, 65.606048 ], [ -146.011885, 65.483323 ], [ -145.497046, 65.583564 ], [ -145.414035, 65.807884 ], [ -145.855054, 65.932936 ] ] ], "type": "Polygon" }, "id": "840d5c5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.155326, 54.86986 ], [ -134.284057, 54.68282 ], [ -134.06586, 54.499135 ], [ -133.719332, 54.501013 ], [ -133.587406, 54.687453 ], [ -133.805179, 54.87262 ], [ -134.155326, 54.86986 ] ] ], "type": "Polygon" }, "id": "841d2cbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.77108, 55.33044 ], [ -153.103664, 55.213779 ], [ -153.108507, 55.01624 ], [ -152.785177, 54.93561 ], [ -152.45505, 55.050968 ], [ -152.445799, 55.248249 ], [ -152.77108, 55.33044 ] ] ], "type": "Polygon" }, "id": "841db39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.842358, 51.060637 ], [ -163.634664, 51.229334 ], [ -163.768892, 51.44563 ], [ -164.113299, 51.493275 ], [ -164.321425, 51.323986 ], [ -164.184721, 51.107646 ], [ -163.842358, 51.060637 ] ] ], "type": "Polygon" }, "id": "84228d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -94.58547, 67.084598 ], [ -95.137764, 66.952242 ], [ -95.126515, 66.699552 ], [ -94.573891, 66.578879 ], [ -94.026138, 66.709308 ], [ -94.026448, 66.962317 ], [ -94.58547, 67.084598 ] ] ], "type": "Polygon" }, "id": "840f957ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -170.687256, 53.183763 ], [ -170.482048, 53.363832 ], [ -170.656527, 53.573772 ], [ -171.038633, 53.60343 ], [ -171.243633, 53.422705 ], [ -171.066751, 53.212981 ], [ -170.687256, 53.183763 ] ] ], "type": "Polygon" }, "id": "8422c03ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -72.877808, 19.968437 ], [ -73.062907, 19.872706 ], [ -73.038239, 19.680988 ], [ -72.828259, 19.585221 ], [ -72.643359, 19.681374 ], [ -72.668239, 19.872871 ], [ -72.877808, 19.968437 ] ] ], "type": "Polygon" }, "id": "844c8a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.698644, 65.205976 ], [ -155.175113, 65.073738 ], [ -155.161935, 64.844977 ], [ -154.681674, 64.748687 ], [ -154.209896, 64.879062 ], [ -154.213687, 65.107571 ], [ -154.698644, 65.205976 ] ] ], "type": "Polygon" }, "id": "840c2e7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.724965, 43.553659 ], [ -125.503132, 43.726186 ], [ -125.584212, 43.937123 ], [ -125.887899, 43.97511 ], [ -126.108963, 43.802377 ], [ -126.027115, 43.591865 ], [ -125.724965, 43.553659 ] ] ], "type": "Polygon" }, "id": "8428e45ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -140.403109, 61.410047 ], [ -140.843745, 61.328803 ], [ -140.94849, 61.122046 ], [ -140.618349, 60.997649 ], [ -140.183234, 61.07805 ], [ -140.07278, 61.283684 ], [ -140.403109, 61.410047 ] ] ], "type": "Polygon" }, "id": "840c6c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.844015, 18.749098 ], [ -81.641419, 18.862101 ], [ -81.625151, 19.093376 ], [ -81.812148, 19.212354 ], [ -82.015693, 19.099353 ], [ -82.03129, 18.867372 ], [ -81.844015, 18.749098 ] ] ], "type": "Polygon" }, "id": "8445a17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.370054, 38.920414 ], [ -119.138872, 39.088579 ], [ -119.204776, 39.31946 ], [ -119.502815, 39.381807 ], [ -119.733638, 39.213345 ], [ -119.666787, 38.982835 ], [ -119.370054, 38.920414 ] ] ], "type": "Polygon" }, "id": "842989dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.015599, 51.833046 ], [ -159.801667, 51.990064 ], [ -159.918051, 52.205547 ], [ -160.250967, 52.264184 ], [ -160.46566, 52.106643 ], [ -160.346682, 51.89099 ], [ -160.015599, 51.833046 ] ] ], "type": "Polygon" }, "id": "84229d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.619075, 52.210948 ], [ -163.406837, 52.37634 ], [ -163.542686, 52.591221 ], [ -163.893367, 52.640751 ], [ -164.106075, 52.474774 ], [ -163.967641, 52.259854 ], [ -163.619075, 52.210948 ] ] ], "type": "Polygon" }, "id": "842289dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.556469, 57.600863 ], [ -155.908915, 57.472872 ], [ -155.893699, 57.266202 ], [ -155.531273, 57.18763 ], [ -155.181309, 57.314113 ], [ -155.191286, 57.520665 ], [ -155.556469, 57.600863 ] ] ], "type": "Polygon" }, "id": "840ce87ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.74939, 17.892736 ], [ -64.581342, 18.042742 ], [ -64.610674, 18.238034 ], [ -64.807778, 18.283055 ], [ -64.975244, 18.133339 ], [ -64.946188, 17.938312 ], [ -64.74939, 17.892736 ] ] ], "type": "Polygon" }, "id": "844ce83ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.441321, 50.727916 ], [ -129.584702, 50.553906 ], [ -129.406347, 50.363537 ], [ -129.085458, 50.345781 ], [ -128.939787, 50.518989 ], [ -129.117275, 50.710759 ], [ -129.441321, 50.727916 ] ] ], "type": "Polygon" }, "id": "84129a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.556012, 39.508177 ], [ -127.349852, 39.686399 ], [ -127.430468, 39.904542 ], [ -127.717877, 39.943961 ], [ -127.923245, 39.765542 ], [ -127.842002, 39.547901 ], [ -127.556012, 39.508177 ] ] ], "type": "Polygon" }, "id": "84282abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.283336, 63.172269 ], [ -143.752223, 63.080542 ], [ -143.840301, 62.865231 ], [ -143.466526, 62.742666 ], [ -143.003656, 62.833312 ], [ -142.908586, 63.047594 ], [ -143.283336, 63.172269 ] ] ], "type": "Polygon" }, "id": "840c647ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.198765, 68.03236 ], [ -147.769957, 67.92546 ], [ -147.836199, 67.694051 ], [ -147.342723, 67.570446 ], [ -146.779854, 67.675763 ], [ -146.702195, 67.906248 ], [ -147.198765, 68.03236 ] ] ], "type": "Polygon" }, "id": "840d543ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -96.608177, 70.439529 ], [ -97.230005, 70.300293 ], [ -97.19343, 70.051964 ], [ -96.549332, 69.942362 ], [ -95.932577, 70.079386 ], [ -95.954798, 70.328199 ], [ -96.608177, 70.439529 ] ] ], "type": "Polygon" }, "id": "840fb65ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -119.89625, 38.813765 ], [ -119.666787, 38.982835 ], [ -119.733638, 39.213345 ], [ -120.030883, 39.274402 ], [ -120.259957, 39.105039 ], [ -120.19218, 38.874913 ], [ -119.89625, 38.813765 ] ] ], "type": "Polygon" }, "id": "8429899ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.617855, 53.313385 ], [ -159.397681, 53.465774 ], [ -159.515193, 53.679366 ], [ -159.855628, 53.740739 ], [ -160.076637, 53.587839 ], [ -159.956382, 53.37408 ], [ -159.617855, 53.313385 ] ] ], "type": "Polygon" }, "id": "8422995ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -95.577121, 18.796315 ], [ -95.357167, 18.934021 ], [ -95.367031, 19.183414 ], [ -95.59776, 19.295434 ], [ -95.818435, 19.157417 ], [ -95.807659, 18.907694 ], [ -95.577121, 18.796315 ] ] ], "type": "Polygon" }, "id": "846d349ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.456723, 67.394292 ], [ -171.88119, 67.207406 ], [ -171.68603, 66.978926 ], [ -171.076305, 66.936111 ], [ -170.65118, 67.120452 ], [ -170.836322, 67.350137 ], [ -171.456723, 67.394292 ] ] ], "type": "Polygon" }, "id": "840d8cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.649987, 33.999722 ], [ -115.419986, 34.165649 ], [ -115.475775, 34.409526 ], [ -115.762549, 34.487158 ], [ -115.992427, 34.320876 ], [ -115.935659, 34.077319 ], [ -115.649987, 33.999722 ] ] ], "type": "Polygon" }, "id": "8429a2dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.450048, 41.877427 ], [ -112.195034, 42.029449 ], [ -112.248035, 42.259463 ], [ -112.557288, 42.337269 ], [ -112.812371, 42.18494 ], [ -112.758137, 41.955115 ], [ -112.450048, 41.877427 ] ] ], "type": "Polygon" }, "id": "8428b63ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.12279, 58.31195 ], [ -154.488409, 58.187585 ], [ -154.483458, 57.979121 ], [ -154.118365, 57.895227 ], [ -153.755577, 58.018113 ], [ -153.755052, 58.22636 ], [ -154.12279, 58.31195 ] ] ], "type": "Polygon" }, "id": "840ced5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.525084, 48.914827 ], [ -129.303777, 49.08482 ], [ -129.396667, 49.2738 ], [ -129.711542, 49.292401 ], [ -129.931765, 49.122258 ], [ -129.838205, 48.933664 ], [ -129.525084, 48.914827 ] ] ], "type": "Polygon" }, "id": "8428c91ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.097963, 34.455246 ], [ -120.881089, 34.628695 ], [ -120.94744, 34.866065 ], [ -121.231482, 34.929532 ], [ -121.447936, 34.755759 ], [ -121.380773, 34.518845 ], [ -121.097963, 34.455246 ] ] ], "type": "Polygon" }, "id": "8429133ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.060921, 44.812159 ], [ -113.801371, 44.96302 ], [ -113.859767, 45.183761 ], [ -114.178981, 45.253428 ], [ -114.438489, 45.102259 ], [ -114.378831, 44.881733 ], [ -114.060921, 44.812159 ] ] ], "type": "Polygon" }, "id": "8428825ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.485037, 64.889588 ], [ -160.929386, 64.738384 ], [ -160.86049, 64.509777 ], [ -160.356351, 64.432133 ], [ -159.914963, 64.581239 ], [ -159.974722, 64.810069 ], [ -160.485037, 64.889588 ] ] ], "type": "Polygon" }, "id": "840c063ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -131.422096, 64.68424 ], [ -131.627575, 64.47691 ], [ -131.337727, 64.281198 ], [ -130.843929, 64.291004 ], [ -130.632572, 64.497464 ], [ -130.920819, 64.694995 ], [ -131.422096, 64.68424 ] ] ], "type": "Polygon" }, "id": "841312dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.040668, 23.344302 ], [ -108.818898, 23.502495 ], [ -108.857251, 23.757888 ], [ -109.118323, 23.854935 ], [ -109.340306, 23.69628 ], [ -109.301007, 23.441041 ], [ -109.040668, 23.344302 ] ] ], "type": "Polygon" }, "id": "844805dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.465285, 52.969868 ], [ -163.249911, 53.133004 ], [ -163.386851, 53.346867 ], [ -163.741836, 53.397634 ], [ -163.957707, 53.233919 ], [ -163.818106, 53.020019 ], [ -163.465285, 52.969868 ] ] ], "type": "Polygon" }, "id": "84228bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.066705, 19.377084 ], [ -70.247037, 19.283721 ], [ -70.220868, 19.091608 ], [ -70.014179, 18.993123 ], [ -69.834116, 19.086932 ], [ -69.860471, 19.278779 ], [ -70.066705, 19.377084 ] ] ], "type": "Polygon" }, "id": "844cd49ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -143.022749, 59.955391 ], [ -143.435717, 59.865826 ], [ -143.515664, 59.660553 ], [ -143.188067, 59.545759 ], [ -142.779792, 59.634357 ], [ -142.694451, 59.838707 ], [ -143.022749, 59.955391 ] ] ], "type": "Polygon" }, "id": "840c6abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -98.854827, 20.093957 ], [ -98.63194, 20.236755 ], [ -98.64865, 20.489443 ], [ -98.889199, 20.599553 ], [ -99.112713, 20.456396 ], [ -99.095052, 20.20349 ], [ -98.854827, 20.093957 ] ] ], "type": "Polygon" }, "id": "8449919ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.938421, 43.422663 ], [ -129.732667, 43.600064 ], [ -129.82033, 43.804533 ], [ -130.114324, 43.831136 ], [ -130.319109, 43.6536 ], [ -130.230877, 43.449596 ], [ -129.938421, 43.422663 ] ] ], "type": "Polygon" }, "id": "8428501ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -99.613579, 17.757005 ], [ -99.39474, 17.901032 ], [ -99.412695, 18.152013 ], [ -99.65041, 18.259149 ], [ -99.869827, 18.114717 ], [ -99.850952, 17.863556 ], [ -99.613579, 17.757005 ] ] ], "type": "Polygon" }, "id": "8449b15ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -86.303004, 64.633504 ], [ -86.849329, 64.530357 ], [ -86.913924, 64.27579 ], [ -86.441321, 64.124651 ], [ -85.901063, 64.226286 ], [ -85.827371, 64.480555 ], [ -86.303004, 64.633504 ] ] ], "type": "Polygon" }, "id": "840f88dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.506012, 29.96281 ], [ -114.281487, 30.128586 ], [ -114.33314, 30.378394 ], [ -114.610264, 30.462115 ], [ -114.834734, 30.295937 ], [ -114.78214, 30.046442 ], [ -114.506012, 29.96281 ] ] ], "type": "Polygon" }, "id": "84485cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -128.857011, 49.423207 ], [ -128.63154, 49.591582 ], [ -128.723932, 49.779989 ], [ -129.042517, 49.799645 ], [ -129.266924, 49.631105 ], [ -129.173818, 49.443074 ], [ -128.857011, 49.423207 ] ] ], "type": "Polygon" }, "id": "8428cbbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.123741, 26.972419 ], [ -110.898546, 27.133687 ], [ -110.942279, 27.387686 ], [ -111.212177, 27.480203 ], [ -111.437493, 27.318506 ], [ -111.392793, 27.064722 ], [ -111.123741, 26.972419 ] ] ], "type": "Polygon" }, "id": "844809dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.817259, 45.63762 ], [ -71.167125, 45.592976 ], [ -71.28772, 45.366115 ], [ -71.060916, 45.184878 ], [ -70.714186, 45.229126 ], [ -70.591144, 45.455004 ], [ -70.817259, 45.63762 ] ] ], "type": "Polygon" }, "id": "842ba8bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.627144, 63.166745 ], [ -155.065098, 63.036161 ], [ -155.053971, 62.812788 ], [ -154.612817, 62.720221 ], [ -154.17884, 62.849068 ], [ -154.18204, 63.072204 ], [ -154.627144, 63.166745 ] ] ], "type": "Polygon" }, "id": "840c0c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.488629, 66.690771 ], [ -136.047672, 66.626865 ], [ -136.224379, 66.412268 ], [ -135.850006, 66.263241 ], [ -135.300222, 66.326532 ], [ -135.115649, 66.539457 ], [ -135.488629, 66.690771 ] ] ], "type": "Polygon" }, "id": "840d685ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.093471, 62.950294 ], [ -148.547659, 62.841981 ], [ -148.593993, 62.622867 ], [ -148.193557, 62.512759 ], [ -147.744552, 62.619698 ], [ -147.690826, 62.838105 ], [ -148.093471, 62.950294 ] ] ], "type": "Polygon" }, "id": "840c755ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -99.869827, 18.114717 ], [ -99.65041, 18.259149 ], [ -99.668935, 18.51063 ], [ -99.907803, 18.617853 ], [ -100.127793, 18.473017 ], [ -100.108342, 18.221363 ], [ -99.869827, 18.114717 ] ] ], "type": "Polygon" }, "id": "8449b17ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.979758, 52.704301 ], [ -162.764919, 52.866864 ], [ -162.898668, 53.081185 ], [ -163.249911, 53.133004 ], [ -163.465285, 52.969868 ], [ -163.328891, 52.75549 ], [ -162.979758, 52.704301 ] ] ], "type": "Polygon" }, "id": "84228b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.742597, 65.436174 ], [ -142.262221, 65.349437 ], [ -142.373031, 65.129645 ], [ -141.972508, 64.9978 ], [ -141.460418, 65.083481 ], [ -141.34138, 65.30205 ], [ -141.742597, 65.436174 ] ] ], "type": "Polygon" }, "id": "840d4e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.616687, 51.419948 ], [ -168.414165, 51.599543 ], [ -168.573181, 51.813606 ], [ -168.937087, 51.847949 ], [ -169.139612, 51.667709 ], [ -168.978241, 51.453773 ], [ -168.616687, 51.419948 ] ] ], "type": "Polygon" }, "id": "8422f1bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.417515, 61.786901 ], [ -141.863538, 61.702067 ], [ -141.961851, 61.492935 ], [ -141.620198, 61.36971 ], [ -141.179761, 61.453627 ], [ -141.075431, 61.661676 ], [ -141.417515, 61.786901 ] ] ], "type": "Polygon" }, "id": "840c61bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.428008, 35.762113 ], [ -108.180964, 35.913444 ], [ -108.222119, 36.158816 ], [ -108.511498, 36.252767 ], [ -108.758841, 36.101122 ], [ -108.71651, 35.855842 ], [ -108.428008, 35.762113 ] ] ], "type": "Polygon" }, "id": "8448ca7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.686638, 18.222361 ], [ -70.868966, 18.125085 ], [ -70.84299, 17.928332 ], [ -70.634492, 17.829129 ], [ -70.452421, 17.92686 ], [ -70.47859, 18.123338 ], [ -70.686638, 18.222361 ] ] ], "type": "Polygon" }, "id": "844cd05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -58.6263, 17.951057 ], [ -58.446177, 18.101405 ], [ -58.480014, 18.305291 ], [ -58.693706, 18.358638 ], [ -58.873337, 18.20858 ], [ -58.839769, 18.004886 ], [ -58.6263, 17.951057 ] ] ], "type": "Polygon" }, "id": "845ee9dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.244239, 18.342444 ], [ -64.075188, 18.492128 ], [ -64.104887, 18.686814 ], [ -64.30336, 18.731565 ], [ -64.471834, 18.582174 ], [ -64.442412, 18.38774 ], [ -64.244239, 18.342444 ] ] ], "type": "Polygon" }, "id": "844ced7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.167583, 52.615537 ], [ -164.955628, 52.783821 ], [ -165.100477, 52.997739 ], [ -165.459876, 53.043356 ], [ -165.672166, 52.874468 ], [ -165.524732, 52.660569 ], [ -165.167583, 52.615537 ] ] ], "type": "Polygon" }, "id": "8422d4dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.852456, 21.385514 ], [ -105.630528, 21.538956 ], [ -105.661894, 21.794253 ], [ -105.916142, 21.89607 ], [ -106.138423, 21.742173 ], [ -106.106104, 21.486917 ], [ -105.852456, 21.385514 ] ] ], "type": "Polygon" }, "id": "844830dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.835895, 56.383485 ], [ -162.154008, 56.238476 ], [ -162.095066, 56.034867 ], [ -161.722806, 55.975974 ], [ -161.406044, 56.119323 ], [ -161.460177, 56.323215 ], [ -161.835895, 56.383485 ] ] ], "type": "Polygon" }, "id": "840cdc9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -93.977829, 17.76835 ], [ -93.760476, 17.903678 ], [ -93.767057, 18.150626 ], [ -93.991873, 18.262626 ], [ -94.209981, 18.127006 ], [ -94.202518, 17.87968 ], [ -93.977829, 17.76835 ] ] ], "type": "Polygon" }, "id": "846d267ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -71.46979, 18.224552 ], [ -71.653596, 18.126218 ], [ -71.628019, 17.928931 ], [ -71.418434, 17.830241 ], [ -71.234867, 17.929025 ], [ -71.260645, 18.126048 ], [ -71.46979, 18.224552 ] ] ], "type": "Polygon" }, "id": "844cd2dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.289712, 67.750333 ], [ -160.795016, 67.597789 ], [ -160.718431, 67.362684 ], [ -160.14826, 67.279866 ], [ -159.646843, 67.430095 ], [ -159.711667, 67.665434 ], [ -160.289712, 67.750333 ] ] ], "type": "Polygon" }, "id": "840c359ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.501051, 52.437295 ], [ -162.286783, 52.599292 ], [ -162.417399, 52.814037 ], [ -162.764919, 52.866864 ], [ -162.979758, 52.704301 ], [ -162.846516, 52.489479 ], [ -162.501051, 52.437295 ] ] ], "type": "Polygon" }, "id": "8422887ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.030372, 29.031677 ], [ -112.804691, 29.195476 ], [ -112.85303, 29.447124 ], [ -113.128014, 29.534704 ], [ -113.353718, 29.370494 ], [ -113.304418, 29.119116 ], [ -113.030372, 29.031677 ] ] ], "type": "Polygon" }, "id": "844850bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -165.578424, 65.135374 ], [ -165.999977, 64.967927 ], [ -165.880393, 64.740125 ], [ -165.348196, 64.679107 ], [ -164.928063, 64.844285 ], [ -165.038649, 65.072732 ], [ -165.578424, 65.135374 ] ] ], "type": "Polygon" }, "id": "840c141ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.517992, 61.000086 ], [ -148.937365, 60.89151 ], [ -148.977151, 60.677844 ], [ -148.603952, 60.573371 ], [ -148.18896, 60.68063 ], [ -148.142805, 60.893668 ], [ -148.517992, 61.000086 ] ] ], "type": "Polygon" }, "id": "840c461ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -142.564587, 58.395392 ], [ -142.95456, 58.308142 ], [ -143.033341, 58.108483 ], [ -142.726927, 57.996956 ], [ -142.341168, 58.083307 ], [ -142.257635, 58.282075 ], [ -142.564587, 58.395392 ] ] ], "type": "Polygon" }, "id": "840c4dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -83.966687, 35.525503 ], [ -83.726938, 35.618754 ], [ -83.7123, 35.850395 ], [ -83.93838, 35.989402 ], [ -84.179395, 35.896325 ], [ -84.193061, 35.664067 ], [ -83.966687, 35.525503 ] ] ], "type": "Polygon" }, "id": "8444cabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.327495, 21.332815 ], [ -106.106104, 21.486917 ], [ -106.138423, 21.742173 ], [ -106.393082, 21.84327 ], [ -106.614804, 21.688708 ], [ -106.581537, 21.433511 ], [ -106.327495, 21.332815 ] ] ], "type": "Polygon" }, "id": "8448309ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.767475, 64.913626 ], [ -139.279785, 64.837628 ], [ -139.414755, 64.622928 ], [ -139.044824, 64.485596 ], [ -138.540089, 64.560772 ], [ -138.397777, 64.774092 ], [ -138.767475, 64.913626 ] ] ], "type": "Polygon" }, "id": "840d489ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -72.728787, 18.810346 ], [ -72.914433, 18.711827 ], [ -72.889578, 18.515885 ], [ -72.678863, 18.418699 ], [ -72.493422, 18.517654 ], [ -72.51849, 18.713358 ], [ -72.728787, 18.810346 ] ] ], "type": "Polygon" }, "id": "8467243ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.150728, 55.109672 ], [ -151.484272, 54.998182 ], [ -151.499796, 54.802402 ], [ -151.186064, 54.718447 ], [ -150.855118, 54.828709 ], [ -150.835312, 55.024145 ], [ -151.150728, 55.109672 ] ] ], "type": "Polygon" }, "id": "841db13ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.384657, 18.85954 ], [ -62.211792, 19.008921 ], [ -62.24287, 19.204779 ], [ -62.446538, 19.251035 ], [ -62.618851, 19.10195 ], [ -62.588047, 18.906314 ], [ -62.384657, 18.85954 ] ] ], "type": "Polygon" }, "id": "844d481ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.809399, 17.816211 ], [ -62.637107, 17.966684 ], [ -62.667923, 18.165231 ], [ -62.870753, 18.213059 ], [ -63.042484, 18.062875 ], [ -63.011946, 17.864574 ], [ -62.809399, 17.816211 ] ] ], "type": "Polygon" }, "id": "844d497ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -74.620971, 20.491585 ], [ -74.432837, 20.588361 ], [ -74.404828, 20.80645 ], [ -74.565447, 20.928572 ], [ -74.754527, 20.831984 ], [ -74.782039, 20.613085 ], [ -74.620971, 20.491585 ] ] ], "type": "Polygon" }, "id": "844c9c7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -73.848351, 18.21171 ], [ -74.036252, 18.110187 ], [ -74.011964, 17.911443 ], [ -73.799549, 17.814449 ], [ -73.611825, 17.916407 ], [ -73.636337, 18.114923 ], [ -73.848351, 18.21171 ] ] ], "type": "Polygon" }, "id": "8467229ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.862255, 32.970229 ], [ -100.614861, 33.108441 ], [ -100.637985, 33.358371 ], [ -100.909685, 33.470251 ], [ -101.157762, 33.331802 ], [ -101.133457, 33.081712 ], [ -100.862255, 32.970229 ] ] ], "type": "Polygon" }, "id": "8426d85ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.138729, 56.466338 ], [ -161.460177, 56.323215 ], [ -161.406044, 56.119323 ], [ -161.0353, 56.058306 ], [ -160.715322, 56.199784 ], [ -160.764606, 56.403915 ], [ -161.138729, 56.466338 ] ] ], "type": "Polygon" }, "id": "840cc35ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.530834, 18.514249 ], [ -70.712663, 18.417953 ], [ -70.686638, 18.222361 ], [ -70.47859, 18.123338 ], [ -70.297021, 18.220087 ], [ -70.323238, 18.415405 ], [ -70.530834, 18.514249 ] ] ], "type": "Polygon" }, "id": "844cd0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.606241, 17.642854 ], [ -113.40111, 17.802938 ], [ -113.446338, 18.053237 ], [ -113.697491, 18.143117 ], [ -113.902617, 17.982468 ], [ -113.856598, 17.732506 ], [ -113.606241, 17.642854 ] ] ], "type": "Polygon" }, "id": "844970dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -62.943761, 19.921851 ], [ -62.772367, 20.069943 ], [ -62.802971, 20.261497 ], [ -63.004694, 20.304753 ], [ -63.17553, 20.156962 ], [ -63.145201, 19.965617 ], [ -62.943761, 19.921851 ] ] ], "type": "Polygon" }, "id": "844d5dbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -112.496043, 24.819668 ], [ -112.277031, 24.982736 ], [ -112.322713, 25.236647 ], [ -112.588319, 25.327219 ], [ -112.80738, 25.163686 ], [ -112.76079, 24.910048 ], [ -112.496043, 24.819668 ] ] ], "type": "Polygon" }, "id": "8448297ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.591338, 45.335388 ], [ -122.354217, 45.50114 ], [ -122.431134, 45.711411 ], [ -122.746124, 45.755566 ], [ -122.982629, 45.589565 ], [ -122.904767, 45.379659 ], [ -122.591338, 45.335388 ] ] ], "type": "Polygon" }, "id": "8428f01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.414774, 59.999517 ], [ -151.811366, 59.882144 ], [ -151.827262, 59.669632 ], [ -151.452658, 59.574899 ], [ -151.059706, 59.690845 ], [ -151.037728, 59.902939 ], [ -151.414774, 59.999517 ] ] ], "type": "Polygon" }, "id": "840c51dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -168.932811, 53.619574 ], [ -168.722708, 53.794436 ], [ -168.889713, 54.004918 ], [ -169.26937, 54.040378 ], [ -169.479445, 53.864873 ], [ -169.309906, 53.654553 ], [ -168.932811, 53.619574 ] ] ], "type": "Polygon" }, "id": "8422c21ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.064935, 39.915321 ], [ -125.852621, 40.091685 ], [ -125.931217, 40.311283 ], [ -126.22283, 40.354041 ], [ -126.434415, 40.177462 ], [ -126.355122, 39.958341 ], [ -126.064935, 39.915321 ] ] ], "type": "Polygon" }, "id": "8428019ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.439904, 56.545124 ], [ -160.764606, 56.403915 ], [ -160.715322, 56.199784 ], [ -160.34621, 56.136657 ], [ -160.023096, 56.276237 ], [ -160.067494, 56.480563 ], [ -160.439904, 56.545124 ] ] ], "type": "Polygon" }, "id": "840cc31ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -133.25261, 65.844354 ], [ -133.44978, 65.634038 ], [ -133.135868, 65.443314 ], [ -132.625917, 65.461059 ], [ -132.422035, 65.67059 ], [ -132.73474, 65.86317 ], [ -133.25261, 65.844354 ] ] ], "type": "Polygon" }, "id": "840d699ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -67.608912, 18.182956 ], [ -67.78484, 18.089851 ], [ -67.757424, 17.895456 ], [ -67.553917, 17.794483 ], [ -67.378315, 17.888061 ], [ -67.405893, 18.082138 ], [ -67.608912, 18.182956 ] ] ], "type": "Polygon" }, "id": "844cc01ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -169.518417, 53.47795 ], [ -169.309906, 53.654553 ], [ -169.479445, 53.864873 ], [ -169.860002, 53.898411 ], [ -170.068424, 53.72116 ], [ -169.896393, 53.511021 ], [ -169.518417, 53.47795 ] ] ], "type": "Polygon" }, "id": "8422c2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -120.625018, 39.393868 ], [ -120.396355, 39.56352 ], [ -120.46498, 39.791864 ], [ -120.763181, 39.850164 ], [ -120.99141, 39.680227 ], [ -120.921876, 39.452276 ], [ -120.625018, 39.393868 ] ] ], "type": "Polygon" }, "id": "842814dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.995205, 58.477643 ], [ -149.375637, 58.369441 ], [ -149.408645, 58.163474 ], [ -149.066539, 58.066234 ], [ -148.689677, 58.173188 ], [ -148.651364, 58.378619 ], [ -148.995205, 58.477643 ] ] ], "type": "Polygon" }, "id": "840c5d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.286189, 65.627966 ], [ -151.784504, 65.507251 ], [ -151.804681, 65.278868 ], [ -151.336114, 65.171715 ], [ -150.843552, 65.290729 ], [ -150.813823, 65.51858 ], [ -151.286189, 65.627966 ] ] ], "type": "Polygon" }, "id": "840c2c3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -90.003698, 35.596052 ], [ -89.754656, 35.704425 ], [ -89.753136, 35.943564 ], [ -90.00178, 36.07481 ], [ -90.251971, 35.966457 ], [ -90.252366, 35.726839 ], [ -90.003698, 35.596052 ] ] ], "type": "Polygon" }, "id": "84265d3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.741681, 18.032659 ], [ -104.524525, 18.183725 ], [ -104.552884, 18.436537 ], [ -104.799314, 18.538272 ], [ -105.016851, 18.386723 ], [ -104.987579, 18.133923 ], [ -104.741681, 18.032659 ] ] ], "type": "Polygon" }, "id": "8449acbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -108.178893, 39.122378 ], [ -107.923597, 39.26912 ], [ -107.965475, 39.507925 ], [ -108.263908, 39.599911 ], [ -108.519537, 39.452875 ], [ -108.476403, 39.21415 ], [ -108.178893, 39.122378 ] ] ], "type": "Polygon" }, "id": "84269c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.324234, 63.052879 ], [ -125.57118, 62.853636 ], [ -125.332635, 62.64285 ], [ -124.849988, 62.629571 ], [ -124.598751, 62.827641 ], [ -124.834382, 63.040167 ], [ -125.324234, 63.052879 ] ] ], "type": "Polygon" }, "id": "84131a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.111773, 19.15163 ], [ -100.890846, 19.297963 ], [ -100.912062, 19.550943 ], [ -101.155147, 19.657723 ], [ -101.376608, 19.510977 ], [ -101.354451, 19.257867 ], [ -101.111773, 19.15163 ] ] ], "type": "Polygon" }, "id": "8449809ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.78599, 19.395945 ], [ -64.618459, 19.544411 ], [ -64.647687, 19.734864 ], [ -64.844171, 19.776616 ], [ -65.011122, 19.628449 ], [ -64.982169, 19.438233 ], [ -64.78599, 19.395945 ] ] ], "type": "Polygon" }, "id": "844cec9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -81.009682, 41.716924 ], [ -81.318822, 41.64527 ], [ -81.381448, 41.419641 ], [ -81.137533, 41.266136 ], [ -80.830575, 41.336936 ], [ -80.76536, 41.562089 ], [ -81.009682, 41.716924 ] ] ], "type": "Polygon" }, "id": "842ab15ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.704614, 55.503561 ], [ -164.006853, 55.354722 ], [ -163.936729, 55.154246 ], [ -163.568836, 55.102204 ], [ -163.267585, 55.249378 ], [ -163.333222, 55.450249 ], [ -163.704614, 55.503561 ] ] ], "type": "Polygon" }, "id": "840cde1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -76.670867, 18.158434 ], [ -76.862832, 18.053197 ], [ -76.840211, 17.853039 ], [ -76.625375, 17.758299 ], [ -76.43351, 17.863951 ], [ -76.45638, 18.063927 ], [ -76.670867, 18.158434 ] ] ], "type": "Polygon" }, "id": "8467329ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.353249, 33.31403 ], [ -117.128651, 33.482874 ], [ -117.187432, 33.72619 ], [ -117.471732, 33.800292 ], [ -117.696115, 33.631089 ], [ -117.636417, 33.388145 ], [ -117.353249, 33.31403 ] ] ], "type": "Polygon" }, "id": "8429a09ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.197898, 18.911504 ], [ -155.359989, 18.706791 ], [ -155.25444, 18.472897 ], [ -154.98704, 18.443516 ], [ -154.824665, 18.648126 ], [ -154.929971, 18.882219 ], [ -155.197898, 18.911504 ] ] ], "type": "Polygon" }, "id": "845d133ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -151.298759, 57.197542 ], [ -151.65712, 57.08325 ], [ -151.67258, 56.880024 ], [ -151.334643, 56.791454 ], [ -150.979267, 56.904436 ], [ -150.95885, 57.107289 ], [ -151.298759, 57.197542 ] ] ], "type": "Polygon" }, "id": "840c5b5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -171.446682, 50.244958 ], [ -171.253103, 50.433892 ], [ -171.422488, 50.647677 ], [ -171.787597, 50.672318 ], [ -171.980918, 50.482719 ], [ -171.809402, 50.269145 ], [ -171.446682, 50.244958 ] ] ], "type": "Polygon" }, "id": "8422e1dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.965415, 19.029979 ], [ -63.795949, 19.178991 ], [ -63.825825, 19.371916 ], [ -64.024892, 19.415596 ], [ -64.193787, 19.266881 ], [ -64.164186, 19.074192 ], [ -63.965415, 19.029979 ] ] ], "type": "Polygon" }, "id": "844ced9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.059439, 35.079776 ], [ -117.833033, 35.248779 ], [ -117.894118, 35.488606 ], [ -118.182537, 35.559055 ], [ -118.408681, 35.389715 ], [ -118.346673, 35.150264 ], [ -118.059439, 35.079776 ] ] ], "type": "Polygon" }, "id": "8429aedffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -68.913483, 19.358306 ], [ -69.091465, 19.266528 ], [ -69.06475, 19.075231 ], [ -68.859876, 18.975993 ], [ -68.682189, 19.068224 ], [ -68.709079, 19.259239 ], [ -68.913483, 19.358306 ] ] ], "type": "Polygon" }, "id": "844cf3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.856482, 36.167128 ], [ -121.638396, 36.34078 ], [ -121.707157, 36.574218 ], [ -121.994819, 36.633553 ], [ -122.212431, 36.459602 ], [ -122.142861, 36.226616 ], [ -121.856482, 36.167128 ] ] ], "type": "Polygon" }, "id": "84291a7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.444233, 54.227373 ], [ -160.220765, 54.379604 ], [ -160.344799, 54.591949 ], [ -160.695144, 54.652192 ], [ -160.919406, 54.499436 ], [ -160.792537, 54.286965 ], [ -160.444233, 54.227373 ] ] ], "type": "Polygon" }, "id": "840cd91ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -90.253152, 35.246532 ], [ -90.00465, 35.356137 ], [ -90.003698, 35.596052 ], [ -90.252366, 35.726839 ], [ -90.502002, 35.617246 ], [ -90.501833, 35.376856 ], [ -90.253152, 35.246532 ] ] ], "type": "Polygon" }, "id": "8426599ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -89.495139, 37.001797 ], [ -89.243328, 37.106362 ], [ -89.240623, 37.342722 ], [ -89.49087, 37.474997 ], [ -89.743875, 37.370472 ], [ -89.745436, 37.133634 ], [ -89.495139, 37.001797 ] ] ], "type": "Polygon" }, "id": "842643bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -130.180779, 48.401767 ], [ -129.963579, 48.573291 ], [ -130.056908, 48.762823 ], [ -130.368073, 48.780437 ], [ -130.584171, 48.608778 ], [ -130.490215, 48.419641 ], [ -130.180779, 48.401767 ] ] ], "type": "Polygon" }, "id": "841d6c9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -127.493236, 49.142767 ], [ -127.263158, 49.309839 ], [ -127.352891, 49.50128 ], [ -127.673494, 49.525278 ], [ -127.902592, 49.358017 ], [ -127.812076, 49.166948 ], [ -127.493236, 49.142767 ] ] ], "type": "Polygon" }, "id": "8428cabffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -166.183625, 53.131653 ], [ -165.971045, 53.301152 ], [ -166.122523, 53.513918 ], [ -166.489195, 53.557127 ], [ -166.70202, 53.387011 ], [ -166.54794, 53.174306 ], [ -166.183625, 53.131653 ] ] ], "type": "Polygon" }, "id": "8422d43ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -89.991927, 38.445237 ], [ -89.73596, 38.548392 ], [ -89.734355, 38.782675 ], [ -89.989901, 38.914254 ], [ -90.247082, 38.811129 ], [ -90.2475, 38.576396 ], [ -89.991927, 38.445237 ] ] ], "type": "Polygon" }, "id": "842640dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.660554, 25.724552 ], [ -111.438504, 25.886615 ], [ -111.482869, 26.140797 ], [ -111.750226, 26.232677 ], [ -111.972368, 26.070165 ], [ -111.927064, 25.816224 ], [ -111.660554, 25.724552 ] ] ], "type": "Polygon" }, "id": "84480d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -153.423344, 55.892525 ], [ -153.760872, 55.773184 ], [ -153.761314, 55.573303 ], [ -153.428833, 55.492983 ], [ -153.09378, 55.610972 ], [ -153.088736, 55.810625 ], [ -153.423344, 55.892525 ] ] ], "type": "Polygon" }, "id": "841db05ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.139354, 42.394762 ], [ -125.921749, 42.569049 ], [ -126.002519, 42.782445 ], [ -126.301631, 42.821111 ], [ -126.518464, 42.646622 ], [ -126.436964, 42.43367 ], [ -126.139354, 42.394762 ] ] ], "type": "Polygon" }, "id": "84280a1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -122.361626, 44.699732 ], [ -122.125436, 44.866012 ], [ -122.201369, 45.078438 ], [ -122.51444, 45.124218 ], [ -122.750035, 44.957688 ], [ -122.673161, 44.745629 ], [ -122.361626, 44.699732 ] ] ], "type": "Polygon" }, "id": "8428f47ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.332545, 58.592804 ], [ -136.460567, 58.395785 ], [ -136.206949, 58.214899 ], [ -135.825444, 58.229485 ], [ -135.693254, 58.426005 ], [ -135.946709, 58.608446 ], [ -136.332545, 58.592804 ] ] ], "type": "Polygon" }, "id": "8413931ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -138.610649, 58.476495 ], [ -138.720858, 58.279675 ], [ -138.460146, 58.10521 ], [ -138.088982, 58.126062 ], [ -137.974536, 58.322507 ], [ -138.235466, 58.498482 ], [ -138.610649, 58.476495 ] ] ], "type": "Polygon" }, "id": "8413925ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.477965, 38.745889 ], [ -111.228901, 38.900054 ], [ -111.278141, 39.138141 ], [ -111.57763, 39.221891 ], [ -111.82682, 39.067412 ], [ -111.776398, 38.8295 ], [ -111.477965, 38.745889 ] ] ], "type": "Polygon" }, "id": "8426935ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.118678, 60.98691 ], [ -150.533893, 60.873004 ], [ -150.560777, 60.65824 ], [ -150.178936, 60.557892 ], [ -149.767853, 60.670396 ], [ -149.734494, 60.884637 ], [ -150.118678, 60.98691 ] ] ], "type": "Polygon" }, "id": "840c559ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.45097, 52.318947 ], [ -172.252427, 52.505195 ], [ -172.432798, 52.715071 ], [ -172.813956, 52.738438 ], [ -173.01212, 52.551529 ], [ -172.82952, 52.341915 ], [ -172.45097, 52.318947 ] ] ], "type": "Polygon" }, "id": "8422eadffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.859066, 39.404249 ], [ -104.599182, 39.543078 ], [ -104.633328, 39.782016 ], [ -104.928668, 39.882147 ], [ -105.189091, 39.743058 ], [ -105.153637, 39.504101 ], [ -104.859066, 39.404249 ] ] ], "type": "Polygon" }, "id": "84268cdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -115.826399, 32.440519 ], [ -115.599937, 32.607477 ], [ -115.655316, 32.853419 ], [ -115.938108, 32.932069 ], [ -116.16444, 32.764739 ], [ -116.108114, 32.519134 ], [ -115.826399, 32.440519 ] ] ], "type": "Polygon" }, "id": "8448597ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.090651, 25.290222 ], [ -108.865491, 25.448582 ], [ -108.904538, 25.703914 ], [ -109.169723, 25.80074 ], [ -109.395101, 25.641943 ], [ -109.355079, 25.38676 ], [ -109.090651, 25.290222 ] ] ], "type": "Polygon" }, "id": "8448017ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.032383, 52.855168 ], [ -163.818106, 53.020019 ], [ -163.957707, 53.233919 ], [ -164.314232, 53.282989 ], [ -164.528953, 53.11755 ], [ -164.386715, 52.903632 ], [ -164.032383, 52.855168 ] ] ], "type": "Polygon" }, "id": "8422897ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -164.235596, 54.622642 ], [ -164.01431, 54.783473 ], [ -164.159717, 54.994589 ], [ -164.529234, 55.044863 ], [ -164.750973, 54.883443 ], [ -164.602753, 54.67234 ], [ -164.235596, 54.622642 ] ] ], "type": "Polygon" }, "id": "8422d25ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -111.580505, 44.444264 ], [ -111.316782, 44.590416 ], [ -111.369174, 44.813952 ], [ -111.686617, 44.891176 ], [ -111.950473, 44.744718 ], [ -111.896758, 44.521344 ], [ -111.580505, 44.444264 ] ] ], "type": "Polygon" }, "id": "842890dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.176461, 64.923089 ], [ -129.405063, 64.717172 ], [ -129.12551, 64.515771 ], [ -128.619541, 64.518461 ], [ -128.3853, 64.723366 ], [ -128.662589, 64.926599 ], [ -129.176461, 64.923089 ] ] ], "type": "Polygon" }, "id": "8413107ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -110.942279, 27.387686 ], [ -110.716026, 27.548632 ], [ -110.759538, 27.802516 ], [ -111.030283, 27.895248 ], [ -111.256667, 27.73388 ], [ -111.212177, 27.480203 ], [ -110.942279, 27.387686 ] ] ], "type": "Polygon" }, "id": "8448095ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.07154, 54.304396 ], [ -161.849189, 54.460604 ], [ -161.982151, 54.672721 ], [ -162.340299, 54.728701 ], [ -162.563302, 54.571939 ], [ -162.427515, 54.359754 ], [ -162.07154, 54.304396 ] ] ], "type": "Polygon" }, "id": "840cd87ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -88.483804, 37.65003 ], [ -88.231678, 37.750778 ], [ -88.226653, 37.98492 ], [ -88.474887, 38.118812 ], [ -88.728249, 38.018131 ], [ -88.732139, 37.783493 ], [ -88.483804, 37.65003 ] ] ], "type": "Polygon" }, "id": "8426419ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -60.625041, 19.019542 ], [ -60.448776, 19.168743 ], [ -60.481137, 19.366567 ], [ -60.689492, 19.414992 ], [ -60.865231, 19.266087 ], [ -60.833142, 19.068463 ], [ -60.625041, 19.019542 ] ] ], "type": "Polygon" }, "id": "844d6b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.246754, 43.418526 ], [ -126.027115, 43.591865 ], [ -126.108963, 43.802377 ], [ -126.411197, 43.839121 ], [ -126.630042, 43.665584 ], [ -126.547453, 43.455503 ], [ -126.246754, 43.418526 ] ] ], "type": "Polygon" }, "id": "8428e41ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -61.77098, 18.716917 ], [ -61.596836, 18.866493 ], [ -61.628378, 19.063699 ], [ -61.833787, 19.111113 ], [ -62.007386, 18.961831 ], [ -61.97612, 18.764843 ], [ -61.77098, 18.716917 ] ] ], "type": "Polygon" }, "id": "844d4d5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.494871, 55.401815 ], [ -159.81022, 55.265127 ], [ -159.769381, 55.065022 ], [ -159.417714, 55.001456 ], [ -159.103969, 55.136595 ], [ -159.140278, 55.336839 ], [ -159.494871, 55.401815 ] ] ], "type": "Polygon" }, "id": "840ccadffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -56.631326, 44.695728 ], [ -56.967046, 44.693972 ], [ -57.146897, 44.491949 ], [ -56.992065, 44.293033 ], [ -56.659341, 44.295163 ], [ -56.478472, 44.495837 ], [ -56.631326, 44.695728 ] ] ], "type": "Polygon" }, "id": "841a943ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.913244, 67.961844 ], [ -156.446842, 67.824003 ], [ -156.417861, 67.588556 ], [ -155.867324, 67.49109 ], [ -155.339311, 67.626803 ], [ -155.35624, 67.862087 ], [ -155.913244, 67.961844 ] ] ], "type": "Polygon" }, "id": "840c247ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.545912, 42.463886 ], [ -149.734517, 42.310984 ], [ -149.62159, 42.126888 ], [ -149.320569, 42.095677 ], [ -149.131885, 42.248529 ], [ -149.244296, 42.432641 ], [ -149.545912, 42.463886 ] ] ], "type": "Polygon" }, "id": "8437223ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -66.060573, 49.952779 ], [ -66.448521, 49.923553 ], [ -66.60681, 49.695822 ], [ -66.379663, 49.498542 ], [ -65.995668, 49.527637 ], [ -65.834895, 49.754141 ], [ -66.060573, 49.952779 ] ] ], "type": "Polygon" }, "id": "842b32dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -118.500423, 31.560983 ], [ -118.282098, 31.731923 ], [ -118.342129, 31.976374 ], [ -118.621344, 32.049468 ], [ -118.8394, 31.878153 ], [ -118.778515, 31.63412 ], [ -118.500423, 31.560983 ] ] ], "type": "Polygon" }, "id": "84484b9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.595985, 34.344744 ], [ -121.380773, 34.518845 ], [ -121.447936, 34.755759 ], [ -121.731109, 34.818108 ], [ -121.945875, 34.643687 ], [ -121.87792, 34.407239 ], [ -121.595985, 34.344744 ] ] ], "type": "Polygon" }, "id": "84291edffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.299528, 57.083565 ], [ -161.627286, 56.939022 ], [ -161.570781, 56.733067 ], [ -161.191559, 56.671393 ], [ -160.865307, 56.814256 ], [ -160.916757, 57.020462 ], [ -161.299528, 57.083565 ] ] ], "type": "Polygon" }, "id": "840cc2bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -113.986299, 47.858311 ], [ -113.717439, 48.003644 ], [ -113.777695, 48.214991 ], [ -114.108174, 48.280802 ], [ -114.376996, 48.135147 ], [ -114.315384, 47.924005 ], [ -113.986299, 47.858311 ] ] ], "type": "Polygon" }, "id": "84289b5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -159.73962, 56.61983 ], [ -160.067494, 56.480563 ], [ -160.023096, 56.276237 ], [ -159.655731, 56.211016 ], [ -159.329562, 56.348671 ], [ -159.369043, 56.553149 ], [ -159.73962, 56.61983 ] ] ], "type": "Polygon" }, "id": "840cc3bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.801292, 57.560819 ], [ -149.169684, 57.454054 ], [ -149.203081, 57.251318 ], [ -148.873052, 57.155865 ], [ -148.508024, 57.261426 ], [ -148.469674, 57.463635 ], [ -148.801292, 57.560819 ] ] ], "type": "Polygon" }, "id": "840c591ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -104.46814, 17.678886 ], [ -104.251374, 17.829469 ], [ -104.279111, 18.081889 ], [ -104.524525, 18.183725 ], [ -104.741681, 18.032659 ], [ -104.713035, 17.780242 ], [ -104.46814, 17.678886 ] ] ], "type": "Polygon" }, "id": "8449ac9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.733367, 58.465013 ], [ -157.093205, 58.33233 ], [ -157.068545, 58.122446 ], [ -156.689631, 58.045282 ], [ -156.332244, 58.176373 ], [ -156.351315, 58.386207 ], [ -156.733367, 58.465013 ] ] ], "type": "Polygon" }, "id": "840cee1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.890463, 19.871543 ], [ -156.052319, 19.666925 ], [ -155.945841, 19.434567 ], [ -155.677729, 19.406624 ], [ -155.515561, 19.611161 ], [ -155.621814, 19.843722 ], [ -155.890463, 19.871543 ] ] ], "type": "Polygon" }, "id": "845d107ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.851778, 34.547853 ], [ -116.623463, 34.715339 ], [ -116.681913, 34.957256 ], [ -116.969635, 35.031338 ], [ -117.197758, 34.863505 ], [ -117.138355, 34.621938 ], [ -116.851778, 34.547853 ] ] ], "type": "Polygon" }, "id": "8429a3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.008788, 60.493677 ], [ -137.13983, 60.292093 ], [ -136.866703, 60.112115 ], [ -136.462557, 60.132127 ], [ -136.326732, 60.33324 ], [ -136.599802, 60.51482 ], [ -137.008788, 60.493677 ] ] ], "type": "Polygon" }, "id": "841395dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.083347, 68.747537 ], [ -148.6717, 68.637303 ], [ -148.730158, 68.403664 ], [ -148.212682, 68.281111 ], [ -147.632995, 68.389649 ], [ -147.562173, 68.622414 ], [ -148.083347, 68.747537 ] ] ], "type": "Polygon" }, "id": "840d54dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.562814, 58.036736 ], [ -139.664324, 57.841128 ], [ -139.404267, 57.669631 ], [ -139.042316, 57.692274 ], [ -138.93666, 57.88756 ], [ -139.197079, 58.060533 ], [ -139.562814, 58.036736 ] ] ], "type": "Polygon" }, "id": "841d355ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -172.554947, 49.908726 ], [ -172.36459, 50.100918 ], [ -172.538196, 50.314264 ], [ -172.904221, 50.335175 ], [ -173.09422, 50.142316 ], [ -172.918566, 49.929214 ], [ -172.554947, 49.908726 ] ] ], "type": "Polygon" }, "id": "8422525ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -154.585645, 61.834676 ], [ -155.001204, 61.705322 ], [ -154.991189, 61.485737 ], [ -154.57275, 61.395717 ], [ -154.16078, 61.523406 ], [ -154.163661, 61.742765 ], [ -154.585645, 61.834676 ] ] ], "type": "Polygon" }, "id": "840c095ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.152234, 56.69865 ], [ -155.494825, 56.573028 ], [ -155.483019, 56.369568 ], [ -155.133534, 56.291853 ], [ -154.79333, 56.416021 ], [ -154.800224, 56.619347 ], [ -155.152234, 56.69865 ] ] ], "type": "Polygon" }, "id": "840ceb3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.27463, 18.307581 ], [ -63.103461, 18.457475 ], [ -63.1339, 18.653771 ], [ -63.335232, 18.699933 ], [ -63.505835, 18.550332 ], [ -63.475673, 18.354278 ], [ -63.27463, 18.307581 ] ] ], "type": "Polygon" }, "id": "844d4b1ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -173.579692, 52.781621 ], [ -173.381968, 52.969194 ], [ -173.56925, 53.177224 ], [ -173.956464, 53.197378 ], [ -174.153685, 53.009142 ], [ -173.964211, 52.801416 ], [ -173.579692, 52.781621 ] ] ], "type": "Polygon" }, "id": "8422ea3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.606844, 47.565341 ], [ -121.360252, 47.726033 ], [ -121.437193, 47.930696 ], [ -121.761774, 47.974338 ], [ -122.00778, 47.813379 ], [ -121.9298, 47.609046 ], [ -121.606844, 47.565341 ] ] ], "type": "Polygon" }, "id": "8428d09ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.531463, 64.955386 ], [ -149.024192, 64.844606 ], [ -149.070048, 64.619679 ], [ -148.631986, 64.506245 ], [ -148.145291, 64.61553 ], [ -148.090654, 64.839728 ], [ -148.531463, 64.955386 ] ] ], "type": "Polygon" }, "id": "840d5adffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.351211, 29.211898 ], [ -114.127782, 29.377589 ], [ -114.178809, 29.628174 ], [ -114.454203, 29.712757 ], [ -114.677586, 29.546654 ], [ -114.625625, 29.296382 ], [ -114.351211, 29.211898 ] ] ], "type": "Polygon" }, "id": "8448425ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.572083, 19.095514 ], [ -105.353812, 19.248027 ], [ -105.384071, 19.501853 ], [ -105.633525, 19.603129 ], [ -105.852148, 19.450136 ], [ -105.820967, 19.196349 ], [ -105.572083, 19.095514 ] ] ], "type": "Polygon" }, "id": "8449ad3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -150.784339, 58.754462 ], [ -151.164596, 58.640254 ], [ -151.184628, 58.43213 ], [ -150.829927, 58.338638 ], [ -150.453077, 58.451501 ], [ -150.427529, 58.659191 ], [ -150.784339, 58.754462 ] ] ], "type": "Polygon" }, "id": "840c5ebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -89.240623, 37.342722 ], [ -88.988287, 37.446001 ], [ -88.984992, 37.681508 ], [ -89.235176, 37.814216 ], [ -89.488721, 37.710983 ], [ -89.49087, 37.474997 ], [ -89.240623, 37.342722 ] ] ], "type": "Polygon" }, "id": "8426415ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -64.054582, 19.6074 ], [ -63.885481, 19.755754 ], [ -63.915259, 19.946665 ], [ -64.113864, 19.988996 ], [ -64.282394, 19.840942 ], [ -64.252891, 19.650258 ], [ -64.054582, 19.6074 ] ] ], "type": "Polygon" }, "id": "844d591ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -125.737407, 32.57796 ], [ -125.538384, 32.756546 ], [ -125.611186, 32.990173 ], [ -125.883634, 33.044643 ], [ -126.082037, 32.865761 ], [ -126.008617, 32.632705 ], [ -125.737407, 32.57796 ] ] ], "type": "Polygon" }, "id": "842901bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -100.983709, 17.639249 ], [ -100.765313, 17.785205 ], [ -100.786028, 18.036674 ], [ -101.026059, 18.142317 ], [ -101.244982, 17.99593 ], [ -101.223347, 17.744333 ], [ -100.983709, 17.639249 ] ] ], "type": "Polygon" }, "id": "8449a27ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -141.821327, 59.284284 ], [ -142.22543, 59.199035 ], [ -142.312094, 58.997287 ], [ -141.999685, 58.881743 ], [ -141.600151, 58.966115 ], [ -141.508486, 59.166901 ], [ -141.821327, 59.284284 ] ] ], "type": "Polygon" }, "id": "840c6bbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.136354, 18.208648 ], [ -69.315574, 18.113472 ], [ -69.288846, 17.917854 ], [ -69.08272, 17.817709 ], [ -68.903793, 17.91335 ], [ -68.930698, 18.10867 ], [ -69.136354, 18.208648 ] ] ], "type": "Polygon" }, "id": "844cd53ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.392393, 63.574282 ], [ -152.845517, 63.450915 ], [ -152.854422, 63.227347 ], [ -152.41831, 63.127542 ], [ -151.969792, 63.249263 ], [ -151.95279, 63.47242 ], [ -152.392393, 63.574282 ] ] ], "type": "Polygon" }, "id": "840c2b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.531202, 56.29658 ], [ -162.845904, 56.149716 ], [ -162.782197, 55.946433 ], [ -162.408536, 55.889678 ], [ -162.095066, 56.034867 ], [ -162.154008, 56.238476 ], [ -162.531202, 56.29658 ] ] ], "type": "Polygon" }, "id": "840cdcdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.258303, 53.204753 ], [ -135.373532, 53.022341 ], [ -135.162404, 52.843491 ], [ -134.836271, 52.845636 ], [ -134.718103, 53.027506 ], [ -134.928987, 53.207778 ], [ -135.258303, 53.204753 ] ] ], "type": "Polygon" }, "id": "841d297ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -149.408645, 58.163474 ], [ -149.783877, 58.054222 ], [ -149.813552, 57.848996 ], [ -149.473217, 57.753518 ], [ -149.101424, 57.861514 ], [ -149.066539, 58.066234 ], [ -149.408645, 58.163474 ] ] ], "type": "Polygon" }, "id": "840c58bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -145.60772, 66.610967 ], [ -146.146646, 66.510094 ], [ -146.225, 66.283355 ], [ -145.77427, 66.158472 ], [ -145.242986, 66.257958 ], [ -145.154846, 66.483697 ], [ -145.60772, 66.610967 ] ] ], "type": "Polygon" }, "id": "840d51bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -139.220616, 60.699456 ], [ -139.650268, 60.622427 ], [ -139.76102, 60.419377 ], [ -139.447404, 60.294501 ], [ -139.02307, 60.370779 ], [ -138.907074, 60.572677 ], [ -139.220616, 60.699456 ] ] ], "type": "Polygon" }, "id": "840c6d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -152.266943, 58.708394 ], [ -152.642874, 58.589483 ], [ -152.651793, 58.38063 ], [ -152.290355, 58.291018 ], [ -151.917612, 58.408516 ], [ -151.903125, 58.617027 ], [ -152.266943, 58.708394 ] ] ], "type": "Polygon" }, "id": "840c5e5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -160.984669, 55.855331 ], [ -161.300037, 55.713619 ], [ -161.248131, 55.511811 ], [ -160.8855, 55.451476 ], [ -160.571566, 55.591575 ], [ -160.618817, 55.793612 ], [ -160.984669, 55.855331 ] ] ], "type": "Polygon" }, "id": "840cdddffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -109.395101, 25.641943 ], [ -109.169723, 25.80074 ], [ -109.209502, 26.055902 ], [ -109.475637, 26.152111 ], [ -109.701219, 25.99288 ], [ -109.660464, 25.737877 ], [ -109.395101, 25.641943 ] ] ], "type": "Polygon" }, "id": "84480e9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.144802, 19.6471 ], [ -69.323074, 19.555771 ], [ -69.296494, 19.365348 ], [ -69.091465, 19.266528 ], [ -68.913483, 19.358306 ], [ -68.940239, 19.548453 ], [ -69.144802, 19.6471 ] ] ], "type": "Polygon" }, "id": "844cf39ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -101.969005, 18.31082 ], [ -101.749802, 18.458278 ], [ -101.772624, 18.710787 ], [ -102.015579, 18.815934 ], [ -102.235277, 18.668039 ], [ -102.211526, 18.415435 ], [ -101.969005, 18.31082 ] ] ], "type": "Polygon" }, "id": "8449a37ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -114.15896, 30.793354 ], [ -113.932132, 30.958393 ], [ -113.983458, 31.207634 ], [ -114.262579, 31.291542 ], [ -114.489371, 31.126111 ], [ -114.437081, 30.877166 ], [ -114.15896, 30.793354 ] ] ], "type": "Polygon" }, "id": "84485ebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.619322, 40.470688 ], [ -134.438681, 40.653538 ], [ -134.529468, 40.856557 ], [ -134.801229, 40.876189 ], [ -134.980801, 40.69328 ], [ -134.889687, 40.490798 ], [ -134.619322, 40.470688 ] ] ], "type": "Polygon" }, "id": "842863bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.211687, 57.935855 ], [ -155.569348, 57.808525 ], [ -155.556469, 57.600863 ], [ -155.191286, 57.520665 ], [ -154.83622, 57.646487 ], [ -154.843741, 57.854005 ], [ -155.211687, 57.935855 ] ] ], "type": "Polygon" }, "id": "840ce81ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.17683, 63.587345 ], [ -146.647827, 63.485367 ], [ -146.712187, 63.266045 ], [ -146.313176, 63.149544 ], [ -145.847967, 63.250238 ], [ -145.776016, 63.468704 ], [ -146.17683, 63.587345 ] ] ], "type": "Polygon" }, "id": "840d5b3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.504418, 31.752698 ], [ -117.283243, 31.922278 ], [ -117.341515, 32.167522 ], [ -117.621854, 32.242798 ], [ -117.842812, 32.072842 ], [ -117.783652, 31.827987 ], [ -117.504418, 31.752698 ] ] ], "type": "Polygon" }, "id": "84484a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -137.112102, 59.133196 ], [ -137.236385, 58.934782 ], [ -136.975258, 58.755739 ], [ -136.58985, 58.77356 ], [ -136.461204, 58.971515 ], [ -136.722299, 59.152116 ], [ -137.112102, 59.133196 ] ] ], "type": "Polygon" }, "id": "8413907ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -163.226245, 66.812075 ], [ -163.693797, 66.650585 ], [ -163.589706, 66.418128 ], [ -163.028626, 66.34666 ], [ -162.563592, 66.50581 ], [ -162.657061, 66.738749 ], [ -163.226245, 66.812075 ] ] ], "type": "Polygon" }, "id": "840c301ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -117.603669, 39.624273 ], [ -117.366115, 39.788872 ], [ -117.428945, 40.020064 ], [ -117.730359, 40.086333 ], [ -117.967655, 39.921431 ], [ -117.903802, 39.690565 ], [ -117.603669, 39.624273 ] ] ], "type": "Polygon" }, "id": "84298a3ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -157.874472, 20.28421 ], [ -158.03379, 20.078726 ], [ -157.925876, 19.848774 ], [ -157.658802, 19.824069 ], [ -157.499097, 20.029502 ], [ -157.606849, 20.259692 ], [ -157.874472, 20.28421 ] ] ], "type": "Polygon" }, "id": "845da59ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -155.723024, 21.177959 ], [ -155.886017, 20.974323 ], [ -155.779055, 20.743289 ], [ -155.50933, 20.715707 ], [ -155.346028, 20.919278 ], [ -155.452757, 21.150495 ], [ -155.723024, 21.177959 ] ] ], "type": "Polygon" }, "id": "845d143ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -134.383631, 64.585761 ], [ -134.56061, 64.376853 ], [ -134.256053, 64.188974 ], [ -133.775239, 64.208222 ], [ -133.592052, 64.416447 ], [ -133.895825, 64.606116 ], [ -134.383631, 64.585761 ] ] ], "type": "Polygon" }, "id": "8413a43ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -136.975258, 58.755739 ], [ -137.099032, 58.558255 ], [ -136.841674, 58.379049 ], [ -136.460567, 58.395785 ], [ -136.332545, 58.592804 ], [ -136.58985, 58.77356 ], [ -136.975258, 58.755739 ] ] ], "type": "Polygon" }, "id": "841393dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -116.500719, 31.937288 ], [ -116.276792, 32.105414 ], [ -116.33324, 32.351392 ], [ -116.614539, 32.428886 ], [ -116.838302, 32.260383 ], [ -116.780934, 32.014764 ], [ -116.500719, 31.937288 ] ] ], "type": "Polygon" }, "id": "844859bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.256588, 66.186796 ], [ -156.747065, 66.04868 ], [ -156.717244, 65.817153 ], [ -156.207196, 65.723849 ], [ -155.721368, 65.859956 ], [ -155.740929, 66.091355 ], [ -156.256588, 66.186796 ] ] ], "type": "Polygon" }, "id": "840c231ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -106.50434, 48.157079 ], [ -106.766679, 48.015323 ], [ -106.697137, 47.785281 ], [ -106.368224, 47.696122 ], [ -106.105926, 47.836443 ], [ -106.172484, 48.067353 ], [ -106.50434, 48.157079 ] ] ], "type": "Polygon" }, "id": "8427801ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -158.545528, 60.270782 ], [ -158.923458, 60.130323 ], [ -158.882267, 59.91442 ], [ -158.469519, 59.838898 ], [ -158.094038, 59.977608 ], [ -158.128845, 60.193577 ], [ -158.545528, 60.270782 ] ] ], "type": "Polygon" }, "id": "840ce0dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -124.636081, 62.007323 ], [ -124.879863, 61.810528 ], [ -124.653953, 61.598289 ], [ -124.187059, 61.581151 ], [ -123.939403, 61.776766 ], [ -124.162452, 61.990703 ], [ -124.636081, 62.007323 ] ] ], "type": "Polygon" }, "id": "8412341ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.32049, 19.694174 ], [ -156.481642, 19.4892 ], [ -156.374954, 19.257057 ], [ -156.107321, 19.229672 ], [ -155.945841, 19.434567 ], [ -156.052319, 19.666925 ], [ -156.32049, 19.694174 ] ] ], "type": "Polygon" }, "id": "845d12bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -102.967828, 18.981216 ], [ -102.747949, 19.130195 ], [ -102.772922, 19.383591 ], [ -103.01871, 19.488069 ], [ -103.239049, 19.338644 ], [ -103.213141, 19.085189 ], [ -102.967828, 18.981216 ] ] ], "type": "Polygon" }, "id": "8449ae7ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -63.456039, 19.476592 ], [ -63.285599, 19.62517 ], [ -63.31584, 19.817425 ], [ -63.516245, 19.860881 ], [ -63.68612, 19.712601 ], [ -63.656154, 19.520569 ], [ -63.456039, 19.476592 ] ] ], "type": "Polygon" }, "id": "844d4a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.075453, 61.961934 ], [ -147.51433, 61.857638 ], [ -147.567456, 61.642227 ], [ -147.18847, 61.531845 ], [ -146.754537, 61.634869 ], [ -146.694671, 61.849533 ], [ -147.075453, 61.961934 ] ] ], "type": "Polygon" }, "id": "840c71bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.898556, 62.611428 ], [ -147.349424, 62.507396 ], [ -147.405338, 62.290227 ], [ -147.017495, 62.177854 ], [ -146.571862, 62.280599 ], [ -146.508866, 62.49699 ], [ -146.898556, 62.611428 ] ] ], "type": "Polygon" }, "id": "840c753ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -162.417399, 52.814037 ], [ -162.201559, 52.974895 ], [ -162.332644, 53.189141 ], [ -162.682242, 53.242607 ], [ -162.898668, 53.081185 ], [ -162.764919, 52.866864 ], [ -162.417399, 52.814037 ] ] ], "type": "Polygon" }, "id": "84228bdffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -146.954525, 59.415308 ], [ -147.352588, 59.313018 ], [ -147.401999, 59.105623 ], [ -147.058901, 59.001192 ], [ -146.66492, 59.102309 ], [ -146.609975, 59.309021 ], [ -146.954525, 59.415308 ] ] ], "type": "Polygon" }, "id": "840c43bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -103.625214, 18.532669 ], [ -103.406466, 18.682445 ], [ -103.432684, 18.935576 ], [ -103.678577, 19.038967 ], [ -103.897756, 18.88873 ], [ -103.870612, 18.635566 ], [ -103.625214, 18.532669 ] ] ], "type": "Polygon" }, "id": "8449aebffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -174.749606, 50.422881 ], [ -174.562292, 50.618688 ], [ -174.747479, 50.829268 ], [ -175.121944, 50.843725 ], [ -175.308682, 50.647253 ], [ -175.121547, 50.436989 ], [ -174.749606, 50.422881 ] ] ], "type": "Polygon" }, "id": "8422537ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -156.077204, 55.11274 ], [ -156.399264, 54.986491 ], [ -156.381984, 54.788245 ], [ -156.047065, 54.716302 ], [ -155.727032, 54.841128 ], [ -155.739888, 55.039311 ], [ -156.077204, 55.11274 ] ] ], "type": "Polygon" }, "id": "840cc91ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -129.028211, 63.702619 ], [ -129.247809, 63.498716 ], [ -128.981725, 63.296867 ], [ -128.498073, 63.297143 ], [ -128.273356, 63.500059 ], [ -128.537341, 63.703692 ], [ -129.028211, 63.702619 ] ] ], "type": "Polygon" }, "id": "8413acbffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -135.098117, 54.487663 ], [ -135.218939, 54.301574 ], [ -135.000102, 54.120818 ], [ -134.660708, 54.124697 ], [ -134.53672, 54.310234 ], [ -134.755271, 54.492449 ], [ -135.098117, 54.487663 ] ] ], "type": "Polygon" }, "id": "841d289ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -147.401999, 59.105623 ], [ -147.794621, 59.00209 ], [ -147.840192, 58.795321 ], [ -147.4986, 58.692723 ], [ -147.109914, 58.79507 ], [ -147.058901, 59.001192 ], [ -147.401999, 59.105623 ] ] ], "type": "Polygon" }, "id": "840c433ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -105.852148, 19.450136 ], [ -105.633525, 19.603129 ], [ -105.664429, 19.85724 ], [ -105.914882, 19.958311 ], [ -106.133847, 19.804838 ], [ -106.102018, 19.550776 ], [ -105.852148, 19.450136 ] ] ], "type": "Polygon" }, "id": "84491a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -70.686806, 19.670554 ], [ -70.868152, 19.577098 ], [ -70.842316, 19.385626 ], [ -70.634942, 19.287864 ], [ -70.45385, 19.381759 ], [ -70.479877, 19.572976 ], [ -70.686806, 19.670554 ] ] ], "type": "Polygon" }, "id": "844c89bffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -61.285936, 33.295435 ], [ -61.553095, 33.276051 ], [ -61.679795, 33.094513 ], [ -61.540263, 32.933379 ], [ -61.275009, 32.952818 ], [ -61.147392, 33.133337 ], [ -61.285936, 33.295435 ] ] ], "type": "Polygon" }, "id": "842a6d9ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -161.942964, 52.545499 ], [ -161.727745, 52.705801 ], [ -161.855715, 52.92045 ], [ -162.201559, 52.974895 ], [ -162.417399, 52.814037 ], [ -162.286783, 52.599292 ], [ -161.942964, 52.545499 ] ] ], "type": "Polygon" }, "id": "84228abffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -148.728251, 61.969076 ], [ -149.163316, 61.859163 ], [ -149.202739, 61.642421 ], [ -148.814002, 61.536217 ], [ -148.383627, 61.644762 ], [ -148.337319, 61.860866 ], [ -148.728251, 61.969076 ] ] ], "type": "Polygon" }, "id": "840c715ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -126.565393, 39.781328 ], [ -126.355122, 39.958341 ], [ -126.434415, 40.177462 ], [ -126.724658, 40.219086 ], [ -126.934179, 40.041865 ], [ -126.854212, 39.823229 ], [ -126.565393, 39.781328 ] ] ], "type": "Polygon" }, "id": "84282a5ffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -69.528251, 19.654161 ], [ -69.70731, 19.562303 ], [ -69.68091, 19.371611 ], [ -69.475271, 19.273044 ], [ -69.296494, 19.365348 ], [ -69.323074, 19.555771 ], [ -69.528251, 19.654161 ] ] ], "type": "Polygon" }, "id": "844cf3dffffffff", "properties": {}, "type": "Feature" }, { "geometry": { "coordinates": [ [ [ -121.225568, 56.505758 ], [ -121.454062, 56.323288 ], [ -121.281742, 56.106519 ], [ -120.883442, 56.070724 ], [ -120.652642, 56.251976 ], [ -120.822409, 56.470242 ], [ -121.225568, 56.505758 ] ] ], "type": "Polygon" }, "id": "84121e3ffffffff", "properties": {}, "type": "Feature" } ], "type": "FeatureCollection" }, "hovertemplate": "H3 Cell=%{location}<br>Number of earthquakes=%{z}<extra></extra>", "locations": [ "8429807ffffffff", "8429803ffffffff", "8422ed5ffffffff", "8422c69ffffffff", "8422c45ffffffff", "841db41ffffffff", "8422eebffffffff", "84298c9ffffffff", "8422e89ffffffff", "8422c6dffffffff", "84228b3ffffffff", "8422f37ffffffff", "8422ec7ffffffff", "8422e8dffffffff", "844918dffffffff", "8422c59ffffffff", "8422c4bffffffff", "840cd83ffffffff", "8422c41ffffffff", "840c505ffffffff", "841db47ffffffff", "84280b7ffffffff", "8428003ffffffff", "844919bffffffff", "8422c43ffffffff", "842852bffffffff", "841db45ffffffff", "8422c5dffffffff", "840c761ffffffff", "8422f17ffffffff", "8428e5dffffffff", "8429887ffffffff", "8429a6dffffffff", "841db6bffffffff", "8428e4bffffffff", "8428f3dffffffff", "8429a29ffffffff", "8422f33ffffffff", "840c455ffffffff", "8449a3bffffffff", "845d139ffffffff", "841d651ffffffff", "8422c6bffffffff", "8448013ffffffff", "840ce9dffffffff", "8428005ffffffff", "8412349ffffffff", "8467209ffffffff", "840cda5ffffffff", "84480c7ffffffff", "841db61ffffffff", "8428523ffffffff", "842852dffffffff", "8448055ffffffff", "8422ec3ffffffff", "8448043ffffffff", "841d641ffffffff", "844824dffffffff", "842853dffffffff", "840c41bffffffff", "84485bbffffffff", "840c507ffffffff", "8422d65ffffffff", "8428c95ffffffff", "8422d51ffffffff", "840c58dffffffff", "840cdd3ffffffff", "8422d6bffffffff", "840cca5ffffffff", "8428521ffffffff", "8422c4dffffffff", "844804dffffffff", "84280abffffffff", "8422d67ffffffff", "840c40bffffffff", "8428e59ffffffff", "840c501ffffffff", "841d655ffffffff", "8428007ffffffff", "8429a05ffffffff", "8429ae5ffffffff", "840c66dffffffff", "8422f13ffffffff", "840cdbdffffffff", "840cd9dffffffff", "844801dffffffff", "8422c0dffffffff", "8422ea9ffffffff", "8449ac7ffffffff", "8429ac5ffffffff", "84282a7ffffffff", "8448595ffffffff", "8422c61ffffffff", "8422d59ffffffff", "8412905ffffffff", "840c713ffffffff", "840c409ffffffff", "8429ae9ffffffff", "8449841ffffffff", "8422d5dffffffff", "840c6d5ffffffff", "8422d55ffffffff", "8422d0dffffffff", "841db43ffffffff", "840c5abffffffff", "8422c47ffffffff", "8429a11ffffffff", "8449133ffffffff", "845d115ffffffff", "8428c83ffffffff", "84491e1ffffffff", "8412c25ffffffff", "840c445ffffffff", "8428c8bffffffff", "8428039ffffffff", "840c5a3ffffffff", "84298abffffffff", "844cec1ffffffff", "8449a89ffffffff", "84490a7ffffffff", "842801dffffffff", "841db6dffffffff", "841d65dffffffff", "8429a93ffffffff", "8422e37ffffffff", "8428e5bffffffff", "840c54bffffffff", "8428015ffffffff", "8422d61ffffffff", "844851bffffffff", "8412ce3ffffffff", "84228a3ffffffff", "8449a35ffffffff", "84485b9ffffffff", "8448011ffffffff", "8428085ffffffff", "841d657ffffffff", "842801bffffffff", "8429825ffffffff", "8422f31ffffffff", "8428345ffffffff", "840cdabffffffff", "8422d01ffffffff", "844d4b9ffffffff", "84228b7ffffffff", "8422c65ffffffff", "8449199ffffffff", "840ce93ffffffff", "8422d05ffffffff", "84298c1ffffffff", "8429ad5ffffffff", "844cf13ffffffff", "8448583ffffffff", "840cdb9ffffffff", "8449b13ffffffff", "841db63ffffffff", "840c5e3ffffffff", "842803bffffffff", "8422e83ffffffff", "840c50dffffffff", "841db4bffffffff", "8422d63ffffffff", "8429a9dffffffff", "840cd95ffffffff", "8422d47ffffffff", "840c5a7ffffffff", "840c457ffffffff", "840c68bffffffff", "8422c49ffffffff", "840c5e7ffffffff", "841d64dffffffff", "8448263ffffffff", "841db49ffffffff", "844801bffffffff", "842895bffffffff", "8449ac3ffffffff", "84298c7ffffffff", "840c6a5ffffffff", "840c44dffffffff", "8412931ffffffff", "841d645ffffffff", "840cd99ffffffff", "840cda7ffffffff", "840c737ffffffff", "844cc67ffffffff", "8449ad5ffffffff", "840d5a9ffffffff", "844cc49ffffffff", "84480c3ffffffff", "8449849ffffffff", "841d669ffffffff", "8428e49ffffffff", "8449a31ffffffff", "841db69ffffffff", "840c403ffffffff", "840c723ffffffff", "842985bffffffff", "84482a5ffffffff", "8422d0bffffffff", "8422c01ffffffff", "8422e33ffffffff", "840cec3ffffffff", "8428c9dffffffff", "844851dffffffff", "841d643ffffffff", "840c401ffffffff", "844cc45ffffffff", "84491ebffffffff", "8448587ffffffff", "8448057ffffffff", "840cda3ffffffff", "840cc8bffffffff", "844854dffffffff", "8429a19ffffffff", "840c731ffffffff", "84480c1ffffffff", "840c421ffffffff", "842834dffffffff", "840cedbffffffff", "844808bffffffff", "8422d69ffffffff", "840c589ffffffff", "8429a6bffffffff", "840c739ffffffff", "8429a9bffffffff", "8422f19ffffffff", "840c733ffffffff", "8449447ffffffff", "840cd8bffffffff", "840c729ffffffff", "842803dffffffff", "8428001ffffffff", "840ce95ffffffff", "84280e3ffffffff", "8429ad3ffffffff", "840ce91ffffffff", "840d537ffffffff", "84280e5ffffffff", "841db4dffffffff", "8429a2bffffffff", "8467255ffffffff", "8422893ffffffff", "840c42bffffffff", "840c72bffffffff", "840ce85ffffffff", "8429a1dffffffff", "840c6a7ffffffff", "841d2d1ffffffff", "8449ad9ffffffff", "84480c5ffffffff", "840c563ffffffff", "8422ee1ffffffff", "844cd5bffffffff", "840c419ffffffff", "844ced5ffffffff", "8422e21ffffffff", "840c6a3ffffffff", "840cca1ffffffff", "844cecbffffffff", "8422e15ffffffff", "840cc85ffffffff", "840c73dffffffff", "840c229ffffffff", "8449b23ffffffff", "840c4d9ffffffff", "84491e3ffffffff", "8426b2dffffffff", "8448019ffffffff", "8428535ffffffff", "8428017ffffffff", "8429a61ffffffff", "8429a69ffffffff", "8429ad7ffffffff", "840c50bffffffff", "8449ae1ffffffff", "8428cb9ffffffff", "840c70dffffffff", "840d53dffffffff", "8422d6dffffffff", "8429a23ffffffff", "844595dffffffff", "840c745ffffffff", "8429a8bffffffff", "840c5a1ffffffff", "840c769ffffffff", "840c6bdffffffff", "840c531ffffffff", "8429a13ffffffff", "844984bffffffff", "844919dffffffff", "844d49dffffffff", "840c5adffffffff", "8429a07ffffffff", "840cc95ffffffff", "840c469ffffffff", "8422e87ffffffff", "8412937ffffffff", "8422f07ffffffff", "840c5cbffffffff", "844940dffffffff", "844cf25ffffffff", "84298c3ffffffff", "840c5a9ffffffff", "8422c05ffffffff", "840c423ffffffff", "844984dffffffff", "8422e31ffffffff", "8448009ffffffff", "8428341ffffffff", "840c53bffffffff", "8428cddffffffff", "840c431ffffffff", "842830dffffffff", "840c535ffffffff", "84298cdffffffff", "840c53dffffffff", "840c515ffffffff", "841d21dffffffff", "840cc9dffffffff", "8429a21ffffffff", "84485e9ffffffff", "840ccebffffffff", "841d64bffffffff", "8448555ffffffff", "8448041ffffffff", "840c5e1ffffffff", "842981bffffffff", "844d595ffffffff", "844cd41ffffffff", "844cf37ffffffff", "8428ca1ffffffff", "840c735ffffffff", "8429801ffffffff", "8428c97ffffffff", "84281edffffffff", "8448513ffffffff", "841db0dffffffff", "8428c85ffffffff", "840c5b9ffffffff", "841d2dbffffffff", "8448515ffffffff", "8449ae9ffffffff", "842808dffffffff", "840c297ffffffff", "840c6d7ffffffff", "840c6e5ffffffff", "842b153ffffffff", "840d5bdffffffff", "841db09ffffffff", "840d817ffffffff", "8428c87ffffffff", "8448091ffffffff", "8422c29ffffffff", "8449addffffffff", "842802bffffffff", "840c5bdffffffff", "840c76bffffffff", "840c5c1ffffffff", "840c2b1ffffffff", "8412935ffffffff", "844cd5dffffffff", "84491e5ffffffff", "8448509ffffffff", "8422ee5ffffffff", "8449181ffffffff", "8413b67ffffffff", "84280edffffffff", "8426ea5ffffffff", "840c405ffffffff", "84298ddffffffff", "8429aebffffffff", "840c45dffffffff", "840c509ffffffff", "840cda1ffffffff", "8445a35ffffffff", "8449ad7ffffffff", "840c685ffffffff", "8428c89ffffffff", "842988dffffffff", "84485d7ffffffff", "841d647ffffffff", "8429891ffffffff", "841293dffffffff", "840c511ffffffff", "840ccd1ffffffff", "845d105ffffffff", "841d359ffffffff", "8422e3dffffffff", "8422d19ffffffff", "8429885ffffffff", "840cdd7ffffffff", "844cd47ffffffff", "840cdb1ffffffff", "841d14dffffffff", "8422ebdffffffff", "844c9abffffffff", "8422ea1ffffffff", "840c74bffffffff", "8448511ffffffff", "840c6c3ffffffff", "8428531ffffffff", "841d2ddffffffff", "84280e7ffffffff", "841d325ffffffff", "840d8bdffffffff", "8449189ffffffff", "840c5b1ffffffff", "844985dffffffff", "843bb29ffffffff", "8449a33ffffffff", "840cccbffffffff", "8429859ffffffff", "844cc65ffffffff", "844ced1ffffffff", "840ccddffffffff", "84298c5ffffffff", "8428013ffffffff", "8422f35ffffffff", "840cec1ffffffff", "8422ee3ffffffff", "840c5c7ffffffff", "8422e39ffffffff", "8428031ffffffff", "8428335ffffffff", "8422e85ffffffff", "840cccdffffffff", "840c585ffffffff", "8422d41ffffffff", "8449aedffffffff", "840c2ddffffffff", "840c689ffffffff", "8422e2bffffffff", "84280e1ffffffff", "840c549ffffffff", "840c41dffffffff", "8429a1bffffffff", "84280cdffffffff", "8448519ffffffff", "84298cbffffffff", "840c34bffffffff", "840cc81ffffffff", "840ceb5ffffffff", "8422d57ffffffff", "841db67ffffffff", "840cdbbffffffff", "841db5dffffffff", "840ced7ffffffff", "84265c9ffffffff", "840cecbffffffff", "842a4d7ffffffff", "8428967ffffffff", "8429893ffffffff", "8428c93ffffffff", "8422991ffffffff", "84129b5ffffffff", "8449a85ffffffff", "84298ebffffffff", "844800bffffffff", "8429a55ffffffff", "840c72dffffffff", "8448089ffffffff", "84268b1ffffffff", "840c6c7ffffffff", "840c40dffffffff", "8422e13ffffffff", "8422e8bffffffff", "840c55dffffffff", "8422c09ffffffff", "844c9a1ffffffff", "844918bffffffff", "8448053ffffffff", "8449ae5ffffffff", "8413b23ffffffff", "840cc13ffffffff", "840c537ffffffff", "842af4bffffffff", "8429819ffffffff", "840cec7ffffffff", "840c73bffffffff", "84280a5ffffffff", "840ce83ffffffff", "8429a03ffffffff", "844d4bdffffffff", "8448545ffffffff", "840e2adffffffff", "842299bffffffff", "840c681ffffffff", "8422e25ffffffff", "840d535ffffffff", "8428ccbffffffff", "841db0bffffffff", "84298d7ffffffff", "840c6b7ffffffff", "840c407ffffffff", "840c517ffffffff", "841d2c1ffffffff", "840c703ffffffff", "8448727ffffffff", "8429a5dffffffff", "8422c19ffffffff", "842989bffffffff", "840d691ffffffff", "840ceb7ffffffff", "840ccc3ffffffff", "841d609ffffffff", "840c6dbffffffff", "841da67ffffffff", "8422c51ffffffff", "84480d7ffffffff", "8428c9bffffffff", "840c741ffffffff", "8428063ffffffff", "8428349ffffffff", "840cdadffffffff", "8422d4bffffffff", "841d349ffffffff", "840ce9bffffffff", "8428567ffffffff", "8422f3dffffffff", "841d26dffffffff", "84298bdffffffff", "840ced9ffffffff", "8428963ffffffff", "840d695ffffffff", "8426107ffffffff", "844842dffffffff", "8448355ffffffff", "844808dffffffff", "8422f03ffffffff", "8429b27ffffffff", "840c2dbffffffff", "8428c81ffffffff", "8426a45ffffffff", "840d72dffffffff", "8449ac1ffffffff", "840d5a3ffffffff", "840d69bffffffff", "84280c1ffffffff", "840c767ffffffff", "840cce3ffffffff", "840cc23ffffffff", "8448097ffffffff", "84229a7ffffffff", "840d811ffffffff", "841d66bffffffff", "8429a0bffffffff", "840ccd9ffffffff", "840cee7ffffffff", "844cc09ffffffff", "840c439ffffffff", "8422d2dffffffff", "844ce39ffffffff", "8412901ffffffff", "8448319ffffffff", "8428303ffffffff", "8428023ffffffff", "840c429ffffffff", "8428d5dffffffff", "84491e7ffffffff", "840cdd9ffffffff", "840d43dffffffff", "841d967ffffffff", "8428c65ffffffff", "842645bffffffff", "840c411ffffffff", "840d693ffffffff", "840c721ffffffff", "840c4ddffffffff", "84482adffffffff", "8413125ffffffff", "8413903ffffffff", "8428169ffffffff", "840d5b1ffffffff", "8449409ffffffff", "8428867ffffffff", "840c76dffffffff", "840c539ffffffff", "841d215ffffffff", "840c49bffffffff", "840ceb9ffffffff", "840c707ffffffff", "841d265ffffffff", "840ccc9ffffffff", "844c9a5ffffffff", "8449a13ffffffff", "840c52bffffffff", "84485d9ffffffff", "84491edffffffff", "841296bffffffff", "841d653ffffffff", "844cf35ffffffff", "840c555ffffffff", "8422c55ffffffff", "841db65ffffffff", "840c553ffffffff", "844831bffffffff", "840ce89ffffffff", "84280c9ffffffff", "8422e81ffffffff", "844859dffffffff", "844c899ffffffff", "841da65ffffffff", "8422e1bffffffff", "840c0a5ffffffff", "840c557ffffffff", "844cf21ffffffff", "840ccd3ffffffff", "840c687ffffffff", "840d697ffffffff", "8413917ffffffff", "8449ad1ffffffff", "8422d53ffffffff", "840c727ffffffff", "840c0d3ffffffff", "8422ecdffffffff", "8422895ffffffff", "840cde7ffffffff", "840c447ffffffff", "8428ca7ffffffff", "846d365ffffffff", "840ced1ffffffff", "8448229ffffffff", "844c983ffffffff", "8428109ffffffff", "8445a1dffffffff", "8422c3dffffffff", "84280a9ffffffff", "8429127ffffffff", "8448469ffffffff", "840c415ffffffff", "844cec3ffffffff", "845d163ffffffff", "844d487ffffffff", "840d515ffffffff", "8428033ffffffff", "840c2c7ffffffff", "8422eb1ffffffff", "840c6b1ffffffff", "8429aadffffffff", "8429889ffffffff", "8429883ffffffff", "840cc99ffffffff", "8449a8bffffffff", "840c763ffffffff", "845d13bffffffff", "84480d5ffffffff", "8448557ffffffff", "840c669ffffffff", "8429839ffffffff", "84490a5ffffffff", "842890bffffffff", "8422f11ffffffff", "8448341ffffffff", "8448245ffffffff", "840d813ffffffff", "840c743ffffffff", "8422f39ffffffff", "840c42dffffffff", "840c627ffffffff", "8422c57ffffffff", "8428011ffffffff", "8422e03ffffffff", "8449185ffffffff", "840d68dffffffff", "8428317ffffffff", "8445b25ffffffff", "84298b1ffffffff", "840c017ffffffff", "8429931ffffffff", "84298d3ffffffff", "8428d17ffffffff", "840c543ffffffff", "8412e47ffffffff", "840d517ffffffff", "8449949ffffffff", "8426931ffffffff", "841ba11ffffffff", "844cec5ffffffff", "8422e07ffffffff", "8429957ffffffff", "846d36bffffffff", "845d109ffffffff", "84228a7ffffffff", "844831dffffffff", "84229a3ffffffff", "840c4c9ffffffff", "840c08dffffffff", "844d4a7ffffffff", "840d89bffffffff", "840c2d7ffffffff", "8426b37ffffffff", "840c5e9ffffffff", "84485e3ffffffff", "844cc6dffffffff", "842a8cbffffffff", "8422ea5ffffffff", "8412181ffffffff", "8422ea7ffffffff", "840c09bffffffff", "844cee5ffffffff", "840c1ddffffffff", "84281dbffffffff", "8412ce1ffffffff", "844da57ffffffff", "840e2c3ffffffff", "844858bffffffff", "84482e9ffffffff", "841d32dffffffff", "841d65bffffffff", "844cc05ffffffff", "8448d61ffffffff", "841d1e9ffffffff", "844d593ffffffff", "84456c7ffffffff", "840c5c9ffffffff", "844cc5bffffffff", "8429895ffffffff", "8428b65ffffffff", "840f44dffffffff", "840cc87ffffffff", "84491c3ffffffff", "84129adffffffff", "8448001ffffffff", "840c2c1ffffffff", "8448291ffffffff", "8428027ffffffff", "8448cd7ffffffff", "8422f25ffffffff", "841d051ffffffff", "840ccc5ffffffff", "8422eb9ffffffff", "8428cbdffffffff", "840c449ffffffff", "841d209ffffffff", "8429a57ffffffff", "8428cc3ffffffff", "8428865ffffffff", "8428105ffffffff", "840c6b3ffffffff", "8429a35ffffffff", "840ce17ffffffff", "844ce31ffffffff", "840c0abffffffff", "84298b5ffffffff", "84491d7ffffffff", "844ce27ffffffff", "841d141ffffffff", "844cee9ffffffff", "8428309ffffffff", "8422c67ffffffff", "8429833ffffffff", "8413941ffffffff", "84281cbffffffff", "840d551ffffffff", "8413927ffffffff", "8412b25ffffffff", "8428dd7ffffffff", "844401bffffffff", "844c89dffffffff", "8422f27ffffffff", "8429b29ffffffff", "8413953ffffffff", "84460e3ffffffff", "842b957ffffffff", "8413ad5ffffffff", "840cd93ffffffff", "8449aa9ffffffff", "842a9e7ffffffff", "841d20dffffffff", "844cd57ffffffff", "840f8e1ffffffff", "8428069ffffffff", "841db01ffffffff", "8422e3bffffffff", "841da55ffffffff", "8428347ffffffff", "84298bbffffffff", "8422c17ffffffff", "840ccd7ffffffff", "8449845ffffffff", "8429a0dffffffff", "8426a3dffffffff", "8422eddffffffff", "840c065ffffffff", "84282a3ffffffff", "844d517ffffffff", "8422527ffffffff", "84485c7ffffffff", "8448543ffffffff", "844c2e1ffffffff", "842836bffffffff", "8448287ffffffff", "840c467ffffffff", "841d861ffffffff", "840c205ffffffff", "840dab9ffffffff", "840cdc5ffffffff", "8422eb5ffffffff", "8422dc9ffffffff", "844ce3bffffffff", "840c233ffffffff", "840cde3ffffffff", "844cd67ffffffff", "8448025ffffffff", "840c00dffffffff", "842988bffffffff", "8428d59ffffffff", "841292bffffffff", "8413aadffffffff", "846d34dffffffff", "840c665ffffffff", "840c71dffffffff", "840c583ffffffff", "840c417ffffffff", "842896dffffffff", "842bac5ffffffff", "844cd51ffffffff", "842b889ffffffff", "8429121ffffffff", "840c281ffffffff", "8422d07ffffffff", "8448599ffffffff", "840cd97ffffffff", "8449805ffffffff", "8428505ffffffff", "840c201ffffffff", "8426b03ffffffff", "8422535ffffffff", "840c5c5ffffffff", "840ceabffffffff", "840d6b9ffffffff", "844c035ffffffff", "844cad1ffffffff", "84280e9ffffffff", "841d60bffffffff", "844cc55ffffffff", "8445a0bffffffff", "8428e2bffffffff", "8429881ffffffff", "8429a99ffffffff", "840c595ffffffff", "8428905ffffffff", "843b833ffffffff", "8429a67ffffffff", "843a1a5ffffffff", "841396dffffffff", "840c2c5ffffffff", "840c519ffffffff", "840d4d5ffffffff", "8428b25ffffffff", "8428d3bffffffff", "8426993ffffffff", "8428cd5ffffffff", "8426b6bffffffff", "844ce89ffffffff", "8429125ffffffff", "844cecdffffffff", "84485abffffffff", "8428903ffffffff", "8428961ffffffff", "8422c07ffffffff", "840d895ffffffff", "846d361ffffffff", "845d103ffffffff", "840c70bffffffff", "844856bffffffff", "8422f3bffffffff", "844991bffffffff", "8426417ffffffff", "8413915ffffffff", "840c289ffffffff", "8449191ffffffff", "8449137ffffffff", "842252bffffffff", "84280a7ffffffff", "840c291ffffffff", "842a03dffffffff", "844d4d3ffffffff", "8422f2bffffffff", "840c541ffffffff", "846d347ffffffff", "840c54dffffffff", "8428f27ffffffff", "8428959ffffffff", "842805bffffffff", "8422c0bffffffff", "841db2dffffffff", "8413923ffffffff", "840daa5ffffffff", "845d131ffffffff", "84465d5ffffffff", "840cdb7ffffffff", "842814bffffffff", "840f831ffffffff", "8429ab5ffffffff", "8429829ffffffff", "840c599ffffffff", "840ceddffffffff", "8428a5dffffffff", "840ccb1ffffffff", "8428cb3ffffffff", "8448267ffffffff", "84465d7ffffffff", "84228a1ffffffff", "840ceebffffffff", "8413901ffffffff", "840c6d1ffffffff", "844cc63ffffffff", "840c521ffffffff", "840d0a7ffffffff", "8428157ffffffff", "8422eabffffffff", "84488d3ffffffff", "840d5a5ffffffff", "842b8c1ffffffff", "840d5b5ffffffff", "841d261ffffffff", "845d127ffffffff", "840c66bffffffff", "840f8c7ffffffff", "8413a55ffffffff", "845ecedffffffff", "8445a3bffffffff", "8428eb1ffffffff", "841d2c3ffffffff", "8448e61ffffffff", "8412933ffffffff", "8413adbffffffff", "845d10dffffffff", "844ce35ffffffff", "844d52dffffffff", "844cf27ffffffff", "840cebbffffffff", "8428d13ffffffff", "840c545ffffffff", "84298d5ffffffff", "8448049ffffffff", "841392bffffffff", "840c697ffffffff", "844d853ffffffff", "845d10bffffffff", "840c749ffffffff", "844cc47ffffffff", "840cd31ffffffff", "8449a99ffffffff", "844590dffffffff", "84482c5ffffffff", "8449b27ffffffff", "8412b05ffffffff", "840cc03ffffffff", "840c5edffffffff", "840c5cdffffffff", "8422ec5ffffffff", "84484b3ffffffff", "840f443ffffffff", "840d639ffffffff", "8422f01ffffffff", "8426961ffffffff", "8429815ffffffff", "8413929ffffffff", "845d101ffffffff", "844834bffffffff", "8449829ffffffff", "840c1e7ffffffff", "8448713ffffffff", "8426827ffffffff", "8449843ffffffff", "84480ebffffffff", "840c59dffffffff", "8449b1bffffffff", "840ce97ffffffff", "840c293ffffffff", "844cedbffffffff", "8449b39ffffffff", "8422e11ffffffff", "840d8c1ffffffff", "840d72bffffffff", "84299b7ffffffff", "840d6e3ffffffff", "8412f69ffffffff", "840cecdffffffff", "840d585ffffffff", "841d219ffffffff", "845d169ffffffff", "8448315ffffffff", "845d1e5ffffffff", "8448415ffffffff", "8422997ffffffff", "8422891ffffffff", "842aa3bffffffff", "8448059ffffffff", "844d5b3ffffffff", "8445b33ffffffff", "844c8adffffffff", "8448d97ffffffff", "840c1e5ffffffff", "841d067ffffffff", "841d659ffffffff", "8429811ffffffff", "840c465ffffffff", "84229bbffffffff", "8422c63ffffffff", "841d2c9ffffffff", "844c9adffffffff", "844cc4dffffffff", "8422cc9ffffffff", "840c581ffffffff", "8428021ffffffff", "842b157ffffffff", "8448703ffffffff", "84228a9ffffffff", "8422f21ffffffff", "844d449ffffffff", "8448221ffffffff", "8429123ffffffff", "844d5bbffffffff", "84485c5ffffffff", "844d4adffffffff", "8436b01ffffffff", "8445a31ffffffff", "840c22bffffffff", "842ba57ffffffff", "841294bffffffff", "840ccabffffffff", "842ab11ffffffff", "8449b31ffffffff", "84298a9ffffffff", "840cea9ffffffff", "8445a15ffffffff", "840c369ffffffff", "840d591ffffffff", "840c33bffffffff", "8444709ffffffff", "840cdb5ffffffff", "840c33dffffffff", "84228b1ffffffff", "84482e1ffffffff", "845d135ffffffff", "840c747ffffffff", "8422c5bffffffff", "8422ee7ffffffff", "841d045ffffffff", "844cf31ffffffff", "840c6a1ffffffff", "844ce17ffffffff", "840c587ffffffff", "84485edffffffff", "845da5dffffffff", "840c709ffffffff", "8428e51ffffffff", "840cdc1ffffffff", "842912dffffffff", "840d5b7ffffffff", "8428c99ffffffff", "840cc21ffffffff", "84280adffffffff", "841d213ffffffff", "840d5c5ffffffff", "841d2cbffffffff", "841db39ffffffff", "84228d9ffffffff", "840f957ffffffff", "8422c03ffffffff", "844c8a1ffffffff", "840c2e7ffffffff", "8428e45ffffffff", "840c6c9ffffffff", "8445a17ffffffff", "842989dffffffff", "84229d9ffffffff", "842289dffffffff", "840ce87ffffffff", "844ce83ffffffff", "84129a5ffffffff", "84282abffffffff", "840c647ffffffff", "840d543ffffffff", "840fb65ffffffff", "8429899ffffffff", "8422995ffffffff", "846d349ffffffff", "840d8cdffffffff", "8429a2dffffffff", "8428b63ffffffff", "840ced5ffffffff", "8428c91ffffffff", "8429133ffffffff", "8428825ffffffff", "840c063ffffffff", "841312dffffffff", "844805dffffffff", "84228bbffffffff", "844cd49ffffffff", "840c6abffffffff", "8449919ffffffff", "8428501ffffffff", "8449b15ffffffff", "840f88dffffffff", "84485cdffffffff", "8428cbbffffffff", "844809dffffffff", "842ba8bffffffff", "840c0c3ffffffff", "840d685ffffffff", "840c755ffffffff", "8449b17ffffffff", "84228b9ffffffff", "840d4e5ffffffff", "8422f1bffffffff", "840c61bffffffff", "8448ca7ffffffff", "844cd05ffffffff", "845ee9dffffffff", "844ced7ffffffff", "8422d4dffffffff", "844830dffffffff", "840cdc9ffffffff", "846d267ffffffff", "844cd2dffffffff", "840c359ffffffff", "8422887ffffffff", "844850bffffffff", "840c141ffffffff", "840c461ffffffff", "840c4dbffffffff", "8444cabffffffff", "8448309ffffffff", "840d489ffffffff", "8467243ffffffff", "841db13ffffffff", "844d481ffffffff", "844d497ffffffff", "844c9c7ffffffff", "8467229ffffffff", "8426d85ffffffff", "840cc35ffffffff", "844cd0dffffffff", "844970dffffffff", "844d5dbffffffff", "8448297ffffffff", "8428f01ffffffff", "840c51dffffffff", "8422c21ffffffff", "8428019ffffffff", "840cc31ffffffff", "840d699ffffffff", "844cc01ffffffff", "8422c2bffffffff", "842814dffffffff", "840c5d5ffffffff", "840c2c3ffffffff", "84265d3ffffffff", "8449acbffffffff", "84269c9ffffffff", "84131a1ffffffff", "8449809ffffffff", "844cec9ffffffff", "842ab15ffffffff", "840cde1ffffffff", "8467329ffffffff", "8429a09ffffffff", "845d133ffffffff", "840c5b5ffffffff", "8422e1dffffffff", "844ced9ffffffff", "8429aedffffffff", "844cf3bffffffff", "84291a7ffffffff", "840cd91ffffffff", "8426599ffffffff", "842643bffffffff", "841d6c9ffffffff", "8428cabffffffff", "8422d43ffffffff", "842640dffffffff", "84480d9ffffffff", "841db05ffffffff", "84280a1ffffffff", "8428f47ffffffff", "8413931ffffffff", "8413925ffffffff", "8426935ffffffff", "840c559ffffffff", "8422eadffffffff", "84268cdffffffff", "8448597ffffffff", "8448017ffffffff", "8422897ffffffff", "8422d25ffffffff", "842890dffffffff", "8413107ffffffff", "8448095ffffffff", "840cd87ffffffff", "8426419ffffffff", "844d6b1ffffffff", "8428e41ffffffff", "844d4d5ffffffff", "840ccadffffffff", "841a943ffffffff", "840c247ffffffff", "8437223ffffffff", "842b32dffffffff", "84484b9ffffffff", "84291edffffffff", "840cc2bffffffff", "84289b5ffffffff", "840cc3bffffffff", "840c591ffffffff", "8449ac9ffffffff", "840cee1ffffffff", "845d107ffffffff", "8429a3dffffffff", "841395dffffffff", "840d54dffffffff", "841d355ffffffff", "8422525ffffffff", "840c095ffffffff", "840ceb3ffffffff", "844d4b1ffffffff", "8422ea3ffffffff", "8428d09ffffffff", "840d5adffffffff", "8448425ffffffff", "8449ad3ffffffff", "840c5ebffffffff", "8426415ffffffff", "844d591ffffffff", "842901bffffffff", "8449a27ffffffff", "840c6bbffffffff", "844cd53ffffffff", "840c2b3ffffffff", "840cdcdffffffff", "841d297ffffffff", "840c58bffffffff", "840d51bffffffff", "840c6d9ffffffff", "840c5e5ffffffff", "840cdddffffffff", "84480e9ffffffff", "844cf39ffffffff", "8449a37ffffffff", "84485ebffffffff", "842863bffffffff", "840ce81ffffffff", "840d5b3ffffffff", "84484a3ffffffff", "8413907ffffffff", "840c301ffffffff", "84298a3ffffffff", "845da59ffffffff", "845d143ffffffff", "8413a43ffffffff", "841393dffffffff", "844859bffffffff", "840c231ffffffff", "8427801ffffffff", "840ce0dffffffff", "8412341ffffffff", "845d12bffffffff", "8449ae7ffffffff", "844d4a5ffffffff", "840c71bffffffff", "840c753ffffffff", "84228bdffffffff", "840c43bffffffff", "8449aebffffffff", "8422537ffffffff", "840cc91ffffffff", "8413acbffffffff", "841d289ffffffff", "840c433ffffffff", "84491a5ffffffff", "844c89bffffffff", "842a6d9ffffffff", "84228abffffffff", "840c715ffffffff", "84282a5ffffffff", "844cf3dffffffff", "84121e3ffffffff" ], "marker": { "opacity": 0.5 }, "name": "", "subplot": "mapbox", "type": "choroplethmapbox", "z": [ 95, 82, 54, 47, 40, 40, 37, 33, 31, 30, 28, 27, 26, 22, 22, 22, 22, 21, 20, 20, 20, 19, 18, 18, 18, 17, 17, 16, 16, 16, 15, 15, 15, 15, 15, 15, 14, 14, 14, 14, 14, 13, 13, 13, 12, 12, 12, 12, 12, 12, 12, 12, 11, 11, 11, 11, 11, 11, 11, 11, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ] } ], "layout": { "coloraxis": { "colorbar": { "title": { "text": "Number of earthquakes" } }, "colorscale": [ [ 0, "rgb(150,0,90)" ], [ 0.125, "rgb(0,0,200)" ], [ 0.25, "rgb(0,25,255)" ], [ 0.375, "rgb(0,152,255)" ], [ 0.5, "rgb(44,255,150)" ], [ 0.625, "rgb(151,255,0)" ], [ 0.75, "rgb(255,234,0)" ], [ 0.875, "rgb(255,111,0)" ], [ 1, "rgb(255,0,0)" ] ] }, "legend": { "tracegroupgap": 0 }, "mapbox": { "center": { "lat": 36.1699, "lon": -115.1398 }, "domain": { "x": [ 0, 1 ], "y": [ 0, 1 ] }, "style": "carto-positron", "zoom": 5 }, "margin": { "b": 0, "l": 0, "r": 0, "t": 0 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } } } }, "text/html": [ "<div> <div id=\"45c7a48e-7a37-4aa6-9618-8e5c6c1e2e7d\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"45c7a48e-7a37-4aa6-9618-8e5c6c1e2e7d\")) { Plotly.newPlot( \"45c7a48e-7a37-4aa6-9618-8e5c6c1e2e7d\", [{\"coloraxis\":\"coloraxis\",\"geojson\":{\"type\":\"FeatureCollection\",\"features\":[{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.811663,36.988032],[-115.575676,37.152088],[-115.633331,37.390607],[-115.928005,37.464769],[-116.163852,37.300385],[-116.105169,37.062169],[-115.811663,36.988032]]]},\"id\":\"8429807ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.339706,36.897146],[-116.105169,37.062169],[-116.163852,37.300385],[-116.458086,37.373263],[-116.692453,37.207913],[-116.63276,36.970014],[-116.339706,36.897146]]]},\"id\":\"8429803ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.745324,51.234107],[-174.555433,51.428004],[-174.743139,51.637366],[-175.122753,51.652508],[-175.312052,51.457946],[-175.122345,51.248908],[-174.745324,51.234107]]]},\"id\":\"8422ed5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.529086,52.205677],[-168.323607,52.383157],[-168.484391,52.596134],[-168.853092,52.631502],[-169.058583,52.45338],[-168.895374,52.240534],[-168.529086,52.205677]]]},\"id\":\"8422c69ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.099372,52.061348],[-168.895374,52.240534],[-169.058583,52.45338],[-169.428191,52.486892],[-169.632146,52.307059],[-169.466549,52.094362],[-169.099372,52.061348]]]},\"id\":\"8422c45ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.367036,56.851685],[-152.71858,56.734442],[-152.726398,56.531776],[-152.387558,56.446646],[-152.038794,56.562545],[-152.026095,56.764907],[-152.367036,56.851685]]]},\"id\":\"841db41ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.054008,51.354013],[-172.860012,51.543956],[-173.040236,51.7548],[-173.416591,51.775431],[-173.61016,51.584824],[-173.427817,51.374251],[-173.054008,51.354013]]]},\"id\":\"8422eebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.621435,37.221066],[-118.39197,37.38949],[-118.45537,37.624773],[-118.749183,37.691263],[-118.978343,37.522525],[-118.914,37.287613],[-118.621435,37.221066]]]},\"id\":\"84298c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.178557,51.411256],[-173.986814,51.603515],[-174.172468,51.813185],[-174.551933,51.830289],[-174.743139,51.637366],[-174.555433,51.428004],[-174.178557,51.411256]]]},\"id\":\"8422e89ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.958283,52.346469],[-167.751362,52.522238],[-167.909683,52.735329],[-168.277401,52.77254],[-168.484391,52.596134],[-168.323607,52.383157],[-167.958283,52.346469]]]},\"id\":\"8422c6dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.386851,53.346867],[-163.169875,53.508858],[-163.307364,53.722192],[-163.664539,53.773571],[-163.882025,53.611002],[-163.741836,53.397634],[-163.386851,53.346867]]]},\"id\":\"84228b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.815579,52.617479],[-166.605891,52.789813],[-166.759185,53.003076],[-167.124709,53.04393],[-167.334576,52.870972],[-167.178752,52.657786],[-166.815579,52.617479]]]},\"id\":\"8422f37ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.62004,51.182658],[-173.427817,51.374251],[-173.61016,51.584824],[-173.986814,51.603515],[-174.178557,51.411256],[-173.994143,51.200972],[-173.62004,51.182658]]]},\"id\":\"8422ec7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.61016,51.584824],[-173.416591,51.775431],[-173.600144,51.985393],[-173.979383,52.004456],[-174.172468,51.813185],[-173.986814,51.603515],[-173.61016,51.584824]]]},\"id\":\"8422e8dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.154143,18.527649],[-106.938328,18.681891],[-106.971597,18.935179],[-107.221583,19.034127],[-107.43768,18.879379],[-107.40351,18.626191],[-107.154143,18.527649]]]},\"id\":\"844918dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.347926,51.84664],[-171.148799,52.031567],[-171.322389,52.243129],[-171.697378,52.269543],[-171.896241,52.083957],[-171.720395,51.872617],[-171.347926,51.84664]]]},\"id\":\"8422c59ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.237945,51.762052],[-170.03702,51.944634],[-170.204966,52.157164],[-170.576158,52.186928],[-170.776929,52.003692],[-170.606676,51.791347],[-170.237945,51.762052]]]},\"id\":\"8422c4bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.495024,54.403595],[-161.271693,54.558074],[-161.401811,54.770104],[-161.758113,54.827744],[-161.982151,54.672721],[-161.849189,54.460604],[-161.495024,54.403595]]]},\"id\":\"840cd83ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.669029,51.913474],[-169.466549,52.094362],[-169.632146,52.307059],[-170.002584,52.338703],[-170.204966,52.157164],[-170.03702,51.944634],[-169.669029,51.913474]]]},\"id\":\"8422c41ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.354981,60.255061],[-153.749948,60.13115],[-153.750551,59.91682],[-153.362477,59.826681],[-152.970904,59.94906],[-152.964015,60.163097],[-153.354981,60.255061]]]},\"id\":\"840c505ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.726398,56.531776],[-153.073176,56.413791],[-153.078435,56.212036],[-152.741707,56.128532],[-152.397604,56.245169],[-152.387558,56.446646],[-152.726398,56.531776]]]},\"id\":\"841db47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.279318,43.14228],[-127.064098,43.317153],[-127.147402,43.526795],[-127.446623,43.561117],[-127.661001,43.386062],[-127.577007,43.176867],[-127.279318,43.14228]]]},\"id\":\"84280b7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.053928,40.177894],[-124.837561,40.352874],[-124.914693,40.5734],[-125.208943,40.618487],[-125.424628,40.443278],[-125.346752,40.223212],[-125.053928,40.177894]]]},\"id\":\"8428003ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.945159,19.464654],[-108.729873,19.621465],[-108.766908,19.875217],[-109.020123,19.971994],[-109.235615,19.814669],[-109.197688,19.561083],[-108.945159,19.464654]]]},\"id\":\"844919bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.204966,52.157164],[-170.002584,52.338703],[-170.171533,52.550658],[-170.54522,52.580888],[-170.747449,52.398696],[-170.576158,52.186928],[-170.204966,52.157164]]]},\"id\":\"8422c43ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.317515,43.953735],[-129.108108,44.129983],[-129.195366,44.334081],[-129.492643,44.361478],[-129.701096,44.185085],[-129.613233,43.98144],[-129.317515,43.953735]]]},\"id\":\"842852bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.062433,56.819397],[-153.411898,56.700039],[-153.41482,56.49711],[-153.073176,56.413791],[-152.726398,56.531776],[-152.71858,56.734442],[-153.062433,56.819397]]]},\"id\":\"841db45ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.776929,52.003692],[-170.576158,52.186928],[-170.747449,52.398696],[-171.121826,52.427023],[-171.322389,52.243129],[-171.148799,52.031567],[-170.776929,52.003692]]]},\"id\":\"8422c5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.086874,63.265636],[-151.538468,63.146902],[-151.55894,62.924879],[-151.135652,62.822078],[-150.688815,62.939252],[-150.660524,63.160773],[-151.086874,63.265636]]]},\"id\":\"840c761ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.006231,51.955989],[-167.800815,52.132831],[-167.958283,52.346469],[-168.323607,52.383157],[-168.529086,52.205677],[-168.369191,51.992149],[-168.006231,51.955989]]]},\"id\":\"8422f17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.147402,43.526795],[-126.930787,43.701105],[-127.014226,43.909921],[-127.31499,43.943987],[-127.530764,43.769493],[-127.446623,43.561117],[-127.147402,43.526795]]]},\"id\":\"8428e5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.310311,39.127098],[-118.075769,39.293376],[-118.139716,39.524963],[-118.439199,39.589927],[-118.673444,39.423346],[-118.608508,39.192106],[-118.310311,39.127098]]]},\"id\":\"8429887ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.655316,32.853419],[-115.427648,33.01994],[-115.482888,33.265478],[-115.766759,33.344167],[-115.994307,33.177278],[-115.938108,32.932069],[-115.655316,32.853419]]]},\"id\":\"8429a6dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.41482,56.49711],[-153.75951,56.377051],[-153.75997,56.175059],[-153.420542,56.093352],[-153.078435,56.212036],[-153.073176,56.413791],[-153.41482,56.49711]]]},\"id\":\"841db6bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.764887,43.281382],[-126.547453,43.455503],[-126.630042,43.665584],[-126.930787,43.701105],[-127.147402,43.526795],[-127.064098,43.317153],[-126.764887,43.281382]]]},\"id\":\"8428e4bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.269405,46.085726],[-122.029187,46.249865],[-122.106131,46.458305],[-122.424275,46.502254],[-122.663886,46.337861],[-122.585967,46.129774],[-122.269405,46.085726]]]},\"id\":\"8428f3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.164298,33.910538],[-115.935659,34.077319],[-115.992427,34.320876],[-116.278799,34.39732],[-116.507286,34.230184],[-116.449556,33.986961],[-116.164298,33.910538]]]},\"id\":\"8429a29ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.387077,52.483733],[-167.178752,52.657786],[-167.334576,52.870972],[-167.701235,52.910012],[-167.909683,52.735329],[-167.751362,52.522238],[-167.387077,52.483733]]]},\"id\":\"8422f33ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.842275,60.661506],[-146.26185,60.562116],[-146.322172,60.351758],[-145.968926,60.241565],[-145.55398,60.339803],[-145.487676,60.549376],[-145.842275,60.661506]]]},\"id\":\"840c455ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.62456,17.866842],[-102.40639,18.015094],[-102.430461,18.267348],[-102.673623,18.37142],[-102.892259,18.222714],[-102.867268,17.970392],[-102.62456,17.866842]]]},\"id\":\"8449a3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.515561,19.611161],[-155.677729,19.406624],[-155.571634,19.173664],[-155.303603,19.145043],[-155.141137,19.34949],[-155.246997,19.582648],[-155.515561,19.611161]]]},\"id\":\"845d139ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.677587,49.836178],[-129.454271,50.004878],[-129.548514,50.190621],[-129.86676,50.207288],[-130.088959,50.038434],[-129.994037,49.853068],[-129.677587,49.836178]]]},\"id\":\"841d651ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.058583,52.45338],[-168.853092,52.631502],[-169.017234,52.84378],[-169.389305,52.877785],[-169.594757,52.699017],[-169.428191,52.486892],[-169.058583,52.45338]]]},\"id\":\"8422c6bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.579451,25.227676],[-109.355079,25.38676],[-109.395101,25.641943],[-109.660464,25.737877],[-109.88503,25.578351],[-109.844041,25.323335],[-109.579451,25.227676]]]},\"id\":\"8448013ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.116202,57.6879],[-154.473774,57.564265],[-154.469038,57.357877],[-154.11197,57.275323],[-153.757106,57.397506],[-153.756604,57.603684],[-154.116202,57.6879]]]},\"id\":\"840ce9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.173268,40.036776],[-123.954257,40.21078],[-124.029778,40.432927],[-124.325096,40.480622],[-124.543472,40.306377],[-124.467172,40.084678],[-124.173268,40.036776]]]},\"id\":\"8428005ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.617689,62.41712],[-124.865142,62.219678],[-124.636081,62.007323],[-124.162452,61.990703],[-123.911016,62.186953],[-124.137126,62.401019],[-124.617689,62.41712]]]},\"id\":\"8412349ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-72.889578,18.515885],[-73.075699,18.416396],[-73.050904,18.219284],[-72.839773,18.121898],[-72.653854,18.221825],[-72.678863,18.418699],[-72.889578,18.515885]]]},\"id\":\"8467209ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.805318,53.986395],[-163.586193,54.147809],[-163.727565,54.360074],[-164.09083,54.410939],[-164.310438,54.248942],[-164.16631,54.036666],[-163.805318,53.986395]]]},\"id\":\"840cda5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.192253,25.928218],[-109.967508,26.088183],[-110.009,26.342978],[-110.276206,26.437623],[-110.501116,26.277221],[-110.458657,26.022613],[-110.192253,25.928218]]]},\"id\":\"84480c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.103864,56.458531],[-154.446361,56.33641],[-154.442016,56.134222],[-154.099981,56.05434],[-153.75997,56.175059],[-153.75951,56.377051],[-154.103864,56.458531]]]},\"id\":\"841db61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.195366,44.334081],[-128.984584,44.509794],[-129.072029,44.71305],[-129.370879,44.740148],[-129.580704,44.564289],[-129.492643,44.361478],[-129.195366,44.334081]]]},\"id\":\"8428523ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.42672,43.865502],[-128.214095,44.040901],[-128.299897,44.246728],[-128.598978,44.27671],[-128.810694,44.101151],[-128.724245,43.895771],[-128.42672,43.865502]]]},\"id\":\"842852dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.857251,23.757888],[-108.634513,23.915872],[-108.67262,24.171356],[-108.934423,24.268713],[-109.157385,24.110273],[-109.118323,23.854935],[-108.857251,23.757888]]]},\"id\":\"8448055ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.184565,51.00774],[-173.994143,51.200972],[-174.178557,51.411256],[-174.555433,51.428004],[-174.745324,51.234107],[-174.558886,51.024127],[-174.184565,51.00774]]]},\"id\":\"8422ec3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.558757,23.404947],[-108.336256,23.562474],[-108.373656,23.818004],[-108.634513,23.915872],[-108.857251,23.757888],[-108.818898,23.502495],[-108.558757,23.404947]]]},\"id\":\"8448043ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.454155,51.137767],[-130.592791,50.962217],[-130.408921,50.773734],[-130.087162,50.759396],[-129.946126,50.934187],[-130.129229,51.124079],[-130.454155,51.137767]]]},\"id\":\"841d641ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.235615,19.814669],[-109.020123,19.971994],[-109.057825,20.225917],[-109.311913,20.322344],[-109.527598,20.164509],[-109.489004,19.91076],[-109.235615,19.814669]]]},\"id\":\"844824dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.701096,44.185085],[-129.492643,44.361478],[-129.580704,44.564289],[-129.877816,44.590255],[-130.085294,44.413725],[-129.996642,44.211366],[-129.701096,44.185085]]]},\"id\":\"842853dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.999363,59.700749],[-145.405284,59.604735],[-145.469867,59.398226],[-145.134038,59.288525],[-144.732515,59.383466],[-144.662448,59.589171],[-144.999363,59.700749]]]},\"id\":\"840c41bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.317848,32.527734],[-115.090078,32.693885],[-115.144494,32.940147],[-115.427648,33.01994],[-115.655316,32.853419],[-115.599937,32.607477],[-115.317848,32.527734]]]},\"id\":\"84485bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.970904,59.94906],[-153.362477,59.826681],[-153.366137,59.613487],[-152.984357,59.522976],[-152.596164,59.643856],[-152.586376,59.856735],[-152.970904,59.94906]]]},\"id\":\"840c507ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.882025,53.611002],[-163.664539,53.773571],[-163.805318,53.986395],[-164.16631,54.036666],[-164.384265,53.873512],[-164.24077,53.660675],[-163.882025,53.611002]]]},\"id\":\"8422d65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.988731,49.064733],[-128.764822,49.233846],[-128.857011,49.423207],[-129.173818,49.443074],[-129.396667,49.2738],[-129.303777,49.08482],[-128.988731,49.064733]]]},\"id\":\"8428c95ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.281357,53.256556],[-167.069925,53.428409],[-167.227405,53.640461],[-167.598902,53.680561],[-167.810472,53.508079],[-167.65042,53.296128],[-167.281357,53.256556]]]},\"id\":\"8422d51ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.453077,58.451501],[-150.829927,58.338638],[-150.852213,58.131728],[-150.503037,58.03812],[-150.129564,58.149665],[-150.101899,58.356126],[-150.453077,58.451501]]]},\"id\":\"840c58dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.166535,55.328119],[-160.479,55.189609],[-160.43366,54.989682],[-160.080345,54.928077],[-159.769381,55.065022],[-159.81022,55.265127],[-160.166535,55.328119]]]},\"id\":\"840cdd3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.032465,53.378285],[-164.817343,53.544319],[-164.963528,53.757151],[-165.327507,53.803928],[-165.542986,53.637293],[-165.39414,53.424484],[-165.032465,53.378285]]]},\"id\":\"8422d6bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.769381,55.065022],[-160.080345,54.928077],[-160.03812,54.729117],[-159.689348,54.666938],[-159.379915,54.802341],[-159.417714,55.001456],[-159.769381,55.065022]]]},\"id\":\"840cca5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.810694,44.101151],[-128.598978,44.27671],[-128.685605,44.481254],[-128.984584,44.509794],[-129.195366,44.334081],[-129.108108,44.129983],[-128.810694,44.101151]]]},\"id\":\"8428521ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.139612,51.667709],[-168.937087,51.847949],[-169.099372,52.061348],[-169.466549,52.094362],[-169.669029,51.913474],[-169.50439,51.700222],[-169.139612,51.667709]]]},\"id\":\"8422c4dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.966701,22.697623],[-107.74471,22.85423],[-107.780711,23.109763],[-108.039654,23.208575],[-108.261907,23.051507],[-108.224955,22.796091],[-107.966701,22.697623]]]},\"id\":\"844804dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.652415,42.258638],[-126.436964,42.43367],[-126.518464,42.646622],[-126.816127,42.68409],[-127.030783,42.508863],[-126.948578,42.296363],[-126.652415,42.258638]]]},\"id\":\"84280abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.384265,53.873512],[-164.16631,54.036666],[-164.310438,54.248942],[-164.675264,54.29806],[-164.893646,54.134315],[-164.746787,53.922046],[-164.384265,53.873512]]]},\"id\":\"8422d67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.322172,60.351758],[-146.735857,60.250944],[-146.791812,60.041118],[-146.43999,59.932842],[-146.030766,60.032486],[-145.968926,60.241565],[-146.322172,60.351758]]]},\"id\":\"840c40bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.661001,43.386062],[-127.446623,43.561117],[-127.530764,43.769493],[-127.829965,43.802368],[-128.043479,43.627138],[-127.958662,43.419208],[-127.661001,43.386062]]]},\"id\":\"8428e59ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.566324,60.284475],[-152.964015,60.163097],[-152.970904,59.94906],[-152.586376,59.856735],[-152.192217,59.976617],[-152.17906,60.190307],[-152.566324,60.284475]]]},\"id\":\"840c501ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.088959,50.038434],[-129.86676,50.207288],[-130.045922,50.39626],[-130.364574,50.411238],[-130.500998,50.237879],[-130.40518,50.053845],[-130.088959,50.038434]]]},\"id\":\"841d655ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.543472,40.306377],[-124.325096,40.480622],[-124.401461,40.701598],[-124.696976,40.74788],[-124.914693,40.5734],[-124.837561,40.352874],[-124.543472,40.306377]]]},\"id\":\"8428007ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.676803,33.81935],[-116.449556,33.986961],[-116.507286,34.230184],[-116.793213,34.305447],[-117.02028,34.137481],[-116.961605,33.894608],[-116.676803,33.81935]]]},\"id\":\"8429a05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.894118,35.488606],[-117.666441,35.65712],[-117.727433,35.896414],[-118.017043,35.966828],[-118.244465,35.797981],[-118.182537,35.559055],[-117.894118,35.488606]]]},\"id\":\"8429ae5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.303432,63.567626],[-145.776016,63.468704],[-145.847967,63.250238],[-145.454852,63.131594],[-144.988187,63.229289],[-144.908757,63.446842],[-145.303432,63.567626]]]},\"id\":\"840c66dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.573181,51.813606],[-168.369191,51.992149],[-168.529086,52.205677],[-168.895374,52.240534],[-169.099372,52.061348],[-168.937087,51.847949],[-168.573181,51.813606]]]},\"id\":\"8422f13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.159737,53.934343],[-161.939048,54.091727],[-162.07154,54.304396],[-162.427515,54.359754],[-162.648838,54.201813],[-162.513562,53.989074],[-162.159737,53.934343]]]},\"id\":\"840cdbdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.096628,54.910585],[-161.401811,54.770104],[-161.271693,54.558074],[-160.919406,54.499436],[-160.695144,54.652192],[-160.741769,54.850956],[-161.096628,54.910585]]]},\"id\":\"840cd9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.973243,24.524123],[-108.749299,24.682318],[-108.787872,24.937773],[-109.051356,25.034889],[-109.275521,24.876248],[-109.235983,24.620941],[-108.973243,24.524123]]]},\"id\":\"844801dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.594757,52.699017],[-169.389305,52.877785],[-169.556851,53.089323],[-169.932281,53.121922],[-170.137639,52.942506],[-169.967674,52.731141],[-169.594757,52.699017]]]},\"id\":\"8422c0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.026275,52.153982],[-172.82952,52.341915],[-173.01212,52.551529],[-173.39367,52.572931],[-173.589989,52.384334],[-173.405209,52.175001],[-173.026275,52.153982]]]},\"id\":\"8422ea9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.088985,18.485188],[-103.870612,18.635566],[-103.897756,18.88873],[-104.144197,18.991533],[-104.362982,18.840686],[-104.334915,18.587507],[-104.088985,18.485188]]]},\"id\":\"8449ac7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.081468,34.879182],[-118.858147,35.049768],[-118.921062,35.288829],[-119.208189,35.356903],[-119.431193,35.185984],[-119.367391,34.947326],[-119.081468,34.879182]]]},\"id\":\"8429ac5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.934179,40.041865],[-126.724658,40.219086],[-126.804746,40.43702],[-127.095021,40.477247],[-127.303769,40.299824],[-127.22302,40.082376],[-126.934179,40.041865]]]},\"id\":\"84282a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.489858,32.114502],[-115.263286,32.281084],[-115.317848,32.527734],[-115.599937,32.607477],[-115.826399,32.440519],[-115.770886,32.194197],[-115.489858,32.114502]]]},\"id\":\"8448595ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.484391,52.596134],[-168.277401,52.77254],[-168.439082,52.984951],[-168.810228,53.020826],[-169.017234,52.84378],[-168.853092,52.631502],[-168.484391,52.596134]]]},\"id\":\"8422c61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.334576,52.870972],[-167.124709,53.04393],[-167.281357,53.256556],[-167.65042,53.296128],[-167.860417,53.12254],[-167.701235,52.910012],[-167.334576,52.870972]]]},\"id\":\"8422d59ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-132.1878,52.829961],[-132.321844,52.649029],[-132.122917,52.46258],[-131.790547,52.455624],[-131.653764,52.635868],[-131.852069,52.823762],[-132.1878,52.829961]]]},\"id\":\"8412905ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.567456,61.642227],[-147.999706,61.536443],[-148.048197,61.321578],[-147.671078,61.213191],[-147.243578,61.317687],[-147.18847,61.531845],[-147.567456,61.642227]]]},\"id\":\"840c713ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.621247,60.672409],[-147.039465,60.570397],[-147.093729,60.359302],[-146.735857,60.250944],[-146.322172,60.351758],[-146.26185,60.562116],[-146.621247,60.672409]]]},\"id\":\"840c409ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.571548,34.980457],[-118.346673,35.150264],[-118.408681,35.389715],[-118.696476,35.458971],[-118.921062,35.288829],[-118.858147,35.049768],[-118.571548,34.980457]]]},\"id\":\"8429ae9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.047359,18.394263],[-100.827705,18.54043],[-100.848668,18.792697],[-101.090216,18.898929],[-101.310402,18.75234],[-101.288508,18.499944],[-101.047359,18.394263]]]},\"id\":\"8449841ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.759185,53.003076],[-166.54794,53.174306],[-166.70202,53.387011],[-167.069925,53.428409],[-167.281357,53.256556],[-167.124709,53.04393],[-166.759185,53.003076]]]},\"id\":\"8422d5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-140.504389,60.464072],[-140.928784,60.382766],[-141.029099,60.178818],[-140.710366,60.057245],[-140.291088,60.137724],[-140.185461,60.340595],[-140.504389,60.464072]]]},\"id\":\"840c6d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.70202,53.387011],[-166.489195,53.557127],[-166.644068,53.769261],[-167.014385,53.811199],[-167.227405,53.640461],[-167.069925,53.428409],[-166.70202,53.387011]]]},\"id\":\"8422d55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.542986,53.637293],[-165.327507,53.803928],[-165.477068,54.016171],[-165.844791,54.061736],[-166.060582,53.894492],[-165.90835,53.682295],[-165.542986,53.637293]]]},\"id\":\"8422d0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.038794,56.562545],[-152.387558,56.446646],[-152.397604,56.245169],[-152.063663,56.159899],[-151.717665,56.274477],[-151.702848,56.475636],[-152.038794,56.562545]]]},\"id\":\"841db43ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.242953,57.81179],[-151.609379,57.697036],[-151.625524,57.491758],[-151.280427,57.401611],[-150.917126,57.515034],[-150.895805,57.719924],[-151.242953,57.81179]]]},\"id\":\"840c5abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.632146,52.307059],[-169.428191,52.486892],[-169.594757,52.699017],[-169.967674,52.731141],[-170.171533,52.550658],[-170.002584,52.338703],[-169.632146,52.307059]]]},\"id\":\"8422c47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.386047,34.25924],[-118.162155,34.429144],[-118.223411,34.669971],[-118.509464,34.740503],[-118.73308,34.570256],[-118.670924,34.329821],[-118.386047,34.25924]]]},\"id\":\"8429a11ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.666889,17.930812],[-105.450644,18.082984],[-105.480825,18.335755],[-105.728157,18.436308],[-105.944744,18.28364],[-105.913658,18.030916],[-105.666889,17.930812]]]},\"id\":\"8449133ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.084157,19.786804],[-155.246997,19.582648],[-155.141137,19.34949],[-154.872682,19.320301],[-154.70956,19.524365],[-154.815172,19.75771],[-155.084157,19.786804]]]},\"id\":\"845d115ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.581563,48.852844],[-128.35662,49.02179],[-128.447886,49.212482],[-128.764822,49.233846],[-128.988731,49.064733],[-128.896746,48.874423],[-128.581563,48.852844]]]},\"id\":\"8428c83ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.408549,18.230387],[-106.19248,18.383595],[-106.224202,18.636656],[-106.472898,18.736437],[-106.689279,18.582727],[-106.656654,18.329741],[-106.408549,18.230387]]]},\"id\":\"84491e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.725166,51.032312],[-118.936452,50.86545],[-118.799825,50.650464],[-118.45406,50.601024],[-118.241325,50.766662],[-118.375778,50.982966],[-118.725166,51.032312]]]},\"id\":\"8412c25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.243578,61.317687],[-147.671078,61.213191],[-147.721618,60.999575],[-147.351104,60.891161],[-146.928281,60.994399],[-146.871318,61.207298],[-147.243578,61.317687]]]},\"id\":\"840c445ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.713885,48.491533],[-128.490489,48.661206],[-128.581563,48.852844],[-128.896746,48.874423],[-129.119111,48.704587],[-129.027332,48.513335],[-128.713885,48.491533]]]},\"id\":\"8428c8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.914693,40.5734],[-124.696976,40.74788],[-124.774184,40.967675],[-125.069871,41.012538],[-125.286907,40.83783],[-125.208943,40.618487],[-124.914693,40.5734]]]},\"id\":\"8428039ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.625524,57.491758],[-151.986891,57.376129],[-152.000147,57.1717],[-151.65712,57.08325],[-151.298759,57.197542],[-151.280427,57.401611],[-151.625524,57.491758]]]},\"id\":\"840c5a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.776911,39.227057],[-117.540731,39.392353],[-117.603669,39.624273],[-117.903802,39.690565],[-118.139716,39.524963],[-118.075769,39.293376],[-117.776911,39.227057]]]},\"id\":\"84298abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.924167,19.055813],[-64.756851,19.204613],[-64.78599,19.395945],[-64.982169,19.438233],[-65.148903,19.28973],[-65.12004,19.098643],[-64.924167,19.055813]]]},\"id\":\"844cec1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.362982,18.840686],[-104.144197,18.991533],[-104.171968,19.245053],[-104.419451,19.347735],[-104.638637,19.19642],[-104.60994,18.942894],[-104.362982,18.840686]]]},\"id\":\"8449a89ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.412264,19.403768],[-109.197688,19.561083],[-109.235615,19.814669],[-109.489004,19.91076],[-109.703764,19.752927],[-109.664952,19.499523],[-109.412264,19.403768]]]},\"id\":\"84490a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.561098,40.047526],[-125.346752,40.223212],[-125.424628,40.443278],[-125.717577,40.487191],[-125.931217,40.311283],[-125.852621,40.091685],[-125.561098,40.047526]]]},\"id\":\"842801dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.455238,56.742895],[-154.800224,56.619347],[-154.79333,56.416021],[-154.446361,56.33641],[-154.103864,56.458531],[-154.105847,56.661679],[-154.455238,56.742895]]]},\"id\":\"841db6dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.906051,50.569957],[-130.045922,50.39626],[-129.86676,50.207288],[-129.548514,50.190621],[-129.406347,50.363537],[-129.584702,50.553906],[-129.906051,50.569957]]]},\"id\":\"841d65dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.199205,36.686957],[-120.978099,36.85946],[-121.046013,37.092763],[-121.335882,37.15313],[-121.556545,36.980328],[-121.487788,36.747458],[-121.199205,36.686957]]]},\"id\":\"8429a93ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.806011,51.607077],[-170.606676,51.791347],[-170.776929,52.003692],[-171.148799,52.031567],[-171.347926,51.84664],[-171.175406,51.634497],[-170.806011,51.607077]]]},\"id\":\"8422e37ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.043479,43.627138],[-127.829965,43.802368],[-127.914939,44.009473],[-128.214095,44.040901],[-128.42672,43.865502],[-128.341085,43.658845],[-128.043479,43.627138]]]},\"id\":\"8428e5bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.293504,61.288955],[-151.71041,61.170917],[-151.727933,60.954506],[-151.33526,60.856571],[-150.922388,60.973132],[-150.898166,61.189093],[-151.293504,61.288955]]]},\"id\":\"840c54bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.424628,40.443278],[-125.208943,40.618487],[-125.286907,40.83783],[-125.581293,40.881504],[-125.796272,40.706073],[-125.717577,40.487191],[-125.424628,40.443278]]]},\"id\":\"8428015ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.457097,53.496374],[-164.24077,53.660675],[-164.384265,53.873512],[-164.746787,53.922046],[-164.963528,53.757151],[-164.817343,53.544319],[-164.457097,53.496374]]]},\"id\":\"8422d61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.178809,29.628174],[-113.954247,29.793544],[-114.005113,30.043902],[-114.281487,30.128586],[-114.506012,29.96281],[-114.454203,29.712757],[-114.178809,29.628174]]]},\"id\":\"844851bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.653659,49.982008],[-114.883081,49.822871],[-114.768905,49.601942],[-114.427783,49.538953],[-114.197416,49.696763],[-114.309094,49.918887],[-114.653659,49.982008]]]},\"id\":\"8412ce3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.855715,52.92045],[-161.638919,53.079607],[-161.76732,53.293759],[-162.11521,53.34885],[-162.332644,53.189141],[-162.201559,52.974895],[-161.855715,52.92045]]]},\"id\":\"84228a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.704427,17.954042],[-101.485726,18.101061],[-101.507952,18.353126],[-101.749802,18.458278],[-101.969005,18.31082],[-101.945856,18.058652],[-101.704427,17.954042]]]},\"id\":\"8449a35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.981916,32.200269],[-114.754063,32.366044],[-114.807659,32.613008],[-115.090078,32.693885],[-115.317848,32.527734],[-115.263286,32.281084],[-114.981916,32.200269]]]},\"id\":\"84485b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.275521,24.876248],[-109.051356,25.034889],[-109.090651,25.290222],[-109.355079,25.38676],[-109.579451,25.227676],[-109.53919,24.9725],[-109.275521,24.876248]]]},\"id\":\"8448011ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.785118,41.869346],[-126.571035,42.0449],[-126.652415,42.258638],[-126.948578,42.296363],[-127.161867,42.120615],[-127.079793,41.907336],[-126.785118,41.869346]]]},\"id\":\"8428085ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.214684,49.68349],[-129.994037,49.853068],[-130.088959,50.038434],[-130.40518,50.053845],[-130.624686,49.884125],[-130.529119,49.699138],[-130.214684,49.68349]]]},\"id\":\"841d657ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.434415,40.177462],[-126.22283,40.354041],[-126.302233,40.572453],[-126.593912,40.613808],[-126.804746,40.43702],[-126.724658,40.219086],[-126.434415,40.177462]]]},\"id\":\"842801bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.216743,37.247101],[-113.976602,37.408122],[-114.031068,37.647461],[-114.326759,37.725523],[-114.566855,37.564174],[-114.511309,37.325094],[-114.216743,37.247101]]]},\"id\":\"8429825ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.871217,52.230247],[-166.663065,52.403674],[-166.815579,52.617479],[-167.178752,52.657786],[-167.387077,52.483733],[-167.232069,52.270002],[-166.871217,52.230247]]]},\"id\":\"8422f31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.556545,36.980328],[-121.335882,37.15313],[-121.404631,37.38541],[-121.694882,37.444452],[-121.91508,37.271356],[-121.845497,37.039513],[-121.556545,36.980328]]]},\"id\":\"8428345ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.648838,54.201813],[-162.427515,54.359754],[-162.563302,54.571939],[-162.923227,54.626236],[-163.145147,54.467731],[-163.006555,54.255497],[-162.648838,54.201813]]]},\"id\":\"840cdabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.060582,53.894492],[-165.844791,54.061736],[-165.997783,54.273351],[-166.369259,54.317659],[-166.585313,54.149801],[-166.429641,53.938252],[-166.060582,53.894492]]]},\"id\":\"8422d01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.90138,18.410481],[-62.729453,18.560314],[-62.760168,18.756847],[-62.962534,18.803312],[-63.1339,18.653771],[-63.103461,18.457475],[-62.90138,18.410481]]]},\"id\":\"844d4b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.816499,53.456414],[-162.598464,53.616684],[-162.73323,53.829965],[-163.088764,53.88303],[-163.307364,53.722192],[-163.169875,53.508858],[-162.816499,53.456414]]]},\"id\":\"84228b7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.909683,52.735329],[-167.701235,52.910012],[-167.860417,53.12254],[-168.23056,53.160271],[-168.439082,52.984951],[-168.277401,52.77254],[-167.909683,52.735329]]]},\"id\":\"8422c65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.656234,19.114516],[-108.441165,19.270813],[-108.477538,19.524364],[-108.729873,19.621465],[-108.945159,19.464654],[-108.907896,19.211258],[-108.656234,19.114516]]]},\"id\":\"8449199ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.405927,57.107989],[-153.758088,56.987232],[-153.758569,56.783139],[-153.411898,56.700039],[-153.062433,56.819397],[-153.056946,57.023243],[-153.405927,57.107989]]]},\"id\":\"840ce93ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.477068,54.016171],[-165.259958,54.181666],[-165.410238,54.393329],[-165.780352,54.439452],[-165.997783,54.273351],[-165.844791,54.061736],[-165.477068,54.016171]]]},\"id\":\"8422d05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.45537,37.624773],[-118.224583,37.792621],[-118.287901,38.02727],[-118.582967,38.093709],[-118.813456,37.925549],[-118.749183,37.691263],[-118.45537,37.624773]]]},\"id\":\"84298c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.290161,35.384278],[-120.069127,35.556274],[-120.134579,35.793076],[-120.421924,35.857457],[-120.642573,35.685141],[-120.576268,35.448765],[-120.290161,35.384278]]]},\"id\":\"8429ad5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.151781,19.341918],[-68.32814,19.251186],[-68.30108,19.060459],[-68.097493,18.960755],[-67.921445,19.051945],[-67.948672,19.24238],[-68.151781,19.341918]]]},\"id\":\"844cf13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.154831,31.786731],[-114.928168,31.952933],[-114.981916,32.200269],[-115.263286,32.281084],[-115.489858,32.114502],[-115.435156,31.867487],[-115.154831,31.786731]]]},\"id\":\"8448583ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.586998,54.035353],[-161.365335,54.191015],[-161.495024,54.403595],[-161.849189,54.460604],[-162.07154,54.304396],[-161.939048,54.091727],[-161.586998,54.035353]]]},\"id\":\"840cdb9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.327624,18.07627],[-100.108342,18.221363],[-100.127793,18.473017],[-100.367451,18.579733],[-100.587287,18.434227],[-100.566911,18.182419],[-100.327624,18.07627]]]},\"id\":\"8449b13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.75997,56.175059],[-154.099981,56.05434],[-154.098079,55.853302],[-153.760872,55.773184],[-153.423344,55.892525],[-153.420542,56.093352],[-153.75997,56.175059]]]},\"id\":\"841db63ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.184628,58.43213],[-151.559489,58.316945],[-151.576367,58.109632],[-151.223799,58.017896],[-150.852213,58.131728],[-150.829927,58.338638],[-151.184628,58.43213]]]},\"id\":\"840c5e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.286907,40.83783],[-125.069871,41.012538],[-125.147918,41.231141],[-125.443752,41.274582],[-125.660084,41.099652],[-125.581293,40.881504],[-125.286907,40.83783]]]},\"id\":\"842803bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.740924,52.039015],[-174.548385,52.23095],[-174.738678,52.439025],[-175.123584,52.454834],[-175.315516,52.262236],[-175.123165,52.054493],[-174.740924,52.039015]]]},\"id\":\"8422e83ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.949898,60.593147],[-153.351141,60.470242],[-153.354981,60.255061],[-152.964015,60.163097],[-152.566324,60.284475],[-152.556052,60.49933],[-152.949898,60.593147]]]},\"id\":\"840c50dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.67258,56.880024],[-152.026095,56.764907],[-152.038794,56.562545],[-151.702848,56.475636],[-151.352206,56.589438],[-151.334643,56.791454],[-151.67258,56.880024]]]},\"id\":\"841db4bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.963528,53.757151],[-164.746787,53.922046],[-164.893646,54.134315],[-165.259958,54.181666],[-165.477068,54.016171],[-165.327507,53.803928],[-164.963528,53.757151]]]},\"id\":\"8422d63ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.488201,36.093302],[-120.266273,36.265188],[-120.332518,36.500484],[-120.621555,36.56347],[-120.843084,36.391273],[-120.77598,36.156401],[-120.488201,36.093302]]]},\"id\":\"8429a9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.015126,54.133021],[-160.792537,54.286965],[-160.919406,54.499436],[-161.271693,54.558074],[-161.495024,54.403595],[-161.365335,54.191015],[-161.015126,54.133021]]]},\"id\":\"840cd95ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.608013,53.256717],[-165.39414,53.424484],[-165.542986,53.637293],[-165.90835,53.682295],[-166.122523,53.513918],[-165.971045,53.301152],[-165.608013,53.256717]]]},\"id\":\"8422d47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.335131,57.464426],[-152.694445,57.346601],[-152.702606,57.141857],[-152.356554,57.055242],[-152.000147,57.1717],[-151.986891,57.376129],[-152.335131,57.464426]]]},\"id\":\"840c5a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.55398,60.339803],[-145.968926,60.241565],[-146.030766,60.032486],[-145.683494,59.922426],[-145.273099,60.019539],[-145.20545,60.227826],[-145.55398,60.339803]]]},\"id\":\"840c457ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.029099,60.178818],[-141.448226,60.095844],[-141.543626,59.892156],[-141.225192,59.772472],[-140.811025,59.854595],[-140.710366,60.057245],[-141.029099,60.178818]]]},\"id\":\"840c68bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.705415,51.518292],[-169.50439,51.700222],[-169.669029,51.913474],[-170.03702,51.944634],[-170.237945,51.762052],[-170.070992,51.548964],[-169.705415,51.518292]]]},\"id\":\"8422c49ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.917612,58.408516],[-152.290355,58.291018],[-152.301799,58.083347],[-151.945941,57.99352],[-151.576367,58.109632],[-151.559489,58.316945],[-151.917612,58.408516]]]},\"id\":\"840c5e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.500302,51.503315],[-130.64007,51.326677],[-130.454155,51.137767],[-130.129229,51.124079],[-129.987009,51.299958],[-130.172147,51.490288],[-130.500302,51.503315]]]},\"id\":\"841d64dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.698793,21.049234],[-108.480534,21.206419],[-108.517534,21.461195],[-108.773713,21.558637],[-108.992193,21.400962],[-108.954275,21.146337],[-108.698793,21.049234]]]},\"id\":\"8448263ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.000147,57.1717],[-152.356554,57.055242],[-152.367036,56.851685],[-152.026095,56.764907],[-151.67258,56.880024],[-151.65712,57.08325],[-152.000147,57.1717]]]},\"id\":\"841db49ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.76256,24.813157],[-109.53919,24.9725],[-109.579451,25.227676],[-109.844041,25.323335],[-110.067594,25.163543],[-110.026375,24.908543],[-109.76256,24.813157]]]},\"id\":\"844801bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.885892,44.145078],[-113.627821,44.296651],[-113.6854,44.51946],[-114.002305,44.590484],[-114.260348,44.438605],[-114.201519,44.21601],[-113.885892,44.145078]]]},\"id\":\"842895bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.552884,18.436537],[-104.334915,18.587507],[-104.362982,18.840686],[-104.60994,18.942894],[-104.828301,18.791448],[-104.799314,18.538272],[-104.552884,18.436537]]]},\"id\":\"8449ac3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.287901,38.02727],[-118.055781,38.194517],[-118.119011,38.428512],[-118.415335,38.494906],[-118.647166,38.327348],[-118.582967,38.093709],[-118.287901,38.02727]]]},\"id\":\"84298c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.519053,60.002335],[-144.930461,59.907747],[-144.999363,59.700749],[-144.662448,59.589171],[-144.255593,59.682704],[-144.181127,59.88886],[-144.519053,60.002335]]]},\"id\":\"840c6a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.754537,61.634869],[-147.18847,61.531845],[-147.243578,61.317687],[-146.871318,61.207298],[-146.44225,61.30908],[-146.380603,61.522481],[-146.754537,61.634869]]]},\"id\":\"840c44dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.069352,52.070638],[-131.207705,51.892182],[-131.016828,51.703895],[-130.688309,51.692637],[-130.547392,51.870358],[-130.737537,52.060077],[-131.069352,52.070638]]]},\"id\":\"8412931ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.965357,51.33862],[-131.101539,51.162332],[-130.914908,50.974835],[-130.592791,50.962217],[-130.454155,51.137767],[-130.64007,51.326677],[-130.965357,51.33862]]]},\"id\":\"841d645ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.43366,54.989682],[-160.741769,54.850956],[-160.695144,54.652192],[-160.344799,54.591949],[-160.03812,54.729117],[-160.080345,54.928077],[-160.43366,54.989682]]]},\"id\":\"840cd99ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.307364,53.722192],[-163.088764,53.88303],[-163.226803,54.095821],[-163.586193,54.147809],[-163.805318,53.986395],[-163.664539,53.773571],[-163.307364,53.722192]]]},\"id\":\"840cda7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.478776,61.304433],[-150.898166,61.189093],[-150.922388,60.973132],[-150.533893,60.873004],[-150.118678,60.98691],[-150.087798,61.202365],[-150.478776,61.304433]]]},\"id\":\"840c737ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.601331,18.491167],[-68.77923,18.397495],[-68.752285,18.203326],[-68.547267,18.103127],[-68.369672,18.197263],[-68.396789,18.391133],[-68.601331,18.491167]]]},\"id\":\"844cc67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.828301,18.791448],[-104.60994,18.942894],[-104.638637,19.19642],[-104.886619,19.298491],[-105.105363,19.146571],[-105.075742,18.893057],[-104.828301,18.791448]]]},\"id\":\"8449ad5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.595425,64.947214],[-148.090654,64.839728],[-148.145291,64.61553],[-147.713412,64.499599],[-147.224403,64.605649],[-147.161088,64.82905],[-147.595425,64.947214]]]},\"id\":\"840d5a9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.396006,19.322526],[-67.570701,19.23283],[-67.543311,19.042693],[-67.341068,18.942552],[-67.166701,19.032711],[-67.194249,19.222547],[-67.396006,19.322526]]]},\"id\":\"844cc49ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.682533,25.861931],[-110.458657,26.022613],[-110.501116,26.277221],[-110.768412,26.370945],[-110.992429,26.209821],[-110.949012,25.955418],[-110.682533,25.861931]]]},\"id\":\"84480c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.244982,17.99593],[-101.026059,18.142317],[-101.047359,18.394263],[-101.288508,18.499944],[-101.507952,18.353126],[-101.485726,18.101061],[-101.244982,17.99593]]]},\"id\":\"8449849ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.479681,51.536713],[-131.613354,51.35971],[-131.423962,51.173225],[-131.101539,51.162332],[-130.965357,51.33862],[-131.154087,51.52652],[-131.479681,51.536713]]]},\"id\":\"841d669ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.383249,43.033263],[-126.165021,43.207187],[-126.246754,43.418526],[-126.547453,43.455503],[-126.764887,43.281382],[-126.682424,43.070482],[-126.383249,43.033263]]]},\"id\":\"8428e49ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.164307,17.911011],[-101.945856,18.058652],[-101.969005,18.31082],[-102.211526,18.415435],[-102.430461,18.267348],[-102.40639,18.015094],[-102.164307,17.911011]]]},\"id\":\"8449a31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.758569,56.783139],[-154.105847,56.661679],[-154.103864,56.458531],[-153.75951,56.377051],[-153.41482,56.49711],[-153.411898,56.700039],[-153.758569,56.783139]]]},\"id\":\"841db69ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.791812,60.041118],[-147.199707,59.938939],[-147.25146,59.729678],[-146.901126,59.623297],[-146.49753,59.724291],[-146.43999,59.932842],[-146.791812,60.041118]]]},\"id\":\"840c403ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.228179,61.942278],[-151.656042,61.823965],[-151.674472,61.60565],[-151.272097,61.5061],[-150.848491,61.622909],[-150.823016,61.840758],[-151.228179,61.942278]]]},\"id\":\"840c723ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.727433,35.896414],[-117.498476,36.064411],[-117.55937,36.303151],[-117.850176,36.373535],[-118.078886,36.205208],[-118.017043,35.966828],[-117.727433,35.896414]]]},\"id\":\"842985bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.944436,24.398441],[-109.722065,24.558015],[-109.76256,24.813157],[-110.026375,24.908543],[-110.248919,24.748513],[-110.207477,24.493555],[-109.944436,24.398441]]]},\"id\":\"84482a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.644068,53.769261],[-166.429641,53.938252],[-166.585313,54.149801],[-166.958072,54.192275],[-167.172704,54.022662],[-167.014385,53.811199],[-166.644068,53.769261]]]},\"id\":\"8422d0bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.137639,52.942506],[-169.932281,53.121922],[-170.103272,53.332682],[-170.482048,53.363832],[-170.687256,53.183763],[-170.513853,52.973198],[-170.137639,52.942506]]]},\"id\":\"8422c01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.373116,51.448549],[-171.175406,51.634497],[-171.347926,51.84664],[-171.720395,51.872617],[-171.917843,51.686008],[-171.743099,51.474084],[-171.373116,51.448549]]]},\"id\":\"8422e33ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.498538,58.606575],[-154.86699,58.480702],[-154.859123,58.271114],[-154.488409,58.187585],[-154.12279,58.31195],[-154.125053,58.521341],[-154.498538,58.606575]]]},\"id\":\"840cec3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.119111,48.704587],[-128.896746,48.874423],[-128.988731,49.064733],[-129.303777,49.08482],[-129.525084,48.914827],[-129.432411,48.724904],[-129.119111,48.704587]]]},\"id\":\"8428c9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.353718,29.370494],[-113.128014,29.534704],[-113.177136,29.785864],[-113.452924,29.872536],[-113.678635,29.707918],[-113.628554,29.457038],[-113.353718,29.370494]]]},\"id\":\"844851dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.408921,50.773734],[-130.546442,50.599277],[-130.364574,50.411238],[-130.045922,50.39626],[-129.906051,50.569957],[-130.087162,50.759396],[-130.408921,50.773734]]]},\"id\":\"841d643ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.093729,60.359302],[-147.505989,60.255909],[-147.55599,60.045383],[-147.199707,59.938939],[-146.791812,60.041118],[-146.735857,60.250944],[-147.093729,60.359302]]]},\"id\":\"840c401ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.921445,19.051945],[-68.097493,18.960755],[-68.070302,18.769177],[-67.866898,18.669089],[-67.691168,18.760742],[-67.718523,18.95202],[-67.921445,19.051945]]]},\"id\":\"844cc45ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.872178,18.176007],[-106.656654,18.329741],[-106.689279,18.582727],[-106.938328,18.681891],[-107.154143,18.527649],[-107.12062,18.274754],[-106.872178,18.176007]]]},\"id\":\"84491ebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.647532,31.871066],[-114.419616,32.036463],[-114.472395,32.284104],[-114.754063,32.366044],[-114.981916,32.200269],[-114.928168,31.952933],[-114.647532,31.871066]]]},\"id\":\"8448587ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.157385,24.110273],[-108.934423,24.268713],[-108.973243,24.524123],[-109.235983,24.620941],[-109.459155,24.462048],[-109.419379,24.206794],[-109.157385,24.110273]]]},\"id\":\"8448057ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.73323,53.829965],[-162.513562,53.989074],[-162.648838,54.201813],[-163.006555,54.255497],[-163.226803,54.095821],[-163.088764,53.88303],[-162.73323,53.829965]]]},\"id\":\"840cda3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.799214,55.658244],[-157.125299,55.529077],[-157.102701,55.328663],[-156.758612,55.257432],[-156.434533,55.385128],[-156.452533,55.585517],[-156.799214,55.658244]]]},\"id\":\"840cc8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.248052,27.591432],[-112.023625,27.754293],[-112.069842,28.007385],[-112.341444,28.097367],[-112.565934,27.93408],[-112.518762,27.681239],[-112.248052,27.591432]]]},\"id\":\"844854dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.547361,33.847634],[-118.324712,34.017948],[-118.386047,34.25924],[-118.670924,34.329821],[-118.89329,34.159159],[-118.831067,33.918266],[-118.547361,33.847634]]]},\"id\":\"8429a19ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.024469,61.635152],[-150.450521,61.521092],[-150.478776,61.304433],[-150.087798,61.202365],[-149.666105,61.315],[-149.631047,61.531116],[-150.024469,61.635152]]]},\"id\":\"840c731ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.374253,25.513153],[-110.150531,25.673391],[-110.192253,25.928218],[-110.458657,26.022613],[-110.682533,25.861931],[-110.639854,25.607299],[-110.374253,25.513153]]]},\"id\":\"84480c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.092722,60.040608],[-149.495677,59.930815],[-149.52971,59.719708],[-149.166763,59.61895],[-148.767801,59.727433],[-148.727808,59.937973],[-149.092722,60.040608]]]},\"id\":\"840c421ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.707157,36.574218],[-121.487788,36.747458],[-121.556545,36.980328],[-121.845497,37.039513],[-122.064397,36.865977],[-121.994819,36.633553],[-121.707157,36.574218]]]},\"id\":\"842834dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.651793,58.38063],[-153.022288,58.260831],[-153.02828,58.052849],[-152.669234,57.964966],[-152.301799,58.083347],[-152.290355,58.291018],[-152.651793,58.38063]]]},\"id\":\"840cedbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.811614,26.625306],[-110.586554,26.786143],[-110.629535,27.040435],[-110.898546,27.133687],[-111.123741,26.972419],[-111.079793,26.718333],[-110.811614,26.625306]]]},\"id\":\"844808bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.528953,53.11755],[-164.314232,53.282989],[-164.457097,53.496374],[-164.817343,53.544319],[-165.032465,53.378285],[-164.88695,53.164903],[-164.528953,53.11755]]]},\"id\":\"8422d69ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.723192,58.466661],[-150.101899,58.356126],[-150.129564,58.149665],[-149.783877,58.054222],[-149.408645,58.163474],[-149.375637,58.369441],[-149.723192,58.466661]]]},\"id\":\"840c589ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.503969,33.087119],[-116.277785,33.254816],[-116.334807,33.499269],[-116.618956,33.575676],[-116.844972,33.407616],[-116.787011,33.163514],[-116.503969,33.087119]]]},\"id\":\"8429a6bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.559132,61.965195],[-149.991994,61.852476],[-150.024469,61.635152],[-149.631047,61.531116],[-149.202739,61.642421],[-149.163316,61.859163],[-149.559132,61.965195]]]},\"id\":\"840c739ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.351092,36.28014],[-121.131275,36.453079],[-121.199205,36.686957],[-121.487788,36.747458],[-121.707157,36.574218],[-121.638396,36.34078],[-121.351092,36.28014]]]},\"id\":\"8429a9bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.100219,51.170273],[-167.89775,51.349227],[-168.053539,51.563914],[-168.414165,51.599543],[-168.616687,51.419948],[-168.458542,51.205367],[-168.100219,51.170273]]]},\"id\":\"8422f19ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.666105,61.315],[-150.087798,61.202365],[-150.118678,60.98691],[-149.734494,60.884637],[-149.317112,60.99588],[-149.27962,61.210775],[-149.666105,61.315]]]},\"id\":\"840c733ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.861424,19.598164],[-115.657587,19.761898],[-115.707545,20.012233],[-115.962109,20.098425],[-116.165839,19.934145],[-116.115115,19.684219],[-115.861424,19.598164]]]},\"id\":\"8449447ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.505888,55.169268],[-161.812365,55.027191],[-161.758113,54.827744],[-161.401811,54.770104],[-161.096628,54.910585],[-161.146441,55.110293],[-161.505888,55.169268]]]},\"id\":\"840cd8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.159396,62.601207],[-151.598805,62.482662],[-151.618216,62.262475],[-151.205649,62.161303],[-150.770736,62.278318],[-150.743908,62.49802],[-151.159396,62.601207]]]},\"id\":\"840c729ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.401461,40.701598],[-124.181725,40.875321],[-124.258153,41.095559],[-124.555104,41.141632],[-124.774184,40.967675],[-124.696976,40.74788],[-124.401461,40.701598]]]},\"id\":\"842803dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.6842,39.909933],[-124.467172,40.084678],[-124.543472,40.306377],[-124.837561,40.352874],[-125.053928,40.177894],[-124.976873,39.956653],[-124.6842,39.909933]]]},\"id\":\"8428001ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.469038,57.357877],[-154.821507,57.233536],[-154.81431,57.028106],[-154.459772,56.94719],[-154.109899,57.070077],[-154.11197,57.275323],[-154.469038,57.357877]]]},\"id\":\"840ce95ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.409218,41.615422],[-126.194363,41.790775],[-126.274915,42.005743],[-126.571035,42.0449],[-126.785118,41.869346],[-126.70386,41.654836],[-126.409218,41.615422]]]},\"id\":\"84280e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.14807,35.575321],[-120.9291,35.748358],[-120.996224,35.983771],[-121.28315,36.045706],[-121.501688,35.872358],[-121.433737,35.637388],[-121.14807,35.575321]]]},\"id\":\"8429ad3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.757106,57.397506],[-154.11197,57.275323],[-154.109899,57.070077],[-153.758088,56.987232],[-153.405927,57.107989],[-153.402877,57.313006],[-153.757106,57.397506]]]},\"id\":\"840ce91ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.76506,65.979798],[-150.276445,65.864266],[-150.311972,65.635894],[-149.845867,65.523696],[-149.340791,65.637599],[-149.295539,65.865311],[-149.76506,65.979798]]]},\"id\":\"840d537ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.522637,41.491983],[-125.30494,41.66639],[-125.383916,41.883028],[-125.68134,41.92481],[-125.898312,41.750188],[-125.818592,41.533999],[-125.522637,41.491983]]]},\"id\":\"84280e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.702606,57.141857],[-153.056946,57.023243],[-153.062433,56.819397],[-152.71858,56.734442],[-152.367036,56.851685],[-152.356554,57.055242],[-152.702606,57.141857]]]},\"id\":\"841db4dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.507286,34.230184],[-116.278799,34.39732],[-116.336407,34.640067],[-116.623463,34.715339],[-116.851778,34.547853],[-116.793213,34.305447],[-116.507286,34.230184]]]},\"id\":\"8429a2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-72.493422,18.517654],[-72.678863,18.418699],[-72.653854,18.221825],[-72.443192,18.12415],[-72.257963,18.223546],[-72.283183,18.420174],[-72.493422,18.517654]]]},\"id\":\"8467255ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.599853,52.737064],[-164.386715,52.903632],[-164.528953,53.11755],[-164.88695,53.164903],[-165.100477,52.997739],[-164.955628,52.783821],[-164.599853,52.737064]]]},\"id\":\"8422893ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.323047,60.045229],[-148.727808,59.937973],[-148.767801,59.727433],[-148.40896,59.624755],[-148.0083,59.730742],[-147.962398,59.940665],[-148.323047,60.045229]]]},\"id\":\"840c42bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.770736,62.278318],[-151.205649,62.161303],[-151.228179,61.942278],[-150.823016,61.840758],[-150.392556,61.956278],[-150.362821,62.174798],[-150.770736,62.278318]]]},\"id\":\"840c72bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.94003,57.888303],[-156.294952,57.758776],[-156.276719,57.551018],[-155.908915,57.472872],[-155.556469,57.600863],[-155.569348,57.808525],[-155.94003,57.888303]]]},\"id\":\"840ce85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.040386,33.946172],[-117.816239,34.115728],[-117.876668,34.357406],[-118.162155,34.429144],[-118.386047,34.25924],[-118.324712,34.017948],[-118.040386,33.946172]]]},\"id\":\"8429a1dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.255593,59.682704],[-144.662448,59.589171],[-144.732515,59.383466],[-144.40116,59.27213],[-143.998777,59.364633],[-143.923304,59.569493],[-144.255593,59.682704]]]},\"id\":\"840c6a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.978298,54.129606],[-134.105395,53.944649],[-133.892582,53.761302],[-133.55308,53.761455],[-133.422935,53.945806],[-133.635319,54.130616],[-133.978298,54.129606]]]},\"id\":\"841d2d1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.480825,18.335755],[-105.263748,18.48787],[-105.293651,18.741025],[-105.541544,18.842029],[-105.758972,18.689425],[-105.728157,18.436308],[-105.480825,18.335755]]]},\"id\":\"8449ad9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.88503,25.578351],[-109.660464,25.737877],[-109.701219,25.99288],[-109.967508,26.088183],[-110.192253,25.928218],[-110.150531,25.673391],[-109.88503,25.578351]]]},\"id\":\"84480c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.748711,60.561796],[-154.147083,60.436322],[-154.144476,60.22087],[-153.749948,60.13115],[-153.354981,60.255061],[-153.351141,60.470242],[-153.748711,60.561796]]]},\"id\":\"840c563ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.486573,51.521798],[-172.290836,51.710079],[-172.468894,51.92118],[-172.844871,51.943745],[-173.040236,51.7548],[-172.860012,51.543956],[-172.486573,51.521798]]]},\"id\":\"8422ee1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.984414,18.497306],[-69.163123,18.403113],[-69.136354,18.208648],[-68.930698,18.10867],[-68.752285,18.203326],[-68.77923,18.397495],[-68.984414,18.497306]]]},\"id\":\"844cd5bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.273099,60.019539],[-145.683494,59.922426],[-145.746752,59.71463],[-145.405284,59.604735],[-144.999363,59.700749],[-144.930461,59.907747],[-145.273099,60.019539]]]},\"id\":\"840c419ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.471834,18.582174],[-64.30336,18.731565],[-64.332871,18.925131],[-64.530581,18.969059],[-64.698477,18.819962],[-64.669242,18.626645],[-64.471834,18.582174]]]},\"id\":\"844ced5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.218491,50.875726],[-169.018848,51.058035],[-169.179315,51.272492],[-169.541725,51.3045],[-169.741316,51.12154],[-169.578562,50.907225],[-169.218491,50.875726]]]},\"id\":\"8422e21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.515664,59.660553],[-143.923304,59.569493],[-143.998777,59.364633],[-143.671962,59.251711],[-143.268864,59.341785],[-143.188067,59.545759],[-143.515664,59.660553]]]},\"id\":\"840c6a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.103969,55.136595],[-159.417714,55.001456],[-159.379915,54.802341],[-159.032814,54.738241],[-158.720699,54.871855],[-158.754047,55.071085],[-159.103969,55.136595]]]},\"id\":\"840cca1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.559906,19.161507],[-64.391797,19.310271],[-64.421211,19.501841],[-64.618459,19.544411],[-64.78599,19.395945],[-64.756851,19.204613],[-64.559906,19.161507]]]},\"id\":\"844cecbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.422488,50.647677],[-171.22755,50.835629],[-171.397968,51.048884],[-171.765498,51.073975],[-171.960176,50.885359],[-171.787597,50.672318],[-171.422488,50.647677]]]},\"id\":\"8422e15ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.148473,55.537709],[-158.469356,55.404737],[-158.437598,55.204396],[-158.089523,55.136959],[-157.770449,55.268419],[-157.797635,55.468817],[-158.148473,55.537709]]]},\"id\":\"840cc85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.392556,61.956278],[-150.823016,61.840758],[-150.848491,61.622909],[-150.450521,61.521092],[-150.024469,61.635152],[-149.991994,61.852476],[-150.392556,61.956278]]]},\"id\":\"840c73dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.965748,67.165222],[-158.469901,67.020771],[-158.420296,66.786819],[-157.877721,66.697276],[-157.378068,66.839561],[-157.416467,67.073534],[-157.965748,67.165222]]]},\"id\":\"840c229ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-98.249677,17.864633],[-98.030649,18.006652],[-98.04585,18.256994],[-98.280996,18.365548],[-98.500651,18.223151],[-98.484533,17.97258],[-98.249677,17.864633]]]},\"id\":\"8449b23ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.79354,58.709181],[-143.187807,58.621011],[-143.26586,58.420051],[-142.95456,58.308142],[-142.564587,58.395392],[-142.481646,58.595462],[-142.79354,58.709181]]]},\"id\":\"840c4d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.689279,18.582727],[-106.472898,18.736437],[-106.505262,18.989809],[-106.754914,19.089389],[-106.971597,18.935179],[-106.938328,18.681891],[-106.689279,18.582727]]]},\"id\":\"84491e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.115259,42.400203],[-110.856299,42.548618],[-110.906502,42.778092],[-111.216948,42.859],[-111.476066,42.710282],[-111.424584,42.480962],[-111.115259,42.400203]]]},\"id\":\"8426b2dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.459155,24.462048],[-109.235983,24.620941],[-109.275521,24.876248],[-109.53919,24.9725],[-109.76256,24.813157],[-109.722065,24.558015],[-109.459155,24.462048]]]},\"id\":\"8448019ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.580704,44.564289],[-129.370879,44.740148],[-129.459138,44.942113],[-129.75783,44.967774],[-129.966676,44.791775],[-129.877816,44.590255],[-129.580704,44.564289]]]},\"id\":\"8428535ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.796272,40.706073],[-125.581293,40.881504],[-125.660084,41.099652],[-125.954581,41.141909],[-126.168833,40.966263],[-126.089322,40.748577],[-125.796272,40.706073]]]},\"id\":\"8428017ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.994307,33.177278],[-115.766759,33.344167],[-115.822827,33.588955],[-116.1074,33.666521],[-116.334807,33.499269],[-116.277785,33.254816],[-115.994307,33.177278]]]},\"id\":\"8429a61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.16444,32.764739],[-115.938108,32.932069],[-115.994307,33.177278],[-116.277785,33.254816],[-116.503969,33.087119],[-116.446827,32.842254],[-116.16444,32.764739]]]},\"id\":\"8429a69ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.642573,35.685141],[-120.421924,35.857457],[-120.488201,36.093302],[-120.77598,36.156401],[-120.996224,35.983771],[-120.9291,35.748358],[-120.642573,35.685141]]]},\"id\":\"8429ad7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.778802,60.309138],[-152.17906,60.190307],[-152.192217,59.976617],[-151.811366,59.882144],[-151.414774,59.999517],[-151.395375,60.212808],[-151.778802,60.309138]]]},\"id\":\"840c50bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.161632,18.578975],[-102.942538,18.728136],[-102.967828,18.981216],[-103.213141,19.085189],[-103.432684,18.935576],[-103.406466,18.682445],[-103.161632,18.578975]]]},\"id\":\"8449ae1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.447886,49.212482],[-128.22138,49.380685],[-128.312837,49.570423],[-128.63154,49.591582],[-128.857011,49.423207],[-128.764822,49.233846],[-128.447886,49.212482]]]},\"id\":\"8428cb9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.820938,62.948246],[-150.270447,62.83402],[-150.301781,62.613673],[-149.891157,62.508124],[-149.446523,62.620877],[-149.407656,62.840637],[-149.820938,62.948246]]]},\"id\":\"840c70dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.637514,66.667912],[-150.165424,66.552582],[-150.203194,66.322616],[-149.723415,66.208647],[-149.202247,66.322314],[-149.154148,66.551594],[-149.637514,66.667912]]]},\"id\":\"840d53dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.957707,53.233919],[-163.741836,53.397634],[-163.882025,53.611002],[-164.24077,53.660675],[-164.457097,53.496374],[-164.314232,53.282989],[-163.957707,53.233919]]]},\"id\":\"8422d6dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.336407,34.640067],[-116.106672,34.806701],[-116.164152,35.048951],[-116.452341,35.124236],[-116.681913,34.957256],[-116.623463,34.715339],[-116.336407,34.640067]]]},\"id\":\"8429a23ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.997964,19.336479],[-77.803009,19.441404],[-77.780327,19.665808],[-77.953176,19.786057],[-78.149085,19.681229],[-78.171189,19.456055],[-77.997964,19.336479]]]},\"id\":\"844595dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.710788,63.612876],[-150.173017,63.498645],[-150.206081,63.27651],[-149.784881,63.169201],[-149.32782,63.281933],[-149.286812,63.503459],[-149.710788,63.612876]]]},\"id\":\"840c745ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.134579,35.793076],[-119.912271,35.964646],[-119.977682,36.200911],[-120.266273,36.265188],[-120.488201,36.093302],[-120.421924,35.857457],[-120.134579,35.793076]]]},\"id\":\"8429a8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.959792,57.787041],[-152.324184,57.670049],[-152.335131,57.464426],[-151.986891,57.376129],[-151.625524,57.491758],[-151.609379,57.697036],[-151.959792,57.787041]]]},\"id\":\"840c5a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.602384,63.605602],[-151.061816,63.488315],[-151.086874,63.265636],[-150.660524,63.160773],[-150.206081,63.27651],[-150.173017,63.498645],[-150.602384,63.605602]]]},\"id\":\"840c769ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.779792,59.634357],[-143.188067,59.545759],[-143.268864,59.341785],[-142.946653,59.227326],[-142.542981,59.314981],[-142.456946,59.51803],[-142.779792,59.634357]]]},\"id\":\"840c6bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.990926,59.310934],[-153.373285,59.189108],[-153.376776,58.977927],[-153.00376,58.888864],[-152.624623,59.009218],[-152.615284,59.220095],[-152.990926,59.310934]]]},\"id\":\"840c531ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.73308,34.570256],[-118.509464,34.740503],[-118.571548,34.980457],[-118.858147,35.049768],[-119.081468,34.879182],[-119.018489,34.639625],[-118.73308,34.570256]]]},\"id\":\"8429a13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.507952,18.353126],[-101.288508,18.499944],[-101.310402,18.75234],[-101.552668,18.858034],[-101.772624,18.710787],[-101.749802,18.458278],[-101.507952,18.353126]]]},\"id\":\"844984bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.189718,19.173413],[-107.973986,19.329196],[-108.009462,19.582885],[-108.261568,19.680656],[-108.477538,19.524364],[-108.441165,19.270813],[-108.189718,19.173413]]]},\"id\":\"844919dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.291583,18.267223],[-62.118355,18.417276],[-62.149535,18.615168],[-62.353666,18.662777],[-62.526341,18.513016],[-62.495438,18.315356],[-62.291583,18.267223]]]},\"id\":\"844d49dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.301799,58.083347],[-152.669234,57.964966],[-152.677762,57.758158],[-152.324184,57.670049],[-151.959792,57.787041],[-151.945941,57.99352],[-152.301799,58.083347]]]},\"id\":\"840c5adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.02028,34.137481],[-116.793213,34.305447],[-116.851778,34.547853],[-117.138355,34.621938],[-117.365222,34.453621],[-117.305716,34.211572],[-117.02028,34.137481]]]},\"id\":\"8429a07ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.738723,55.058096],[-157.058418,54.929976],[-157.036722,54.731705],[-156.699743,54.661569],[-156.381984,54.788245],[-156.399264,54.986491],[-156.738723,55.058096]]]},\"id\":\"840cc95ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.048197,61.321578],[-148.473945,61.214368],[-148.517992,61.000086],[-148.142805,60.893668],[-147.721618,60.999575],[-147.671078,61.213191],[-148.048197,61.321578]]]},\"id\":\"840c469ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.166293,52.213494],[-173.97185,52.403766],[-174.160033,52.612156],[-174.544786,52.62996],[-174.738678,52.439025],[-174.548385,52.23095],[-174.166293,52.213494]]]},\"id\":\"8422e87ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.016828,51.703895],[-131.154087,51.52652],[-130.965357,51.33862],[-130.64007,51.326677],[-130.500302,51.503315],[-130.688309,51.692637],[-131.016828,51.703895]]]},\"id\":\"8412937ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.419965,51.58617],[-166.213535,51.760055],[-166.362058,51.974952],[-166.719476,52.015914],[-166.926115,51.841406],[-166.775139,51.626561],[-166.419965,51.58617]]]},\"id\":\"8422f07ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.884112,59.09964],[-149.27359,58.991275],[-149.30812,58.783345],[-148.958732,58.684326],[-148.573003,58.791427],[-148.532929,58.998799],[-148.884112,59.09964]]]},\"id\":\"840c5cbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.707545,20.012233],[-115.50273,20.176205],[-115.552576,20.426909],[-115.808015,20.513238],[-116.01273,20.348726],[-115.962109,20.098425],[-115.707545,20.012233]]]},\"id\":\"844940dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.531839,19.953351],[-70.712692,19.860867],[-70.686806,19.670554],[-70.479877,19.572976],[-70.299282,19.665897],[-70.325357,19.855958],[-70.531839,19.953351]]]},\"id\":\"844cf25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.813456,37.925549],[-118.582967,38.093709],[-118.647166,38.327348],[-118.942808,38.39246],[-119.172978,38.223992],[-119.107831,37.990722],[-118.813456,37.925549]]]},\"id\":\"84298c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.576367,58.109632],[-151.945941,57.99352],[-151.959792,57.787041],[-151.609379,57.697036],[-151.242953,57.81179],[-151.223799,58.017896],[-151.576367,58.109632]]]},\"id\":\"840c5a9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.556851,53.089323],[-169.34988,53.267014],[-169.518417,53.47795],[-169.896393,53.511021],[-170.103272,53.332682],[-169.932281,53.121922],[-169.556851,53.089323]]]},\"id\":\"8422c05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.767801,59.727433],[-149.166763,59.61895],[-149.202924,59.409081],[-148.845939,59.308264],[-148.450922,59.415466],[-148.40896,59.624755],[-148.767801,59.727433]]]},\"id\":\"840c423ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.786028,18.036674],[-100.566911,18.182419],[-100.587287,18.434227],[-100.827705,18.54043],[-101.047359,18.394263],[-101.026059,18.142317],[-100.786028,18.036674]]]},\"id\":\"844984dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.834701,51.208881],[-170.636783,51.394171],[-170.806011,51.607077],[-171.175406,51.634497],[-171.373116,51.448549],[-171.201654,51.235841],[-170.834701,51.208881]]]},\"id\":\"8422e31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.373656,23.818004],[-108.150193,23.9753],[-108.187338,24.230913],[-108.44891,24.329103],[-108.67262,24.171356],[-108.634513,23.915872],[-108.373656,23.818004]]]},\"id\":\"8448009ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.064397,36.865977],[-121.845497,37.039513],[-121.91508,37.271356],[-122.204381,37.329215],[-122.42279,37.155389],[-122.352395,36.923995],[-122.064397,36.865977]]]},\"id\":\"8428341ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.230454,59.339506],[-152.615284,59.220095],[-152.624623,59.009218],[-152.254967,58.918094],[-151.873482,59.036068],[-151.858315,59.246591],[-152.230454,59.339506]]]},\"id\":\"840c53bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.974544,47.763981],[-128.754189,47.935059],[-128.844872,48.12857],[-129.156598,48.150606],[-129.375927,47.979373],[-129.284564,47.786259],[-128.974544,47.763981]]]},\"id\":\"8428cddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.701374,59.417527],[-148.097988,59.31278],[-148.141807,59.104749],[-147.794621,59.00209],[-147.401999,59.105623],[-147.352588,59.313018],[-147.701374,59.417527]]]},\"id\":\"840c431ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.764466,37.675694],[-121.542959,37.848325],[-121.61254,38.078946],[-121.904472,38.136504],[-122.125497,37.963587],[-122.055079,37.733399],[-121.764466,37.675694]]]},\"id\":\"842830dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.752305,59.277833],[-154.132053,59.153606],[-154.129684,58.942171],[-153.753429,58.855205],[-153.376776,58.977927],[-153.373285,59.189108],[-153.752305,59.277833]]]},\"id\":\"840c535ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.098739,37.321697],[-117.867677,37.489228],[-117.930115,37.724869],[-118.224583,37.792621],[-118.45537,37.624773],[-118.39197,37.38949],[-118.098739,37.321697]]]},\"id\":\"84298cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.366137,59.613487],[-153.75173,59.490158],[-153.752305,59.277833],[-153.373285,59.189108],[-152.990926,59.310934],[-152.984357,59.522976],[-153.366137,59.613487]]]},\"id\":\"840c53dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.827262,59.669632],[-152.217909,59.551214],[-152.230454,59.339506],[-151.858315,59.246591],[-151.471157,59.363577],[-151.452658,59.574899],[-151.827262,59.669632]]]},\"id\":\"840c515ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.62133,56.338686],[-135.745468,56.147493],[-135.512025,55.96634],[-135.154661,55.974884],[-135.02695,56.165547],[-135.26015,56.348203],[-135.62133,56.338686]]]},\"id\":\"841d21dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.434533,55.385128],[-156.758612,55.257432],[-156.738723,55.058096],[-156.399264,54.986491],[-156.077204,55.11274],[-156.092582,55.312032],[-156.434533,55.385128]]]},\"id\":\"840cc9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.992427,34.320876],[-115.762549,34.487158],[-115.819182,34.730233],[-116.106672,34.806701],[-116.336407,34.640067],[-116.278799,34.39732],[-115.992427,34.320876]]]},\"id\":\"8429a21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.83011,30.459028],[-113.603264,30.623672],[-113.65379,30.873498],[-113.932132,30.958393],[-114.15896,30.793354],[-114.107468,30.543816],[-113.83011,30.459028]]]},\"id\":\"84485e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.240013,56.14416],[-158.567302,56.010022],[-158.534198,55.807552],[-158.178563,55.739151],[-157.853145,55.871747],[-157.881485,56.074276],[-158.240013,56.14416]]]},\"id\":\"840ccebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.946126,50.934187],[-130.087162,50.759396],[-129.906051,50.569957],[-129.584702,50.553906],[-129.441321,50.727916],[-129.621614,50.918762],[-129.946126,50.934187]]]},\"id\":\"841d64bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.206418,28.615699],[-112.981849,28.77983],[-113.030372,29.031677],[-113.304418,29.119116],[-113.529002,28.954569],[-113.479528,28.703],[-113.206418,28.615699]]]},\"id\":\"8448555ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.261907,23.051507],[-108.039654,23.208575],[-108.076352,23.464121],[-108.336256,23.562474],[-108.558757,23.404947],[-108.521108,23.149528],[-108.261907,23.051507]]]},\"id\":\"8448041ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.524963,58.733592],[-151.903125,58.617027],[-151.917612,58.408516],[-151.559489,58.316945],[-151.184628,58.43213],[-151.164596,58.640254],[-151.524963,58.733592]]]},\"id\":\"840c5e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.743582,37.016351],[-117.512267,37.183562],[-117.573827,37.420176],[-117.867677,37.489228],[-118.098739,37.321697],[-118.03621,37.085435],[-117.743582,37.016351]]]},\"id\":\"842981bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.282394,19.840942],[-64.113864,19.988996],[-64.143457,20.178786],[-64.341304,20.2203],[-64.50926,20.072547],[-64.479943,19.88298],[-64.282394,19.840942]]]},\"id\":\"844d595ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.220868,19.091608],[-70.4017,18.997269],[-70.375577,18.803997],[-70.168435,18.705333],[-69.987869,18.80012],[-70.014179,18.993123],[-70.220868,19.091608]]]},\"id\":\"844cd41ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.448734,19.08147],[-69.628017,18.988189],[-69.601523,18.795461],[-69.395565,18.696293],[-69.216566,18.790028],[-69.24324,18.982476],[-69.448734,19.08147]]]},\"id\":\"844cf37ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.942548,49.284318],[-126.709914,49.450407],[-126.798834,49.642215],[-127.12121,49.667569],[-127.352891,49.50128],[-127.263158,49.309839],[-126.942548,49.284318]]]},\"id\":\"8428ca1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.848491,61.622909],[-151.272097,61.5061],[-151.293504,61.288955],[-150.898166,61.189093],[-150.478776,61.304433],[-150.450521,61.521092],[-150.848491,61.622909]]]},\"id\":\"840c735ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.988549,36.584201],[-115.753863,36.748893],[-115.811663,36.988032],[-116.105169,37.062169],[-116.339706,36.897146],[-116.280891,36.658318],[-115.988549,36.584201]]]},\"id\":\"8429801ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.396667,49.2738],[-129.173818,49.443074],[-129.266924,49.631105],[-129.58357,49.64948],[-129.805331,49.48005],[-129.711542,49.292401],[-129.396667,49.2738]]]},\"id\":\"8428c97ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.006056,41.977438],[-121.775566,42.146554],[-121.848649,42.36689],[-122.15313,42.417721],[-122.38308,42.248347],[-122.309095,42.028402],[-122.006056,41.977438]]]},\"id\":\"84281edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.005113,30.043902],[-113.779412,30.208923],[-113.83011,30.459028],[-114.107468,30.543816],[-114.33314,30.378394],[-114.281487,30.128586],[-114.005113,30.043902]]]},\"id\":\"8448513ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.078435,56.212036],[-153.420542,56.093352],[-153.423344,55.892525],[-153.088736,55.810625],[-152.749202,55.927958],[-152.741707,56.128532],[-153.078435,56.212036]]]},\"id\":\"841db0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.632161,48.782529],[-127.403667,48.950369],[-127.493236,49.142767],[-127.812076,49.166948],[-128.03959,48.998923],[-127.949253,48.806903],[-127.632161,48.782529]]]},\"id\":\"8428c85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.210148,57.534283],[-150.575265,57.423074],[-150.598649,57.219407],[-150.261948,57.127385],[-149.900022,57.237322],[-149.871615,57.440544],[-150.210148,57.534283]]]},\"id\":\"840c5b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.422935,53.945806],[-133.55308,53.761455],[-133.343294,53.576852],[-133.00384,53.575142],[-132.870707,53.758861],[-133.079994,53.944927],[-133.422935,53.945806]]]},\"id\":\"841d2dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.177136,29.785864],[-112.950304,29.949708],[-112.999242,30.200624],[-113.275984,30.287427],[-113.502832,30.123181],[-113.452924,29.872536],[-113.177136,29.785864]]]},\"id\":\"8448515ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.35434,18.176922],[-103.136031,18.326236],[-103.161632,18.578975],[-103.406466,18.682445],[-103.625214,18.532669],[-103.59869,18.279888],[-103.35434,18.176922]]]},\"id\":\"8449ae9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.916589,41.478781],[-126.70386,41.654836],[-126.785118,41.869346],[-127.079793,41.907336],[-127.291728,41.731087],[-127.209788,41.517043],[-126.916589,41.478781]]]},\"id\":\"842808dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.010299,63.93545],[-151.474772,63.816573],[-151.496395,63.592753],[-151.061816,63.488315],[-150.602384,63.605602],[-150.572506,63.828901],[-151.010299,63.93545]]]},\"id\":\"840c297ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-140.291088,60.137724],[-140.710366,60.057245],[-140.811025,59.854595],[-140.497596,59.73349],[-140.083325,59.813164],[-139.977511,60.01474],[-140.291088,60.137724]]]},\"id\":\"840c6d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.790891,60.928173],[-144.218494,60.835564],[-144.295423,60.626404],[-143.950678,60.510759],[-143.528048,60.602327],[-143.445222,60.810572],[-143.790891,60.928173]]]},\"id\":\"840c6e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.206535,47.170433],[-66.569856,47.140244],[-66.717559,46.916702],[-66.504157,46.724525],[-66.144304,46.754575],[-65.994408,46.976939],[-66.206535,47.170433]]]},\"id\":\"842b153ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.864609,64.265108],[-147.347506,64.160454],[-147.407359,63.93867],[-146.992462,63.822356],[-146.515568,63.925654],[-146.447604,64.146607],[-146.864609,64.265108]]]},\"id\":\"840d5bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.397604,56.245169],[-152.741707,56.128532],[-152.749202,55.927958],[-152.41728,55.844304],[-152.075839,55.959617],[-152.063663,56.159899],[-152.397604,56.245169]]]},\"id\":\"841db09ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.53405,67.09364],[-173.937324,66.901189],[-173.723173,66.675352],[-173.114944,66.640593],[-172.710187,66.830521],[-172.91502,67.057717],[-173.53405,67.09364]]]},\"id\":\"840d817ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.03959,48.998923],[-127.812076,49.166948],[-127.902592,49.358017],[-128.22138,49.380685],[-128.447886,49.212482],[-128.35662,49.02179],[-128.03959,48.998923]]]},\"id\":\"8428c87ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.437493,27.318506],[-111.212177,27.480203],[-111.256667,27.73388],[-111.527441,27.825636],[-111.752862,27.663512],[-111.707406,27.41006],[-111.437493,27.318506]]]},\"id\":\"8448091ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.975314,53.23252],[-168.766771,53.408479],[-168.932811,53.619574],[-169.309906,53.654553],[-169.518417,53.47795],[-169.34988,53.267014],[-168.975314,53.23252]]]},\"id\":\"8422c29ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.016851,18.386723],[-104.799314,18.538272],[-104.828301,18.791448],[-105.075742,18.893057],[-105.293651,18.741025],[-105.263748,18.48787],[-105.016851,18.386723]]]},\"id\":\"8449addffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.029778,40.432927],[-123.809408,40.606408],[-123.884983,40.827826],[-124.181725,40.875321],[-124.401461,40.701598],[-124.325096,40.480622],[-124.029778,40.432927]]]},\"id\":\"842802bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.917126,57.515034],[-151.280427,57.401611],[-151.298759,57.197542],[-150.95885,57.107289],[-150.598649,57.219407],[-150.575265,57.423074],[-150.917126,57.515034]]]},\"id\":\"840c5bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.206081,63.27651],[-150.660524,63.160773],[-150.688815,62.939252],[-150.270447,62.83402],[-149.820938,62.948246],[-149.784881,63.169201],[-150.206081,63.27651]]]},\"id\":\"840c76bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.628676,59.090255],[-150.016368,58.979479],[-150.045311,58.771035],[-149.692162,58.67387],[-149.30812,58.783345],[-149.27359,58.991275],[-149.628676,59.090255]]]},\"id\":\"840c5c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.827208,63.899858],[-153.284966,63.774804],[-153.289947,63.550149],[-152.845517,63.450915],[-152.392393,63.574282],[-152.379074,63.798554],[-152.827208,63.899858]]]},\"id\":\"840c2b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.536531,51.901664],[-131.671227,51.723575],[-131.479681,51.536713],[-131.154087,51.52652],[-131.016828,51.703895],[-131.207705,51.892182],[-131.536531,51.901664]]]},\"id\":\"8412935ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.601523,18.795461],[-69.781311,18.701201],[-69.754861,18.507318],[-69.54844,18.407977],[-69.368933,18.502693],[-69.395565,18.696293],[-69.601523,18.795461]]]},\"id\":\"844cd5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.944744,18.28364],[-105.728157,18.436308],[-105.758972,18.689425],[-106.007283,18.78982],[-106.224202,18.636656],[-106.19248,18.383595],[-105.944744,18.28364]]]},\"id\":\"84491e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.708605,28.691519],[-112.482965,28.854904],[-112.530525,29.107013],[-112.804691,29.195476],[-113.030372,29.031677],[-112.981849,28.77983],[-112.708605,28.691519]]]},\"id\":\"8448509ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.917843,51.686008],[-171.720395,51.872617],[-171.896241,52.083957],[-172.271763,52.10845],[-172.468894,51.92118],[-172.290836,51.710079],[-171.917843,51.686008]]]},\"id\":\"8422ee5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.43768,18.879379],[-107.221583,19.034127],[-107.255502,19.287689],[-107.50642,19.386395],[-107.722786,19.231142],[-107.687966,18.97769],[-107.43768,18.879379]]]},\"id\":\"8449181ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.846527,61.696377],[-140.292886,61.616971],[-140.403109,61.410047],[-140.07278,61.283684],[-139.63212,61.362276],[-139.516134,61.568036],[-139.846527,61.696377]]]},\"id\":\"8413b67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.660084,41.099652],[-125.443752,41.274582],[-125.522637,41.491983],[-125.818592,41.533999],[-126.034197,41.358854],[-125.954581,41.141909],[-125.660084,41.099652]]]},\"id\":\"84280edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.87794,35.338733],[-96.62494,35.464562],[-96.63923,35.709539],[-96.907735,35.82897],[-97.161633,35.702999],[-97.146127,35.45774],[-96.87794,35.338733]]]},\"id\":\"8426ea5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.868394,60.362381],[-148.279064,60.256407],[-148.323047,60.045229],[-147.962398,59.940665],[-147.55599,60.045383],[-147.505989,60.255909],[-147.868394,60.362381]]]},\"id\":\"840c405ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.336664,37.821673],[-119.107831,37.990722],[-119.172978,38.223992],[-119.467893,38.287835],[-119.696377,38.118482],[-119.630301,37.885593],[-119.336664,37.821673]]]},\"id\":\"84298ddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.921062,35.288829],[-118.696476,35.458971],[-118.759322,35.697515],[-119.047659,35.765523],[-119.271934,35.595051],[-119.208189,35.356903],[-118.921062,35.288829]]]},\"id\":\"8429aebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.351851,60.970271],[-145.777416,60.872361],[-145.842275,60.661506],[-145.487676,60.549376],[-145.066914,60.646151],[-144.995977,60.856181],[-145.351851,60.970271]]]},\"id\":\"840c45dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.152101,60.619651],[-152.556052,60.49933],[-152.566324,60.284475],[-152.17906,60.190307],[-151.778802,60.309138],[-151.762122,60.523614],[-152.152101,60.619651]]]},\"id\":\"840c509ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.226803,54.095821],[-163.006555,54.255497],[-163.145147,54.467731],[-163.506777,54.520323],[-163.727565,54.360074],[-163.586193,54.147809],[-163.226803,54.095821]]]},\"id\":\"840cda1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-80.6857,18.730904],[-80.485578,18.841702],[-80.467355,19.07082],[-80.649894,19.189865],[-80.850968,19.079095],[-80.868549,18.849251],[-80.6857,18.730904]]]},\"id\":\"8445a35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.105363,19.146571],[-104.886619,19.298491],[-104.915952,19.552338],[-105.164956,19.654247],[-105.384071,19.501853],[-105.353812,19.248027],[-105.105363,19.146571]]]},\"id\":\"8449ad7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.519804,60.249055],[-142.938171,60.161041],[-143.022749,59.955391],[-142.694451,59.838707],[-142.280934,59.925777],[-142.190896,60.130466],[-142.519804,60.249055]]]},\"id\":\"840c685ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.309445,48.275661],[-128.085045,48.445165],[-128.175201,48.63813],[-128.490489,48.661206],[-128.713885,48.491533],[-128.623006,48.298954],[-128.309445,48.275661]]]},\"id\":\"8428c89ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.119011,38.428512],[-117.885548,38.595133],[-117.948686,38.828455],[-118.246275,38.894809],[-118.479455,38.727879],[-118.415335,38.494906],[-118.119011,38.428512]]]},\"id\":\"842988dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.829899,31.285789],[-115.6057,31.453149],[-115.660538,31.700503],[-115.940508,31.780154],[-116.16458,31.612408],[-116.108814,31.365399],[-115.829899,31.285789]]]},\"id\":\"84485d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.914908,50.974835],[-131.050027,50.79964],[-130.865451,50.612561],[-130.546442,50.599277],[-130.408921,50.773734],[-130.592791,50.962217],[-130.914908,50.974835]]]},\"id\":\"841d647ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.733638,39.213345],[-119.502815,39.381807],[-119.569613,39.611617],[-119.868179,39.672591],[-120.098621,39.503837],[-120.030883,39.274402],[-119.733638,39.213345]]]},\"id\":\"8429891ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.594546,52.268057],[-131.730279,52.088887],[-131.536531,51.901664],[-131.207705,51.892182],[-131.069352,52.070638],[-131.262424,52.259295],[-131.594546,52.268057]]]},\"id\":\"841293dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.059706,59.690845],[-151.452658,59.574899],[-151.471157,59.363577],[-151.102638,59.268624],[-150.713296,59.383174],[-150.688873,59.59406],[-151.059706,59.690845]]]},\"id\":\"840c511ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.806868,56.040917],[-156.140002,55.91418],[-156.123976,55.712752],[-155.779522,55.63814],[-155.448583,55.763426],[-155.459902,55.964765],[-155.806868,56.040917]]]},\"id\":\"840ccd1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.265812,20.130599],[-156.427341,19.925907],[-156.32049,19.694174],[-156.052319,19.666925],[-155.890463,19.871543],[-155.997101,20.103484],[-156.265812,20.130599]]]},\"id\":\"845d105ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.460146,58.10521],[-138.570132,57.90933],[-138.313109,57.734677],[-137.945885,57.754409],[-137.831769,57.949907],[-138.088982,58.126062],[-138.460146,58.10521]]]},\"id\":\"841d359ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.302582,50.967088],[-170.104509,51.15172],[-170.270481,51.36535],[-170.636783,51.394171],[-170.834701,51.208881],[-170.666486,50.99543],[-170.302582,50.967088]]]},\"id\":\"8422e3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.759832,53.891919],[-167.546668,54.063285],[-167.708485,54.274038],[-168.086095,54.313302],[-168.299351,54.141303],[-168.134921,53.930676],[-167.759832,53.891919]]]},\"id\":\"8422d19ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.948686,38.828455],[-117.71387,38.994427],[-117.776911,39.227057],[-118.075769,39.293376],[-118.310311,39.127098],[-118.246275,38.894809],[-117.948686,38.828455]]]},\"id\":\"8429885ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.836934,55.250599],[-161.146441,55.110293],[-161.096628,54.910585],[-160.741769,54.850956],[-160.43366,54.989682],[-160.479,55.189609],[-160.836934,55.250599]]]},\"id\":\"840cdd7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.375577,18.803997],[-70.556908,18.70868],[-70.530834,18.514249],[-70.323238,18.415405],[-70.14217,18.511173],[-70.168435,18.705333],[-70.375577,18.803997]]]},\"id\":\"844cd47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.677755,53.6654],[-161.457737,53.822236],[-161.586998,54.035353],[-161.939048,54.091727],[-162.159737,53.934343],[-162.027713,53.721136],[-161.677755,53.6654]]]},\"id\":\"840cdb1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.038121,57.207],[-143.410899,57.118921],[-143.483297,56.922778],[-143.187338,56.815532],[-142.818388,56.902715],[-142.74159,57.098033],[-143.038121,57.207]]]},\"id\":\"841d14dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.160033,52.612156],[-173.964211,52.801416],[-174.153685,53.009142],[-174.541138,53.027289],[-174.7364,52.837366],[-174.544786,52.62996],[-174.160033,52.612156]]]},\"id\":\"8422ebdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-75.214203,19.978877],[-75.403428,19.87974],[-75.429765,19.660213],[-75.217388,19.566486],[-75.028702,19.665906],[-75.052254,19.858644],[-75.214203,19.978877]]]},\"id\":\"844c9abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.01212,52.551529],[-172.813956,52.738438],[-172.997766,52.947412],[-173.381968,52.969194],[-173.579692,52.781621],[-173.39367,52.572931],[-173.01212,52.551529]]]},\"id\":\"8422ea1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.936514,63.610915],[-148.403613,63.50281],[-148.452491,63.281957],[-148.042087,63.16993],[-147.580486,63.276641],[-147.52382,63.496758],[-147.936514,63.610915]]]},\"id\":\"840c74bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.678635,29.707918],[-113.452924,29.872536],[-113.502832,30.123181],[-113.779412,30.208923],[-114.005113,30.043902],[-113.954247,29.793544],[-113.678635,29.707918]]]},\"id\":\"8448511ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-140.723446,60.792187],[-141.153072,60.710034],[-141.252984,60.504788],[-140.928784,60.382766],[-140.504389,60.464072],[-140.398999,60.668239],[-140.723446,60.792187]]]},\"id\":\"840c6c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.085294,44.413725],[-129.877816,44.590255],[-129.966676,44.791775],[-130.263594,44.816313],[-130.470074,44.639653],[-130.38064,44.438584],[-130.085294,44.413725]]]},\"id\":\"8428531ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.06586,54.499135],[-134.193771,54.313132],[-133.978298,54.129606],[-133.635319,54.130616],[-133.504286,54.316015],[-133.719332,54.501013],[-134.06586,54.499135]]]},\"id\":\"841d2ddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.898312,41.750188],[-125.68134,41.92481],[-125.761161,42.140227],[-126.058691,42.180573],[-126.274915,42.005743],[-126.194363,41.790775],[-125.898312,41.750188]]]},\"id\":\"84280e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.806376,57.798598],[-143.187565,57.710901],[-143.263054,57.512986],[-142.96195,57.403616],[-142.584776,57.490415],[-142.504715,57.687473],[-142.806376,57.798598]]]},\"id\":\"841d325ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.822488,65.205558],[-171.212739,65.022556],[-171.04159,64.797971],[-170.488493,64.755309],[-170.097909,64.935956],[-170.26067,65.161606],[-170.822488,65.205558]]]},\"id\":\"840d8bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.618732,18.471432],[-107.40351,18.626191],[-107.43768,18.879379],[-107.687966,18.97769],[-107.903448,18.822418],[-107.868385,18.56935],[-107.618732,18.471432]]]},\"id\":\"8449189ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.598649,57.219407],[-150.95885,57.107289],[-150.979267,56.904436],[-150.644423,56.814108],[-150.287297,56.924948],[-150.261948,57.127385],[-150.598649,57.219407]]]},\"id\":\"840c5b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.772624,18.710787],[-101.552668,18.858034],[-101.57516,19.110857],[-101.818543,19.216538],[-102.039005,19.068861],[-102.015579,18.815934],[-101.772624,18.710787]]]},\"id\":\"844985dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-60.906113,34.189376],[-61.177976,34.17106],[-61.308269,33.987318],[-61.167634,33.822941],[-60.897742,33.841333],[-60.766523,34.024027],[-60.906113,34.189376]]]},\"id\":\"843bb29ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.430461,18.267348],[-102.211526,18.415435],[-102.235277,18.668039],[-102.478889,18.772634],[-102.6983,18.6241],[-102.673623,18.37142],[-102.430461,18.267348]]]},\"id\":\"8449a33ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.546387,56.59811],[-156.883884,56.468394],[-156.862268,56.264794],[-156.508053,56.190948],[-156.172732,56.319161],[-156.189446,56.522713],[-156.546387,56.59811]]]},\"id\":\"840cccbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.377442,35.585467],[-117.148259,35.753129],[-117.208296,35.992777],[-117.498476,36.064411],[-117.727433,35.896414],[-117.666441,35.65712],[-117.377442,35.585467]]]},\"id\":\"8429859ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.833026,18.78383],[-69.011224,18.690619],[-68.984414,18.497306],[-68.77923,18.397495],[-68.601331,18.491167],[-68.628315,18.684187],[-68.833026,18.78383]]]},\"id\":\"844cc65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.104887,18.686814],[-63.935627,18.836169],[-63.965415,19.029979],[-64.164186,19.074192],[-64.332871,18.925131],[-64.30336,18.731565],[-64.104887,18.686814]]]},\"id\":\"844ced1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.172732,56.319161],[-156.508053,56.190948],[-156.489287,55.988428],[-156.140002,55.91418],[-155.806868,56.040917],[-155.82083,56.243368],[-156.172732,56.319161]]]},\"id\":\"840ccddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.930115,37.724869],[-117.697728,37.891802],[-117.760071,38.1268],[-118.055781,38.194517],[-118.287901,38.02727],[-118.224583,37.792621],[-117.930115,37.724869]]]},\"id\":\"84298c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.302233,40.572453],[-126.089322,40.748577],[-126.168833,40.966263],[-126.461957,41.007355],[-126.674119,40.831023],[-126.593912,40.613808],[-126.302233,40.572453]]]},\"id\":\"8428013ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.303376,52.362144],[-166.093915,52.533858],[-166.243904,52.74772],[-166.605891,52.789813],[-166.815579,52.617479],[-166.663065,52.403674],[-166.303376,52.362144]]]},\"id\":\"8422f35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.883087,58.901932],[-155.254373,58.774521],[-155.243457,58.563824],[-154.86699,58.480702],[-154.498538,58.606575],[-154.503719,58.817097],[-154.883087,58.901932]]]},\"id\":\"840cec1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.040236,51.7548],[-172.844871,51.943745],[-173.026275,52.153982],[-173.405209,52.175001],[-173.600144,51.985393],[-173.416591,51.775431],[-173.040236,51.7548]]]},\"id\":\"8422ee3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.045311,58.771035],[-150.427529,58.659191],[-150.453077,58.451501],[-150.101899,58.356126],[-149.723192,58.466661],[-149.692162,58.67387],[-150.045311,58.771035]]]},\"id\":\"840c5c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.863008,50.809134],[-170.666486,50.99543],[-170.834701,51.208881],[-171.201654,51.235841],[-171.397968,51.048884],[-171.22755,50.835629],[-170.863008,50.809134]]]},\"id\":\"8422e39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.774184,40.967675],[-124.555104,41.141632],[-124.632384,41.36068],[-124.929518,41.405327],[-125.147918,41.231141],[-125.069871,41.012538],[-124.774184,40.967675]]]},\"id\":\"8428031ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.66971,39.167531],[-121.444673,39.3389],[-121.515094,39.566447],[-121.811423,39.622211],[-122.035968,39.450567],[-121.964682,39.223435],[-121.66971,39.167531]]]},\"id\":\"8428335ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.600144,51.985393],[-173.405209,52.175001],[-173.589989,52.384334],[-173.97185,52.403766],[-174.166293,52.213494],[-173.979383,52.004456],[-173.600144,51.985393]]]},\"id\":\"8422e85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.632091,56.819388],[-157.968945,56.686103],[-157.939377,56.481456],[-157.577934,56.410065],[-157.24313,56.541799],[-157.267712,56.746464],[-157.632091,56.819388]]]},\"id\":\"840cccdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.852213,58.131728],[-151.223799,58.017896],[-151.242953,57.81179],[-150.895805,57.719924],[-150.527467,57.832432],[-150.503037,58.03812],[-150.852213,58.131728]]]},\"id\":\"840c585ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.672166,52.874468],[-165.459876,53.043356],[-165.608013,53.256717],[-165.971045,53.301152],[-166.183625,53.131653],[-166.032894,52.918332],[-165.672166,52.874468]]]},\"id\":\"8422d41ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.892259,18.222714],[-102.673623,18.37142],[-102.6983,18.6241],[-102.942538,18.728136],[-103.161632,18.578975],[-103.136031,18.326236],[-102.892259,18.222714]]]},\"id\":\"8449aedffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.311972,65.635894],[-150.813823,65.51858],[-150.843552,65.290729],[-150.380937,65.180783],[-149.885078,65.296454],[-149.845867,65.523696],[-150.311972,65.635894]]]},\"id\":\"840c2ddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.252984,60.504788],[-141.677178,60.42094],[-141.772072,60.215952],[-141.448226,60.095844],[-141.029099,60.178818],[-140.928784,60.382766],[-141.252984,60.504788]]]},\"id\":\"840c689ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.77674,50.723247],[-169.578562,50.907225],[-169.741316,51.12154],[-170.104509,51.15172],[-170.302582,50.967088],[-170.13758,50.752932],[-169.77674,50.723247]]]},\"id\":\"8422e2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.034197,41.358854],[-125.818592,41.533999],[-125.898312,41.750188],[-126.194363,41.790775],[-126.409218,41.615422],[-126.32878,41.39969],[-126.034197,41.358854]]]},\"id\":\"84280e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.674472,61.60565],[-152.095445,61.486101],[-152.109966,61.268526],[-151.71041,61.170917],[-151.293504,61.288955],[-151.272097,61.5061],[-151.674472,61.60565]]]},\"id\":\"840c549ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.030766,60.032486],[-146.43999,59.932842],[-146.49753,59.724291],[-146.151587,59.616128],[-145.746752,59.71463],[-145.683494,59.922426],[-146.030766,60.032486]]]},\"id\":\"840c41dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.89329,34.159159],[-118.670924,34.329821],[-118.73308,34.570256],[-119.018489,34.639625],[-119.240554,34.468622],[-119.177516,34.228593],[-118.89329,34.159159]]]},\"id\":\"8429a1bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.804746,40.43702],[-126.593912,40.613808],[-126.674119,40.831023],[-126.965838,40.870972],[-127.175899,40.693983],[-127.095021,40.477247],[-126.804746,40.43702]]]},\"id\":\"84280cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.853136,29.292077],[-113.628554,29.457038],[-113.678635,29.707918],[-113.954247,29.793544],[-114.178809,29.628174],[-114.127782,29.377589],[-113.853136,29.292077]]]},\"id\":\"8448519ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.978343,37.522525],[-118.749183,37.691263],[-118.813456,37.925549],[-119.107831,37.990722],[-119.336664,37.821673],[-119.271455,37.587764],[-118.978343,37.522525]]]},\"id\":\"84298cbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.057005,67.993697],[-162.557681,67.835207],[-162.460559,67.599953],[-161.874627,67.522766],[-161.377229,67.678851],[-161.462426,67.914505],[-162.057005,67.993697]]]},\"id\":\"840c34bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.474109,55.599897],[-157.797635,55.468817],[-157.770449,55.268419],[-157.424319,55.199075],[-157.102701,55.328663],[-157.125299,55.529077],[-157.474109,55.599897]]]},\"id\":\"840cc81ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.2236,56.931931],[-156.565967,56.802749],[-156.546387,56.59811],[-156.189446,56.522713],[-155.849353,56.650391],[-155.863922,56.854959],[-156.2236,56.931931]]]},\"id\":\"840ceb5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.227405,53.640461],[-167.014385,53.811199],[-167.172704,54.022662],[-167.546668,54.063285],[-167.759832,53.891919],[-167.598902,53.680561],[-167.227405,53.640461]]]},\"id\":\"8422d57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.442016,56.134222],[-154.779831,56.011482],[-154.773221,55.810273],[-154.433506,55.731964],[-154.098079,55.853302],[-154.099981,56.05434],[-154.442016,56.134222]]]},\"id\":\"841db67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.109584,53.764889],[-160.888645,53.920013],[-161.015126,54.133021],[-161.365335,54.191015],[-161.586998,54.035353],[-161.457737,53.822236],[-161.109584,53.764889]]]},\"id\":\"840cdbbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.352206,56.589438],[-151.702848,56.475636],[-151.717665,56.274477],[-151.386599,56.187471],[-151.03881,56.299983],[-151.019241,56.500782],[-151.352206,56.589438]]]},\"id\":\"841db5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.755577,58.018113],[-154.118365,57.895227],[-154.116202,57.6879],[-153.756604,57.603684],[-153.39664,57.725118],[-153.393453,57.932209],[-153.755577,58.018113]]]},\"id\":\"840ced7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-91.010501,37.073768],[-90.756859,37.182087],[-90.757619,37.419842],[-91.013193,37.549717],[-91.267986,37.441399],[-91.26605,37.203207],[-91.010501,37.073768]]]},\"id\":\"84265c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.129684,58.942171],[-154.503719,58.817097],[-154.498538,58.606575],[-154.125053,58.521341],[-153.753979,58.644908],[-153.753429,58.855205],[-154.129684,58.942171]]]},\"id\":\"840cecbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.736376,31.460919],[-64.995569,31.434051],[-65.106561,31.254026],[-64.959412,31.101777],[-64.701999,31.128552],[-64.589964,31.307669],[-64.736376,31.460919]]]},\"id\":\"842a4d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.419342,44.57636],[-110.153081,44.719695],[-110.202775,44.943512],[-110.520092,45.023862],[-110.786569,44.880223],[-110.735518,44.65654],[-110.419342,44.57636]]]},\"id\":\"8428967ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.098621,39.503837],[-119.868179,39.672591],[-119.935872,39.901316],[-120.234943,39.960907],[-120.46498,39.791864],[-120.396355,39.56352],[-120.098621,39.503837]]]},\"id\":\"8429893ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.931765,49.122258],[-129.711542,49.292401],[-129.805331,49.48005],[-130.120003,49.497172],[-130.339116,49.326885],[-130.244675,49.139621],[-129.931765,49.122258]]]},\"id\":\"8428c93ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.17578,53.220006],[-159.956382,53.37408],[-160.076637,53.587839],[-160.419025,53.647676],[-160.639209,53.493081],[-160.516225,53.279173],[-160.17578,53.220006]]]},\"id\":\"8422991ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.96714,50.459477],[-128.118602,50.286849],[-127.946706,50.093316],[-127.624353,50.071017],[-127.470723,50.242782],[-127.641593,50.437712],[-127.96714,50.459477]]]},\"id\":\"84129b5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.705418,19.292463],[-103.485434,19.442529],[-103.511967,19.696332],[-103.759421,19.800104],[-103.979838,19.649585],[-103.952368,19.39575],[-103.705418,19.292463]]]},\"id\":\"8449a85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.760071,38.1268],[-117.526348,38.293109],[-117.58859,38.527446],[-117.885548,38.595133],[-118.119011,38.428512],[-118.055781,38.194517],[-117.760071,38.1268]]]},\"id\":\"84298ebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.67262,24.171356],[-108.44891,24.329103],[-108.486767,24.584652],[-108.749299,24.682318],[-108.973243,24.524123],[-108.934423,24.268713],[-108.67262,24.171356]]]},\"id\":\"844800bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.85957,33.218541],[-117.636417,33.388145],[-117.696115,33.631089],[-117.97987,33.704043],[-118.202781,33.534082],[-118.142183,33.291524],[-117.85957,33.218541]]]},\"id\":\"8429a55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.018994,62.583434],[-152.455474,62.462006],[-152.467429,62.241397],[-152.050371,62.142623],[-151.618216,62.262475],[-151.598805,62.482662],[-152.018994,62.583434]]]},\"id\":\"840c72dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.501116,26.277221],[-110.276206,26.437623],[-110.31844,26.692181],[-110.586554,26.786143],[-110.811614,26.625306],[-110.768412,26.370945],[-110.501116,26.277221]]]},\"id\":\"8448089ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.774362,36.841895],[-104.520643,36.984112],[-104.553784,37.228304],[-104.841892,37.330305],[-105.096129,37.187818],[-105.061742,36.943601],[-104.774362,36.841895]]]},\"id\":\"84268b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.482908,60.83248],[-141.912279,60.747736],[-142.006602,60.54145],[-141.677178,60.42094],[-141.252984,60.504788],[-141.153072,60.710034],[-141.482908,60.83248]]]},\"id\":\"840c6c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.403566,60.678802],[-147.820256,60.574167],[-147.868394,60.362381],[-147.505989,60.255909],[-147.093729,60.359302],[-147.039465,60.570397],[-147.403566,60.678802]]]},\"id\":\"840c40dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.52122,50.71831],[-172.328209,50.908573],[-172.504014,51.120831],[-172.874948,51.142578],[-173.067593,50.951649],[-172.889683,50.73964],[-172.52122,50.71831]]]},\"id\":\"8422e13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.743139,51.637366],[-174.551933,51.830289],[-174.740924,52.039015],[-175.123165,52.054493],[-175.313772,51.860907],[-175.122753,51.652508],[-174.743139,51.637366]]]},\"id\":\"8422e8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.922388,60.973132],[-151.33526,60.856571],[-151.355626,60.641338],[-150.96965,60.543123],[-150.560777,60.65824],[-150.533893,60.873004],[-150.922388,60.973132]]]},\"id\":\"840c55dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.171533,52.550658],[-169.967674,52.731141],[-170.137639,52.942506],[-170.513853,52.973198],[-170.717561,52.792062],[-170.54522,52.580888],[-170.171533,52.550658]]]},\"id\":\"8422c09ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-75.619027,19.560248],[-75.429765,19.660213],[-75.403428,19.87974],[-75.566868,20.000099],[-75.757071,19.900284],[-75.782891,19.67996],[-75.619027,19.560248]]]},\"id\":\"844c9a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.903448,18.822418],[-107.687966,18.97769],[-107.722786,19.231142],[-107.973986,19.329196],[-108.189718,19.173413],[-108.154002,18.92009],[-107.903448,18.822418]]]},\"id\":\"844918bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.641563,24.047678],[-109.419379,24.206794],[-109.459155,24.462048],[-109.722065,24.558015],[-109.944436,24.398441],[-109.903712,24.143361],[-109.641563,24.047678]]]},\"id\":\"8448053ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.6983,18.6241],[-102.478889,18.772634],[-102.503248,19.025646],[-102.747949,19.130195],[-102.967828,18.981216],[-102.942538,18.728136],[-102.6983,18.6241]]]},\"id\":\"8449ae5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.548181,61.181137],[-138.669671,60.977862],[-138.383808,60.80196],[-137.976176,60.827747],[-137.849582,61.030635],[-138.135691,61.208132],[-138.548181,61.181137]]]},\"id\":\"8413b23ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.335505,56.756967],[-158.669458,56.621664],[-158.634922,56.417079],[-158.271392,56.347725],[-157.939377,56.481456],[-157.968945,56.686103],[-158.335505,56.756967]]]},\"id\":\"840cc13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.376776,58.977927],[-153.753429,58.855205],[-153.753979,58.644908],[-153.383599,58.557595],[-153.01003,58.678841],[-153.00376,58.888864],[-153.376776,58.977927]]]},\"id\":\"840c537ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-74.447941,37.373963],[-74.738463,37.322779],[-74.82449,37.11384],[-74.621912,36.956809],[-74.333491,37.007468],[-74.245557,37.21568],[-74.447941,37.373963]]]},\"id\":\"842af4bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.389916,36.70877],[-117.15837,36.875656],[-117.219055,37.113224],[-117.512267,37.183562],[-117.743582,37.016351],[-117.681922,36.779128],[-117.389916,36.70877]]]},\"id\":\"8429819ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.243457,58.563824],[-155.60916,58.435661],[-155.595689,58.225926],[-155.222118,58.144489],[-154.859123,58.271114],[-154.86699,58.480702],[-155.243457,58.563824]]]},\"id\":\"840cec7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.202739,61.642421],[-149.631047,61.531116],[-149.666105,61.315],[-149.27962,61.210775],[-148.855808,61.3207],[-148.814002,61.536217],[-149.202739,61.642421]]]},\"id\":\"840c73bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.622728,42.528937],[-125.402981,42.702448],[-125.482996,42.916281],[-125.78352,42.956166],[-126.002519,42.782445],[-125.921749,42.569049],[-125.622728,42.528937]]]},\"id\":\"84280a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.83622,57.646487],[-155.191286,57.520665],[-155.181309,57.314113],[-154.821507,57.233536],[-154.469038,57.357877],[-154.473774,57.564265],[-154.83622,57.646487]]]},\"id\":\"840ce83ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.531337,34.0428],[-117.305716,34.211572],[-117.365222,34.453621],[-117.651276,34.526528],[-117.876668,34.357406],[-117.816239,34.115728],[-117.531337,34.0428]]]},\"id\":\"8429a03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.1339,18.653771],[-62.962534,18.803312],[-62.993061,18.998718],[-63.194679,19.044351],[-63.365483,18.895105],[-63.335232,18.699933],[-63.1339,18.653771]]]},\"id\":\"844d4bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.069842,28.007385],[-111.844332,28.169932],[-111.890348,28.42288],[-112.162842,28.513039],[-112.388425,28.350071],[-112.341444,28.097367],[-112.069842,28.007385]]]},\"id\":\"8448545ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-73.599882,60.179783],[-74.10552,60.124488],[-74.259078,59.87842],[-73.912657,59.688702],[-73.413395,59.743323],[-73.254234,59.988328],[-73.599882,60.179783]]]},\"id\":\"840e2adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.734801,53.123409],[-160.516225,53.279173],[-160.639209,53.493081],[-160.983493,53.551359],[-161.202806,53.395063],[-161.077105,53.181024],[-160.734801,53.123409]]]},\"id\":\"842299bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.772072,60.215952],[-142.190896,60.130466],[-142.280934,59.925777],[-141.957542,59.807567],[-141.543626,59.892156],[-141.448226,60.095844],[-141.772072,60.215952]]]},\"id\":\"840c681ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.659616,51.024733],[-168.458542,51.205367],[-168.616687,51.419948],[-168.978241,51.453773],[-169.179315,51.272492],[-169.018848,51.058035],[-168.659616,51.024733]]]},\"id\":\"8422e25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.203194,66.322616],[-150.720973,66.205406],[-150.752552,65.975924],[-150.276445,65.864266],[-149.76506,65.979798],[-149.723415,66.208647],[-150.203194,66.322616]]]},\"id\":\"840d535ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.573905,47.545788],[-128.35255,47.716704],[-128.44234,47.911539],[-128.754189,47.935059],[-128.974544,47.763981],[-128.884057,47.569545],[-128.573905,47.545788]]]},\"id\":\"8428ccbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.075839,55.959617],[-152.41728,55.844304],[-152.426916,55.644919],[-152.099694,55.561145],[-151.760902,55.67516],[-151.746688,55.874238],[-152.075839,55.959617]]]},\"id\":\"841db0bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.533916,38.520074],[-119.304089,38.688845],[-119.370054,38.920414],[-119.666787,38.982835],[-119.89625,38.813765],[-119.82935,38.582575],[-119.533916,38.520074]]]},\"id\":\"84298d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.028229,59.024652],[-143.426871,58.935542],[-143.504133,58.733281],[-143.187807,58.621011],[-142.79354,58.709181],[-142.71125,58.910552],[-143.028229,59.024652]]]},\"id\":\"840c6b7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.55599,60.045383],[-147.962398,59.940665],[-148.0083,59.730742],[-147.653665,59.626188],[-147.25146,59.729678],[-147.199707,59.938939],[-147.55599,60.045383]]]},\"id\":\"840c407ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.471157,59.363577],[-151.858315,59.246591],[-151.873482,59.036068],[-151.507303,58.942921],[-151.123609,59.058503],[-151.102638,59.268624],[-151.471157,59.363577]]]},\"id\":\"840c517ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.726407,55.048984],[-134.851879,54.861372],[-134.630542,54.679027],[-134.284057,54.68282],[-134.155326,54.86986],[-134.376316,55.053684],[-134.726407,55.048984]]]},\"id\":\"841d2c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.082425,62.294467],[-149.522244,62.183151],[-149.559132,61.965195],[-149.163316,61.859163],[-148.728251,61.969076],[-148.684269,62.18641],[-149.082425,62.294467]]]},\"id\":\"840c703ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.424989,27.175078],[-112.201639,27.338223],[-112.248052,27.591432],[-112.518762,27.681239],[-112.742166,27.517661],[-112.694808,27.264712],[-112.424989,27.175078]]]},\"id\":\"8448727ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.021715,32.805205],[-117.799782,32.975185],[-117.85957,33.218541],[-118.142183,33.291524],[-118.363867,33.121183],[-118.303191,32.878222],[-118.021715,32.805205]]]},\"id\":\"8429a5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.852136,52.874958],[-171.650381,53.058465],[-171.82962,53.267956],[-172.21294,53.293692],[-172.41437,53.109525],[-172.232821,52.900284],[-171.852136,52.874958]]]},\"id\":\"8422c19ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.259957,39.105039],[-120.030883,39.274402],[-120.098621,39.503837],[-120.396355,39.56352],[-120.625018,39.393868],[-120.556363,39.164822],[-120.259957,39.105039]]]},\"id\":\"842989bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.959882,65.61328],[-134.148341,65.402913],[-133.833451,65.214028],[-133.331008,65.233681],[-133.135868,65.443314],[-133.44978,65.634038],[-133.959882,65.61328]]]},\"id\":\"840d691ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.849353,56.650391],[-156.189446,56.522713],[-156.172732,56.319161],[-155.82083,56.243368],[-155.483019,56.369568],[-155.494825,56.573028],[-155.849353,56.650391]]]},\"id\":\"840ceb7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.862268,56.264794],[-157.195003,56.134585],[-157.171444,55.932039],[-156.819939,55.859718],[-156.489287,55.988428],[-156.508053,56.190948],[-156.862268,56.264794]]]},\"id\":\"840ccc3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.865451,50.612561],[-130.999523,50.438464],[-130.816957,50.251818],[-130.500998,50.237879],[-130.364574,50.411238],[-130.546442,50.599277],[-130.865451,50.612561]]]},\"id\":\"841d609ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.02307,60.370779],[-139.447404,60.294501],[-139.558231,60.092743],[-139.249849,59.968403],[-138.857743,59.995089],[-138.741944,60.196107],[-139.02307,60.370779]]]},\"id\":\"840c6dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.685097,56.339682],[-150.036156,56.231325],[-150.062259,56.03216],[-149.741904,55.941792],[-149.393837,56.048943],[-149.363143,56.247659],[-149.685097,56.339682]]]},\"id\":\"841da67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.322389,52.243129],[-171.121826,52.427023],[-171.2965,52.637988],[-171.674042,52.664835],[-171.874341,52.480283],[-171.697378,52.269543],[-171.322389,52.243129]]]},\"id\":\"8422c51ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.303935,26.556771],[-111.079793,26.718333],[-111.123741,26.972419],[-111.392793,27.064722],[-111.617045,26.902725],[-111.572139,26.648862],[-111.303935,26.556771]]]},\"id\":\"84480d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.056908,48.762823],[-129.838205,48.933664],[-129.931765,49.122258],[-130.244675,49.139621],[-130.462272,48.96864],[-130.368073,48.780437],[-130.056908,48.762823]]]},\"id\":\"8428c9bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.822028,63.614628],[-149.286812,63.503459],[-149.32782,63.281933],[-148.911939,63.172235],[-148.452491,63.281957],[-148.403613,63.50281],[-148.822028,63.614628]]]},\"id\":\"840c741ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.804111,39.764614],[-123.584486,39.938371],[-123.659161,40.161676],[-123.954257,40.21078],[-124.173268,40.036776],[-124.097804,39.813917],[-123.804111,39.764614]]]},\"id\":\"8428063ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.212431,36.459602],[-121.994819,36.633553],[-122.064397,36.865977],[-122.352395,36.923995],[-122.569513,36.749752],[-122.499133,36.517784],[-122.212431,36.459602]]]},\"id\":\"8428349ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.727565,54.360074],[-163.506777,54.520323],[-163.648745,54.732017],[-164.01431,54.783473],[-164.235596,54.622642],[-164.09083,54.410939],[-163.727565,54.360074]]]},\"id\":\"840cdadffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.243904,52.74772],[-166.032894,52.918332],[-166.183625,53.131653],[-166.54794,53.174306],[-166.759185,53.003076],[-166.605891,52.789813],[-166.243904,52.74772]]]},\"id\":\"8422d4bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.411598,58.997253],[-139.517589,58.799175],[-139.249557,58.626671],[-138.875149,58.650746],[-138.764741,58.848494],[-139.033133,59.022505],[-139.411598,58.997253]]]},\"id\":\"841d349ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.04573,57.433016],[-153.402877,57.313006],[-153.405927,57.107989],[-153.056946,57.023243],[-152.702606,57.141857],[-152.694445,57.346601],[-153.04573,57.433016]]]},\"id\":\"840ce9bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.552333,43.482908],[-128.341085,43.658845],[-128.42672,43.865502],[-128.724245,43.895771],[-128.934583,43.719675],[-128.848313,43.51347],[-128.552333,43.482908]]]},\"id\":\"8428567ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.362058,51.974952],[-166.154123,52.147757],[-166.303376,52.362144],[-166.663065,52.403674],[-166.871217,52.230247],[-166.719476,52.015914],[-166.362058,51.974952]]]},\"id\":\"8422f3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.341353,58.164723],[-137.45997,57.968686],[-137.206288,57.790867],[-136.833953,57.807566],[-136.711234,58.00316],[-136.964925,58.182504],[-137.341353,58.164723]]]},\"id\":\"841d26dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.139716,39.524963],[-117.903802,39.690565],[-117.967655,39.921431],[-118.268431,39.986357],[-118.504055,39.820454],[-118.439199,39.589927],[-118.139716,39.524963]]]},\"id\":\"84298bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.01003,58.678841],[-153.383599,58.557595],[-153.386933,58.348449],[-153.022288,58.260831],[-152.651793,58.38063],[-152.642874,58.589483],[-153.01003,58.678841]]]},\"id\":\"840ced9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.000535,44.511788],[-110.735518,44.65654],[-110.786569,44.880223],[-111.103982,44.959009],[-111.369174,44.813952],[-111.316782,44.590416],[-111.000535,44.511788]]]},\"id\":\"8428963ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.790654,65.777964],[-134.972238,65.566913],[-134.650743,65.380301],[-134.148341,65.402913],[-133.959882,65.61328],[-134.28063,65.801729],[-134.790654,65.777964]]]},\"id\":\"840d695ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.628538,42.777845],[-101.357266,42.903151],[-101.384524,43.133913],[-101.684475,43.239471],[-101.956525,43.113949],[-101.927846,42.883088],[-101.628538,42.777845]]]},\"id\":\"8426107ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.522329,28.795129],[-114.300026,28.961112],[-114.351211,29.211898],[-114.625625,29.296382],[-114.847875,29.129982],[-114.795767,28.879516],[-114.522329,28.795129]]]},\"id\":\"844842dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.80236,21.278764],[-106.581537,21.433511],[-106.614804,21.688708],[-106.869838,21.789081],[-107.090971,21.633866],[-107.056761,21.378748],[-106.80236,21.278764]]]},\"id\":\"8448355ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.009,26.342978],[-109.783228,26.502641],[-109.824485,26.757377],[-110.092493,26.852274],[-110.31844,26.692181],[-110.276206,26.437623],[-110.009,26.342978]]]},\"id\":\"844808dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.980287,51.450983],[-166.775139,51.626561],[-166.926115,51.841406],[-167.284673,51.880605],[-167.489978,51.704397],[-167.33658,51.489622],[-166.980287,51.450983]]]},\"id\":\"8422f03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.153179,35.301557],[-111.913206,35.460569],[-111.962358,35.70494],[-112.25258,35.790091],[-112.492632,35.630739],[-112.442387,35.386578],[-112.153179,35.301557]]]},\"id\":\"8429b27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.929782,65.296101],[-149.428639,65.183782],[-149.471288,64.957689],[-149.024192,64.844606],[-148.531463,64.955386],[-148.479732,65.180772],[-148.929782,65.296101]]]},\"id\":\"840c2dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.175201,48.63813],[-127.949253,48.806903],[-128.03959,48.998923],[-128.35662,49.02179],[-128.581563,48.852844],[-128.490489,48.661206],[-128.175201,48.63813]]]},\"id\":\"8428c81ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.857039,43.945768],[-105.585931,44.079485],[-105.624155,44.306814],[-105.934913,44.400409],[-106.206547,44.266421],[-106.166899,44.039111],[-105.857039,43.945768]]]},\"id\":\"8426a45ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.182407,69.792636],[-147.805999,69.685606],[-147.877809,69.450456],[-147.339686,69.323299],[-146.726003,69.428623],[-146.640607,69.662785],[-147.182407,69.792636]]]},\"id\":\"840d72dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.279111,18.081889],[-104.061542,18.232383],[-104.088985,18.485188],[-104.334915,18.587507],[-104.552884,18.436537],[-104.524525,18.183725],[-104.279111,18.081889]]]},\"id\":\"8449ac1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.770752,64.276602],[-148.251509,64.168771],[-148.303147,63.946222],[-147.882274,63.832254],[-147.407359,63.93867],[-147.347506,64.160454],[-147.770752,64.276602]]]},\"id\":\"840d5a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.135868,65.443314],[-133.331008,65.233681],[-133.022754,65.042567],[-132.520489,65.059255],[-132.318865,65.268106],[-132.625917,65.461059],[-133.135868,65.443314]]]},\"id\":\"840d69bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.175899,40.693983],[-126.965838,40.870972],[-127.046845,41.086981],[-127.338579,41.125522],[-127.547847,40.948339],[-127.466181,40.732809],[-127.175899,40.693983]]]},\"id\":\"84280c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.55894,62.924879],[-152.002885,62.804766],[-152.018994,62.583434],[-151.598805,62.482662],[-151.159396,62.601207],[-151.135652,62.822078],[-151.55894,62.924879]]]},\"id\":\"840c767ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.534198,55.807552],[-158.856868,55.673044],[-158.822122,55.471681],[-158.469356,55.404737],[-158.148473,55.537709],[-158.178563,55.739151],[-158.534198,55.807552]]]},\"id\":\"840cce3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.570781,56.733067],[-161.893655,56.588273],[-161.835895,56.383485],[-161.460177,56.323215],[-161.138729,56.466338],[-161.191559,56.671393],[-161.570781,56.733067]]]},\"id\":\"840cc23ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.256667,27.73388],[-111.030283,27.895248],[-111.074556,28.148791],[-111.346193,28.24075],[-111.572692,28.078962],[-111.527441,27.825636],[-111.256667,27.73388]]]},\"id\":\"8448097ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.39914,53.655312],[-157.176316,53.801028],[-157.282771,54.013771],[-157.614828,54.08104],[-157.838671,53.934862],[-157.729442,53.72188],[-157.39914,53.655312]]]},\"id\":\"84229a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.337781,67.512739],[-173.750227,67.320462],[-173.53405,67.09364],[-172.91502,67.057717],[-172.50112,67.247434],[-172.707576,67.47562],[-173.337781,67.512739]]]},\"id\":\"840d811ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.423962,51.173225],[-131.556626,50.997314],[-131.369341,50.811222],[-131.050027,50.79964],[-130.914908,50.974835],[-131.101539,51.162332],[-131.423962,51.173225]]]},\"id\":\"841d66bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.696115,33.631089],[-117.471732,33.800292],[-117.531337,34.0428],[-117.816239,34.115728],[-118.040386,33.946172],[-117.97987,33.704043],[-117.696115,33.631089]]]},\"id\":\"8429a0bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.483019,56.369568],[-155.82083,56.243368],[-155.806868,56.040917],[-155.459902,55.964765],[-155.12438,56.089512],[-155.133534,56.291853],[-155.483019,56.369568]]]},\"id\":\"840ccd9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.068545,58.122446],[-157.422954,57.989154],[-157.396116,57.780299],[-157.020322,57.70475],[-156.668251,57.836453],[-156.689631,58.045282],[-157.068545,58.122446]]]},\"id\":\"840cee7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.460955,18.468329],[-67.636362,18.376209],[-67.608912,18.182956],[-67.405893,18.082138],[-67.230814,18.17473],[-67.258425,18.367667],[-67.460955,18.468329]]]},\"id\":\"844cc09ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.25146,59.729678],[-147.653665,59.626188],[-147.701374,59.417527],[-147.352588,59.313018],[-146.954525,59.415308],[-146.901126,59.623297],[-147.25146,59.729678]]]},\"id\":\"840c439ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.310438,54.248942],[-164.09083,54.410939],[-164.235596,54.622642],[-164.602753,54.67234],[-164.822801,54.509753],[-164.675264,54.29806],[-164.310438,54.248942]]]},\"id\":\"8422d2dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.501613,19.576307],[-66.674083,19.488608],[-66.64635,19.300211],[-66.445999,19.19982],[-66.282291,19.348063],[-66.310235,19.536433],[-66.501613,19.576307]]]},\"id\":\"844ce39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.714221,53.005075],[-131.852069,52.823762],[-131.653764,52.635868],[-131.318279,52.627839],[-131.177691,52.808441],[-131.375306,52.997788],[-131.714221,53.005075]]]},\"id\":\"8412901ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.381231,21.988747],[-107.159801,22.144427],[-107.194424,22.399849],[-107.451425,22.499496],[-107.673142,22.343351],[-107.637572,22.088027],[-107.381231,21.988747]]]},\"id\":\"8448319ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.4877,38.249063],[-122.267179,38.42226],[-122.338446,38.650734],[-122.631058,38.705571],[-122.851053,38.532101],[-122.778968,38.304068],[-122.4877,38.249063]]]},\"id\":\"8428303ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.884983,40.827826],[-123.663242,41.000763],[-123.738867,41.221435],[-124.037043,41.268737],[-124.258153,41.095559],[-124.181725,40.875321],[-123.884983,40.827826]]]},\"id\":\"8428023ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.645899,60.360945],[-149.054814,60.25239],[-149.092722,60.040608],[-148.727808,59.937973],[-148.323047,60.045229],[-148.279064,60.256407],[-148.645899,60.360945]]]},\"id\":\"840c429ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.338989,47.079205],[-122.096212,47.241917],[-122.174184,47.447202],[-122.495936,47.489432],[-122.738087,47.326464],[-122.65912,47.121524],[-122.338989,47.079205]]]},\"id\":\"8428d5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.224202,18.636656],[-106.007283,18.78982],[-106.038737,19.043257],[-106.288022,19.143467],[-106.505262,18.989809],[-106.472898,18.736437],[-106.224202,18.636656]]]},\"id\":\"84491e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.300348,55.93347],[-160.618817,55.793612],[-160.571566,55.591575],[-160.210523,55.529199],[-159.893598,55.66746],[-159.936161,55.869683],[-160.300348,55.93347]]]},\"id\":\"840cdd9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.647145,66.502753],[-143.190567,66.41263],[-143.297737,66.189106],[-142.870773,66.056902],[-142.335488,66.145858],[-142.219099,66.368171],[-142.647145,66.502753]]]},\"id\":\"840d43dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.420393,53.451439],[-156.198105,53.595065],[-156.298949,53.807768],[-156.624829,53.877121],[-156.848201,53.733055],[-156.744613,53.520078],[-156.420393,53.451439]]]},\"id\":\"841d967ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.456854,46.833701],[-123.218544,46.998589],[-123.298476,47.203177],[-123.617661,47.242519],[-123.855278,47.077391],[-123.774409,46.873162],[-123.456854,46.833701]]]},\"id\":\"8428c65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-87.968414,38.317621],[-87.715323,38.415748],[-87.709092,38.648108],[-87.957085,38.78284],[-88.211441,38.684794],[-88.216535,38.451935],[-87.968414,38.317621]]]},\"id\":\"842645bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.746752,59.71463],[-146.151587,59.616128],[-146.210612,59.408858],[-145.870383,59.30084],[-145.469867,59.398226],[-145.405284,59.604735],[-145.746752,59.71463]]]},\"id\":\"840c411ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.833451,65.214028],[-134.020135,65.004361],[-133.710899,64.815069],[-133.215893,64.833632],[-133.022754,65.042567],[-133.331008,65.233681],[-133.833451,65.214028]]]},\"id\":\"840d693ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.618216,62.262475],[-152.050371,62.142623],[-152.065654,61.923153],[-151.656042,61.823965],[-151.228179,61.942278],[-151.205649,62.161303],[-151.618216,62.262475]]]},\"id\":\"840c721ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.504133,58.733281],[-143.897809,58.642767],[-143.970896,58.440953],[-143.655299,58.330498],[-143.26586,58.420051],[-143.187807,58.621011],[-143.504133,58.733281]]]},\"id\":\"840c4ddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.125089,23.983585],[-109.903712,24.143361],[-109.944436,24.398441],[-110.207477,24.493555],[-110.429016,24.333317],[-110.387354,24.078429],[-110.125089,23.983585]]]},\"id\":\"84482adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.337727,64.281198],[-131.540829,64.074574],[-131.255889,63.878614],[-130.769352,63.887483],[-130.560562,64.093242],[-130.843929,64.291004],[-131.337727,64.281198]]]},\"id\":\"8413125ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.593037,59.350995],[-136.722299,59.152116],[-136.461204,58.971515],[-136.070941,58.988228],[-135.937279,59.186619],[-136.198249,59.368793],[-136.593037,59.350995]]]},\"id\":\"8413903ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.935872,39.901316],[-119.704052,40.069438],[-119.771696,40.297436],[-120.072111,40.35694],[-120.303532,40.188531],[-120.234943,39.960907],[-119.935872,39.901316]]]},\"id\":\"8428169ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.515568,63.925654],[-146.992462,63.822356],[-147.054651,63.601798],[-146.647827,63.485367],[-146.17683,63.587345],[-146.106795,63.80706],[-146.515568,63.925654]]]},\"id\":\"840d5b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.165839,19.934145],[-115.962109,20.098425],[-116.01273,20.348726],[-116.267849,20.434328],[-116.47146,20.269506],[-116.420074,20.019624],[-116.165839,19.934145]]]},\"id\":\"8449409ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.458064,44.06313],[-114.201519,44.21601],[-114.260348,44.438605],[-114.576957,44.508094],[-114.833434,44.354909],[-114.773376,44.132542],[-114.458064,44.06313]]]},\"id\":\"8428867ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.496395,63.592753],[-151.95279,63.47242],[-151.969792,63.249263],[-151.538468,63.146902],[-151.086874,63.265636],[-151.061816,63.488315],[-151.496395,63.592753]]]},\"id\":\"840c76dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.596164,59.643856],[-152.984357,59.522976],[-152.990926,59.310934],[-152.615284,59.220095],[-152.230454,59.339506],[-152.217909,59.551214],[-152.596164,59.643856]]]},\"id\":\"840c539ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.102583,56.136962],[-136.222511,55.946269],[-135.988898,55.766605],[-135.635503,55.776151],[-135.512025,55.96634],[-135.745468,56.147493],[-136.102583,56.136962]]]},\"id\":\"841d215ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.263054,57.512986],[-143.639728,57.423991],[-143.71138,57.22655],[-143.410899,57.118921],[-143.038121,57.207],[-142.96195,57.403616],[-143.263054,57.512986]]]},\"id\":\"840c49bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.181309,57.314113],[-155.531273,57.18763],[-155.518948,56.982061],[-155.161786,56.903104],[-154.81431,57.028106],[-154.821507,57.233536],[-155.181309,57.314113]]]},\"id\":\"840ceb9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.925353,62.288966],[-150.362821,62.174798],[-150.392556,61.956278],[-149.991994,61.852476],[-149.559132,61.965195],[-149.522244,62.183151],[-149.925353,62.288966]]]},\"id\":\"840c707ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.831769,57.949907],[-137.945885,57.754409],[-137.692292,57.578099],[-137.324469,57.595785],[-137.206288,57.790867],[-137.45997,57.968686],[-137.831769,57.949907]]]},\"id\":\"841d265ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.928051,56.877708],[-157.267712,56.746464],[-157.24313,56.541799],[-156.883884,56.468394],[-156.546387,56.59811],[-156.565967,56.802749],[-156.928051,56.877708]]]},\"id\":\"840ccc9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-75.973122,19.579318],[-75.782891,19.67996],[-75.757071,19.900284],[-75.922006,20.020759],[-76.113182,19.92026],[-76.138476,19.699142],[-75.973122,19.579318]]]},\"id\":\"844c9a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.545956,17.775109],[-103.328431,17.92455],[-103.35434,18.176922],[-103.59869,18.279888],[-103.816644,18.129978],[-103.78982,17.877574],[-103.545956,17.775109]]]},\"id\":\"8449a13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.750551,59.91682],[-154.139388,59.791957],[-154.136904,59.578501],[-153.75173,59.490158],[-153.366137,59.613487],[-153.362477,59.826681],[-153.750551,59.91682]]]},\"id\":\"840c52bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.164717,30.454428],[-115.94286,30.622455],[-115.997955,30.870413],[-116.275818,30.949985],[-116.497533,30.781562],[-116.441531,30.533965],[-116.164717,30.454428]]]},\"id\":\"84485d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.129406,17.878211],[-105.913658,18.030916],[-105.944744,18.28364],[-106.19248,18.383595],[-106.408549,18.230387],[-106.376562,17.977729],[-106.129406,17.878211]]]},\"id\":\"84491edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-132.797091,53.389312],[-132.929276,53.206652],[-132.725005,53.021076],[-132.38909,53.01671],[-132.254043,53.198709],[-132.457751,53.38574],[-132.797091,53.389312]]]},\"id\":\"841296bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.805331,49.48005],[-129.58357,49.64948],[-129.677587,49.836178],[-129.994037,49.853068],[-130.214684,49.68349],[-130.120003,49.497172],[-129.805331,49.48005]]]},\"id\":\"841d653ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.68091,19.371611],[-69.860471,19.278779],[-69.834116,19.086932],[-69.628017,18.988189],[-69.448734,19.08147],[-69.475271,19.273044],[-69.68091,19.371611]]]},\"id\":\"844cf35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.355626,60.641338],[-151.762122,60.523614],[-151.778802,60.309138],[-151.395375,60.212808],[-150.992709,60.329081],[-150.96965,60.543123],[-151.355626,60.641338]]]},\"id\":\"840c555ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.747449,52.398696],[-170.54522,52.580888],[-170.717561,52.792062],[-171.094479,52.820836],[-171.2965,52.637988],[-171.121826,52.427023],[-170.747449,52.398696]]]},\"id\":\"8422c55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.79333,56.416021],[-155.133534,56.291853],[-155.12438,56.089512],[-154.779831,56.011482],[-154.442016,56.134222],[-154.446361,56.33641],[-154.79333,56.416021]]]},\"id\":\"841db65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.208337,60.344337],[-150.613249,60.230631],[-150.638859,60.017792],[-150.265741,59.91915],[-149.86475,60.031476],[-149.832968,60.243812],[-150.208337,60.344337]]]},\"id\":\"840c553ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.673142,22.343351],[-107.451425,22.499496],[-107.486734,22.754988],[-107.74471,22.85423],[-107.966701,22.697623],[-107.930443,22.442238],[-107.673142,22.343351]]]},\"id\":\"844831bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.859123,58.271114],[-155.222118,58.144489],[-155.211687,57.935855],[-154.843741,57.854005],[-154.483458,57.979121],[-154.488409,58.187585],[-154.859123,58.271114]]]},\"id\":\"840ce89ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.303769,40.299824],[-127.095021,40.477247],[-127.175899,40.693983],[-127.466181,40.732809],[-127.674135,40.555192],[-127.592608,40.338943],[-127.303769,40.299824]]]},\"id\":\"84280c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.172468,51.813185],[-173.979383,52.004456],[-174.166293,52.213494],[-174.548385,52.23095],[-174.740924,52.039015],[-174.551933,51.830289],[-174.172468,51.813185]]]},\"id\":\"8422e81ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.660538,31.700503],[-115.435156,31.867487],[-115.489858,32.114502],[-115.770886,32.194197],[-115.996149,32.026832],[-115.940508,31.780154],[-115.660538,31.700503]]]},\"id\":\"844859dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.919731,19.957972],[-71.101325,19.864951],[-71.075633,19.674391],[-70.868152,19.577098],[-70.686806,19.670554],[-70.712692,19.860867],[-70.919731,19.957972]]]},\"id\":\"844c899ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.98285,56.631694],[-150.336928,56.522108],[-150.361226,56.321709],[-150.036156,56.231325],[-149.685097,56.339682],[-149.656098,56.539642],[-149.98285,56.631694]]]},\"id\":\"841da65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.538196,50.314264],[-172.346521,50.505499],[-172.52122,50.71831],[-172.889683,50.73964],[-173.080996,50.547739],[-172.904221,50.335175],[-172.538196,50.314264]]]},\"id\":\"8422e1bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.429122,61.944806],[-158.832294,61.802909],[-158.789218,61.582109],[-158.3502,61.503137],[-157.949833,61.643199],[-157.985665,61.864054],[-158.429122,61.944806]]]},\"id\":\"840c0a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.992709,60.329081],[-151.395375,60.212808],[-151.414774,59.999517],[-151.037728,59.902939],[-150.638859,60.017792],[-150.613249,60.230631],[-150.992709,60.329081]]]},\"id\":\"840c557ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.145257,19.947906],[-70.325357,19.855958],[-70.299282,19.665897],[-70.09292,19.568042],[-69.913087,19.66043],[-69.939348,19.850233],[-70.145257,19.947906]]]},\"id\":\"844cf21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.448583,55.763426],[-155.779522,55.63814],[-155.766129,55.437818],[-155.426409,55.362879],[-155.09767,55.486738],[-155.106451,55.686953],[-155.448583,55.763426]]]},\"id\":\"840ccd3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.280934,59.925777],[-142.694451,59.838707],[-142.779792,59.634357],[-142.456946,59.51803],[-142.048183,59.604179],[-141.957542,59.807567],[-142.280934,59.925777]]]},\"id\":\"840c687ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.650743,65.380301],[-134.830785,65.169949],[-134.515134,64.982885],[-134.020135,65.004361],[-133.833451,65.214028],[-134.148341,65.402913],[-134.650743,65.380301]]]},\"id\":\"840d697ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.28519,59.018272],[-135.423167,58.820406],[-135.169967,58.636395],[-134.779112,58.648673],[-134.636907,58.845981],[-134.889753,59.031576],[-135.28519,59.018272]]]},\"id\":\"8413917ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.293651,18.741025],[-105.075742,18.893057],[-105.105363,19.146571],[-105.353812,19.248027],[-105.572083,19.095514],[-105.541544,18.842029],[-105.293651,18.741025]]]},\"id\":\"8449ad1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.810472,53.508079],[-167.598902,53.680561],[-167.759832,53.891919],[-168.134921,53.930676],[-168.346576,53.75756],[-168.183071,53.546324],[-167.810472,53.508079]]]},\"id\":\"8422d53ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.065654,61.923153],[-152.490725,61.802058],[-152.502076,61.583335],[-152.095445,61.486101],[-151.674472,61.60565],[-151.656042,61.823965],[-152.065654,61.923153]]]},\"id\":\"840c727ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.880192,62.560312],[-153.313535,62.436017],[-153.318006,62.215048],[-152.896624,62.11872],[-152.467429,62.241397],[-152.455474,62.462006],[-152.880192,62.560312]]]},\"id\":\"840c0d3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.080996,50.547739],[-172.889683,50.73964],[-173.067593,50.951649],[-173.438891,50.971491],[-173.629786,50.778924],[-173.449816,50.567182],[-173.080996,50.547739]]]},\"id\":\"8422ecdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.542686,52.591221],[-163.328891,52.75549],[-163.465285,52.969868],[-163.818106,53.020019],[-164.032383,52.855168],[-163.893367,52.640751],[-163.542686,52.591221]]]},\"id\":\"8422895ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.648745,54.732017],[-163.42627,54.891094],[-163.568836,55.102204],[-163.936729,55.154246],[-164.159717,54.994589],[-164.01431,54.783473],[-163.648745,54.732017]]]},\"id\":\"840cde7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.928281,60.994399],[-147.351104,60.891161],[-147.403566,60.678802],[-147.039465,60.570397],[-146.621247,60.672409],[-146.562548,60.88404],[-146.928281,60.994399]]]},\"id\":\"840c447ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.798834,49.642215],[-126.564579,49.8075],[-126.653646,49.99834],[-126.977804,50.023535],[-127.211106,49.858047],[-127.12121,49.667569],[-126.798834,49.642215]]]},\"id\":\"8428ca7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.344607,17.930758],[-97.125593,18.071399],[-97.138966,18.321231],[-97.372266,18.430687],[-97.591937,18.289686],[-97.577651,18.039591],[-97.344607,17.930758]]]},\"id\":\"846d365ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.386933,58.348449],[-153.755052,58.22636],[-153.755577,58.018113],[-153.393453,57.932209],[-153.02828,58.052849],[-153.022288,58.260831],[-153.386933,58.348449]]]},\"id\":\"840ced1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.517534,21.461195],[-108.298347,21.618277],[-108.335105,21.873283],[-108.591977,21.971066],[-108.811396,21.8135],[-108.773713,21.558637],[-108.517534,21.461195]]]},\"id\":\"8448229ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-74.46472,19.961161],[-74.652365,19.863244],[-74.628582,19.670698],[-74.416927,19.576268],[-74.229441,19.674597],[-74.253451,19.866943],[-74.46472,19.961161]]]},\"id\":\"844c983ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.201738,40.360428],[-120.972583,40.530032],[-121.042965,40.755412],[-121.343412,40.810796],[-121.57209,40.640918],[-121.500804,40.415932],[-121.201738,40.360428]]]},\"id\":\"8428109ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.891379,18.055835],[-81.689866,18.169558],[-81.673776,18.400185],[-81.859861,18.517787],[-82.062312,18.404051],[-82.077738,18.172725],[-81.891379,18.055835]]]},\"id\":\"8445a1dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.068424,53.72116],[-169.860002,53.898411],[-170.033084,54.107916],[-170.417089,54.139968],[-170.625364,53.962065],[-170.449797,53.752763],[-170.068424,53.72116]]]},\"id\":\"8422c3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.274915,42.005743],[-126.058691,42.180573],[-126.139354,42.394762],[-126.436964,42.43367],[-126.652415,42.258638],[-126.571035,42.0449],[-126.274915,42.005743]]]},\"id\":\"84280a9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.398334,34.057199],[-119.177516,34.228593],[-119.240554,34.468622],[-119.525278,34.53684],[-119.745768,34.365106],[-119.681866,34.125495],[-119.398334,34.057199]]]},\"id\":\"8429127ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.028096,27.542408],[-114.809131,27.709097],[-114.860761,27.960329],[-115.132251,28.04453],[-115.351137,27.877406],[-115.298616,27.626519],[-115.028096,27.542408]]]},\"id\":\"8448469ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.49753,59.724291],[-146.901126,59.623297],[-146.954525,59.415308],[-146.609975,59.309021],[-146.210612,59.408858],[-146.151587,59.616128],[-146.49753,59.724291]]]},\"id\":\"840c415ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.698477,18.819962],[-64.530581,18.969059],[-64.559906,19.161507],[-64.756851,19.204613],[-64.924167,19.055813],[-64.895118,18.863611],[-64.698477,18.819962]]]},\"id\":\"844cec3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.641577,20.388292],[-156.802765,20.183534],[-156.695548,19.952449],[-156.427341,19.925907],[-156.265812,20.130599],[-156.372827,20.361897],[-156.641577,20.388292]]]},\"id\":\"845d163ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.760168,18.756847],[-62.588047,18.906314],[-62.618851,19.10195],[-62.821498,19.14789],[-62.993061,18.998718],[-62.962534,18.803312],[-62.760168,18.756847]]]},\"id\":\"844d487ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.612725,66.652228],[-148.146865,66.54413],[-148.205183,66.315619],[-147.739496,66.196035],[-147.21258,66.302605],[-147.144172,66.530269],[-147.612725,66.652228]]]},\"id\":\"840d515ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.147918,41.231141],[-124.929518,41.405327],[-125.007647,41.623174],[-125.30494,41.66639],[-125.522637,41.491983],[-125.443752,41.274582],[-125.147918,41.231141]]]},\"id\":\"8428033ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.26289,65.613758],[-152.757362,65.489654],[-152.767933,65.260818],[-152.293651,65.156521],[-151.804681,65.278868],[-151.784504,65.507251],[-152.26289,65.613758]]]},\"id\":\"840c2c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.7364,52.837366],[-174.541138,53.027289],[-174.73409,53.234011],[-175.124439,53.25047],[-175.319077,53.059884],[-175.124008,52.853502],[-174.7364,52.837366]]]},\"id\":\"8422eb1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.542981,59.314981],[-142.946653,59.227326],[-143.028229,59.024652],[-142.71125,58.910552],[-142.312094,58.997287],[-142.22543,59.199035],[-142.542981,59.314981]]]},\"id\":\"840c6b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.078886,36.205208],[-117.850176,36.373535],[-117.91193,36.611346],[-118.203342,36.680466],[-118.431784,36.511813],[-118.369087,36.274368],[-118.078886,36.205208]]]},\"id\":\"8429aadffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.647166,38.327348],[-118.415335,38.494906],[-118.479455,38.727879],[-118.776372,38.792936],[-119.00789,38.625073],[-118.942808,38.39246],[-118.647166,38.327348]]]},\"id\":\"8429889ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.841384,39.024872],[-118.608508,39.192106],[-118.673444,39.423346],[-118.972229,39.486995],[-119.204776,39.31946],[-119.138872,39.088579],[-118.841384,39.024872]]]},\"id\":\"8429883ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.766129,55.437818],[-156.092582,55.312032],[-156.077204,55.11274],[-155.739888,55.039311],[-155.415548,55.163672],[-155.426409,55.362879],[-155.766129,55.437818]]]},\"id\":\"840cc99ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.638637,19.19642],[-104.419451,19.347735],[-104.447854,19.601585],[-104.696374,19.70412],[-104.915952,19.552338],[-104.886619,19.298491],[-104.638637,19.19642]]]},\"id\":\"8449a8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.688815,62.939252],[-151.135652,62.822078],[-151.159396,62.601207],[-150.743908,62.49802],[-150.301781,62.613673],[-150.270447,62.83402],[-150.688815,62.939252]]]},\"id\":\"840c763ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.141137,19.34949],[-155.303603,19.145043],[-155.197898,18.911504],[-154.929971,18.882219],[-154.767224,19.086569],[-154.872682,19.320301],[-155.141137,19.34949]]]},\"id\":\"845d13bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.992429,26.209821],[-110.768412,26.370945],[-110.811614,26.625306],[-111.079793,26.718333],[-111.303935,26.556771],[-111.259776,26.302623],[-110.992429,26.209821]]]},\"id\":\"84480d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.529002,28.954569],[-113.304418,29.119116],[-113.353718,29.370494],[-113.628554,29.457038],[-113.853136,29.292077],[-113.802887,29.040987],[-113.529002,28.954569]]]},\"id\":\"8448557ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.434828,63.542716],[-144.908757,63.446842],[-144.988187,63.229289],[-144.601088,63.108568],[-144.133198,63.203273],[-144.046409,63.419856],[-144.434828,63.542716]]]},\"id\":\"840c669ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.163852,37.300385],[-115.928005,37.464769],[-115.986549,37.702353],[-116.281969,37.775246],[-116.517655,37.610538],[-116.458086,37.373263],[-116.163852,37.300385]]]},\"id\":\"8429839ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.122275,19.054463],[-108.907896,19.211258],[-108.945159,19.464654],[-109.197688,19.561083],[-109.412264,19.403768],[-109.374117,19.150545],[-109.122275,19.054463]]]},\"id\":\"84490a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.530353,44.672543],[-112.26788,44.820385],[-112.32264,45.042646],[-112.641182,45.116885],[-112.903722,44.968735],[-112.847657,44.746656],[-112.530353,44.672543]]]},\"id\":\"842890bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.053539,51.563914],[-167.849606,51.741818],[-168.006231,51.955989],[-168.369191,51.992149],[-168.573181,51.813606],[-168.414165,51.599543],[-168.053539,51.563914]]]},\"id\":\"8422f11ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.230093,20.568115],[-106.009921,20.721925],[-106.041854,20.976783],[-106.294898,21.077774],[-106.515401,20.923495],[-106.48253,20.668696],[-106.230093,20.568115]]]},\"id\":\"8448341ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.057825,20.225917],[-108.841414,20.383223],[-108.878887,20.637457],[-109.133673,20.734221],[-109.350286,20.576411],[-109.311913,20.322344],[-109.057825,20.225917]]]},\"id\":\"8448245ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.50112,67.247434],[-172.91502,67.057717],[-172.710187,66.830521],[-172.101008,66.791744],[-171.68603,66.978926],[-171.88119,67.207406],[-172.50112,67.247434]]]},\"id\":\"840d813ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.452491,63.281957],[-148.911939,63.172235],[-148.955696,62.951908],[-148.547659,62.841981],[-148.093471,62.950294],[-148.042087,63.16993],[-148.452491,63.281957]]]},\"id\":\"840c743ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.926115,51.841406],[-166.719476,52.015914],[-166.871217,52.230247],[-167.232069,52.270002],[-167.438873,52.094866],[-167.284673,51.880605],[-166.926115,51.841406]]]},\"id\":\"8422f39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.425972,60.354945],[-149.832968,60.243812],[-149.86475,60.031476],[-149.495677,59.930815],[-149.092722,60.040608],[-149.054814,60.25239],[-149.425972,60.354945]]]},\"id\":\"840c42dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.254186,61.951023],[-146.694671,61.849533],[-146.754537,61.634869],[-146.380603,61.522481],[-145.945178,61.622747],[-145.878655,61.836612],[-146.254186,61.951023]]]},\"id\":\"840c627ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.2965,52.637988],[-171.094479,52.820836],[-171.27025,53.031189],[-171.650381,53.058465],[-171.852136,52.874958],[-171.674042,52.664835],[-171.2965,52.637988]]]},\"id\":\"8422c57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.931217,40.311283],[-125.717577,40.487191],[-125.796272,40.706073],[-126.089322,40.748577],[-126.302233,40.572453],[-126.22283,40.354041],[-125.931217,40.311283]]]},\"id\":\"8428011ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.890939,50.407864],[-170.695794,50.595155],[-170.863008,50.809134],[-171.22755,50.835629],[-171.422488,50.647677],[-171.253103,50.433892],[-170.890939,50.407864]]]},\"id\":\"8422e03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.971597,18.935179],[-106.754914,19.089389],[-106.787926,19.343045],[-107.038528,19.442399],[-107.255502,19.287689],[-107.221583,19.034127],[-106.971597,18.935179]]]},\"id\":\"8449185ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.735664,66.965954],[-135.302629,66.904882],[-135.488629,66.690771],[-135.115649,66.539457],[-134.558254,66.599969],[-134.364372,66.812348],[-134.735664,66.965954]]]},\"id\":\"840d68dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.215531,38.812675],[-122.996085,38.986413],[-123.069035,39.212682],[-123.362235,39.264765],[-123.581109,39.090766],[-123.507361,38.864945],[-123.215531,38.812675]]]},\"id\":\"8428317ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.314717,18.440081],[-77.507275,18.334727],[-77.485077,18.135398],[-77.270067,18.041592],[-77.077591,18.147356],[-77.100042,18.346515],[-77.314717,18.440081]]]},\"id\":\"8445b25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.504055,39.820454],[-118.268431,39.986357],[-118.333201,40.216153],[-118.634598,40.279702],[-118.869909,40.1135],[-118.804143,39.884049],[-118.504055,39.820454]]]},\"id\":\"84298b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.385603,63.709115],[-157.822462,63.568978],[-157.785648,63.343467],[-157.320294,63.258104],[-156.886925,63.396345],[-156.915408,63.621827],[-157.385603,63.709115]]]},\"id\":\"840c017ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.22018,38.279338],[-111.973609,38.435522],[-112.024274,38.674157],[-112.322667,38.756412],[-112.569316,38.599909],[-112.517498,38.361473],[-112.22018,38.279338]]]},\"id\":\"8429931ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.057462,38.412922],[-119.82935,38.582575],[-119.89625,38.813765],[-120.19218,38.874913],[-120.419899,38.704964],[-120.352086,38.474165],[-120.057462,38.412922]]]},\"id\":\"84298d3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.649322,48.663161],[-122.402927,48.823749],[-122.483019,49.023551],[-122.810532,49.062432],[-123.056255,48.901583],[-122.975145,48.702115],[-122.649322,48.663161]]]},\"id\":\"8428d17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.727933,60.954506],[-152.138288,60.835298],[-152.152101,60.619651],[-151.762122,60.523614],[-151.355626,60.641338],[-151.33526,60.856571],[-151.727933,60.954506]]]},\"id\":\"840c543ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.603302,55.185316],[-116.854257,55.011703],[-116.71226,54.78686],[-116.322308,54.734267],[-116.069825,54.906518],[-116.208787,55.132723],[-116.603302,55.185316]]]},\"id\":\"8412e47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.21258,66.302605],[-147.739496,66.196035],[-147.800967,65.96869],[-147.345297,65.848765],[-146.825472,65.953853],[-146.754271,66.180331],[-147.21258,66.302605]]]},\"id\":\"840d517ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-98.04585,18.256994],[-97.826173,18.398696],[-97.841005,18.649321],[-98.076435,18.758483],[-98.29675,18.616412],[-98.280996,18.365548],[-98.04585,18.256994]]]},\"id\":\"8449949ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.930482,38.815085],[-110.680272,38.968054],[-110.728317,39.206301],[-111.027771,39.291422],[-111.278141,39.138141],[-111.228901,38.900054],[-110.930482,38.815085]]]},\"id\":\"8426931ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-53.746276,55.325401],[-54.177281,55.341877],[-54.424436,55.134074],[-54.241845,54.911392],[-53.815725,54.895549],[-53.567349,55.101759],[-53.746276,55.325401]]]},\"id\":\"841ba11ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.286556,18.949818],[-65.12004,19.098643],[-65.148903,19.28973],[-65.344007,19.331744],[-65.509937,19.183216],[-65.481349,18.992379],[-65.286556,18.949818]]]},\"id\":\"844cec5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.334257,50.567294],[-170.13758,50.752932],[-170.302582,50.967088],[-170.666486,50.99543],[-170.863008,50.809134],[-170.695794,50.595155],[-170.334257,50.567294]]]},\"id\":\"8422e07ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.334281,37.008097],[-113.092833,37.167733],[-113.145304,37.4082],[-113.440325,37.488796],[-113.681782,37.32883],[-113.628213,37.088599],[-113.334281,37.008097]]]},\"id\":\"8429957ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.443398,17.992393],[-96.224508,18.131629],[-96.236062,18.380887],[-96.467413,18.491207],[-96.68699,18.35163],[-96.674528,18.102077],[-96.443398,17.992393]]]},\"id\":\"846d36bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.779055,20.743289],[-155.941668,20.5393],[-155.834868,20.307801],[-155.565682,20.2801],[-155.402759,20.484018],[-155.50933,20.715707],[-155.779055,20.743289]]]},\"id\":\"845d109ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.294814,53.023566],[-161.077105,53.181024],[-161.202806,53.395063],[-161.548924,53.45176],[-161.76732,53.293759],[-161.638919,53.079607],[-161.294814,53.023566]]]},\"id\":\"84228a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.90378,22.044404],[-106.681739,22.199426],[-106.715409,22.454927],[-106.972074,22.555329],[-107.194424,22.399849],[-107.159801,22.144427],[-106.90378,22.044404]]]},\"id\":\"844831dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.951672,53.574507],[-157.729442,53.72188],[-157.838671,53.934862],[-158.172904,54.000694],[-158.396108,53.852846],[-158.284111,53.639643],[-157.951672,53.574507]]]},\"id\":\"84229a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.998777,59.364633],[-144.40116,59.27213],[-144.472309,59.06772],[-144.146356,58.956653],[-143.748366,59.04815],[-143.671962,59.251711],[-143.998777,59.364633]]]},\"id\":\"840c4c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.929341,62.770958],[-156.355636,62.636389],[-156.333234,62.41372],[-155.892244,62.325742],[-155.469517,62.458535],[-155.484208,62.681068],[-155.929341,62.770958]]]},\"id\":\"840c08dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.596125,19.134486],[-63.425886,19.283436],[-63.456039,19.476592],[-63.656154,19.520569],[-63.825825,19.371916],[-63.795949,19.178991],[-63.596125,19.134486]]]},\"id\":\"844d4a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.932194,65.712799],[-167.356004,65.540701],[-167.219829,65.312285],[-166.669076,65.255179],[-166.246292,65.424934],[-166.373165,65.654121],[-166.932194,65.712799]]]},\"id\":\"840d89bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.414415,64.954055],[-150.901285,64.836696],[-150.929322,64.610524],[-150.479458,64.502282],[-149.998215,64.618031],[-149.961231,64.843616],[-150.414415,64.954055]]]},\"id\":\"840c2d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.693576,41.136691],[-109.435479,41.283904],[-109.481752,41.517361],[-109.787403,41.603488],[-110.045748,41.455977],[-109.998198,41.222639],[-109.693576,41.136691]]]},\"id\":\"8426b37ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.123609,59.058503],[-151.507303,58.942921],[-151.524963,58.733592],[-151.164596,58.640254],[-150.784339,58.754462],[-150.761021,58.963372],[-151.123609,59.058503]]]},\"id\":\"840c5e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.983458,31.207634],[-113.755469,31.372263],[-113.806624,31.621182],[-114.086747,31.705187],[-114.314709,31.540173],[-114.262579,31.291542],[-113.983458,31.207634]]]},\"id\":\"84485e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.682189,19.068224],[-68.859876,18.975993],[-68.833026,18.78383],[-68.628315,18.684187],[-68.450929,18.776877],[-68.477952,18.96875],[-68.682189,19.068224]]]},\"id\":\"844cc6dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.959896,38.079063],[-78.250809,38.018683],[-78.322632,37.805192],[-78.10567,37.652666],[-77.81678,37.712364],[-77.742839,37.925265],[-77.959896,38.079063]]]},\"id\":\"842a8cbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.432798,52.715071],[-172.232821,52.900284],[-172.41437,53.109525],[-172.798173,53.133287],[-172.997766,52.947412],[-172.813956,52.738438],[-172.432798,52.715071]]]},\"id\":\"8422ea5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.015269,56.394997],[-120.251512,56.214233],[-120.086023,55.994995],[-119.686981,55.95505],[-119.448608,56.13455],[-119.611369,56.355259],[-120.015269,56.394997]]]},\"id\":\"8412181ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.997766,52.947412],[-172.798173,53.133287],[-172.983211,53.341605],[-173.370102,53.363762],[-173.56925,53.177224],[-173.381968,52.969194],[-172.997766,52.947412]]]},\"id\":\"8422ea7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.904629,61.898866],[-153.326716,61.775001],[-153.33096,61.55593],[-152.92023,61.461058],[-152.502076,61.583335],[-152.490725,61.802058],[-152.904629,61.898866]]]},\"id\":\"840c09bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.142101,18.396459],[-65.977435,18.545577],[-66.005657,18.737004],[-66.198271,18.779047],[-66.362344,18.630224],[-66.334396,18.439064],[-66.142101,18.396459]]]},\"id\":\"844cee5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.942493,62.849133],[-160.353772,62.701513],[-160.295497,62.478137],[-159.833676,62.402198],[-159.42504,62.547874],[-159.475561,62.771418],[-159.942493,62.849133]]]},\"id\":\"840c1ddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.383916,41.883028],[-125.164839,42.05689],[-125.243904,42.272749],[-125.542808,42.314305],[-125.761161,42.140227],[-125.68134,41.92481],[-125.383916,41.883028]]]},\"id\":\"84281dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.115066,50.265284],[-115.343477,50.104827],[-115.226254,49.884229],[-114.883081,49.822871],[-114.653659,49.982008],[-114.768398,50.203821],[-115.115066,50.265284]]]},\"id\":\"8412ce1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.271888,30.004075],[-67.524039,29.972375],[-67.623485,29.794658],[-67.471896,29.649456],[-67.221413,29.680964],[-67.120859,29.857864],[-67.271888,30.004075]]]},\"id\":\"844da57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.694788,60.311562],[-70.206728,60.271309],[-70.389373,60.03052],[-70.065159,59.831248],[-69.559954,59.871085],[-69.372291,60.110604],[-69.694788,60.311562]]]},\"id\":\"840e2c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.326419,31.372449],[-115.100937,31.539049],[-115.154831,31.786731],[-115.435156,31.867487],[-115.660538,31.700503],[-115.6057,31.453149],[-115.326419,31.372449]]]},\"id\":\"844858bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.659794,22.738736],[-110.441378,22.898946],[-110.482759,23.153677],[-110.743471,23.247983],[-110.962021,23.08729],[-110.919728,22.832776],[-110.659794,22.738736]]]},\"id\":\"84482e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.341168,58.083307],[-142.726927,57.996956],[-142.806376,57.798598],[-142.504715,57.687473],[-142.123093,57.772945],[-142.039021,57.970412],[-142.341168,58.083307]]]},\"id\":\"841d32dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.266924,49.631105],[-129.042517,49.799645],[-129.135838,49.98672],[-129.454271,50.004878],[-129.677587,49.836178],[-129.58357,49.64948],[-129.266924,49.631105]]]},\"id\":\"841d65bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.988539,18.19047],[-68.165306,18.096851],[-68.138056,17.902142],[-67.933873,17.801365],[-67.757424,17.895456],[-67.78484,18.089851],[-67.988539,18.19047]]]},\"id\":\"844cc05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.854597,32.091612],[-102.610023,32.235074],[-102.637489,32.486444],[-102.910687,32.594446],[-103.155835,32.450704],[-103.127212,32.199242],[-102.854597,32.091612]]]},\"id\":\"8448d61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.638113,54.863961],[-142.981479,54.778752],[-143.050763,54.591373],[-142.780394,54.489961],[-142.440297,54.574348],[-142.367317,54.760963],[-142.638113,54.863961]]]},\"id\":\"841d1e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.193787,19.266881],[-64.024892,19.415596],[-64.054582,19.6074],[-64.252891,19.650258],[-64.421211,19.501841],[-64.391797,19.310271],[-64.193787,19.266881]]]},\"id\":\"844d593ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.165302,21.780479],[-95.939881,21.918173],[-95.951192,22.170161],[-96.188887,22.284777],[-96.415046,22.146802],[-96.402773,21.894493],[-96.165302,21.780479]]]},\"id\":\"84456c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.202924,59.409081],[-149.596197,59.299425],[-149.628676,59.090255],[-149.27359,58.991275],[-148.884112,59.09964],[-148.845939,59.308264],[-149.202924,59.409081]]]},\"id\":\"840c5c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.334396,18.439064],[-66.507222,18.348473],[-66.479302,18.156182],[-66.278407,18.054811],[-66.113969,18.204195],[-66.142101,18.396459],[-66.334396,18.439064]]]},\"id\":\"844cc5bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.204776,39.31946],[-118.972229,39.486995],[-119.038066,39.71717],[-119.337417,39.779448],[-119.569613,39.611617],[-119.502815,39.381807],[-119.204776,39.31946]]]},\"id\":\"8429895ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.527754,41.638778],[-111.27157,41.789209],[-111.322338,42.02042],[-111.630543,42.101036],[-111.886856,41.950299],[-111.834839,41.719255],[-111.527754,41.638778]]]},\"id\":\"8428b65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-58.827767,61.574893],[-59.35673,61.577438],[-59.622416,61.357124],[-59.362258,61.13596],[-58.840711,61.133752],[-58.57198,61.352375],[-58.827767,61.574893]]]},\"id\":\"840f44dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.770449,55.268419],[-158.089523,55.136959],[-158.060646,54.937654],[-157.717176,54.869763],[-157.399929,54.999734],[-157.424319,55.199075],[-157.770449,55.268419]]]},\"id\":\"840cc87ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.798667,18.063903],[-107.584317,18.218646],[-107.618732,18.471432],[-107.868385,18.56935],[-108.082986,18.414087],[-108.047684,18.161428],[-107.798667,18.063903]]]},\"id\":\"84491c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.476999,51.093859],[-129.621614,50.918762],[-129.441321,50.727916],[-129.117275,50.710759],[-128.97032,50.885055],[-129.149731,51.077313],[-129.476999,51.093859]]]},\"id\":\"84129adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.187338,24.230913],[-107.962911,24.387951],[-107.999797,24.643619],[-108.262082,24.742132],[-108.486767,24.584652],[-108.44891,24.329103],[-108.187338,24.230913]]]},\"id\":\"8448001ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.742918,65.965677],[-152.247042,65.843213],[-152.26289,65.613758],[-151.784504,65.507251],[-151.286189,65.627966],[-151.260469,65.85692],[-151.742918,65.965677]]]},\"id\":\"840c2c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.668159,24.402617],[-112.450179,24.565813],[-112.496043,24.819668],[-112.76079,24.910048],[-112.97881,24.74638],[-112.932046,24.492806],[-112.668159,24.402617]]]},\"id\":\"8448291ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.365312,40.952034],[-123.141582,41.124157],[-123.21638,41.345253],[-123.515741,41.393804],[-123.738867,41.221435],[-123.663242,41.000763],[-123.365312,40.952034]]]},\"id\":\"8428027ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.952672,34.707542],[-110.711848,34.864831],[-110.758163,35.110875],[-111.046412,35.199456],[-111.287383,35.041826],[-111.239961,34.795958],[-110.952672,34.707542]]]},\"id\":\"8448cd7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.738858,51.971208],[-164.52882,52.14],[-164.669815,52.354942],[-165.023395,52.401098],[-165.233799,52.231705],[-165.090267,52.01676],[-164.738858,51.971208]]]},\"id\":\"8422f25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.946667,55.326021],[-138.050821,55.137597],[-137.817203,54.963755],[-137.479318,54.976909],[-137.371723,55.164924],[-137.605434,55.3402],[-137.946667,55.326021]]]},\"id\":\"841d051ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.939377,56.481456],[-158.271392,56.347725],[-158.240013,56.14416],[-157.881485,56.074276],[-157.551428,56.206461],[-157.577934,56.410065],[-157.939377,56.481456]]]},\"id\":\"840ccc5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.738678,52.439025],[-174.544786,52.62996],[-174.7364,52.837366],[-175.124008,52.853502],[-175.317284,52.661904],[-175.123584,52.454834],[-174.738678,52.439025]]]},\"id\":\"8422eb9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.902592,49.358017],[-127.673494,49.525278],[-127.764186,49.715389],[-128.084749,49.737867],[-128.312837,49.570423],[-128.22138,49.380685],[-127.902592,49.358017]]]},\"id\":\"8428cbdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.945178,61.622747],[-146.380603,61.522481],[-146.44225,61.30908],[-146.074957,61.196742],[-145.644505,61.295816],[-145.576402,61.508408],[-145.945178,61.622747]]]},\"id\":\"840c449ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.847491,57.086373],[-135.972943,56.893199],[-135.733123,56.712041],[-135.368047,56.722544],[-135.238838,56.915198],[-135.478437,57.097876],[-135.847491,57.086373]]]},\"id\":\"841d209ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.202781,33.534082],[-117.97987,33.704043],[-118.040386,33.946172],[-118.324712,34.017948],[-118.547361,33.847634],[-118.485951,33.605898],[-118.202781,33.534082]]]},\"id\":\"8429a57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.44234,47.911539],[-128.219471,48.081757],[-128.309445,48.275661],[-128.623006,48.298954],[-128.844872,48.12857],[-128.754189,47.935059],[-128.44234,47.911539]]]},\"id\":\"8428cc3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.084679,43.768781],[-113.828092,43.921354],[-113.885892,44.145078],[-114.201519,44.21601],[-114.458064,44.06313],[-114.39903,43.839627],[-114.084679,43.768781]]]},\"id\":\"8428865ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.511027,40.867691],[-120.278626,41.035725],[-120.348046,41.260725],[-120.650814,41.317317],[-120.882775,41.149006],[-120.812414,40.924381],[-120.511027,40.867691]]]},\"id\":\"8428105ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.312094,58.997287],[-142.71125,58.910552],[-142.79354,58.709181],[-142.481646,58.595462],[-142.086919,58.681297],[-141.999685,58.881743],[-142.312094,58.997287]]]},\"id\":\"840c6b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.681913,34.957256],[-116.452341,35.124236],[-116.510671,35.36564],[-116.799542,35.439725],[-117.02893,35.272401],[-116.969635,35.031338],[-116.681913,34.957256]]]},\"id\":\"8429a35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.801533,59.099752],[-157.169487,58.966099],[-157.143668,58.754159],[-156.75574,58.675909],[-156.39034,58.807937],[-156.410308,59.019828],[-156.801533,59.099752]]]},\"id\":\"840ce17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.64635,19.300211],[-66.819341,19.21154],[-66.791638,19.022011],[-66.590793,18.921464],[-66.418145,19.010603],[-66.445999,19.19982],[-66.64635,19.300211]]]},\"id\":\"844ce31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.726468,62.056371],[-157.137977,61.919839],[-157.109423,61.698995],[-156.676652,61.614739],[-156.268346,61.749498],[-156.2896,61.970271],[-156.726468,62.056371]]]},\"id\":\"840c0abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.967655,39.921431],[-117.730359,40.086333],[-117.794113,40.316461],[-118.096186,40.381356],[-118.333201,40.216153],[-118.268431,39.986357],[-117.967655,39.921431]]]},\"id\":\"84298b5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.368843,18.764309],[-108.154002,18.92009],[-108.189718,19.173413],[-108.441165,19.270813],[-108.656234,19.114516],[-108.619629,18.861338],[-108.368843,18.764309]]]},\"id\":\"84491d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.625385,19.611124],[-67.800402,19.521886],[-67.77314,19.332593],[-67.570701,19.23283],[-67.396006,19.322526],[-67.423428,19.511526],[-67.625385,19.611124]]]},\"id\":\"844ce27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.818388,56.902715],[-143.187338,56.815532],[-143.260427,56.620685],[-142.968872,56.51384],[-142.603684,56.600146],[-142.526309,56.794167],[-142.818388,56.902715]]]},\"id\":\"841d141ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.647057,18.843542],[-65.481349,18.992379],[-65.509937,19.183216],[-65.703957,19.224963],[-65.869076,19.076423],[-65.840764,18.885841],[-65.647057,18.843542]]]},\"id\":\"844cee9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.27479,37.560015],[-122.055079,37.733399],[-122.125497,37.963587],[-122.416448,38.019946],[-122.635651,37.84628],[-122.564417,37.616538],[-122.27479,37.560015]]]},\"id\":\"8428309ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.439082,52.984951],[-168.23056,53.160271],[-168.393148,53.372102],[-168.766771,53.408479],[-168.975314,53.23252],[-168.810228,53.020826],[-168.439082,52.984951]]]},\"id\":\"8422c67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.341408,38.011876],[-116.104394,38.175918],[-116.163697,38.411884],[-116.46105,38.483502],[-116.69789,38.319142],[-116.637555,38.083484],[-116.341408,38.011876]]]},\"id\":\"8429833ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.223585,60.423309],[-138.344487,60.221774],[-138.067361,60.045228],[-137.66913,60.068649],[-137.543406,60.269783],[-137.820705,60.447906],[-138.223585,60.423309]]]},\"id\":\"8413941ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.113531,41.488221],[-123.891033,41.660831],[-123.967578,41.879546],[-124.267431,41.925223],[-124.489277,41.752378],[-124.411928,41.534093],[-124.113531,41.488221]]]},\"id\":\"84281cbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.729493,67.650753],[-146.294862,67.549264],[-146.375508,67.319944],[-145.901643,67.193126],[-145.34466,67.293162],[-145.253219,67.521452],[-145.729493,67.650753]]]},\"id\":\"840d551ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.974536,58.322507],[-138.088982,58.126062],[-137.831769,57.949907],[-137.45997,57.968686],[-137.341353,58.164723],[-137.598679,58.342396],[-137.974536,58.322507]]]},\"id\":\"8413927ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.587406,54.687453],[-133.719332,54.501013],[-133.504286,54.316015],[-133.157788,54.31598],[-133.022729,54.501792],[-133.237277,54.688273],[-133.587406,54.687453]]]},\"id\":\"8412b25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.417403,49.336997],[-125.178831,49.500802],[-125.265012,49.694654],[-125.590669,49.724347],[-125.828379,49.560317],[-125.741303,49.36682],[-125.417403,49.336997]]]},\"id\":\"8428dd7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-86.447885,25.995284],[-86.223886,26.109743],[-86.215331,26.352011],[-86.431647,26.480445],[-86.656681,26.365999],[-86.664361,26.123106],[-86.447885,25.995284]]]},\"id\":\"844401bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.308904,19.961762],[-71.491226,19.868202],[-71.465732,19.6774],[-71.257717,19.580399],[-71.075633,19.674391],[-71.101325,19.864951],[-71.308904,19.961762]]]},\"id\":\"844c89dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.233799,52.231705],[-165.023395,52.401098],[-165.167583,52.615537],[-165.524732,52.660569],[-165.735461,52.490569],[-165.588726,52.276147],[-165.233799,52.231705]]]},\"id\":\"8422f27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.530473,34.491115],[-112.292949,34.651465],[-112.342547,34.896932],[-112.630741,34.981827],[-112.86832,34.821129],[-112.817654,34.575887],[-112.530473,34.491115]]]},\"id\":\"8429b29ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.64853,60.168634],[-135.789043,59.96803],[-135.52436,59.784429],[-135.119443,59.799824],[-134.974337,59.99988],[-135.238705,60.185096],[-135.64853,60.168634]]]},\"id\":\"8413953ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.423971,24.040819],[-167.567541,23.83522],[-167.455415,23.624202],[-167.199589,23.618469],[-167.055325,23.824208],[-167.167579,24.035539],[-167.423971,24.040819]]]},\"id\":\"84460e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-78.631772,47.195525],[-78.985256,47.126144],[-79.068722,46.88881],[-78.8019,46.721484],[-78.451371,46.790052],[-78.364725,47.026753],[-78.631772,47.195525]]]},\"id\":\"842b957ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.238245,63.093424],[-128.459955,62.891204],[-128.204155,62.687422],[-127.72878,62.684104],[-127.502292,62.885308],[-127.75589,63.09085],[-128.238245,63.093424]]]},\"id\":\"8413ad5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.976195,53.953991],[-159.753553,54.105707],[-159.87443,54.318439],[-160.220765,54.379604],[-160.444233,54.227373],[-160.320547,54.014494],[-159.976195,53.953991]]]},\"id\":\"840cd93ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.239049,19.338644],[-103.01871,19.488069],[-103.044303,19.741821],[-103.291176,19.846201],[-103.511967,19.696332],[-103.485434,19.442529],[-103.239049,19.338644]]]},\"id\":\"8449aa9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-83.803899,38.324034],[-84.086366,38.249374],[-84.131994,38.032906],[-83.897471,37.891417],[-83.616733,37.96517],[-83.568794,38.181314],[-83.803899,38.324034]]]},\"id\":\"842a9e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.459362,57.253929],[-136.580986,57.060267],[-136.337726,56.880656],[-135.972943,56.893199],[-135.847491,57.086373],[-136.090624,57.267498],[-136.459362,57.253929]]]},\"id\":\"841d20dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.521851,18.213222],[-69.701866,18.117523],[-69.67532,17.921613],[-69.468577,17.821693],[-69.288846,17.917854],[-69.315574,18.113472],[-69.521851,18.213222]]]},\"id\":\"844cd57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-87.759412,65.082126],[-88.307931,64.973671],[-88.360154,64.719021],[-87.873338,64.573003],[-87.330698,64.679863],[-87.269018,64.934319],[-87.759412,65.082126]]]},\"id\":\"840f8e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.581109,39.090766],[-123.362235,39.264765],[-123.436024,39.48991],[-123.729483,39.540606],[-123.947764,39.366352],[-123.873187,39.141657],[-123.581109,39.090766]]]},\"id\":\"8428069ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.749202,55.927958],[-153.088736,55.810625],[-153.09378,55.610972],[-152.763887,55.528911],[-152.426916,55.644919],[-152.41728,55.844304],[-152.749202,55.927958]]]},\"id\":\"841db01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.397968,51.048884],[-171.201654,51.235841],[-171.373116,51.448549],[-171.743099,51.474084],[-171.939153,51.286466],[-171.765498,51.073975],[-171.397968,51.048884]]]},\"id\":\"8422e3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.99876,56.374642],[-147.35509,56.274643],[-147.399353,56.077501],[-147.091744,55.980946],[-146.738686,56.079866],[-146.68998,56.276412],[-146.99876,56.374642]]]},\"id\":\"841da55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.91508,37.271356],[-121.694882,37.444452],[-121.764466,37.675694],[-122.055079,37.733399],[-122.27479,37.560015],[-122.204381,37.329215],[-121.91508,37.271356]]]},\"id\":\"8428347ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.038066,39.71717],[-118.804143,39.884049],[-118.869909,40.1135],[-119.170578,40.175716],[-119.404157,40.008542],[-119.337417,39.779448],[-119.038066,39.71717]]]},\"id\":\"84298bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.806786,53.659251],[-171.602054,53.840633],[-171.783628,54.048815],[-172.172329,54.075358],[-172.376731,53.893315],[-172.192778,53.685392],[-171.806786,53.659251]]]},\"id\":\"8422c17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.123976,55.712752],[-156.452533,55.585517],[-156.434533,55.385128],[-156.092582,55.312032],[-155.766129,55.437818],[-155.779522,55.63814],[-156.123976,55.712752]]]},\"id\":\"840ccd7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.587287,18.434227],[-100.367451,18.579733],[-100.387483,18.831854],[-100.628283,18.938617],[-100.848668,18.792697],[-100.827705,18.54043],[-100.587287,18.434227]]]},\"id\":\"8449845ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.844972,33.407616],[-116.618956,33.575676],[-116.676803,33.81935],[-116.961605,33.894608],[-117.187432,33.72619],[-117.128651,33.482874],[-116.844972,33.407616]]]},\"id\":\"8429a0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.856581,42.19773],[-105.590388,42.334483],[-105.627929,42.566534],[-105.933036,42.661821],[-106.199735,42.5248],[-106.160823,42.292763],[-105.856581,42.19773]]]},\"id\":\"8426a3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.747479,50.829268],[-174.558886,51.024127],[-174.745324,51.234107],[-175.122345,51.248908],[-175.310356,51.053385],[-175.121944,50.843725],[-174.747479,50.829268]]]},\"id\":\"8422eddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.041577,65.118631],[-162.482306,64.962244],[-162.39745,64.733314],[-161.881072,64.660398],[-161.442887,64.814616],[-161.518496,65.0439],[-162.041577,65.118631]]]},\"id\":\"840c065ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.430468,39.904542],[-127.22302,40.082376],[-127.303769,40.299824],[-127.592608,40.338943],[-127.799263,40.160914],[-127.717877,39.943961],[-127.430468,39.904542]]]},\"id\":\"84282a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.447014,21.848393],[-63.277263,21.993981],[-63.307385,22.178247],[-63.506984,22.216746],[-63.676175,22.071465],[-63.646326,21.887379],[-63.447014,21.848393]]]},\"id\":\"844d517ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.09422,50.142316],[-172.904221,50.335175],[-173.080996,50.547739],[-173.449816,50.567182],[-173.639402,50.373655],[-173.460595,50.161354],[-173.09422,50.142316]]]},\"id\":\"8422527ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.662708,30.711348],[-114.437081,30.877166],[-114.489371,31.126111],[-114.768241,31.208926],[-114.993805,31.042715],[-114.940566,30.794083],[-114.662708,30.711348]]]},\"id\":\"84485c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.885392,28.275519],[-112.660854,28.43923],[-112.708605,28.691519],[-112.981849,28.77983],[-113.206418,28.615699],[-113.157715,28.36368],[-112.885392,28.275519]]]},\"id\":\"8448543ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.52684,22.938366],[-65.362063,23.082362],[-65.390534,23.259648],[-65.583511,23.292765],[-65.747709,23.14908],[-65.719509,22.971969],[-65.52684,22.938366]]]},\"id\":\"844c2e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.404631,37.38541],[-121.182663,37.55775],[-121.251401,37.789422],[-121.542959,37.848325],[-121.764466,37.675694],[-121.694882,37.444452],[-121.404631,37.38541]]]},\"id\":\"842836bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.395806,24.198586],[-111.176017,24.360101],[-111.219328,24.614638],[-111.483352,24.707423],[-111.703243,24.54544],[-111.659011,24.291141],[-111.395806,24.198586]]]},\"id\":\"8448287ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.977151,60.677844],[-149.390273,60.567961],[-149.425972,60.354945],[-149.054814,60.25239],[-148.645899,60.360945],[-148.603952,60.573371],[-148.977151,60.677844]]]},\"id\":\"840c467ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.842265,54.495342],[-152.167511,54.382524],[-152.178299,54.188546],[-151.86798,54.107674],[-151.545156,54.219256],[-151.530234,54.412939],[-151.842265,54.495342]]]},\"id\":\"841d861ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.90589,67.214422],[-157.416467,67.073534],[-157.378068,66.839561],[-156.840334,66.746528],[-156.334638,66.885298],[-156.361779,67.119197],[-156.90589,67.214422]]]},\"id\":\"840c205ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.95757,68.202139],[-168.424042,68.024942],[-168.260067,67.79211],[-167.640969,67.735513],[-167.175337,67.910126],[-167.327858,68.143899],[-167.95757,68.202139]]]},\"id\":\"840dab9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.782197,55.946433],[-163.092302,55.799433],[-163.027599,55.597352],[-162.657423,55.54192],[-162.348481,55.687256],[-162.408536,55.889678],[-162.782197,55.946433]]]},\"id\":\"840cdc5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.153685,53.009142],[-173.956464,53.197378],[-174.147246,53.404424],[-174.537437,53.422911],[-174.73409,53.234011],[-174.541138,53.027289],[-174.153685,53.009142]]]},\"id\":\"8422eb5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.439923,54.250068],[-169.228261,54.424465],[-169.39984,54.63351],[-169.785663,54.66797],[-169.997242,54.492925],[-169.823096,54.284069],[-169.439923,54.250068]]]},\"id\":\"8422dc9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.226309,18.969369],[-66.062008,19.117909],[-66.090136,19.307385],[-66.282291,19.348063],[-66.445999,19.19982],[-66.418145,19.010603],[-66.226309,18.969369]]]},\"id\":\"844ce3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.721368,65.859956],[-156.207196,65.723849],[-156.183245,65.49321],[-155.683421,65.398829],[-155.202265,65.532977],[-155.216255,65.763445],[-155.721368,65.859956]]]},\"id\":\"840c233ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.267585,55.249378],[-163.568836,55.102204],[-163.42627,54.891094],[-163.062372,54.837902],[-162.838756,54.995226],[-162.900844,55.195246],[-163.267585,55.249378]]]},\"id\":\"840cde3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.312106,18.51803],[-71.49542,18.420673],[-71.46979,18.224552],[-71.260645,18.126048],[-71.077571,18.223852],[-71.103401,18.419712],[-71.312106,18.51803]]]},\"id\":\"844cd67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.536622,24.811034],[-106.309291,24.965505],[-106.342933,25.221424],[-106.604907,25.322819],[-106.832578,25.167931],[-106.797937,24.912067],[-106.536622,24.811034]]]},\"id\":\"8448025ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.524422,64.958211],[-159.974722,64.810069],[-159.914963,64.581239],[-159.414094,64.500388],[-158.967055,64.646464],[-159.017598,64.875439],[-159.524422,64.958211]]]},\"id\":\"840c00dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.00789,38.625073],[-118.776372,38.792936],[-118.841384,39.024872],[-119.138872,39.088579],[-119.370054,38.920414],[-119.304089,38.688845],[-119.00789,38.625073]]]},\"id\":\"842988bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.899675,46.95771],[-122.65912,47.121524],[-122.738087,47.326464],[-123.058581,47.36724],[-123.298476,47.203177],[-123.218544,46.998589],[-122.899675,46.95771]]]},\"id\":\"8428d59ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-132.122917,52.46258],[-132.255972,52.282721],[-132.059355,52.09659],[-131.730279,52.088887],[-131.594546,52.268057],[-131.790547,52.455624],[-132.122917,52.46258]]]},\"id\":\"841292bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.880957,61.874008],[-131.070773,61.671932],[-130.812164,61.475028],[-130.365101,61.47849],[-130.170569,61.679725],[-130.427763,61.878345],[-130.880957,61.874008]]]},\"id\":\"8413aadffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.027741,18.769246],[-95.807659,18.907694],[-95.818435,19.157417],[-96.05021,19.269007],[-96.271001,19.130237],[-96.259308,18.880201],[-96.027741,18.769246]]]},\"id\":\"846d34dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.847967,63.250238],[-146.313176,63.149544],[-146.379552,62.931468],[-145.988102,62.81494],[-145.528575,62.914385],[-145.454852,63.131594],[-145.847967,63.250238]]]},\"id\":\"840c665ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.242305,62.294869],[-148.684269,62.18641],[-148.728251,61.969076],[-148.337319,61.860866],[-147.900248,61.967971],[-147.84924,62.184626],[-148.242305,62.294869]]]},\"id\":\"840c71dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.813552,57.848996],[-150.183679,57.738742],[-150.210148,57.534283],[-149.871615,57.440544],[-149.504801,57.549534],[-149.473217,57.753518],[-149.813552,57.848996]]]},\"id\":\"840c583ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.210612,59.408858],[-146.609975,59.309021],[-146.66492,59.102309],[-146.325995,58.996149],[-145.930799,59.094854],[-145.870383,59.30084],[-146.210612,59.408858]]]},\"id\":\"840c417ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.270022,43.900056],[-110.005427,44.044204],[-110.054409,44.270037],[-110.36933,44.351594],[-110.634148,44.207145],[-110.583826,43.981443],[-110.270022,43.900056]]]},\"id\":\"842896dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.138285,46.872101],[-71.497894,46.826226],[-71.620212,46.596528],[-71.385557,46.413689],[-71.029253,46.459145],[-70.904319,46.687857],[-71.138285,46.872101]]]},\"id\":\"842bac5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.368933,18.502693],[-69.54844,18.407977],[-69.521851,18.213222],[-69.315574,18.113472],[-69.136354,18.208648],[-69.163123,18.403113],[-69.368933,18.502693]]]},\"id\":\"844cd51ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-74.126922,44.110594],[-74.462608,44.056467],[-74.563207,43.829442],[-74.330655,43.657363],[-73.997779,43.710928],[-73.894662,43.937131],[-74.126922,44.110594]]]},\"id\":\"842b889ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.554821,33.644961],[-119.33524,33.816718],[-119.398334,34.057199],[-119.681866,34.125495],[-119.901112,33.953394],[-119.837166,33.71334],[-119.554821,33.644961]]]},\"id\":\"8429121ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.308582,64.928749],[-152.788458,64.804848],[-152.798425,64.577725],[-152.337587,64.474923],[-151.862887,64.597105],[-151.843861,64.82379],[-152.308582,64.928749]]]},\"id\":\"840c281ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.997783,54.273351],[-165.780352,54.439452],[-165.93411,54.650472],[-166.308034,54.695323],[-166.525738,54.528608],[-166.369259,54.317659],[-165.997783,54.273351]]]},\"id\":\"8422d07ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.16458,31.612408],[-115.940508,31.780154],[-115.996149,32.026832],[-116.276792,32.105414],[-116.500719,31.937288],[-116.444153,31.690961],[-116.16458,31.612408]]]},\"id\":\"8448599ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.542362,53.861076],[-160.320547,54.014494],[-160.444233,54.227373],[-160.792537,54.286965],[-161.015126,54.133021],[-160.888645,53.920013],[-160.542362,53.861076]]]},\"id\":\"840cd97ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.448063,19.589658],[-100.226219,19.735003],[-100.246142,19.988078],[-100.488857,20.095966],[-100.711265,19.950225],[-100.690394,19.696994],[-100.448063,19.589658]]]},\"id\":\"8449805ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.438494,43.572044],[-129.230446,43.748807],[-129.317515,43.953735],[-129.613233,43.98144],[-129.82033,43.804533],[-129.732667,43.600064],[-129.438494,43.572044]]]},\"id\":\"8428505ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.845113,67.256481],[-156.361779,67.119197],[-156.334638,66.885298],[-155.802109,66.788828],[-155.290696,66.924044],[-155.30655,67.157776],[-155.845113,67.256481]]]},\"id\":\"840c201ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.053119,42.272999],[-108.790998,42.417053],[-108.836283,42.647898],[-109.145014,42.734589],[-109.407432,42.590241],[-109.360825,42.359498],[-109.053119,42.272999]]]},\"id\":\"8426b03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.196337,50.196064],[-174.008505,50.391205],[-174.190491,50.602665],[-174.562292,50.618688],[-174.749606,50.422881],[-174.565652,50.211718],[-174.196337,50.196064]]]},\"id\":\"8422535ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.375257,59.076555],[-150.761021,58.963372],[-150.784339,58.754462],[-150.427529,58.659191],[-150.045311,58.771035],[-150.016368,58.979479],[-150.375257,59.076555]]]},\"id\":\"840c5c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.276719,57.551018],[-156.626436,57.420877],[-156.605986,57.214134],[-156.241049,57.137594],[-155.893699,57.266202],[-155.908915,57.472872],[-156.276719,57.551018]]]},\"id\":\"840ceabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.118202,65.964093],[-135.659016,65.901393],[-135.833423,65.689201],[-135.474375,65.541348],[-134.972238,65.566913],[-134.790654,65.777964],[-135.118202,65.964093]]]},\"id\":\"840d6b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.593069,23.136067],[-67.765597,23.056613],[-67.738697,22.880658],[-67.539112,22.78439],[-67.366898,22.864256],[-67.393954,23.039977],[-67.593069,23.136067]]]},\"id\":\"844c035ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.921626,22.425781],[-70.099559,22.340855],[-70.073626,22.160401],[-69.869579,22.065093],[-69.691912,22.150427],[-69.718025,22.330659],[-69.921626,22.425781]]]},\"id\":\"844cad1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.168833,40.966263],[-125.954581,41.141909],[-126.034197,41.358854],[-126.32878,41.39969],[-126.542281,41.223836],[-126.461957,41.007355],[-126.168833,40.966263]]]},\"id\":\"84280e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.624686,49.884125],[-130.40518,50.053845],[-130.500998,50.237879],[-130.816957,50.251818],[-131.035296,50.081964],[-130.938851,49.898307],[-130.624686,49.884125]]]},\"id\":\"841d60bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.083869,18.459275],[-67.258425,18.367667],[-67.230814,18.17473],[-67.02849,18.07372],[-66.85427,18.165802],[-66.882037,18.358419],[-67.083869,18.459275]]]},\"id\":\"844cc55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.721871,17.709005],[-81.521293,17.822714],[-81.504963,18.05264],[-81.689866,18.169558],[-81.891379,18.055835],[-81.907052,17.825209],[-81.721871,17.709005]]]},\"id\":\"8445a0bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.687634,44.945132],[-125.462208,45.115924],[-125.544482,45.323011],[-125.852982,45.358899],[-126.077616,45.187902],[-125.994549,44.981222],[-125.687634,44.945132]]]},\"id\":\"8428e2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.479455,38.727879],[-118.246275,38.894809],[-118.310311,39.127098],[-118.608508,39.192106],[-118.841384,39.024872],[-118.776372,38.792936],[-118.479455,38.727879]]]},\"id\":\"8429881ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.996224,35.983771],[-120.77598,36.156401],[-120.843084,36.391273],[-121.131275,36.453079],[-121.351092,36.28014],[-121.28315,36.045706],[-120.996224,35.983771]]]},\"id\":\"8429a99ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.504801,57.549534],[-149.871615,57.440544],[-149.900022,57.237322],[-149.566616,57.143567],[-149.203081,57.251318],[-149.169684,57.454054],[-149.504801,57.549534]]]},\"id\":\"840c595ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.369174,44.813952],[-111.103982,44.959009],[-111.15608,45.181595],[-111.474714,45.258971],[-111.740055,45.113607],[-111.686617,44.891176],[-111.369174,44.813952]]]},\"id\":\"8428905ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-57.265042,31.678236],[-57.407203,31.499165],[-57.306293,31.285626],[-57.06354,31.250235],[-56.920342,31.428912],[-57.020928,31.643376],[-57.265042,31.678236]]]},\"id\":\"843b833ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.822827,33.588955],[-115.594057,33.755377],[-115.649987,33.999722],[-115.935659,34.077319],[-116.164298,33.910538],[-116.1074,33.666521],[-115.822827,33.588955]]]},\"id\":\"8429a67ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-51.964693,26.691447],[-52.119691,26.521729],[-52.032268,26.299718],[-51.790355,26.246526],[-51.634565,26.415655],[-51.721475,26.638566],[-51.964693,26.691447]]]},\"id\":\"843a1a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.77494,59.690692],[-139.880893,59.490411],[-139.577545,59.36847],[-139.19494,59.394915],[-139.084204,59.594487],[-139.360708,59.767935],[-139.77494,59.690692]]]},\"id\":\"841396dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.735574,65.949003],[-153.235587,65.823093],[-153.241515,65.593219],[-152.757362,65.489654],[-152.26289,65.613758],[-152.247042,65.843213],[-152.735574,65.949003]]]},\"id\":\"840c2c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.638859,60.017792],[-151.037728,59.902939],[-151.059706,59.690845],[-150.688873,59.59406],[-150.293766,59.707525],[-150.265741,59.91915],[-150.638859,60.017792]]]},\"id\":\"840c519ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.885924,64.846924],[-138.397777,64.774092],[-138.540089,64.560772],[-138.177752,64.421702],[-137.673524,64.49378],[-137.524078,64.705672],[-137.885924,64.846924]]]},\"id\":\"840d4d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.476066,42.710282],[-111.216948,42.859],[-111.268152,43.087436],[-111.579757,43.166993],[-111.839011,43.017971],[-111.786529,42.789698],[-111.476066,42.710282]]]},\"id\":\"8428b25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.075814,48.783298],[-121.827119,48.942708],[-121.906163,49.142836],[-122.234959,49.183229],[-122.483019,49.023551],[-122.402927,48.823749],[-122.075814,48.783298]]]},\"id\":\"8428d3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.935681,36.659892],[-106.684659,36.807081],[-106.722746,37.051269],[-107.013076,37.148226],[-107.264489,37.000741],[-107.225184,36.756597],[-106.935681,36.659892]]]},\"id\":\"8426993ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.844872,48.12857],[-128.623006,48.298954],[-128.713885,48.491533],[-129.027332,48.513335],[-129.24817,48.342792],[-129.156598,48.150606],[-128.844872,48.12857]]]},\"id\":\"8428cd5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.122828,43.217803],[-109.859883,43.362745],[-109.908166,43.590553],[-110.220724,43.673293],[-110.483899,43.528051],[-110.434291,43.300371],[-110.122828,43.217803]]]},\"id\":\"8426b6bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.836924,18.477231],[-64.669242,18.626645],[-64.698477,18.819962],[-64.895118,18.863611],[-65.062218,18.714491],[-65.033259,18.521429],[-64.836924,18.477231]]]},\"id\":\"844ce89ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.052194,33.747218],[-118.831067,33.918266],[-118.89329,34.159159],[-119.177516,34.228593],[-119.398334,34.057199],[-119.33524,33.816718],[-119.052194,33.747218]]]},\"id\":\"8429125ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.148903,19.28973],[-64.982169,19.438233],[-65.011122,19.628449],[-65.206534,19.669922],[-65.372684,19.521718],[-65.344007,19.331744],[-65.148903,19.28973]]]},\"id\":\"844cecdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.138712,31.95348],[-113.909572,32.11805],[-113.961368,32.36598],[-114.243291,32.449052],[-114.472395,32.284104],[-114.419616,32.036463],[-114.138712,31.95348]]]},\"id\":\"84485abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.32264,45.042646],[-112.058676,45.189412],[-112.113166,45.410724],[-112.432947,45.485095],[-112.696994,45.33802],[-112.641182,45.116885],[-112.32264,45.042646]]]},\"id\":\"8428903ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.634148,44.207145],[-110.36933,44.351594],[-110.419342,44.57636],[-110.735518,44.65654],[-111.000535,44.511788],[-110.949182,44.287161],[-110.634148,44.207145]]]},\"id\":\"8428961ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.103272,53.332682],[-169.896393,53.511021],[-170.068424,53.72116],[-170.449797,53.752763],[-170.656527,53.573772],[-170.482048,53.363832],[-170.103272,53.332682]]]},\"id\":\"8422c07ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.89298,65.472073],[-169.30023,65.294369],[-169.1461,65.067723],[-168.593509,65.017844],[-168.18659,65.193192],[-168.331854,65.42076],[-168.89298,65.472073]]]},\"id\":\"840d895ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.893493,17.962135],[-96.674528,18.102077],[-96.68699,18.35163],[-96.919328,18.461523],[-97.138966,18.321231],[-97.125593,18.071399],[-96.893493,17.962135]]]},\"id\":\"846d361ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.45927,20.047962],[-155.621814,19.843722],[-155.515561,19.611161],[-155.246997,19.582648],[-155.084157,19.786804],[-155.190172,20.019557],[-155.45927,20.047962]]]},\"id\":\"845d103ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.593993,62.622867],[-149.04092,62.51302],[-149.082425,62.294467],[-148.684269,62.18641],[-148.242305,62.294869],[-148.193557,62.512759],[-148.593993,62.622867]]]},\"id\":\"840c70bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.890348,28.42288],[-111.66375,28.585085],[-111.709561,28.837862],[-111.982948,28.9282],[-112.209628,28.765581],[-112.162842,28.513039],[-111.890348,28.42288]]]},\"id\":\"844856bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-167.438873,52.094866],[-167.232069,52.270002],[-167.387077,52.483733],[-167.751362,52.522238],[-167.958283,52.346469],[-167.800815,52.132831],[-167.438873,52.094866]]]},\"id\":\"8422f3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-99.112713,20.456396],[-98.889199,20.599553],[-98.906489,20.852629],[-99.148251,20.962761],[-99.372387,20.819245],[-99.354139,20.565958],[-99.112713,20.456396]]]},\"id\":\"844991bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-88.994831,36.97377],[-88.743702,37.077102],[-88.739865,37.312972],[-88.988287,37.446001],[-89.240623,37.342722],[-89.243328,37.106362],[-88.994831,36.97377]]]},\"id\":\"8426417ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.937279,59.186619],[-136.070941,58.988228],[-135.81378,58.805907],[-135.423167,58.820406],[-135.28519,59.018272],[-135.54211,59.202172],[-135.937279,59.186619]]]},\"id\":\"8413915ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.804681,65.278868],[-152.293651,65.156521],[-152.308582,64.928749],[-151.843861,64.82379],[-151.360348,64.944427],[-151.336114,65.171715],[-151.804681,65.278868]]]},\"id\":\"840c289ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.477538,19.524364],[-108.261568,19.680656],[-108.297705,19.934555],[-108.550712,20.032016],[-108.766908,19.875217],[-108.729873,19.621465],[-108.477538,19.524364]]]},\"id\":\"8449191ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.204294,17.982298],[-104.987579,18.133923],[-105.016851,18.386723],[-105.263748,18.48787],[-105.480825,18.335755],[-105.450644,18.082984],[-105.204294,17.982298]]]},\"id\":\"8449137ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.658251,49.558637],[-173.471231,49.754041],[-173.648889,49.966881],[-174.015543,49.984043],[-174.202106,49.78797],[-174.022487,49.575406],[-173.658251,49.558637]]]},\"id\":\"842252bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.002519,42.782445],[-125.78352,42.956166],[-125.864396,43.168755],[-126.165021,43.207187],[-126.383249,43.033263],[-126.301631,42.821111],[-126.002519,42.782445]]]},\"id\":\"84280a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.511059,64.277246],[-150.983814,64.159896],[-151.010299,63.93545],[-150.572506,63.828901],[-150.105045,63.944671],[-150.070103,64.168553],[-150.511059,64.277246]]]},\"id\":\"840c291ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.876283,39.696315],[-71.183716,39.653115],[-71.28969,39.440616],[-71.090139,39.272211],[-70.785129,39.315035],[-70.67726,39.526639],[-70.876283,39.696315]]]},\"id\":\"842a03dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.676515,18.120527],[-61.50201,18.270786],[-61.533653,18.470034],[-61.739525,18.518798],[-61.913486,18.368831],[-61.882119,18.16981],[-61.676515,18.120527]]]},\"id\":\"844d4d3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.859548,51.717928],[-165.651875,51.890117],[-165.797916,52.105047],[-166.154123,52.147757],[-166.362058,51.974952],[-166.213535,51.760055],[-165.859548,51.717928]]]},\"id\":\"8422f2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.109966,61.268526],[-152.524208,61.147801],[-152.534999,60.930996],[-152.138288,60.835298],[-151.727933,60.954506],[-151.71041,61.170917],[-152.109966,61.268526]]]},\"id\":\"840c541ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-95.994372,18.021534],[-95.775585,18.160057],[-95.786234,18.409005],[-96.016574,18.519742],[-96.236062,18.380887],[-96.224508,18.131629],[-95.994372,18.021534]]]},\"id\":\"846d347ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.502076,61.583335],[-152.92023,61.461058],[-152.927834,61.243112],[-152.524208,61.147801],[-152.109966,61.268526],[-152.095445,61.486101],[-152.502076,61.583335]]]},\"id\":\"840c54dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.150226,46.320499],[-120.905745,46.48242],[-120.980657,46.691537],[-121.301086,46.738401],[-121.545029,46.576213],[-121.469087,46.36743],[-121.150226,46.320499]]]},\"id\":\"8428f27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.513468,43.848994],[-113.255394,44.00026],[-113.311942,44.224191],[-113.627821,44.296651],[-113.885892,44.145078],[-113.828092,43.921354],[-113.513468,43.848994]]]},\"id\":\"8428959ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.328748,39.12004],[-126.119048,39.297244],[-126.19744,39.518227],[-126.486212,39.561514],[-126.695183,39.384092],[-126.616116,39.163601],[-126.328748,39.12004]]]},\"id\":\"842805bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.717561,52.792062],[-170.513853,52.973198],[-170.687256,53.183763],[-171.066751,53.212981],[-171.27025,53.031189],[-171.094479,52.820836],[-170.717561,52.792062]]]},\"id\":\"8422c0bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.773221,55.810273],[-155.106451,55.686953],[-155.09767,55.486738],[-154.760273,55.409979],[-154.429338,55.531896],[-154.433506,55.731964],[-154.773221,55.810273]]]},\"id\":\"841db2dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.479637,58.539376],[-137.598679,58.342396],[-137.341353,58.164723],[-136.964925,58.182504],[-136.841674,58.379049],[-137.099032,58.558255],[-137.479637,58.539376]]]},\"id\":\"8413923ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.058781,68.083398],[-172.492185,67.894244],[-172.284135,67.66508],[-171.653087,67.623765],[-171.218719,67.810306],[-171.416232,68.040759],[-172.058781,68.083398]]]},\"id\":\"840daa5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.571634,19.173664],[-155.733426,18.968856],[-155.627489,18.735522],[-155.359989,18.706791],[-155.197898,18.911504],[-155.303603,19.145043],[-155.571634,19.173664]]]},\"id\":\"845d131ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.975462,21.407488],[-161.130436,21.201339],[-161.020554,20.976432],[-160.755762,20.957396],[-160.600291,21.163552],[-160.710106,21.388737],[-160.975462,21.407488]]]},\"id\":\"84465d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.76732,53.293759],[-161.548924,53.45176],[-161.677755,53.6654],[-162.027713,53.721136],[-162.246763,53.562584],[-162.11521,53.34885],[-161.76732,53.293759]]]},\"id\":\"840cdb7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.515094,39.566447],[-121.288697,39.737251],[-121.359109,39.964093],[-121.656802,40.019724],[-121.882713,39.848645],[-121.811423,39.622211],[-121.515094,39.566447]]]},\"id\":\"842814bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-89.729741,65.909553],[-90.285256,65.79399],[-90.320335,65.539667],[-89.810007,65.400942],[-89.260161,65.514795],[-89.214987,65.769065],[-89.729741,65.909553]]]},\"id\":\"840f831ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.141841,37.118321],[-118.914,37.287613],[-118.978343,37.522525],[-119.271455,37.587764],[-119.498962,37.418161],[-119.433696,37.183632],[-119.141841,37.118321]]]},\"id\":\"8429ab5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.931873,36.760589],[-114.694382,36.923325],[-114.750099,37.163039],[-115.044362,37.239739],[-115.281767,37.076673],[-115.225,36.837239],[-114.931873,36.760589]]]},\"id\":\"8429829ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.391295,57.87002],[-148.764629,57.764286],[-148.801292,57.560819],[-148.469674,57.463635],[-148.099826,57.568173],[-148.058124,57.771082],[-148.391295,57.87002]]]},\"id\":\"840c599ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.753979,58.644908],[-154.125053,58.521341],[-154.12279,58.31195],[-153.755052,58.22636],[-153.386933,58.348449],[-153.383599,58.557595],[-153.753979,58.644908]]]},\"id\":\"840ceddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.160867,40.610403],[-117.92245,40.774882],[-117.987035,41.003164],[-118.291066,41.066639],[-118.529186,40.901863],[-118.463578,40.673912],[-118.160867,40.610403]]]},\"id\":\"8428a5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.691075,54.671507],[-158.004047,54.541187],[-157.97631,54.344027],[-157.639908,54.277145],[-157.328701,54.406005],[-157.352127,54.603198],[-157.691075,54.671507]]]},\"id\":\"840ccb1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.723932,49.779989],[-128.496882,49.94761],[-128.589474,50.135057],[-128.909854,50.154512],[-129.135838,49.98672],[-129.042517,49.799645],[-128.723932,49.779989]]]},\"id\":\"8428cb3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.225268,21.108592],[-108.006325,21.26519],[-108.042401,21.520098],[-108.298347,21.618277],[-108.517534,21.461195],[-108.480534,21.206419],[-108.225268,21.108592]]]},\"id\":\"8448267ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.600291,21.163552],[-160.755762,20.957396],[-160.646137,20.731684],[-160.381117,20.711853],[-160.225163,20.918008],[-160.334709,21.143994],[-160.600291,21.163552]]]},\"id\":\"84465d7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.385632,52.65042],[-161.169506,52.80903],[-161.294814,53.023566],[-161.638919,53.079607],[-161.855715,52.92045],[-161.727745,52.705801],[-161.385632,52.65042]]]},\"id\":\"84228a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.988484,58.51664],[-156.351315,58.386207],[-156.332244,58.176373],[-155.955938,58.097058],[-155.595689,58.225926],[-155.60916,58.435661],[-155.988484,58.51664]]]},\"id\":\"840ceebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.252324,59.511381],[-137.377103,59.312049],[-137.112102,59.133196],[-136.722299,59.152116],[-136.593037,59.350995],[-136.85803,59.531415],[-137.252324,59.511381]]]},\"id\":\"8413901ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.76102,60.419377],[-140.185461,60.340595],[-140.291088,60.137724],[-139.977511,60.01474],[-139.558231,60.092743],[-139.447404,60.294501],[-139.76102,60.419377]]]},\"id\":\"840c6d1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.21971,18.484285],[-68.396789,18.391133],[-68.369672,18.197263],[-68.165306,18.096851],[-67.988539,18.19047],[-68.015825,18.384034],[-68.21971,18.484285]]]},\"id\":\"844cc63ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.53087,59.879872],[-154.916823,59.752542],[-154.908189,59.538877],[-154.519753,59.452739],[-154.136904,59.578501],[-154.139388,59.791957],[-154.53087,59.879872]]]},\"id\":\"840c521ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.446903,69.045942],[-156.011569,68.909308],[-155.98613,68.671714],[-155.409379,68.570938],[-154.851091,68.705376],[-154.863169,68.94276],[-155.446903,69.045942]]]},\"id\":\"840d0a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.098336,40.524253],[-121.871553,40.695011],[-121.943727,40.918851],[-122.243562,40.971526],[-122.469815,40.800504],[-122.39677,40.577072],[-122.098336,40.524253]]]},\"id\":\"8428157ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.589989,52.384334],[-173.39367,52.572931],[-173.579692,52.781621],[-173.964211,52.801416],[-174.160033,52.612156],[-173.97185,52.403766],[-173.589989,52.384334]]]},\"id\":\"8422eabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.411157,30.139475],[-103.170976,30.285819],[-103.199231,30.539227],[-103.468783,30.646366],[-103.709492,30.499715],[-103.680122,30.246235],[-103.411157,30.139475]]]},\"id\":\"84488d3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.070048,64.619679],[-149.554155,64.50716],[-149.594418,64.282734],[-149.159186,64.171492],[-148.680834,64.282499],[-148.631986,64.506245],[-149.070048,64.619679]]]},\"id\":\"840d5a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-73.813618,44.793567],[-74.154717,44.740073],[-74.258378,44.511791],[-74.02353,44.337843],[-73.68534,44.390787],[-73.579105,44.618225],[-73.813618,44.793567]]]},\"id\":\"842b8c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.407359,63.93867],[-147.882274,63.832254],[-147.936514,63.610915],[-147.52382,63.496758],[-147.054651,63.601798],[-146.992462,63.822356],[-147.407359,63.93867]]]},\"id\":\"840d5b5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.206288,57.790867],[-137.324469,57.595785],[-137.074335,57.417844],[-136.706007,57.433475],[-136.583831,57.628108],[-136.833953,57.807566],[-137.206288,57.790867]]]},\"id\":\"841d261ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.802856,19.078665],[-156.962915,18.873124],[-156.856195,18.640826],[-156.589608,18.613838],[-156.429206,18.819297],[-156.53573,19.051827],[-156.802856,19.078665]]]},\"id\":\"845d127ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.133198,63.203273],[-144.601088,63.108568],[-144.682048,62.892281],[-144.302276,62.771664],[-143.840301,62.865231],[-143.752223,63.080542],[-144.133198,63.203273]]]},\"id\":\"840c66bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-85.675917,64.988587],[-86.231941,64.887687],[-86.303004,64.633504],[-85.827371,64.480555],[-85.277728,64.57996],[-85.197371,64.833792],[-85.675917,64.988587]]]},\"id\":\"840f8c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.592052,64.416447],[-133.775239,64.208222],[-133.476745,64.018205],[-132.995984,64.034629],[-132.80676,64.242124],[-133.104271,64.433933],[-133.592052,64.416447]]]},\"id\":\"8413a55ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-55.792628,19.576744],[-55.608685,19.72414],[-55.644328,19.926016],[-55.863658,19.980369],[-56.047172,19.833269],[-56.011785,19.631521],[-55.792628,19.576744]]]},\"id\":\"845ecedffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.455617,18.743792],[-81.253834,18.856056],[-81.236904,19.086619],[-81.422417,19.20563],[-81.625151,19.093376],[-81.641419,18.862101],[-81.455617,18.743792]]]},\"id\":\"8445a3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.230011,47.03002],[-129.012629,47.202435],[-129.102917,47.397789],[-129.411248,47.420319],[-129.627608,47.247756],[-129.536667,47.052811],[-129.230011,47.03002]]]},\"id\":\"8428eb1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.630542,54.679027],[-134.755271,54.492449],[-134.53672,54.310234],[-134.193771,54.313132],[-134.06586,54.499135],[-134.284057,54.68282],[-134.630542,54.679027]]]},\"id\":\"841d2c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.874569,28.940286],[-107.641011,29.095754],[-107.678653,29.349773],[-107.950907,29.448234],[-108.184759,29.292388],[-108.146065,29.038462],[-107.874569,28.940286]]]},\"id\":\"8448e61ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.547392,51.870358],[-130.688309,51.692637],[-130.500302,51.503315],[-130.172147,51.490288],[-130.028724,51.667249],[-130.215942,51.858001],[-130.547392,51.870358]]]},\"id\":\"8412933ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.800424,63.489524],[-127.038197,63.288033],[-126.787012,63.080726],[-126.300615,63.073145],[-126.058157,63.27353],[-126.306709,63.482605],[-126.800424,63.489524]]]},\"id\":\"8413adbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.21092,20.566282],[-156.372827,20.361897],[-156.265812,20.130599],[-155.997101,20.103484],[-155.834868,20.307801],[-155.941668,20.5393],[-156.21092,20.566282]]]},\"id\":\"845d10dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.020402,19.311729],[-67.194249,19.222547],[-67.166701,19.032711],[-66.96515,18.932364],[-66.791638,19.022011],[-66.819341,19.21154],[-67.020402,19.311729]]]},\"id\":\"844ce35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.04411,23.894276],[-64.145445,23.736767],[-64.048192,23.545082],[-63.849623,23.510008],[-63.747382,23.667168],[-63.844614,23.859752],[-64.04411,23.894276]]]},\"id\":\"844d52dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.299282,19.665897],[-70.479877,19.572976],[-70.45385,19.381759],[-70.247037,19.283721],[-70.066705,19.377084],[-70.09292,19.568042],[-70.299282,19.665897]]]},\"id\":\"844cf27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.81431,57.028106],[-155.161786,56.903104],[-155.152234,56.69865],[-154.800224,56.619347],[-154.455238,56.742895],[-154.459772,56.94719],[-154.81431,57.028106]]]},\"id\":\"840cebbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.219214,48.540377],[-122.975145,48.702115],[-123.056255,48.901583],[-123.38243,48.938973],[-123.625791,48.776983],[-123.543694,48.577856],[-123.219214,48.540377]]]},\"id\":\"8428d13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.927834,61.243112],[-153.339235,61.119711],[-153.343269,60.90257],[-152.942665,60.809153],[-152.534999,60.930996],[-152.524208,61.147801],[-152.927834,61.243112]]]},\"id\":\"840c545ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.172978,38.223992],[-118.942808,38.39246],[-119.00789,38.625073],[-119.304089,38.688845],[-119.533916,38.520074],[-119.467893,38.287835],[-119.172978,38.223992]]]},\"id\":\"84298d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.44626,22.638829],[-108.224955,22.796091],[-108.261907,23.051507],[-108.521108,23.149528],[-108.742652,22.991799],[-108.704757,22.736518],[-108.44626,22.638829]]]},\"id\":\"8448049ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.621257,58.914791],[-137.740708,58.716877],[-137.479637,58.539376],[-137.099032,58.558255],[-136.975258,58.755739],[-137.236385,58.934782],[-137.621257,58.914791]]]},\"id\":\"841392bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.10409,59.249758],[-141.508486,59.166901],[-141.600151,58.966115],[-141.292358,58.849176],[-140.892579,58.931199],[-140.796006,59.130988],[-141.10409,59.249758]]]},\"id\":\"840c697ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.279045,28.43052],[-69.523177,28.39563],[-69.612906,28.2218],[-69.459636,28.08359],[-69.21705,28.118218],[-69.126195,28.291316],[-69.279045,28.43052]]]},\"id\":\"844d853ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.402759,20.484018],[-155.565682,20.2801],[-155.45927,20.047962],[-155.190172,20.019557],[-155.026955,20.223396],[-155.133126,20.455719],[-155.402759,20.484018]]]},\"id\":\"845d10bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.303147,63.946222],[-148.77583,63.836686],[-148.822028,63.614628],[-148.403613,63.50281],[-147.936514,63.610915],[-147.882274,63.832254],[-148.303147,63.946222]]]},\"id\":\"840c749ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.691168,18.760742],[-67.866898,18.669089],[-67.839576,18.476669],[-67.636362,18.376209],[-67.460955,18.468329],[-67.488438,18.660441],[-67.691168,18.760742]]]},\"id\":\"844cc47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.289955,55.908839],[-165.590327,55.754884],[-165.508071,55.553329],[-165.129975,55.505224],[-164.830362,55.657461],[-164.908065,55.859511],[-165.289955,55.908839]]]},\"id\":\"840cd31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.384071,19.501853],[-105.164956,19.654247],[-105.19493,19.908388],[-105.444951,20.010107],[-105.664429,19.85724],[-105.633525,19.603129],[-105.384071,19.501853]]]},\"id\":\"8449a99ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.050113,19.633044],[-76.857011,19.735753],[-76.8328,19.958448],[-77.002244,20.079216],[-77.1963,19.976629],[-77.219955,19.753151],[-77.050113,19.633044]]]},\"id\":\"844590dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.137291,22.671988],[-110.919728,22.832776],[-110.962021,23.08729],[-111.222783,23.180784],[-111.440457,23.019509],[-111.397261,22.765229],[-111.137291,22.671988]]]},\"id\":\"84482c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-97.796686,17.898258],[-97.577651,18.039591],[-97.591937,18.289686],[-97.826173,18.398696],[-98.04585,18.256994],[-98.030649,18.006652],[-97.796686,17.898258]]]},\"id\":\"8449b27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-132.682627,55.438476],[-132.823947,55.250228],[-132.607246,55.062067],[-132.249855,55.060647],[-132.10531,55.248219],[-132.321355,55.437892],[-132.682627,55.438476]]]},\"id\":\"8412b05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.870064,57.238275],[-160.204573,57.097715],[-160.158218,56.891304],[-159.782474,56.825284],[-159.449724,56.9642],[-159.490949,57.170769],[-159.870064,57.238275]]]},\"id\":\"840cc03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.873482,59.036068],[-152.254967,58.918094],[-152.266943,58.708394],[-151.903125,58.617027],[-151.524963,58.733592],[-151.507303,58.942921],[-151.873482,59.036068]]]},\"id\":\"840c5edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.957133,59.39833],[-150.348514,59.286224],[-150.375257,59.076555],[-150.016368,58.979479],[-149.628676,59.090255],[-149.596197,59.299425],[-149.957133,59.39833]]]},\"id\":\"840c5cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.067593,50.951649],[-172.874948,51.142578],[-173.054008,51.354013],[-173.427817,51.374251],[-173.62004,51.182658],[-173.438891,50.971491],[-173.067593,50.951649]]]},\"id\":\"8422ec5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.682164,32.293168],[-118.462907,32.464186],[-118.523657,32.707528],[-118.804528,32.779438],[-119.023503,32.608056],[-118.961893,32.36513],[-118.682164,32.293168]]]},\"id\":\"84484b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-58.853297,60.692662],[-59.367634,60.694534],[-59.625941,60.473977],[-59.372863,60.253213],[-58.865539,60.251676],[-58.604348,60.47057],[-58.853297,60.692662]]]},\"id\":\"840f443ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.539185,68.537893],[-137.149372,68.470511],[-137.331131,68.24995],[-136.912521,68.098495],[-136.313261,68.165122],[-136.121807,68.383947],[-136.539185,68.537893]]]},\"id\":\"840d639ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.477112,51.195826],[-166.272165,51.370779],[-166.419965,51.58617],[-166.775139,51.626561],[-166.980287,51.450983],[-166.83007,51.235641],[-166.477112,51.195826]]]},\"id\":\"8422f01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.134177,40.483055],[-111.882101,40.636356],[-111.93366,40.870058],[-112.238505,40.950275],[-112.490669,40.796664],[-112.437904,40.563149],[-112.134177,40.483055]]]},\"id\":\"8426961ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.692453,37.207913],[-116.458086,37.373263],[-116.517655,37.610538],[-116.8126,37.682141],[-117.046774,37.516468],[-116.9862,37.279517],[-116.692453,37.207913]]]},\"id\":\"8429815ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.270402,59.06994],[-138.385455,58.871632],[-138.120706,58.695864],[-137.740708,58.716877],[-137.621257,58.914791],[-137.886175,59.092093],[-138.270402,59.06994]]]},\"id\":\"8413929ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.834868,20.307801],[-155.997101,20.103484],[-155.890463,19.871543],[-155.621814,19.843722],[-155.45927,20.047962],[-155.565682,20.2801],[-155.834868,20.307801]]]},\"id\":\"845d101ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.702148,20.514268],[-106.48253,20.668696],[-106.515401,20.923495],[-106.768823,21.023791],[-106.988751,20.868887],[-106.954948,20.614164],[-106.702148,20.514268]]]},\"id\":\"844834bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-99.984671,19.627119],[-99.762679,19.77175],[-99.781655,20.024651],[-100.023569,20.133096],[-100.246142,19.988078],[-100.226219,19.735003],[-99.984671,19.627119]]]},\"id\":\"8449829ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.751636,62.1436],[-164.134482,61.984893],[-164.044658,61.763965],[-163.579151,61.701277],[-163.197882,61.857964],[-163.280509,62.079345],[-163.751636,62.1436]]]},\"id\":\"840c1e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.194193,27.124214],[-114.976327,27.291081],[-115.028096,27.542408],[-115.298616,27.626519],[-115.516395,27.459211],[-115.463745,27.208236],[-115.194193,27.124214]]]},\"id\":\"8448713ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.519537,39.452875],[-108.263908,39.599911],[-108.306711,39.837855],[-108.606406,39.928676],[-108.86235,39.781345],[-108.818288,39.54349],[-108.519537,39.452875]]]},\"id\":\"8426827ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.310402,18.75234],[-101.090216,18.898929],[-101.111773,19.15163],[-101.354451,19.257867],[-101.57516,19.110857],[-101.552668,18.858034],[-101.310402,18.75234]]]},\"id\":\"8449843ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.701219,25.99288],[-109.475637,26.152111],[-109.516152,26.407075],[-109.783228,26.502641],[-110.009,26.342978],[-109.967508,26.088183],[-109.701219,25.99288]]]},\"id\":\"84480ebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.101424,57.861514],[-149.473217,57.753518],[-149.504801,57.549534],[-149.169684,57.454054],[-148.801292,57.560819],[-148.764629,57.764286],[-149.101424,57.861514]]]},\"id\":\"840c59dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.526401,17.679624],[-100.307829,17.824947],[-100.327624,18.07627],[-100.566911,18.182419],[-100.786028,18.036674],[-100.765313,17.785205],[-100.526401,17.679624]]]},\"id\":\"8449b1bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.109899,57.070077],[-154.459772,56.94719],[-154.455238,56.742895],[-154.105847,56.661679],[-153.758569,56.783139],[-153.758088,56.987232],[-154.109899,57.070077]]]},\"id\":\"840ce97ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.105045,63.944671],[-150.572506,63.828901],[-150.602384,63.605602],[-150.173017,63.498645],[-149.710788,63.612876],[-149.672715,63.835588],[-150.105045,63.944671]]]},\"id\":\"840c293ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.736097,18.791131],[-63.566061,18.940438],[-63.596125,19.134486],[-63.795949,19.178991],[-63.965415,19.029979],[-63.935627,18.836169],[-63.736097,18.791131]]]},\"id\":\"844cedbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-99.158179,17.794007],[-98.939248,17.937373],[-98.956285,18.188158],[-99.19317,18.295775],[-99.412695,18.152013],[-99.39474,17.901032],[-99.158179,17.794007]]]},\"id\":\"8449b39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.980918,50.482719],[-171.787597,50.672318],[-171.960176,50.885359],[-172.328209,50.908573],[-172.52122,50.71831],[-172.346521,50.505499],[-171.980918,50.482719]]]},\"id\":\"8422e11ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.65118,67.120452],[-171.076305,66.936111],[-170.892005,66.707433],[-170.2924,66.661952],[-169.866955,66.843778],[-170.041328,67.073583],[-170.65118,67.120452]]]},\"id\":\"840d8c1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.581351,69.399317],[-146.19797,69.298228],[-146.286879,69.065191],[-145.77203,68.934332],[-145.165397,69.033869],[-145.063709,69.265795],[-145.581351,69.399317]]]},\"id\":\"840d72bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.514235,40.867066],[-114.266187,41.024602],[-114.323233,41.255648],[-114.629482,41.328914],[-114.877463,41.171068],[-114.819268,40.940268],[-114.514235,40.867066]]]},\"id\":\"84299b7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.683761,67.056781],[-136.252367,66.992236],[-136.430177,66.776439],[-136.047672,66.626865],[-135.488629,66.690771],[-135.302629,66.904882],[-135.683761,67.056781]]]},\"id\":\"840d6e3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.084795,54.379507],[-122.293865,54.200841],[-122.127785,53.988192],[-121.754737,53.952751],[-121.543531,54.130265],[-121.707478,54.344373],[-122.084795,54.379507]]]},\"id\":\"8412f69ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.276716,59.19796],[-155.650832,59.068981],[-155.636726,58.857192],[-155.254373,58.774521],[-154.883087,58.901932],[-154.891324,59.113569],[-155.276716,59.19796]]]},\"id\":\"840cecdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.663649,64.933243],[-147.161088,64.82905],[-147.224403,64.605649],[-146.798881,64.487291],[-146.307834,64.590109],[-146.235957,64.812645],[-146.663649,64.933243]]]},\"id\":\"840d585ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.02695,56.165547],[-135.154661,55.974884],[-134.92454,55.792274],[-134.56701,55.798827],[-134.435793,55.988931],[-134.665585,56.173047],[-135.02695,56.165547]]]},\"id\":\"841d219ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.964259,21.079028],[-157.12547,20.874531],[-157.017726,20.644585],[-156.748961,20.618925],[-156.587394,20.82337],[-156.694945,21.053526],[-156.964259,21.079028]]]},\"id\":\"845d169ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.715409,22.454927],[-106.492456,22.609728],[-106.525849,22.865379],[-106.783157,22.966161],[-107.006428,22.81091],[-106.972074,22.555329],[-106.715409,22.454927]]]},\"id\":\"8448315ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.824665,18.648126],[-154.98704,18.443516],[-154.881886,18.209086],[-154.61461,18.17907],[-154.451966,18.383568],[-154.556866,18.618193],[-154.824665,18.648126]]]},\"id\":\"845d1e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.657362,29.203355],[-116.438961,29.372171],[-116.494409,29.620845],[-116.769135,29.700321],[-116.987371,29.531093],[-116.93105,29.282803],[-116.657362,29.203355]]]},\"id\":\"8448415ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.076637,53.587839],[-159.855628,53.740739],[-159.976195,53.953991],[-160.320547,54.014494],[-160.542362,53.861076],[-160.419025,53.647676],[-160.076637,53.587839]]]},\"id\":\"8422997ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.106075,52.474774],[-163.893367,52.640751],[-164.032383,52.855168],[-164.386715,52.903632],[-164.599853,52.737064],[-164.458238,52.522627],[-164.106075,52.474774]]]},\"id\":\"8422891ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.564544,40.787714],[-77.873057,40.726033],[-77.950853,40.504804],[-77.722501,40.345885],[-77.416273,40.406871],[-77.336123,40.627467],[-77.564544,40.787714]]]},\"id\":\"842aa3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.522016,23.282198],[-109.301007,23.441041],[-109.340306,23.69628],[-109.601555,23.792504],[-109.822754,23.633194],[-109.782517,23.378128],[-109.522016,23.282198]]]},\"id\":\"8448059ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.011122,19.628449],[-64.844171,19.776616],[-64.873213,19.965953],[-65.068932,20.006892],[-65.235301,19.859026],[-65.206534,19.669922],[-65.011122,19.628449]]]},\"id\":\"844d5b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-78.584585,19.018697],[-78.388756,19.125124],[-78.367061,19.350421],[-78.541785,19.47005],[-78.738566,19.363701],[-78.75967,19.137644],[-78.584585,19.018697]]]},\"id\":\"8445b33ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-73.11215,20.254022],[-73.297443,20.158708],[-73.272929,19.967944],[-73.062907,19.872706],[-72.877808,19.968437],[-72.902535,20.158987],[-73.11215,20.254022]]]},\"id\":\"844c8adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-107.147106,36.266931],[-106.897246,36.415034],[-106.935681,36.659892],[-107.225184,36.756597],[-107.475421,36.608194],[-107.43578,36.363388],[-107.147106,36.266931]]]},\"id\":\"8448d97ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.318897,62.428472],[-164.70321,62.267712],[-164.60736,62.046179],[-164.134482,61.984893],[-163.751636,62.1436],[-163.840162,62.365632],[-164.318897,62.428472]]]},\"id\":\"840c1e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-140.855613,56.081376],[-140.941834,55.891353],[-140.694041,55.724992],[-140.359515,55.747268],[-140.269615,55.937032],[-140.517904,56.104785],[-140.855613,56.081376]]]},\"id\":\"841d067ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.135838,49.98672],[-128.909854,50.154512],[-129.085458,50.345781],[-129.406347,50.363537],[-129.548514,50.190621],[-129.454271,50.004878],[-129.135838,49.98672]]]},\"id\":\"841d659ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.219055,37.113224],[-116.9862,37.279517],[-117.046774,37.516468],[-117.341195,37.58679],[-117.573827,37.420176],[-117.512267,37.183562],[-117.219055,37.113224]]]},\"id\":\"8429811ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.317112,60.99588],[-149.734494,60.884637],[-149.767853,60.670396],[-149.390273,60.567961],[-148.977151,60.677844],[-148.937365,60.89151],[-149.317112,60.99588]]]},\"id\":\"840c465ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.515193,53.679366],[-159.293406,53.830575],[-159.411192,54.043661],[-159.753553,54.105707],[-159.976195,53.953991],[-159.855628,53.740739],[-159.515193,53.679366]]]},\"id\":\"84229bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.017234,52.84378],[-168.810228,53.020826],[-168.975314,53.23252],[-169.34988,53.267014],[-169.556851,53.089323],[-169.389305,52.877785],[-169.017234,52.84378]]]},\"id\":\"8422c63ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.24676,55.241753],[-134.376316,55.053684],[-134.155326,54.86986],[-133.805179,54.87262],[-133.67235,55.060093],[-133.892918,55.245408],[-134.24676,55.241753]]]},\"id\":\"841d2c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-75.757071,19.900284],[-75.566868,20.000099],[-75.540654,20.220235],[-75.705163,20.341354],[-75.896315,20.241693],[-75.922006,20.020759],[-75.757071,19.900284]]]},\"id\":\"844c9adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.77314,19.332593],[-67.948672,19.24238],[-67.921445,19.051945],[-67.718523,18.95202],[-67.543311,19.042693],[-67.570701,19.23283],[-67.77314,19.332593]]]},\"id\":\"844cc4dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.56925,53.177224],[-173.370102,53.363762],[-173.55866,53.571117],[-173.948607,53.591626],[-174.147246,53.404424],[-173.956464,53.197378],[-173.56925,53.177224]]]},\"id\":\"8422cc9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.129564,58.149665],[-150.503037,58.03812],[-150.527467,57.832432],[-150.183679,57.738742],[-149.813552,57.848996],[-149.783877,58.054222],[-150.129564,58.149665]]]},\"id\":\"840c581ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-123.5129,40.557496],[-123.290552,40.730186],[-123.365312,40.952034],[-123.663242,41.000763],[-123.884983,40.827826],[-123.809408,40.606408],[-123.5129,40.557496]]]},\"id\":\"8428021ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.785643,47.333097],[-67.150373,47.301074],[-67.295808,47.076372],[-67.078803,46.884852],[-66.717559,46.916702],[-66.569856,47.140244],[-66.785643,47.333097]]]},\"id\":\"842b157ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.067587,26.529777],[-113.848485,26.695137],[-113.897859,26.947582],[-114.167238,27.03435],[-114.38631,26.868543],[-114.336037,26.616417],[-114.067587,26.529777]]]},\"id\":\"8448703ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.475282,52.275648],[-161.260717,52.435402],[-161.385632,52.65042],[-161.727745,52.705801],[-161.942964,52.545499],[-161.815424,52.330366],[-161.475282,52.275648]]]},\"id\":\"84228a9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.299143,51.846269],[-165.090267,52.01676],[-165.233799,52.231705],[-165.588726,52.276147],[-165.797916,52.105047],[-165.651875,51.890117],[-165.299143,51.846269]]]},\"id\":\"8422f21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-60.100216,21.889714],[-59.923851,22.03488],[-59.956429,22.223657],[-60.165103,22.267122],[-60.340957,22.122257],[-60.308647,21.933628],[-60.100216,21.889714]]]},\"id\":\"844d449ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.335105,21.873283],[-108.114986,22.030236],[-108.151496,22.285445],[-108.40906,22.383569],[-108.629421,22.226141],[-108.591977,21.971066],[-108.335105,21.873283]]]},\"id\":\"8448221ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.901112,33.953394],[-119.681866,34.125495],[-119.745768,34.365106],[-120.029767,34.432185],[-120.248659,34.259745],[-120.183911,34.020566],[-119.901112,33.953394]]]},\"id\":\"8429123ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.647687,19.734864],[-64.479943,19.88298],[-64.50926,20.072547],[-64.706047,20.113769],[-64.873213,19.965953],[-64.844171,19.776616],[-64.647687,19.734864]]]},\"id\":\"844d5bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.33314,30.378394],[-114.107468,30.543816],[-114.15896,30.793354],[-114.437081,30.877166],[-114.662708,30.711348],[-114.610264,30.462115],[-114.33314,30.378394]]]},\"id\":\"84485c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.084444,19.580889],[-62.913245,19.729379],[-62.943761,19.921851],[-63.145201,19.965617],[-63.31584,19.817425],[-63.285599,19.62517],[-63.084444,19.580889]]]},\"id\":\"844d4adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.364782,30.871131],[-157.532799,30.678724],[-157.419841,30.467675],[-157.13906,30.448918],[-156.970638,30.641362],[-157.083398,30.852526],[-157.364782,30.871131]]]},\"id\":\"8436b01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.069507,18.737722],[-80.868549,18.849251],[-80.850968,19.079095],[-81.034995,19.198129],[-81.236904,19.086619],[-81.253834,18.856056],[-81.069507,18.737722]]]},\"id\":\"8445a31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.378068,66.839561],[-157.877721,66.697276],[-157.835095,66.464089],[-157.30368,66.373199],[-156.80859,66.513374],[-156.840334,66.746528],[-157.378068,66.839561]]]},\"id\":\"840c22bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.97814,48.397115],[-71.350762,48.351519],[-71.478223,48.119255],[-71.235878,47.933598],[-70.866808,47.978779],[-70.736555,48.210029],[-70.97814,48.397115]]]},\"id\":\"842ba57ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.903429,54.120823],[-132.044559,53.936346],[-131.839012,53.747578],[-131.493023,53.741808],[-131.348958,53.925577],[-131.553793,54.115829],[-131.903429,54.120823]]]},\"id\":\"841294bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.437598,55.204396],[-158.754047,55.071085],[-158.720699,54.871855],[-158.375366,54.80585],[-158.060646,54.937654],[-158.089523,55.136959],[-158.437598,55.204396]]]},\"id\":\"840ccabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-80.455786,41.632193],[-80.76536,41.562089],[-80.830575,41.336936],[-80.588784,41.182383],[-80.281418,41.251657],[-80.213644,41.476308],[-80.455786,41.632193]]]},\"id\":\"842ab11ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-98.956285,18.188158],[-98.736681,18.331242],[-98.753357,18.582328],[-98.990561,18.690538],[-99.210771,18.547068],[-99.19317,18.295775],[-98.956285,18.188158]]]},\"id\":\"8449b31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.415659,38.926764],[-117.179236,39.091752],[-117.241262,39.324709],[-117.540731,39.392353],[-117.776911,39.227057],[-117.71387,38.994427],[-117.415659,38.926764]]]},\"id\":\"84298a9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.668251,57.836453],[-157.020322,57.70475],[-156.996744,57.496943],[-156.626436,57.420877],[-156.276719,57.551018],[-156.294952,57.758776],[-156.668251,57.836453]]]},\"id\":\"840cea9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.673776,18.400185],[-81.472126,18.513187],[-81.455617,18.743792],[-81.641419,18.862101],[-81.844015,18.749098],[-81.859861,18.517787],[-81.673776,18.400185]]]},\"id\":\"8445a15ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.335916,67.72138],[-165.809806,67.552587],[-165.678081,67.319118],[-165.083702,67.25373],[-164.611698,67.420041],[-164.732106,67.654201],[-165.335916,67.72138]]]},\"id\":\"840c369ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-144.173998,64.197788],[-144.661737,64.102626],[-144.745571,63.883516],[-144.349451,63.760566],[-143.868132,63.85455],[-143.776559,64.072649],[-144.173998,64.197788]]]},\"id\":\"840d591ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.294607,65.809935],[-162.747178,65.652175],[-162.657119,65.421682],[-162.124236,65.348546],[-161.67428,65.504076],[-161.754546,65.734954],[-162.294607,65.809935]]]},\"id\":\"840c33bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-90.03301,27.540057],[-89.801214,27.660496],[-89.799898,27.907103],[-90.03135,28.033797],[-90.26414,27.913302],[-90.264483,27.66617],[-90.03301,27.540057]]]},\"id\":\"8444709ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.246763,53.562584],[-162.027713,53.721136],[-162.159737,53.934343],[-162.513562,53.989074],[-162.73323,53.829965],[-162.598464,53.616684],[-162.246763,53.562584]]]},\"id\":\"840cdb5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.941065,66.024293],[-164.388578,65.861143],[-164.280892,65.630654],[-163.735494,65.562768],[-163.290085,65.723621],[-163.387914,65.954638],[-163.941065,66.024293]]]},\"id\":\"840c33dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.898668,53.081185],[-162.682242,53.242607],[-162.816499,53.456414],[-163.169875,53.508858],[-163.386851,53.346867],[-163.249911,53.133004],[-162.898668,53.081185]]]},\"id\":\"84228b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.482759,23.153677],[-110.26336,23.31377],[-110.304527,23.568645],[-110.566015,23.66322],[-110.785558,23.50265],[-110.743471,23.247983],[-110.482759,23.153677]]]},\"id\":\"84482e1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.001004,18.996922],[-156.162109,18.791776],[-156.055953,18.558659],[-155.788908,18.53047],[-155.627489,18.735522],[-155.733426,18.968856],[-156.001004,18.996922]]]},\"id\":\"845d135ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.32782,63.281933],[-149.784881,63.169201],[-149.820938,62.948246],[-149.407656,62.840637],[-148.955696,62.951908],[-148.911939,63.172235],[-149.32782,63.281933]]]},\"id\":\"840c747ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.896241,52.083957],[-171.697378,52.269543],[-171.874341,52.480283],[-172.252427,52.505195],[-172.45097,52.318947],[-172.271763,52.10845],[-171.896241,52.083957]]]},\"id\":\"8422c5bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.468894,51.92118],[-172.271763,52.10845],[-172.45097,52.318947],[-172.82952,52.341915],[-173.026275,52.153982],[-172.844871,51.943745],[-172.468894,51.92118]]]},\"id\":\"8422ee7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.397548,56.361048],[-139.494837,56.169921],[-139.249045,55.999202],[-138.905639,56.018185],[-138.804635,56.208979],[-139.050731,56.381131],[-139.397548,56.361048]]]},\"id\":\"841d045ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.296494,19.365348],[-69.475271,19.273044],[-69.448734,19.08147],[-69.24324,18.982476],[-69.06475,19.075231],[-69.091465,19.266528],[-69.296494,19.365348]]]},\"id\":\"844cf31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.768861,59.980931],[-144.181127,59.88886],[-144.255593,59.682704],[-143.923304,59.569493],[-143.515664,59.660553],[-143.435717,59.865826],[-143.768861,59.980931]]]},\"id\":\"840c6a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-65.869076,19.076423],[-65.703957,19.224963],[-65.73236,19.41469],[-65.925607,19.455627],[-66.090136,19.307385],[-66.062008,19.117909],[-65.869076,19.076423]]]},\"id\":\"844ce17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.527467,57.832432],[-150.895805,57.719924],[-150.917126,57.515034],[-150.575265,57.423074],[-150.210148,57.534283],[-150.183679,57.738742],[-150.527467,57.832432]]]},\"id\":\"840c587ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.325714,30.537812],[-113.097724,30.701658],[-113.147271,30.951755],[-113.425791,31.037737],[-113.65379,30.873498],[-113.603264,30.623672],[-113.325714,30.537812]]]},\"id\":\"84485edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.300801,20.102693],[-158.459343,19.896909],[-158.351279,19.667206],[-158.084818,19.643038],[-157.925876,19.848774],[-158.03379,20.078726],[-158.300801,20.102693]]]},\"id\":\"845da5dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.955696,62.951908],[-149.407656,62.840637],[-149.446523,62.620877],[-149.04092,62.51302],[-148.593993,62.622867],[-148.547659,62.841981],[-148.955696,62.951908]]]},\"id\":\"840c709ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.530764,43.769493],[-127.31499,43.943987],[-127.399277,44.151532],[-127.700031,44.184143],[-127.914939,44.009473],[-127.829965,43.802368],[-127.530764,43.769493]]]},\"id\":\"8428e51ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.095066,56.034867],[-162.408536,55.889678],[-162.348481,55.687256],[-161.979634,55.629717],[-161.667443,55.773255],[-161.722806,55.975974],[-162.095066,56.034867]]]},\"id\":\"840cdc1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.209803,33.334481],[-118.989907,33.505889],[-119.052194,33.747218],[-119.33524,33.816718],[-119.554821,33.644961],[-119.491675,33.404053],[-119.209803,33.334481]]]},\"id\":\"842912dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.054651,63.601798],[-147.52382,63.496758],[-147.580486,63.276641],[-147.175708,63.162345],[-146.712187,63.266045],[-146.647827,63.485367],[-147.054651,63.601798]]]},\"id\":\"840d5b7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.652195,48.554208],[-129.432411,48.724904],[-129.525084,48.914827],[-129.838205,48.933664],[-130.056908,48.762823],[-129.963579,48.573291],[-129.652195,48.554208]]]},\"id\":\"8428c99ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.011693,56.999899],[-162.335948,56.85341],[-162.274431,56.64775],[-161.893655,56.588273],[-161.570781,56.733067],[-161.627286,56.939022],[-162.011693,56.999899]]]},\"id\":\"840cc21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.761161,42.140227],[-125.542808,42.314305],[-125.622728,42.528937],[-125.921749,42.569049],[-126.139354,42.394762],[-126.058691,42.180573],[-125.761161,42.140227]]]},\"id\":\"84280adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.405127,55.595035],[-135.527943,55.405859],[-135.30056,55.2248],[-134.9506,55.231439],[-134.824383,55.420076],[-135.051504,55.602619],[-135.405127,55.595035]]]},\"id\":\"841d213ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.855054,65.932936],[-146.377034,65.831325],[-146.450806,65.606048],[-146.011885,65.483323],[-145.497046,65.583564],[-145.414035,65.807884],[-145.855054,65.932936]]]},\"id\":\"840d5c5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.155326,54.86986],[-134.284057,54.68282],[-134.06586,54.499135],[-133.719332,54.501013],[-133.587406,54.687453],[-133.805179,54.87262],[-134.155326,54.86986]]]},\"id\":\"841d2cbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.77108,55.33044],[-153.103664,55.213779],[-153.108507,55.01624],[-152.785177,54.93561],[-152.45505,55.050968],[-152.445799,55.248249],[-152.77108,55.33044]]]},\"id\":\"841db39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.842358,51.060637],[-163.634664,51.229334],[-163.768892,51.44563],[-164.113299,51.493275],[-164.321425,51.323986],[-164.184721,51.107646],[-163.842358,51.060637]]]},\"id\":\"84228d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-94.58547,67.084598],[-95.137764,66.952242],[-95.126515,66.699552],[-94.573891,66.578879],[-94.026138,66.709308],[-94.026448,66.962317],[-94.58547,67.084598]]]},\"id\":\"840f957ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-170.687256,53.183763],[-170.482048,53.363832],[-170.656527,53.573772],[-171.038633,53.60343],[-171.243633,53.422705],[-171.066751,53.212981],[-170.687256,53.183763]]]},\"id\":\"8422c03ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-72.877808,19.968437],[-73.062907,19.872706],[-73.038239,19.680988],[-72.828259,19.585221],[-72.643359,19.681374],[-72.668239,19.872871],[-72.877808,19.968437]]]},\"id\":\"844c8a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.698644,65.205976],[-155.175113,65.073738],[-155.161935,64.844977],[-154.681674,64.748687],[-154.209896,64.879062],[-154.213687,65.107571],[-154.698644,65.205976]]]},\"id\":\"840c2e7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.724965,43.553659],[-125.503132,43.726186],[-125.584212,43.937123],[-125.887899,43.97511],[-126.108963,43.802377],[-126.027115,43.591865],[-125.724965,43.553659]]]},\"id\":\"8428e45ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-140.403109,61.410047],[-140.843745,61.328803],[-140.94849,61.122046],[-140.618349,60.997649],[-140.183234,61.07805],[-140.07278,61.283684],[-140.403109,61.410047]]]},\"id\":\"840c6c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.844015,18.749098],[-81.641419,18.862101],[-81.625151,19.093376],[-81.812148,19.212354],[-82.015693,19.099353],[-82.03129,18.867372],[-81.844015,18.749098]]]},\"id\":\"8445a17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.370054,38.920414],[-119.138872,39.088579],[-119.204776,39.31946],[-119.502815,39.381807],[-119.733638,39.213345],[-119.666787,38.982835],[-119.370054,38.920414]]]},\"id\":\"842989dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.015599,51.833046],[-159.801667,51.990064],[-159.918051,52.205547],[-160.250967,52.264184],[-160.46566,52.106643],[-160.346682,51.89099],[-160.015599,51.833046]]]},\"id\":\"84229d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.619075,52.210948],[-163.406837,52.37634],[-163.542686,52.591221],[-163.893367,52.640751],[-164.106075,52.474774],[-163.967641,52.259854],[-163.619075,52.210948]]]},\"id\":\"842289dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.556469,57.600863],[-155.908915,57.472872],[-155.893699,57.266202],[-155.531273,57.18763],[-155.181309,57.314113],[-155.191286,57.520665],[-155.556469,57.600863]]]},\"id\":\"840ce87ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.74939,17.892736],[-64.581342,18.042742],[-64.610674,18.238034],[-64.807778,18.283055],[-64.975244,18.133339],[-64.946188,17.938312],[-64.74939,17.892736]]]},\"id\":\"844ce83ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.441321,50.727916],[-129.584702,50.553906],[-129.406347,50.363537],[-129.085458,50.345781],[-128.939787,50.518989],[-129.117275,50.710759],[-129.441321,50.727916]]]},\"id\":\"84129a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.556012,39.508177],[-127.349852,39.686399],[-127.430468,39.904542],[-127.717877,39.943961],[-127.923245,39.765542],[-127.842002,39.547901],[-127.556012,39.508177]]]},\"id\":\"84282abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.283336,63.172269],[-143.752223,63.080542],[-143.840301,62.865231],[-143.466526,62.742666],[-143.003656,62.833312],[-142.908586,63.047594],[-143.283336,63.172269]]]},\"id\":\"840c647ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.198765,68.03236],[-147.769957,67.92546],[-147.836199,67.694051],[-147.342723,67.570446],[-146.779854,67.675763],[-146.702195,67.906248],[-147.198765,68.03236]]]},\"id\":\"840d543ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-96.608177,70.439529],[-97.230005,70.300293],[-97.19343,70.051964],[-96.549332,69.942362],[-95.932577,70.079386],[-95.954798,70.328199],[-96.608177,70.439529]]]},\"id\":\"840fb65ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-119.89625,38.813765],[-119.666787,38.982835],[-119.733638,39.213345],[-120.030883,39.274402],[-120.259957,39.105039],[-120.19218,38.874913],[-119.89625,38.813765]]]},\"id\":\"8429899ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.617855,53.313385],[-159.397681,53.465774],[-159.515193,53.679366],[-159.855628,53.740739],[-160.076637,53.587839],[-159.956382,53.37408],[-159.617855,53.313385]]]},\"id\":\"8422995ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-95.577121,18.796315],[-95.357167,18.934021],[-95.367031,19.183414],[-95.59776,19.295434],[-95.818435,19.157417],[-95.807659,18.907694],[-95.577121,18.796315]]]},\"id\":\"846d349ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.456723,67.394292],[-171.88119,67.207406],[-171.68603,66.978926],[-171.076305,66.936111],[-170.65118,67.120452],[-170.836322,67.350137],[-171.456723,67.394292]]]},\"id\":\"840d8cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.649987,33.999722],[-115.419986,34.165649],[-115.475775,34.409526],[-115.762549,34.487158],[-115.992427,34.320876],[-115.935659,34.077319],[-115.649987,33.999722]]]},\"id\":\"8429a2dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.450048,41.877427],[-112.195034,42.029449],[-112.248035,42.259463],[-112.557288,42.337269],[-112.812371,42.18494],[-112.758137,41.955115],[-112.450048,41.877427]]]},\"id\":\"8428b63ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.12279,58.31195],[-154.488409,58.187585],[-154.483458,57.979121],[-154.118365,57.895227],[-153.755577,58.018113],[-153.755052,58.22636],[-154.12279,58.31195]]]},\"id\":\"840ced5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.525084,48.914827],[-129.303777,49.08482],[-129.396667,49.2738],[-129.711542,49.292401],[-129.931765,49.122258],[-129.838205,48.933664],[-129.525084,48.914827]]]},\"id\":\"8428c91ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.097963,34.455246],[-120.881089,34.628695],[-120.94744,34.866065],[-121.231482,34.929532],[-121.447936,34.755759],[-121.380773,34.518845],[-121.097963,34.455246]]]},\"id\":\"8429133ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.060921,44.812159],[-113.801371,44.96302],[-113.859767,45.183761],[-114.178981,45.253428],[-114.438489,45.102259],[-114.378831,44.881733],[-114.060921,44.812159]]]},\"id\":\"8428825ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.485037,64.889588],[-160.929386,64.738384],[-160.86049,64.509777],[-160.356351,64.432133],[-159.914963,64.581239],[-159.974722,64.810069],[-160.485037,64.889588]]]},\"id\":\"840c063ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-131.422096,64.68424],[-131.627575,64.47691],[-131.337727,64.281198],[-130.843929,64.291004],[-130.632572,64.497464],[-130.920819,64.694995],[-131.422096,64.68424]]]},\"id\":\"841312dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.040668,23.344302],[-108.818898,23.502495],[-108.857251,23.757888],[-109.118323,23.854935],[-109.340306,23.69628],[-109.301007,23.441041],[-109.040668,23.344302]]]},\"id\":\"844805dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.465285,52.969868],[-163.249911,53.133004],[-163.386851,53.346867],[-163.741836,53.397634],[-163.957707,53.233919],[-163.818106,53.020019],[-163.465285,52.969868]]]},\"id\":\"84228bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.066705,19.377084],[-70.247037,19.283721],[-70.220868,19.091608],[-70.014179,18.993123],[-69.834116,19.086932],[-69.860471,19.278779],[-70.066705,19.377084]]]},\"id\":\"844cd49ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-143.022749,59.955391],[-143.435717,59.865826],[-143.515664,59.660553],[-143.188067,59.545759],[-142.779792,59.634357],[-142.694451,59.838707],[-143.022749,59.955391]]]},\"id\":\"840c6abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-98.854827,20.093957],[-98.63194,20.236755],[-98.64865,20.489443],[-98.889199,20.599553],[-99.112713,20.456396],[-99.095052,20.20349],[-98.854827,20.093957]]]},\"id\":\"8449919ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.938421,43.422663],[-129.732667,43.600064],[-129.82033,43.804533],[-130.114324,43.831136],[-130.319109,43.6536],[-130.230877,43.449596],[-129.938421,43.422663]]]},\"id\":\"8428501ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-99.613579,17.757005],[-99.39474,17.901032],[-99.412695,18.152013],[-99.65041,18.259149],[-99.869827,18.114717],[-99.850952,17.863556],[-99.613579,17.757005]]]},\"id\":\"8449b15ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-86.303004,64.633504],[-86.849329,64.530357],[-86.913924,64.27579],[-86.441321,64.124651],[-85.901063,64.226286],[-85.827371,64.480555],[-86.303004,64.633504]]]},\"id\":\"840f88dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.506012,29.96281],[-114.281487,30.128586],[-114.33314,30.378394],[-114.610264,30.462115],[-114.834734,30.295937],[-114.78214,30.046442],[-114.506012,29.96281]]]},\"id\":\"84485cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-128.857011,49.423207],[-128.63154,49.591582],[-128.723932,49.779989],[-129.042517,49.799645],[-129.266924,49.631105],[-129.173818,49.443074],[-128.857011,49.423207]]]},\"id\":\"8428cbbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.123741,26.972419],[-110.898546,27.133687],[-110.942279,27.387686],[-111.212177,27.480203],[-111.437493,27.318506],[-111.392793,27.064722],[-111.123741,26.972419]]]},\"id\":\"844809dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.817259,45.63762],[-71.167125,45.592976],[-71.28772,45.366115],[-71.060916,45.184878],[-70.714186,45.229126],[-70.591144,45.455004],[-70.817259,45.63762]]]},\"id\":\"842ba8bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.627144,63.166745],[-155.065098,63.036161],[-155.053971,62.812788],[-154.612817,62.720221],[-154.17884,62.849068],[-154.18204,63.072204],[-154.627144,63.166745]]]},\"id\":\"840c0c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.488629,66.690771],[-136.047672,66.626865],[-136.224379,66.412268],[-135.850006,66.263241],[-135.300222,66.326532],[-135.115649,66.539457],[-135.488629,66.690771]]]},\"id\":\"840d685ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.093471,62.950294],[-148.547659,62.841981],[-148.593993,62.622867],[-148.193557,62.512759],[-147.744552,62.619698],[-147.690826,62.838105],[-148.093471,62.950294]]]},\"id\":\"840c755ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-99.869827,18.114717],[-99.65041,18.259149],[-99.668935,18.51063],[-99.907803,18.617853],[-100.127793,18.473017],[-100.108342,18.221363],[-99.869827,18.114717]]]},\"id\":\"8449b17ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.979758,52.704301],[-162.764919,52.866864],[-162.898668,53.081185],[-163.249911,53.133004],[-163.465285,52.969868],[-163.328891,52.75549],[-162.979758,52.704301]]]},\"id\":\"84228b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.742597,65.436174],[-142.262221,65.349437],[-142.373031,65.129645],[-141.972508,64.9978],[-141.460418,65.083481],[-141.34138,65.30205],[-141.742597,65.436174]]]},\"id\":\"840d4e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.616687,51.419948],[-168.414165,51.599543],[-168.573181,51.813606],[-168.937087,51.847949],[-169.139612,51.667709],[-168.978241,51.453773],[-168.616687,51.419948]]]},\"id\":\"8422f1bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.417515,61.786901],[-141.863538,61.702067],[-141.961851,61.492935],[-141.620198,61.36971],[-141.179761,61.453627],[-141.075431,61.661676],[-141.417515,61.786901]]]},\"id\":\"840c61bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.428008,35.762113],[-108.180964,35.913444],[-108.222119,36.158816],[-108.511498,36.252767],[-108.758841,36.101122],[-108.71651,35.855842],[-108.428008,35.762113]]]},\"id\":\"8448ca7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.686638,18.222361],[-70.868966,18.125085],[-70.84299,17.928332],[-70.634492,17.829129],[-70.452421,17.92686],[-70.47859,18.123338],[-70.686638,18.222361]]]},\"id\":\"844cd05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-58.6263,17.951057],[-58.446177,18.101405],[-58.480014,18.305291],[-58.693706,18.358638],[-58.873337,18.20858],[-58.839769,18.004886],[-58.6263,17.951057]]]},\"id\":\"845ee9dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.244239,18.342444],[-64.075188,18.492128],[-64.104887,18.686814],[-64.30336,18.731565],[-64.471834,18.582174],[-64.442412,18.38774],[-64.244239,18.342444]]]},\"id\":\"844ced7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.167583,52.615537],[-164.955628,52.783821],[-165.100477,52.997739],[-165.459876,53.043356],[-165.672166,52.874468],[-165.524732,52.660569],[-165.167583,52.615537]]]},\"id\":\"8422d4dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.852456,21.385514],[-105.630528,21.538956],[-105.661894,21.794253],[-105.916142,21.89607],[-106.138423,21.742173],[-106.106104,21.486917],[-105.852456,21.385514]]]},\"id\":\"844830dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.835895,56.383485],[-162.154008,56.238476],[-162.095066,56.034867],[-161.722806,55.975974],[-161.406044,56.119323],[-161.460177,56.323215],[-161.835895,56.383485]]]},\"id\":\"840cdc9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-93.977829,17.76835],[-93.760476,17.903678],[-93.767057,18.150626],[-93.991873,18.262626],[-94.209981,18.127006],[-94.202518,17.87968],[-93.977829,17.76835]]]},\"id\":\"846d267ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46979,18.224552],[-71.653596,18.126218],[-71.628019,17.928931],[-71.418434,17.830241],[-71.234867,17.929025],[-71.260645,18.126048],[-71.46979,18.224552]]]},\"id\":\"844cd2dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.289712,67.750333],[-160.795016,67.597789],[-160.718431,67.362684],[-160.14826,67.279866],[-159.646843,67.430095],[-159.711667,67.665434],[-160.289712,67.750333]]]},\"id\":\"840c359ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.501051,52.437295],[-162.286783,52.599292],[-162.417399,52.814037],[-162.764919,52.866864],[-162.979758,52.704301],[-162.846516,52.489479],[-162.501051,52.437295]]]},\"id\":\"8422887ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.030372,29.031677],[-112.804691,29.195476],[-112.85303,29.447124],[-113.128014,29.534704],[-113.353718,29.370494],[-113.304418,29.119116],[-113.030372,29.031677]]]},\"id\":\"844850bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-165.578424,65.135374],[-165.999977,64.967927],[-165.880393,64.740125],[-165.348196,64.679107],[-164.928063,64.844285],[-165.038649,65.072732],[-165.578424,65.135374]]]},\"id\":\"840c141ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.517992,61.000086],[-148.937365,60.89151],[-148.977151,60.677844],[-148.603952,60.573371],[-148.18896,60.68063],[-148.142805,60.893668],[-148.517992,61.000086]]]},\"id\":\"840c461ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-142.564587,58.395392],[-142.95456,58.308142],[-143.033341,58.108483],[-142.726927,57.996956],[-142.341168,58.083307],[-142.257635,58.282075],[-142.564587,58.395392]]]},\"id\":\"840c4dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-83.966687,35.525503],[-83.726938,35.618754],[-83.7123,35.850395],[-83.93838,35.989402],[-84.179395,35.896325],[-84.193061,35.664067],[-83.966687,35.525503]]]},\"id\":\"8444cabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.327495,21.332815],[-106.106104,21.486917],[-106.138423,21.742173],[-106.393082,21.84327],[-106.614804,21.688708],[-106.581537,21.433511],[-106.327495,21.332815]]]},\"id\":\"8448309ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.767475,64.913626],[-139.279785,64.837628],[-139.414755,64.622928],[-139.044824,64.485596],[-138.540089,64.560772],[-138.397777,64.774092],[-138.767475,64.913626]]]},\"id\":\"840d489ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-72.728787,18.810346],[-72.914433,18.711827],[-72.889578,18.515885],[-72.678863,18.418699],[-72.493422,18.517654],[-72.51849,18.713358],[-72.728787,18.810346]]]},\"id\":\"8467243ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.150728,55.109672],[-151.484272,54.998182],[-151.499796,54.802402],[-151.186064,54.718447],[-150.855118,54.828709],[-150.835312,55.024145],[-151.150728,55.109672]]]},\"id\":\"841db13ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.384657,18.85954],[-62.211792,19.008921],[-62.24287,19.204779],[-62.446538,19.251035],[-62.618851,19.10195],[-62.588047,18.906314],[-62.384657,18.85954]]]},\"id\":\"844d481ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.809399,17.816211],[-62.637107,17.966684],[-62.667923,18.165231],[-62.870753,18.213059],[-63.042484,18.062875],[-63.011946,17.864574],[-62.809399,17.816211]]]},\"id\":\"844d497ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-74.620971,20.491585],[-74.432837,20.588361],[-74.404828,20.80645],[-74.565447,20.928572],[-74.754527,20.831984],[-74.782039,20.613085],[-74.620971,20.491585]]]},\"id\":\"844c9c7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-73.848351,18.21171],[-74.036252,18.110187],[-74.011964,17.911443],[-73.799549,17.814449],[-73.611825,17.916407],[-73.636337,18.114923],[-73.848351,18.21171]]]},\"id\":\"8467229ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.862255,32.970229],[-100.614861,33.108441],[-100.637985,33.358371],[-100.909685,33.470251],[-101.157762,33.331802],[-101.133457,33.081712],[-100.862255,32.970229]]]},\"id\":\"8426d85ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.138729,56.466338],[-161.460177,56.323215],[-161.406044,56.119323],[-161.0353,56.058306],[-160.715322,56.199784],[-160.764606,56.403915],[-161.138729,56.466338]]]},\"id\":\"840cc35ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.530834,18.514249],[-70.712663,18.417953],[-70.686638,18.222361],[-70.47859,18.123338],[-70.297021,18.220087],[-70.323238,18.415405],[-70.530834,18.514249]]]},\"id\":\"844cd0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.606241,17.642854],[-113.40111,17.802938],[-113.446338,18.053237],[-113.697491,18.143117],[-113.902617,17.982468],[-113.856598,17.732506],[-113.606241,17.642854]]]},\"id\":\"844970dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-62.943761,19.921851],[-62.772367,20.069943],[-62.802971,20.261497],[-63.004694,20.304753],[-63.17553,20.156962],[-63.145201,19.965617],[-62.943761,19.921851]]]},\"id\":\"844d5dbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-112.496043,24.819668],[-112.277031,24.982736],[-112.322713,25.236647],[-112.588319,25.327219],[-112.80738,25.163686],[-112.76079,24.910048],[-112.496043,24.819668]]]},\"id\":\"8448297ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.591338,45.335388],[-122.354217,45.50114],[-122.431134,45.711411],[-122.746124,45.755566],[-122.982629,45.589565],[-122.904767,45.379659],[-122.591338,45.335388]]]},\"id\":\"8428f01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.414774,59.999517],[-151.811366,59.882144],[-151.827262,59.669632],[-151.452658,59.574899],[-151.059706,59.690845],[-151.037728,59.902939],[-151.414774,59.999517]]]},\"id\":\"840c51dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-168.932811,53.619574],[-168.722708,53.794436],[-168.889713,54.004918],[-169.26937,54.040378],[-169.479445,53.864873],[-169.309906,53.654553],[-168.932811,53.619574]]]},\"id\":\"8422c21ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.064935,39.915321],[-125.852621,40.091685],[-125.931217,40.311283],[-126.22283,40.354041],[-126.434415,40.177462],[-126.355122,39.958341],[-126.064935,39.915321]]]},\"id\":\"8428019ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.439904,56.545124],[-160.764606,56.403915],[-160.715322,56.199784],[-160.34621,56.136657],[-160.023096,56.276237],[-160.067494,56.480563],[-160.439904,56.545124]]]},\"id\":\"840cc31ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-133.25261,65.844354],[-133.44978,65.634038],[-133.135868,65.443314],[-132.625917,65.461059],[-132.422035,65.67059],[-132.73474,65.86317],[-133.25261,65.844354]]]},\"id\":\"840d699ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-67.608912,18.182956],[-67.78484,18.089851],[-67.757424,17.895456],[-67.553917,17.794483],[-67.378315,17.888061],[-67.405893,18.082138],[-67.608912,18.182956]]]},\"id\":\"844cc01ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-169.518417,53.47795],[-169.309906,53.654553],[-169.479445,53.864873],[-169.860002,53.898411],[-170.068424,53.72116],[-169.896393,53.511021],[-169.518417,53.47795]]]},\"id\":\"8422c2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-120.625018,39.393868],[-120.396355,39.56352],[-120.46498,39.791864],[-120.763181,39.850164],[-120.99141,39.680227],[-120.921876,39.452276],[-120.625018,39.393868]]]},\"id\":\"842814dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.995205,58.477643],[-149.375637,58.369441],[-149.408645,58.163474],[-149.066539,58.066234],[-148.689677,58.173188],[-148.651364,58.378619],[-148.995205,58.477643]]]},\"id\":\"840c5d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.286189,65.627966],[-151.784504,65.507251],[-151.804681,65.278868],[-151.336114,65.171715],[-150.843552,65.290729],[-150.813823,65.51858],[-151.286189,65.627966]]]},\"id\":\"840c2c3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-90.003698,35.596052],[-89.754656,35.704425],[-89.753136,35.943564],[-90.00178,36.07481],[-90.251971,35.966457],[-90.252366,35.726839],[-90.003698,35.596052]]]},\"id\":\"84265d3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.741681,18.032659],[-104.524525,18.183725],[-104.552884,18.436537],[-104.799314,18.538272],[-105.016851,18.386723],[-104.987579,18.133923],[-104.741681,18.032659]]]},\"id\":\"8449acbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-108.178893,39.122378],[-107.923597,39.26912],[-107.965475,39.507925],[-108.263908,39.599911],[-108.519537,39.452875],[-108.476403,39.21415],[-108.178893,39.122378]]]},\"id\":\"84269c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.324234,63.052879],[-125.57118,62.853636],[-125.332635,62.64285],[-124.849988,62.629571],[-124.598751,62.827641],[-124.834382,63.040167],[-125.324234,63.052879]]]},\"id\":\"84131a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.111773,19.15163],[-100.890846,19.297963],[-100.912062,19.550943],[-101.155147,19.657723],[-101.376608,19.510977],[-101.354451,19.257867],[-101.111773,19.15163]]]},\"id\":\"8449809ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.78599,19.395945],[-64.618459,19.544411],[-64.647687,19.734864],[-64.844171,19.776616],[-65.011122,19.628449],[-64.982169,19.438233],[-64.78599,19.395945]]]},\"id\":\"844cec9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-81.009682,41.716924],[-81.318822,41.64527],[-81.381448,41.419641],[-81.137533,41.266136],[-80.830575,41.336936],[-80.76536,41.562089],[-81.009682,41.716924]]]},\"id\":\"842ab15ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.704614,55.503561],[-164.006853,55.354722],[-163.936729,55.154246],[-163.568836,55.102204],[-163.267585,55.249378],[-163.333222,55.450249],[-163.704614,55.503561]]]},\"id\":\"840cde1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-76.670867,18.158434],[-76.862832,18.053197],[-76.840211,17.853039],[-76.625375,17.758299],[-76.43351,17.863951],[-76.45638,18.063927],[-76.670867,18.158434]]]},\"id\":\"8467329ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.353249,33.31403],[-117.128651,33.482874],[-117.187432,33.72619],[-117.471732,33.800292],[-117.696115,33.631089],[-117.636417,33.388145],[-117.353249,33.31403]]]},\"id\":\"8429a09ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.197898,18.911504],[-155.359989,18.706791],[-155.25444,18.472897],[-154.98704,18.443516],[-154.824665,18.648126],[-154.929971,18.882219],[-155.197898,18.911504]]]},\"id\":\"845d133ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-151.298759,57.197542],[-151.65712,57.08325],[-151.67258,56.880024],[-151.334643,56.791454],[-150.979267,56.904436],[-150.95885,57.107289],[-151.298759,57.197542]]]},\"id\":\"840c5b5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-171.446682,50.244958],[-171.253103,50.433892],[-171.422488,50.647677],[-171.787597,50.672318],[-171.980918,50.482719],[-171.809402,50.269145],[-171.446682,50.244958]]]},\"id\":\"8422e1dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.965415,19.029979],[-63.795949,19.178991],[-63.825825,19.371916],[-64.024892,19.415596],[-64.193787,19.266881],[-64.164186,19.074192],[-63.965415,19.029979]]]},\"id\":\"844ced9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.059439,35.079776],[-117.833033,35.248779],[-117.894118,35.488606],[-118.182537,35.559055],[-118.408681,35.389715],[-118.346673,35.150264],[-118.059439,35.079776]]]},\"id\":\"8429aedffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.913483,19.358306],[-69.091465,19.266528],[-69.06475,19.075231],[-68.859876,18.975993],[-68.682189,19.068224],[-68.709079,19.259239],[-68.913483,19.358306]]]},\"id\":\"844cf3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.856482,36.167128],[-121.638396,36.34078],[-121.707157,36.574218],[-121.994819,36.633553],[-122.212431,36.459602],[-122.142861,36.226616],[-121.856482,36.167128]]]},\"id\":\"84291a7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.444233,54.227373],[-160.220765,54.379604],[-160.344799,54.591949],[-160.695144,54.652192],[-160.919406,54.499436],[-160.792537,54.286965],[-160.444233,54.227373]]]},\"id\":\"840cd91ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-90.253152,35.246532],[-90.00465,35.356137],[-90.003698,35.596052],[-90.252366,35.726839],[-90.502002,35.617246],[-90.501833,35.376856],[-90.253152,35.246532]]]},\"id\":\"8426599ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-89.495139,37.001797],[-89.243328,37.106362],[-89.240623,37.342722],[-89.49087,37.474997],[-89.743875,37.370472],[-89.745436,37.133634],[-89.495139,37.001797]]]},\"id\":\"842643bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-130.180779,48.401767],[-129.963579,48.573291],[-130.056908,48.762823],[-130.368073,48.780437],[-130.584171,48.608778],[-130.490215,48.419641],[-130.180779,48.401767]]]},\"id\":\"841d6c9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-127.493236,49.142767],[-127.263158,49.309839],[-127.352891,49.50128],[-127.673494,49.525278],[-127.902592,49.358017],[-127.812076,49.166948],[-127.493236,49.142767]]]},\"id\":\"8428cabffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-166.183625,53.131653],[-165.971045,53.301152],[-166.122523,53.513918],[-166.489195,53.557127],[-166.70202,53.387011],[-166.54794,53.174306],[-166.183625,53.131653]]]},\"id\":\"8422d43ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-89.991927,38.445237],[-89.73596,38.548392],[-89.734355,38.782675],[-89.989901,38.914254],[-90.247082,38.811129],[-90.2475,38.576396],[-89.991927,38.445237]]]},\"id\":\"842640dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.660554,25.724552],[-111.438504,25.886615],[-111.482869,26.140797],[-111.750226,26.232677],[-111.972368,26.070165],[-111.927064,25.816224],[-111.660554,25.724552]]]},\"id\":\"84480d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-153.423344,55.892525],[-153.760872,55.773184],[-153.761314,55.573303],[-153.428833,55.492983],[-153.09378,55.610972],[-153.088736,55.810625],[-153.423344,55.892525]]]},\"id\":\"841db05ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.139354,42.394762],[-125.921749,42.569049],[-126.002519,42.782445],[-126.301631,42.821111],[-126.518464,42.646622],[-126.436964,42.43367],[-126.139354,42.394762]]]},\"id\":\"84280a1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-122.361626,44.699732],[-122.125436,44.866012],[-122.201369,45.078438],[-122.51444,45.124218],[-122.750035,44.957688],[-122.673161,44.745629],[-122.361626,44.699732]]]},\"id\":\"8428f47ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.332545,58.592804],[-136.460567,58.395785],[-136.206949,58.214899],[-135.825444,58.229485],[-135.693254,58.426005],[-135.946709,58.608446],[-136.332545,58.592804]]]},\"id\":\"8413931ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-138.610649,58.476495],[-138.720858,58.279675],[-138.460146,58.10521],[-138.088982,58.126062],[-137.974536,58.322507],[-138.235466,58.498482],[-138.610649,58.476495]]]},\"id\":\"8413925ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.477965,38.745889],[-111.228901,38.900054],[-111.278141,39.138141],[-111.57763,39.221891],[-111.82682,39.067412],[-111.776398,38.8295],[-111.477965,38.745889]]]},\"id\":\"8426935ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.118678,60.98691],[-150.533893,60.873004],[-150.560777,60.65824],[-150.178936,60.557892],[-149.767853,60.670396],[-149.734494,60.884637],[-150.118678,60.98691]]]},\"id\":\"840c559ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.45097,52.318947],[-172.252427,52.505195],[-172.432798,52.715071],[-172.813956,52.738438],[-173.01212,52.551529],[-172.82952,52.341915],[-172.45097,52.318947]]]},\"id\":\"8422eadffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.859066,39.404249],[-104.599182,39.543078],[-104.633328,39.782016],[-104.928668,39.882147],[-105.189091,39.743058],[-105.153637,39.504101],[-104.859066,39.404249]]]},\"id\":\"84268cdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-115.826399,32.440519],[-115.599937,32.607477],[-115.655316,32.853419],[-115.938108,32.932069],[-116.16444,32.764739],[-116.108114,32.519134],[-115.826399,32.440519]]]},\"id\":\"8448597ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.090651,25.290222],[-108.865491,25.448582],[-108.904538,25.703914],[-109.169723,25.80074],[-109.395101,25.641943],[-109.355079,25.38676],[-109.090651,25.290222]]]},\"id\":\"8448017ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.032383,52.855168],[-163.818106,53.020019],[-163.957707,53.233919],[-164.314232,53.282989],[-164.528953,53.11755],[-164.386715,52.903632],[-164.032383,52.855168]]]},\"id\":\"8422897ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-164.235596,54.622642],[-164.01431,54.783473],[-164.159717,54.994589],[-164.529234,55.044863],[-164.750973,54.883443],[-164.602753,54.67234],[-164.235596,54.622642]]]},\"id\":\"8422d25ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-111.580505,44.444264],[-111.316782,44.590416],[-111.369174,44.813952],[-111.686617,44.891176],[-111.950473,44.744718],[-111.896758,44.521344],[-111.580505,44.444264]]]},\"id\":\"842890dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.176461,64.923089],[-129.405063,64.717172],[-129.12551,64.515771],[-128.619541,64.518461],[-128.3853,64.723366],[-128.662589,64.926599],[-129.176461,64.923089]]]},\"id\":\"8413107ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-110.942279,27.387686],[-110.716026,27.548632],[-110.759538,27.802516],[-111.030283,27.895248],[-111.256667,27.73388],[-111.212177,27.480203],[-110.942279,27.387686]]]},\"id\":\"8448095ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.07154,54.304396],[-161.849189,54.460604],[-161.982151,54.672721],[-162.340299,54.728701],[-162.563302,54.571939],[-162.427515,54.359754],[-162.07154,54.304396]]]},\"id\":\"840cd87ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-88.483804,37.65003],[-88.231678,37.750778],[-88.226653,37.98492],[-88.474887,38.118812],[-88.728249,38.018131],[-88.732139,37.783493],[-88.483804,37.65003]]]},\"id\":\"8426419ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-60.625041,19.019542],[-60.448776,19.168743],[-60.481137,19.366567],[-60.689492,19.414992],[-60.865231,19.266087],[-60.833142,19.068463],[-60.625041,19.019542]]]},\"id\":\"844d6b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.246754,43.418526],[-126.027115,43.591865],[-126.108963,43.802377],[-126.411197,43.839121],[-126.630042,43.665584],[-126.547453,43.455503],[-126.246754,43.418526]]]},\"id\":\"8428e41ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.77098,18.716917],[-61.596836,18.866493],[-61.628378,19.063699],[-61.833787,19.111113],[-62.007386,18.961831],[-61.97612,18.764843],[-61.77098,18.716917]]]},\"id\":\"844d4d5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.494871,55.401815],[-159.81022,55.265127],[-159.769381,55.065022],[-159.417714,55.001456],[-159.103969,55.136595],[-159.140278,55.336839],[-159.494871,55.401815]]]},\"id\":\"840ccadffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-56.631326,44.695728],[-56.967046,44.693972],[-57.146897,44.491949],[-56.992065,44.293033],[-56.659341,44.295163],[-56.478472,44.495837],[-56.631326,44.695728]]]},\"id\":\"841a943ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.913244,67.961844],[-156.446842,67.824003],[-156.417861,67.588556],[-155.867324,67.49109],[-155.339311,67.626803],[-155.35624,67.862087],[-155.913244,67.961844]]]},\"id\":\"840c247ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.545912,42.463886],[-149.734517,42.310984],[-149.62159,42.126888],[-149.320569,42.095677],[-149.131885,42.248529],[-149.244296,42.432641],[-149.545912,42.463886]]]},\"id\":\"8437223ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-66.060573,49.952779],[-66.448521,49.923553],[-66.60681,49.695822],[-66.379663,49.498542],[-65.995668,49.527637],[-65.834895,49.754141],[-66.060573,49.952779]]]},\"id\":\"842b32dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-118.500423,31.560983],[-118.282098,31.731923],[-118.342129,31.976374],[-118.621344,32.049468],[-118.8394,31.878153],[-118.778515,31.63412],[-118.500423,31.560983]]]},\"id\":\"84484b9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.595985,34.344744],[-121.380773,34.518845],[-121.447936,34.755759],[-121.731109,34.818108],[-121.945875,34.643687],[-121.87792,34.407239],[-121.595985,34.344744]]]},\"id\":\"84291edffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.299528,57.083565],[-161.627286,56.939022],[-161.570781,56.733067],[-161.191559,56.671393],[-160.865307,56.814256],[-160.916757,57.020462],[-161.299528,57.083565]]]},\"id\":\"840cc2bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-113.986299,47.858311],[-113.717439,48.003644],[-113.777695,48.214991],[-114.108174,48.280802],[-114.376996,48.135147],[-114.315384,47.924005],[-113.986299,47.858311]]]},\"id\":\"84289b5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-159.73962,56.61983],[-160.067494,56.480563],[-160.023096,56.276237],[-159.655731,56.211016],[-159.329562,56.348671],[-159.369043,56.553149],[-159.73962,56.61983]]]},\"id\":\"840cc3bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.801292,57.560819],[-149.169684,57.454054],[-149.203081,57.251318],[-148.873052,57.155865],[-148.508024,57.261426],[-148.469674,57.463635],[-148.801292,57.560819]]]},\"id\":\"840c591ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-104.46814,17.678886],[-104.251374,17.829469],[-104.279111,18.081889],[-104.524525,18.183725],[-104.741681,18.032659],[-104.713035,17.780242],[-104.46814,17.678886]]]},\"id\":\"8449ac9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.733367,58.465013],[-157.093205,58.33233],[-157.068545,58.122446],[-156.689631,58.045282],[-156.332244,58.176373],[-156.351315,58.386207],[-156.733367,58.465013]]]},\"id\":\"840cee1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.890463,19.871543],[-156.052319,19.666925],[-155.945841,19.434567],[-155.677729,19.406624],[-155.515561,19.611161],[-155.621814,19.843722],[-155.890463,19.871543]]]},\"id\":\"845d107ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.851778,34.547853],[-116.623463,34.715339],[-116.681913,34.957256],[-116.969635,35.031338],[-117.197758,34.863505],[-117.138355,34.621938],[-116.851778,34.547853]]]},\"id\":\"8429a3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.008788,60.493677],[-137.13983,60.292093],[-136.866703,60.112115],[-136.462557,60.132127],[-136.326732,60.33324],[-136.599802,60.51482],[-137.008788,60.493677]]]},\"id\":\"841395dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.083347,68.747537],[-148.6717,68.637303],[-148.730158,68.403664],[-148.212682,68.281111],[-147.632995,68.389649],[-147.562173,68.622414],[-148.083347,68.747537]]]},\"id\":\"840d54dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.562814,58.036736],[-139.664324,57.841128],[-139.404267,57.669631],[-139.042316,57.692274],[-138.93666,57.88756],[-139.197079,58.060533],[-139.562814,58.036736]]]},\"id\":\"841d355ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-172.554947,49.908726],[-172.36459,50.100918],[-172.538196,50.314264],[-172.904221,50.335175],[-173.09422,50.142316],[-172.918566,49.929214],[-172.554947,49.908726]]]},\"id\":\"8422525ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-154.585645,61.834676],[-155.001204,61.705322],[-154.991189,61.485737],[-154.57275,61.395717],[-154.16078,61.523406],[-154.163661,61.742765],[-154.585645,61.834676]]]},\"id\":\"840c095ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.152234,56.69865],[-155.494825,56.573028],[-155.483019,56.369568],[-155.133534,56.291853],[-154.79333,56.416021],[-154.800224,56.619347],[-155.152234,56.69865]]]},\"id\":\"840ceb3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.27463,18.307581],[-63.103461,18.457475],[-63.1339,18.653771],[-63.335232,18.699933],[-63.505835,18.550332],[-63.475673,18.354278],[-63.27463,18.307581]]]},\"id\":\"844d4b1ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-173.579692,52.781621],[-173.381968,52.969194],[-173.56925,53.177224],[-173.956464,53.197378],[-174.153685,53.009142],[-173.964211,52.801416],[-173.579692,52.781621]]]},\"id\":\"8422ea3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.606844,47.565341],[-121.360252,47.726033],[-121.437193,47.930696],[-121.761774,47.974338],[-122.00778,47.813379],[-121.9298,47.609046],[-121.606844,47.565341]]]},\"id\":\"8428d09ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.531463,64.955386],[-149.024192,64.844606],[-149.070048,64.619679],[-148.631986,64.506245],[-148.145291,64.61553],[-148.090654,64.839728],[-148.531463,64.955386]]]},\"id\":\"840d5adffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.351211,29.211898],[-114.127782,29.377589],[-114.178809,29.628174],[-114.454203,29.712757],[-114.677586,29.546654],[-114.625625,29.296382],[-114.351211,29.211898]]]},\"id\":\"8448425ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.572083,19.095514],[-105.353812,19.248027],[-105.384071,19.501853],[-105.633525,19.603129],[-105.852148,19.450136],[-105.820967,19.196349],[-105.572083,19.095514]]]},\"id\":\"8449ad3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-150.784339,58.754462],[-151.164596,58.640254],[-151.184628,58.43213],[-150.829927,58.338638],[-150.453077,58.451501],[-150.427529,58.659191],[-150.784339,58.754462]]]},\"id\":\"840c5ebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-89.240623,37.342722],[-88.988287,37.446001],[-88.984992,37.681508],[-89.235176,37.814216],[-89.488721,37.710983],[-89.49087,37.474997],[-89.240623,37.342722]]]},\"id\":\"8426415ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-64.054582,19.6074],[-63.885481,19.755754],[-63.915259,19.946665],[-64.113864,19.988996],[-64.282394,19.840942],[-64.252891,19.650258],[-64.054582,19.6074]]]},\"id\":\"844d591ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-125.737407,32.57796],[-125.538384,32.756546],[-125.611186,32.990173],[-125.883634,33.044643],[-126.082037,32.865761],[-126.008617,32.632705],[-125.737407,32.57796]]]},\"id\":\"842901bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-100.983709,17.639249],[-100.765313,17.785205],[-100.786028,18.036674],[-101.026059,18.142317],[-101.244982,17.99593],[-101.223347,17.744333],[-100.983709,17.639249]]]},\"id\":\"8449a27ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-141.821327,59.284284],[-142.22543,59.199035],[-142.312094,58.997287],[-141.999685,58.881743],[-141.600151,58.966115],[-141.508486,59.166901],[-141.821327,59.284284]]]},\"id\":\"840c6bbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.136354,18.208648],[-69.315574,18.113472],[-69.288846,17.917854],[-69.08272,17.817709],[-68.903793,17.91335],[-68.930698,18.10867],[-69.136354,18.208648]]]},\"id\":\"844cd53ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.392393,63.574282],[-152.845517,63.450915],[-152.854422,63.227347],[-152.41831,63.127542],[-151.969792,63.249263],[-151.95279,63.47242],[-152.392393,63.574282]]]},\"id\":\"840c2b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.531202,56.29658],[-162.845904,56.149716],[-162.782197,55.946433],[-162.408536,55.889678],[-162.095066,56.034867],[-162.154008,56.238476],[-162.531202,56.29658]]]},\"id\":\"840cdcdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.258303,53.204753],[-135.373532,53.022341],[-135.162404,52.843491],[-134.836271,52.845636],[-134.718103,53.027506],[-134.928987,53.207778],[-135.258303,53.204753]]]},\"id\":\"841d297ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-149.408645,58.163474],[-149.783877,58.054222],[-149.813552,57.848996],[-149.473217,57.753518],[-149.101424,57.861514],[-149.066539,58.066234],[-149.408645,58.163474]]]},\"id\":\"840c58bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-145.60772,66.610967],[-146.146646,66.510094],[-146.225,66.283355],[-145.77427,66.158472],[-145.242986,66.257958],[-145.154846,66.483697],[-145.60772,66.610967]]]},\"id\":\"840d51bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-139.220616,60.699456],[-139.650268,60.622427],[-139.76102,60.419377],[-139.447404,60.294501],[-139.02307,60.370779],[-138.907074,60.572677],[-139.220616,60.699456]]]},\"id\":\"840c6d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-152.266943,58.708394],[-152.642874,58.589483],[-152.651793,58.38063],[-152.290355,58.291018],[-151.917612,58.408516],[-151.903125,58.617027],[-152.266943,58.708394]]]},\"id\":\"840c5e5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-160.984669,55.855331],[-161.300037,55.713619],[-161.248131,55.511811],[-160.8855,55.451476],[-160.571566,55.591575],[-160.618817,55.793612],[-160.984669,55.855331]]]},\"id\":\"840cdddffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-109.395101,25.641943],[-109.169723,25.80074],[-109.209502,26.055902],[-109.475637,26.152111],[-109.701219,25.99288],[-109.660464,25.737877],[-109.395101,25.641943]]]},\"id\":\"84480e9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.144802,19.6471],[-69.323074,19.555771],[-69.296494,19.365348],[-69.091465,19.266528],[-68.913483,19.358306],[-68.940239,19.548453],[-69.144802,19.6471]]]},\"id\":\"844cf39ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-101.969005,18.31082],[-101.749802,18.458278],[-101.772624,18.710787],[-102.015579,18.815934],[-102.235277,18.668039],[-102.211526,18.415435],[-101.969005,18.31082]]]},\"id\":\"8449a37ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-114.15896,30.793354],[-113.932132,30.958393],[-113.983458,31.207634],[-114.262579,31.291542],[-114.489371,31.126111],[-114.437081,30.877166],[-114.15896,30.793354]]]},\"id\":\"84485ebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.619322,40.470688],[-134.438681,40.653538],[-134.529468,40.856557],[-134.801229,40.876189],[-134.980801,40.69328],[-134.889687,40.490798],[-134.619322,40.470688]]]},\"id\":\"842863bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.211687,57.935855],[-155.569348,57.808525],[-155.556469,57.600863],[-155.191286,57.520665],[-154.83622,57.646487],[-154.843741,57.854005],[-155.211687,57.935855]]]},\"id\":\"840ce81ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.17683,63.587345],[-146.647827,63.485367],[-146.712187,63.266045],[-146.313176,63.149544],[-145.847967,63.250238],[-145.776016,63.468704],[-146.17683,63.587345]]]},\"id\":\"840d5b3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.504418,31.752698],[-117.283243,31.922278],[-117.341515,32.167522],[-117.621854,32.242798],[-117.842812,32.072842],[-117.783652,31.827987],[-117.504418,31.752698]]]},\"id\":\"84484a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-137.112102,59.133196],[-137.236385,58.934782],[-136.975258,58.755739],[-136.58985,58.77356],[-136.461204,58.971515],[-136.722299,59.152116],[-137.112102,59.133196]]]},\"id\":\"8413907ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-163.226245,66.812075],[-163.693797,66.650585],[-163.589706,66.418128],[-163.028626,66.34666],[-162.563592,66.50581],[-162.657061,66.738749],[-163.226245,66.812075]]]},\"id\":\"840c301ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-117.603669,39.624273],[-117.366115,39.788872],[-117.428945,40.020064],[-117.730359,40.086333],[-117.967655,39.921431],[-117.903802,39.690565],[-117.603669,39.624273]]]},\"id\":\"84298a3ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-157.874472,20.28421],[-158.03379,20.078726],[-157.925876,19.848774],[-157.658802,19.824069],[-157.499097,20.029502],[-157.606849,20.259692],[-157.874472,20.28421]]]},\"id\":\"845da59ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-155.723024,21.177959],[-155.886017,20.974323],[-155.779055,20.743289],[-155.50933,20.715707],[-155.346028,20.919278],[-155.452757,21.150495],[-155.723024,21.177959]]]},\"id\":\"845d143ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-134.383631,64.585761],[-134.56061,64.376853],[-134.256053,64.188974],[-133.775239,64.208222],[-133.592052,64.416447],[-133.895825,64.606116],[-134.383631,64.585761]]]},\"id\":\"8413a43ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-136.975258,58.755739],[-137.099032,58.558255],[-136.841674,58.379049],[-136.460567,58.395785],[-136.332545,58.592804],[-136.58985,58.77356],[-136.975258,58.755739]]]},\"id\":\"841393dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-116.500719,31.937288],[-116.276792,32.105414],[-116.33324,32.351392],[-116.614539,32.428886],[-116.838302,32.260383],[-116.780934,32.014764],[-116.500719,31.937288]]]},\"id\":\"844859bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.256588,66.186796],[-156.747065,66.04868],[-156.717244,65.817153],[-156.207196,65.723849],[-155.721368,65.859956],[-155.740929,66.091355],[-156.256588,66.186796]]]},\"id\":\"840c231ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-106.50434,48.157079],[-106.766679,48.015323],[-106.697137,47.785281],[-106.368224,47.696122],[-106.105926,47.836443],[-106.172484,48.067353],[-106.50434,48.157079]]]},\"id\":\"8427801ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-158.545528,60.270782],[-158.923458,60.130323],[-158.882267,59.91442],[-158.469519,59.838898],[-158.094038,59.977608],[-158.128845,60.193577],[-158.545528,60.270782]]]},\"id\":\"840ce0dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-124.636081,62.007323],[-124.879863,61.810528],[-124.653953,61.598289],[-124.187059,61.581151],[-123.939403,61.776766],[-124.162452,61.990703],[-124.636081,62.007323]]]},\"id\":\"8412341ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.32049,19.694174],[-156.481642,19.4892],[-156.374954,19.257057],[-156.107321,19.229672],[-155.945841,19.434567],[-156.052319,19.666925],[-156.32049,19.694174]]]},\"id\":\"845d12bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-102.967828,18.981216],[-102.747949,19.130195],[-102.772922,19.383591],[-103.01871,19.488069],[-103.239049,19.338644],[-103.213141,19.085189],[-102.967828,18.981216]]]},\"id\":\"8449ae7ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-63.456039,19.476592],[-63.285599,19.62517],[-63.31584,19.817425],[-63.516245,19.860881],[-63.68612,19.712601],[-63.656154,19.520569],[-63.456039,19.476592]]]},\"id\":\"844d4a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.075453,61.961934],[-147.51433,61.857638],[-147.567456,61.642227],[-147.18847,61.531845],[-146.754537,61.634869],[-146.694671,61.849533],[-147.075453,61.961934]]]},\"id\":\"840c71bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.898556,62.611428],[-147.349424,62.507396],[-147.405338,62.290227],[-147.017495,62.177854],[-146.571862,62.280599],[-146.508866,62.49699],[-146.898556,62.611428]]]},\"id\":\"840c753ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-162.417399,52.814037],[-162.201559,52.974895],[-162.332644,53.189141],[-162.682242,53.242607],[-162.898668,53.081185],[-162.764919,52.866864],[-162.417399,52.814037]]]},\"id\":\"84228bdffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-146.954525,59.415308],[-147.352588,59.313018],[-147.401999,59.105623],[-147.058901,59.001192],[-146.66492,59.102309],[-146.609975,59.309021],[-146.954525,59.415308]]]},\"id\":\"840c43bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-103.625214,18.532669],[-103.406466,18.682445],[-103.432684,18.935576],[-103.678577,19.038967],[-103.897756,18.88873],[-103.870612,18.635566],[-103.625214,18.532669]]]},\"id\":\"8449aebffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-174.749606,50.422881],[-174.562292,50.618688],[-174.747479,50.829268],[-175.121944,50.843725],[-175.308682,50.647253],[-175.121547,50.436989],[-174.749606,50.422881]]]},\"id\":\"8422537ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-156.077204,55.11274],[-156.399264,54.986491],[-156.381984,54.788245],[-156.047065,54.716302],[-155.727032,54.841128],[-155.739888,55.039311],[-156.077204,55.11274]]]},\"id\":\"840cc91ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-129.028211,63.702619],[-129.247809,63.498716],[-128.981725,63.296867],[-128.498073,63.297143],[-128.273356,63.500059],[-128.537341,63.703692],[-129.028211,63.702619]]]},\"id\":\"8413acbffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-135.098117,54.487663],[-135.218939,54.301574],[-135.000102,54.120818],[-134.660708,54.124697],[-134.53672,54.310234],[-134.755271,54.492449],[-135.098117,54.487663]]]},\"id\":\"841d289ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-147.401999,59.105623],[-147.794621,59.00209],[-147.840192,58.795321],[-147.4986,58.692723],[-147.109914,58.79507],[-147.058901,59.001192],[-147.401999,59.105623]]]},\"id\":\"840c433ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-105.852148,19.450136],[-105.633525,19.603129],[-105.664429,19.85724],[-105.914882,19.958311],[-106.133847,19.804838],[-106.102018,19.550776],[-105.852148,19.450136]]]},\"id\":\"84491a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-70.686806,19.670554],[-70.868152,19.577098],[-70.842316,19.385626],[-70.634942,19.287864],[-70.45385,19.381759],[-70.479877,19.572976],[-70.686806,19.670554]]]},\"id\":\"844c89bffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.285936,33.295435],[-61.553095,33.276051],[-61.679795,33.094513],[-61.540263,32.933379],[-61.275009,32.952818],[-61.147392,33.133337],[-61.285936,33.295435]]]},\"id\":\"842a6d9ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-161.942964,52.545499],[-161.727745,52.705801],[-161.855715,52.92045],[-162.201559,52.974895],[-162.417399,52.814037],[-162.286783,52.599292],[-161.942964,52.545499]]]},\"id\":\"84228abffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-148.728251,61.969076],[-149.163316,61.859163],[-149.202739,61.642421],[-148.814002,61.536217],[-148.383627,61.644762],[-148.337319,61.860866],[-148.728251,61.969076]]]},\"id\":\"840c715ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-126.565393,39.781328],[-126.355122,39.958341],[-126.434415,40.177462],[-126.724658,40.219086],[-126.934179,40.041865],[-126.854212,39.823229],[-126.565393,39.781328]]]},\"id\":\"84282a5ffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-69.528251,19.654161],[-69.70731,19.562303],[-69.68091,19.371611],[-69.475271,19.273044],[-69.296494,19.365348],[-69.323074,19.555771],[-69.528251,19.654161]]]},\"id\":\"844cf3dffffffff\"},{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-121.225568,56.505758],[-121.454062,56.323288],[-121.281742,56.106519],[-120.883442,56.070724],[-120.652642,56.251976],[-120.822409,56.470242],[-121.225568,56.505758]]]},\"id\":\"84121e3ffffffff\"}]},\"hovertemplate\":\"H3 Cell=%{location}<br>Number of earthquakes=%{z}<extra></extra>\",\"locations\":[\"8429807ffffffff\",\"8429803ffffffff\",\"8422ed5ffffffff\",\"8422c69ffffffff\",\"8422c45ffffffff\",\"841db41ffffffff\",\"8422eebffffffff\",\"84298c9ffffffff\",\"8422e89ffffffff\",\"8422c6dffffffff\",\"84228b3ffffffff\",\"8422f37ffffffff\",\"8422ec7ffffffff\",\"8422e8dffffffff\",\"844918dffffffff\",\"8422c59ffffffff\",\"8422c4bffffffff\",\"840cd83ffffffff\",\"8422c41ffffffff\",\"840c505ffffffff\",\"841db47ffffffff\",\"84280b7ffffffff\",\"8428003ffffffff\",\"844919bffffffff\",\"8422c43ffffffff\",\"842852bffffffff\",\"841db45ffffffff\",\"8422c5dffffffff\",\"840c761ffffffff\",\"8422f17ffffffff\",\"8428e5dffffffff\",\"8429887ffffffff\",\"8429a6dffffffff\",\"841db6bffffffff\",\"8428e4bffffffff\",\"8428f3dffffffff\",\"8429a29ffffffff\",\"8422f33ffffffff\",\"840c455ffffffff\",\"8449a3bffffffff\",\"845d139ffffffff\",\"841d651ffffffff\",\"8422c6bffffffff\",\"8448013ffffffff\",\"840ce9dffffffff\",\"8428005ffffffff\",\"8412349ffffffff\",\"8467209ffffffff\",\"840cda5ffffffff\",\"84480c7ffffffff\",\"841db61ffffffff\",\"8428523ffffffff\",\"842852dffffffff\",\"8448055ffffffff\",\"8422ec3ffffffff\",\"8448043ffffffff\",\"841d641ffffffff\",\"844824dffffffff\",\"842853dffffffff\",\"840c41bffffffff\",\"84485bbffffffff\",\"840c507ffffffff\",\"8422d65ffffffff\",\"8428c95ffffffff\",\"8422d51ffffffff\",\"840c58dffffffff\",\"840cdd3ffffffff\",\"8422d6bffffffff\",\"840cca5ffffffff\",\"8428521ffffffff\",\"8422c4dffffffff\",\"844804dffffffff\",\"84280abffffffff\",\"8422d67ffffffff\",\"840c40bffffffff\",\"8428e59ffffffff\",\"840c501ffffffff\",\"841d655ffffffff\",\"8428007ffffffff\",\"8429a05ffffffff\",\"8429ae5ffffffff\",\"840c66dffffffff\",\"8422f13ffffffff\",\"840cdbdffffffff\",\"840cd9dffffffff\",\"844801dffffffff\",\"8422c0dffffffff\",\"8422ea9ffffffff\",\"8449ac7ffffffff\",\"8429ac5ffffffff\",\"84282a7ffffffff\",\"8448595ffffffff\",\"8422c61ffffffff\",\"8422d59ffffffff\",\"8412905ffffffff\",\"840c713ffffffff\",\"840c409ffffffff\",\"8429ae9ffffffff\",\"8449841ffffffff\",\"8422d5dffffffff\",\"840c6d5ffffffff\",\"8422d55ffffffff\",\"8422d0dffffffff\",\"841db43ffffffff\",\"840c5abffffffff\",\"8422c47ffffffff\",\"8429a11ffffffff\",\"8449133ffffffff\",\"845d115ffffffff\",\"8428c83ffffffff\",\"84491e1ffffffff\",\"8412c25ffffffff\",\"840c445ffffffff\",\"8428c8bffffffff\",\"8428039ffffffff\",\"840c5a3ffffffff\",\"84298abffffffff\",\"844cec1ffffffff\",\"8449a89ffffffff\",\"84490a7ffffffff\",\"842801dffffffff\",\"841db6dffffffff\",\"841d65dffffffff\",\"8429a93ffffffff\",\"8422e37ffffffff\",\"8428e5bffffffff\",\"840c54bffffffff\",\"8428015ffffffff\",\"8422d61ffffffff\",\"844851bffffffff\",\"8412ce3ffffffff\",\"84228a3ffffffff\",\"8449a35ffffffff\",\"84485b9ffffffff\",\"8448011ffffffff\",\"8428085ffffffff\",\"841d657ffffffff\",\"842801bffffffff\",\"8429825ffffffff\",\"8422f31ffffffff\",\"8428345ffffffff\",\"840cdabffffffff\",\"8422d01ffffffff\",\"844d4b9ffffffff\",\"84228b7ffffffff\",\"8422c65ffffffff\",\"8449199ffffffff\",\"840ce93ffffffff\",\"8422d05ffffffff\",\"84298c1ffffffff\",\"8429ad5ffffffff\",\"844cf13ffffffff\",\"8448583ffffffff\",\"840cdb9ffffffff\",\"8449b13ffffffff\",\"841db63ffffffff\",\"840c5e3ffffffff\",\"842803bffffffff\",\"8422e83ffffffff\",\"840c50dffffffff\",\"841db4bffffffff\",\"8422d63ffffffff\",\"8429a9dffffffff\",\"840cd95ffffffff\",\"8422d47ffffffff\",\"840c5a7ffffffff\",\"840c457ffffffff\",\"840c68bffffffff\",\"8422c49ffffffff\",\"840c5e7ffffffff\",\"841d64dffffffff\",\"8448263ffffffff\",\"841db49ffffffff\",\"844801bffffffff\",\"842895bffffffff\",\"8449ac3ffffffff\",\"84298c7ffffffff\",\"840c6a5ffffffff\",\"840c44dffffffff\",\"8412931ffffffff\",\"841d645ffffffff\",\"840cd99ffffffff\",\"840cda7ffffffff\",\"840c737ffffffff\",\"844cc67ffffffff\",\"8449ad5ffffffff\",\"840d5a9ffffffff\",\"844cc49ffffffff\",\"84480c3ffffffff\",\"8449849ffffffff\",\"841d669ffffffff\",\"8428e49ffffffff\",\"8449a31ffffffff\",\"841db69ffffffff\",\"840c403ffffffff\",\"840c723ffffffff\",\"842985bffffffff\",\"84482a5ffffffff\",\"8422d0bffffffff\",\"8422c01ffffffff\",\"8422e33ffffffff\",\"840cec3ffffffff\",\"8428c9dffffffff\",\"844851dffffffff\",\"841d643ffffffff\",\"840c401ffffffff\",\"844cc45ffffffff\",\"84491ebffffffff\",\"8448587ffffffff\",\"8448057ffffffff\",\"840cda3ffffffff\",\"840cc8bffffffff\",\"844854dffffffff\",\"8429a19ffffffff\",\"840c731ffffffff\",\"84480c1ffffffff\",\"840c421ffffffff\",\"842834dffffffff\",\"840cedbffffffff\",\"844808bffffffff\",\"8422d69ffffffff\",\"840c589ffffffff\",\"8429a6bffffffff\",\"840c739ffffffff\",\"8429a9bffffffff\",\"8422f19ffffffff\",\"840c733ffffffff\",\"8449447ffffffff\",\"840cd8bffffffff\",\"840c729ffffffff\",\"842803dffffffff\",\"8428001ffffffff\",\"840ce95ffffffff\",\"84280e3ffffffff\",\"8429ad3ffffffff\",\"840ce91ffffffff\",\"840d537ffffffff\",\"84280e5ffffffff\",\"841db4dffffffff\",\"8429a2bffffffff\",\"8467255ffffffff\",\"8422893ffffffff\",\"840c42bffffffff\",\"840c72bffffffff\",\"840ce85ffffffff\",\"8429a1dffffffff\",\"840c6a7ffffffff\",\"841d2d1ffffffff\",\"8449ad9ffffffff\",\"84480c5ffffffff\",\"840c563ffffffff\",\"8422ee1ffffffff\",\"844cd5bffffffff\",\"840c419ffffffff\",\"844ced5ffffffff\",\"8422e21ffffffff\",\"840c6a3ffffffff\",\"840cca1ffffffff\",\"844cecbffffffff\",\"8422e15ffffffff\",\"840cc85ffffffff\",\"840c73dffffffff\",\"840c229ffffffff\",\"8449b23ffffffff\",\"840c4d9ffffffff\",\"84491e3ffffffff\",\"8426b2dffffffff\",\"8448019ffffffff\",\"8428535ffffffff\",\"8428017ffffffff\",\"8429a61ffffffff\",\"8429a69ffffffff\",\"8429ad7ffffffff\",\"840c50bffffffff\",\"8449ae1ffffffff\",\"8428cb9ffffffff\",\"840c70dffffffff\",\"840d53dffffffff\",\"8422d6dffffffff\",\"8429a23ffffffff\",\"844595dffffffff\",\"840c745ffffffff\",\"8429a8bffffffff\",\"840c5a1ffffffff\",\"840c769ffffffff\",\"840c6bdffffffff\",\"840c531ffffffff\",\"8429a13ffffffff\",\"844984bffffffff\",\"844919dffffffff\",\"844d49dffffffff\",\"840c5adffffffff\",\"8429a07ffffffff\",\"840cc95ffffffff\",\"840c469ffffffff\",\"8422e87ffffffff\",\"8412937ffffffff\",\"8422f07ffffffff\",\"840c5cbffffffff\",\"844940dffffffff\",\"844cf25ffffffff\",\"84298c3ffffffff\",\"840c5a9ffffffff\",\"8422c05ffffffff\",\"840c423ffffffff\",\"844984dffffffff\",\"8422e31ffffffff\",\"8448009ffffffff\",\"8428341ffffffff\",\"840c53bffffffff\",\"8428cddffffffff\",\"840c431ffffffff\",\"842830dffffffff\",\"840c535ffffffff\",\"84298cdffffffff\",\"840c53dffffffff\",\"840c515ffffffff\",\"841d21dffffffff\",\"840cc9dffffffff\",\"8429a21ffffffff\",\"84485e9ffffffff\",\"840ccebffffffff\",\"841d64bffffffff\",\"8448555ffffffff\",\"8448041ffffffff\",\"840c5e1ffffffff\",\"842981bffffffff\",\"844d595ffffffff\",\"844cd41ffffffff\",\"844cf37ffffffff\",\"8428ca1ffffffff\",\"840c735ffffffff\",\"8429801ffffffff\",\"8428c97ffffffff\",\"84281edffffffff\",\"8448513ffffffff\",\"841db0dffffffff\",\"8428c85ffffffff\",\"840c5b9ffffffff\",\"841d2dbffffffff\",\"8448515ffffffff\",\"8449ae9ffffffff\",\"842808dffffffff\",\"840c297ffffffff\",\"840c6d7ffffffff\",\"840c6e5ffffffff\",\"842b153ffffffff\",\"840d5bdffffffff\",\"841db09ffffffff\",\"840d817ffffffff\",\"8428c87ffffffff\",\"8448091ffffffff\",\"8422c29ffffffff\",\"8449addffffffff\",\"842802bffffffff\",\"840c5bdffffffff\",\"840c76bffffffff\",\"840c5c1ffffffff\",\"840c2b1ffffffff\",\"8412935ffffffff\",\"844cd5dffffffff\",\"84491e5ffffffff\",\"8448509ffffffff\",\"8422ee5ffffffff\",\"8449181ffffffff\",\"8413b67ffffffff\",\"84280edffffffff\",\"8426ea5ffffffff\",\"840c405ffffffff\",\"84298ddffffffff\",\"8429aebffffffff\",\"840c45dffffffff\",\"840c509ffffffff\",\"840cda1ffffffff\",\"8445a35ffffffff\",\"8449ad7ffffffff\",\"840c685ffffffff\",\"8428c89ffffffff\",\"842988dffffffff\",\"84485d7ffffffff\",\"841d647ffffffff\",\"8429891ffffffff\",\"841293dffffffff\",\"840c511ffffffff\",\"840ccd1ffffffff\",\"845d105ffffffff\",\"841d359ffffffff\",\"8422e3dffffffff\",\"8422d19ffffffff\",\"8429885ffffffff\",\"840cdd7ffffffff\",\"844cd47ffffffff\",\"840cdb1ffffffff\",\"841d14dffffffff\",\"8422ebdffffffff\",\"844c9abffffffff\",\"8422ea1ffffffff\",\"840c74bffffffff\",\"8448511ffffffff\",\"840c6c3ffffffff\",\"8428531ffffffff\",\"841d2ddffffffff\",\"84280e7ffffffff\",\"841d325ffffffff\",\"840d8bdffffffff\",\"8449189ffffffff\",\"840c5b1ffffffff\",\"844985dffffffff\",\"843bb29ffffffff\",\"8449a33ffffffff\",\"840cccbffffffff\",\"8429859ffffffff\",\"844cc65ffffffff\",\"844ced1ffffffff\",\"840ccddffffffff\",\"84298c5ffffffff\",\"8428013ffffffff\",\"8422f35ffffffff\",\"840cec1ffffffff\",\"8422ee3ffffffff\",\"840c5c7ffffffff\",\"8422e39ffffffff\",\"8428031ffffffff\",\"8428335ffffffff\",\"8422e85ffffffff\",\"840cccdffffffff\",\"840c585ffffffff\",\"8422d41ffffffff\",\"8449aedffffffff\",\"840c2ddffffffff\",\"840c689ffffffff\",\"8422e2bffffffff\",\"84280e1ffffffff\",\"840c549ffffffff\",\"840c41dffffffff\",\"8429a1bffffffff\",\"84280cdffffffff\",\"8448519ffffffff\",\"84298cbffffffff\",\"840c34bffffffff\",\"840cc81ffffffff\",\"840ceb5ffffffff\",\"8422d57ffffffff\",\"841db67ffffffff\",\"840cdbbffffffff\",\"841db5dffffffff\",\"840ced7ffffffff\",\"84265c9ffffffff\",\"840cecbffffffff\",\"842a4d7ffffffff\",\"8428967ffffffff\",\"8429893ffffffff\",\"8428c93ffffffff\",\"8422991ffffffff\",\"84129b5ffffffff\",\"8449a85ffffffff\",\"84298ebffffffff\",\"844800bffffffff\",\"8429a55ffffffff\",\"840c72dffffffff\",\"8448089ffffffff\",\"84268b1ffffffff\",\"840c6c7ffffffff\",\"840c40dffffffff\",\"8422e13ffffffff\",\"8422e8bffffffff\",\"840c55dffffffff\",\"8422c09ffffffff\",\"844c9a1ffffffff\",\"844918bffffffff\",\"8448053ffffffff\",\"8449ae5ffffffff\",\"8413b23ffffffff\",\"840cc13ffffffff\",\"840c537ffffffff\",\"842af4bffffffff\",\"8429819ffffffff\",\"840cec7ffffffff\",\"840c73bffffffff\",\"84280a5ffffffff\",\"840ce83ffffffff\",\"8429a03ffffffff\",\"844d4bdffffffff\",\"8448545ffffffff\",\"840e2adffffffff\",\"842299bffffffff\",\"840c681ffffffff\",\"8422e25ffffffff\",\"840d535ffffffff\",\"8428ccbffffffff\",\"841db0bffffffff\",\"84298d7ffffffff\",\"840c6b7ffffffff\",\"840c407ffffffff\",\"840c517ffffffff\",\"841d2c1ffffffff\",\"840c703ffffffff\",\"8448727ffffffff\",\"8429a5dffffffff\",\"8422c19ffffffff\",\"842989bffffffff\",\"840d691ffffffff\",\"840ceb7ffffffff\",\"840ccc3ffffffff\",\"841d609ffffffff\",\"840c6dbffffffff\",\"841da67ffffffff\",\"8422c51ffffffff\",\"84480d7ffffffff\",\"8428c9bffffffff\",\"840c741ffffffff\",\"8428063ffffffff\",\"8428349ffffffff\",\"840cdadffffffff\",\"8422d4bffffffff\",\"841d349ffffffff\",\"840ce9bffffffff\",\"8428567ffffffff\",\"8422f3dffffffff\",\"841d26dffffffff\",\"84298bdffffffff\",\"840ced9ffffffff\",\"8428963ffffffff\",\"840d695ffffffff\",\"8426107ffffffff\",\"844842dffffffff\",\"8448355ffffffff\",\"844808dffffffff\",\"8422f03ffffffff\",\"8429b27ffffffff\",\"840c2dbffffffff\",\"8428c81ffffffff\",\"8426a45ffffffff\",\"840d72dffffffff\",\"8449ac1ffffffff\",\"840d5a3ffffffff\",\"840d69bffffffff\",\"84280c1ffffffff\",\"840c767ffffffff\",\"840cce3ffffffff\",\"840cc23ffffffff\",\"8448097ffffffff\",\"84229a7ffffffff\",\"840d811ffffffff\",\"841d66bffffffff\",\"8429a0bffffffff\",\"840ccd9ffffffff\",\"840cee7ffffffff\",\"844cc09ffffffff\",\"840c439ffffffff\",\"8422d2dffffffff\",\"844ce39ffffffff\",\"8412901ffffffff\",\"8448319ffffffff\",\"8428303ffffffff\",\"8428023ffffffff\",\"840c429ffffffff\",\"8428d5dffffffff\",\"84491e7ffffffff\",\"840cdd9ffffffff\",\"840d43dffffffff\",\"841d967ffffffff\",\"8428c65ffffffff\",\"842645bffffffff\",\"840c411ffffffff\",\"840d693ffffffff\",\"840c721ffffffff\",\"840c4ddffffffff\",\"84482adffffffff\",\"8413125ffffffff\",\"8413903ffffffff\",\"8428169ffffffff\",\"840d5b1ffffffff\",\"8449409ffffffff\",\"8428867ffffffff\",\"840c76dffffffff\",\"840c539ffffffff\",\"841d215ffffffff\",\"840c49bffffffff\",\"840ceb9ffffffff\",\"840c707ffffffff\",\"841d265ffffffff\",\"840ccc9ffffffff\",\"844c9a5ffffffff\",\"8449a13ffffffff\",\"840c52bffffffff\",\"84485d9ffffffff\",\"84491edffffffff\",\"841296bffffffff\",\"841d653ffffffff\",\"844cf35ffffffff\",\"840c555ffffffff\",\"8422c55ffffffff\",\"841db65ffffffff\",\"840c553ffffffff\",\"844831bffffffff\",\"840ce89ffffffff\",\"84280c9ffffffff\",\"8422e81ffffffff\",\"844859dffffffff\",\"844c899ffffffff\",\"841da65ffffffff\",\"8422e1bffffffff\",\"840c0a5ffffffff\",\"840c557ffffffff\",\"844cf21ffffffff\",\"840ccd3ffffffff\",\"840c687ffffffff\",\"840d697ffffffff\",\"8413917ffffffff\",\"8449ad1ffffffff\",\"8422d53ffffffff\",\"840c727ffffffff\",\"840c0d3ffffffff\",\"8422ecdffffffff\",\"8422895ffffffff\",\"840cde7ffffffff\",\"840c447ffffffff\",\"8428ca7ffffffff\",\"846d365ffffffff\",\"840ced1ffffffff\",\"8448229ffffffff\",\"844c983ffffffff\",\"8428109ffffffff\",\"8445a1dffffffff\",\"8422c3dffffffff\",\"84280a9ffffffff\",\"8429127ffffffff\",\"8448469ffffffff\",\"840c415ffffffff\",\"844cec3ffffffff\",\"845d163ffffffff\",\"844d487ffffffff\",\"840d515ffffffff\",\"8428033ffffffff\",\"840c2c7ffffffff\",\"8422eb1ffffffff\",\"840c6b1ffffffff\",\"8429aadffffffff\",\"8429889ffffffff\",\"8429883ffffffff\",\"840cc99ffffffff\",\"8449a8bffffffff\",\"840c763ffffffff\",\"845d13bffffffff\",\"84480d5ffffffff\",\"8448557ffffffff\",\"840c669ffffffff\",\"8429839ffffffff\",\"84490a5ffffffff\",\"842890bffffffff\",\"8422f11ffffffff\",\"8448341ffffffff\",\"8448245ffffffff\",\"840d813ffffffff\",\"840c743ffffffff\",\"8422f39ffffffff\",\"840c42dffffffff\",\"840c627ffffffff\",\"8422c57ffffffff\",\"8428011ffffffff\",\"8422e03ffffffff\",\"8449185ffffffff\",\"840d68dffffffff\",\"8428317ffffffff\",\"8445b25ffffffff\",\"84298b1ffffffff\",\"840c017ffffffff\",\"8429931ffffffff\",\"84298d3ffffffff\",\"8428d17ffffffff\",\"840c543ffffffff\",\"8412e47ffffffff\",\"840d517ffffffff\",\"8449949ffffffff\",\"8426931ffffffff\",\"841ba11ffffffff\",\"844cec5ffffffff\",\"8422e07ffffffff\",\"8429957ffffffff\",\"846d36bffffffff\",\"845d109ffffffff\",\"84228a7ffffffff\",\"844831dffffffff\",\"84229a3ffffffff\",\"840c4c9ffffffff\",\"840c08dffffffff\",\"844d4a7ffffffff\",\"840d89bffffffff\",\"840c2d7ffffffff\",\"8426b37ffffffff\",\"840c5e9ffffffff\",\"84485e3ffffffff\",\"844cc6dffffffff\",\"842a8cbffffffff\",\"8422ea5ffffffff\",\"8412181ffffffff\",\"8422ea7ffffffff\",\"840c09bffffffff\",\"844cee5ffffffff\",\"840c1ddffffffff\",\"84281dbffffffff\",\"8412ce1ffffffff\",\"844da57ffffffff\",\"840e2c3ffffffff\",\"844858bffffffff\",\"84482e9ffffffff\",\"841d32dffffffff\",\"841d65bffffffff\",\"844cc05ffffffff\",\"8448d61ffffffff\",\"841d1e9ffffffff\",\"844d593ffffffff\",\"84456c7ffffffff\",\"840c5c9ffffffff\",\"844cc5bffffffff\",\"8429895ffffffff\",\"8428b65ffffffff\",\"840f44dffffffff\",\"840cc87ffffffff\",\"84491c3ffffffff\",\"84129adffffffff\",\"8448001ffffffff\",\"840c2c1ffffffff\",\"8448291ffffffff\",\"8428027ffffffff\",\"8448cd7ffffffff\",\"8422f25ffffffff\",\"841d051ffffffff\",\"840ccc5ffffffff\",\"8422eb9ffffffff\",\"8428cbdffffffff\",\"840c449ffffffff\",\"841d209ffffffff\",\"8429a57ffffffff\",\"8428cc3ffffffff\",\"8428865ffffffff\",\"8428105ffffffff\",\"840c6b3ffffffff\",\"8429a35ffffffff\",\"840ce17ffffffff\",\"844ce31ffffffff\",\"840c0abffffffff\",\"84298b5ffffffff\",\"84491d7ffffffff\",\"844ce27ffffffff\",\"841d141ffffffff\",\"844cee9ffffffff\",\"8428309ffffffff\",\"8422c67ffffffff\",\"8429833ffffffff\",\"8413941ffffffff\",\"84281cbffffffff\",\"840d551ffffffff\",\"8413927ffffffff\",\"8412b25ffffffff\",\"8428dd7ffffffff\",\"844401bffffffff\",\"844c89dffffffff\",\"8422f27ffffffff\",\"8429b29ffffffff\",\"8413953ffffffff\",\"84460e3ffffffff\",\"842b957ffffffff\",\"8413ad5ffffffff\",\"840cd93ffffffff\",\"8449aa9ffffffff\",\"842a9e7ffffffff\",\"841d20dffffffff\",\"844cd57ffffffff\",\"840f8e1ffffffff\",\"8428069ffffffff\",\"841db01ffffffff\",\"8422e3bffffffff\",\"841da55ffffffff\",\"8428347ffffffff\",\"84298bbffffffff\",\"8422c17ffffffff\",\"840ccd7ffffffff\",\"8449845ffffffff\",\"8429a0dffffffff\",\"8426a3dffffffff\",\"8422eddffffffff\",\"840c065ffffffff\",\"84282a3ffffffff\",\"844d517ffffffff\",\"8422527ffffffff\",\"84485c7ffffffff\",\"8448543ffffffff\",\"844c2e1ffffffff\",\"842836bffffffff\",\"8448287ffffffff\",\"840c467ffffffff\",\"841d861ffffffff\",\"840c205ffffffff\",\"840dab9ffffffff\",\"840cdc5ffffffff\",\"8422eb5ffffffff\",\"8422dc9ffffffff\",\"844ce3bffffffff\",\"840c233ffffffff\",\"840cde3ffffffff\",\"844cd67ffffffff\",\"8448025ffffffff\",\"840c00dffffffff\",\"842988bffffffff\",\"8428d59ffffffff\",\"841292bffffffff\",\"8413aadffffffff\",\"846d34dffffffff\",\"840c665ffffffff\",\"840c71dffffffff\",\"840c583ffffffff\",\"840c417ffffffff\",\"842896dffffffff\",\"842bac5ffffffff\",\"844cd51ffffffff\",\"842b889ffffffff\",\"8429121ffffffff\",\"840c281ffffffff\",\"8422d07ffffffff\",\"8448599ffffffff\",\"840cd97ffffffff\",\"8449805ffffffff\",\"8428505ffffffff\",\"840c201ffffffff\",\"8426b03ffffffff\",\"8422535ffffffff\",\"840c5c5ffffffff\",\"840ceabffffffff\",\"840d6b9ffffffff\",\"844c035ffffffff\",\"844cad1ffffffff\",\"84280e9ffffffff\",\"841d60bffffffff\",\"844cc55ffffffff\",\"8445a0bffffffff\",\"8428e2bffffffff\",\"8429881ffffffff\",\"8429a99ffffffff\",\"840c595ffffffff\",\"8428905ffffffff\",\"843b833ffffffff\",\"8429a67ffffffff\",\"843a1a5ffffffff\",\"841396dffffffff\",\"840c2c5ffffffff\",\"840c519ffffffff\",\"840d4d5ffffffff\",\"8428b25ffffffff\",\"8428d3bffffffff\",\"8426993ffffffff\",\"8428cd5ffffffff\",\"8426b6bffffffff\",\"844ce89ffffffff\",\"8429125ffffffff\",\"844cecdffffffff\",\"84485abffffffff\",\"8428903ffffffff\",\"8428961ffffffff\",\"8422c07ffffffff\",\"840d895ffffffff\",\"846d361ffffffff\",\"845d103ffffffff\",\"840c70bffffffff\",\"844856bffffffff\",\"8422f3bffffffff\",\"844991bffffffff\",\"8426417ffffffff\",\"8413915ffffffff\",\"840c289ffffffff\",\"8449191ffffffff\",\"8449137ffffffff\",\"842252bffffffff\",\"84280a7ffffffff\",\"840c291ffffffff\",\"842a03dffffffff\",\"844d4d3ffffffff\",\"8422f2bffffffff\",\"840c541ffffffff\",\"846d347ffffffff\",\"840c54dffffffff\",\"8428f27ffffffff\",\"8428959ffffffff\",\"842805bffffffff\",\"8422c0bffffffff\",\"841db2dffffffff\",\"8413923ffffffff\",\"840daa5ffffffff\",\"845d131ffffffff\",\"84465d5ffffffff\",\"840cdb7ffffffff\",\"842814bffffffff\",\"840f831ffffffff\",\"8429ab5ffffffff\",\"8429829ffffffff\",\"840c599ffffffff\",\"840ceddffffffff\",\"8428a5dffffffff\",\"840ccb1ffffffff\",\"8428cb3ffffffff\",\"8448267ffffffff\",\"84465d7ffffffff\",\"84228a1ffffffff\",\"840ceebffffffff\",\"8413901ffffffff\",\"840c6d1ffffffff\",\"844cc63ffffffff\",\"840c521ffffffff\",\"840d0a7ffffffff\",\"8428157ffffffff\",\"8422eabffffffff\",\"84488d3ffffffff\",\"840d5a5ffffffff\",\"842b8c1ffffffff\",\"840d5b5ffffffff\",\"841d261ffffffff\",\"845d127ffffffff\",\"840c66bffffffff\",\"840f8c7ffffffff\",\"8413a55ffffffff\",\"845ecedffffffff\",\"8445a3bffffffff\",\"8428eb1ffffffff\",\"841d2c3ffffffff\",\"8448e61ffffffff\",\"8412933ffffffff\",\"8413adbffffffff\",\"845d10dffffffff\",\"844ce35ffffffff\",\"844d52dffffffff\",\"844cf27ffffffff\",\"840cebbffffffff\",\"8428d13ffffffff\",\"840c545ffffffff\",\"84298d5ffffffff\",\"8448049ffffffff\",\"841392bffffffff\",\"840c697ffffffff\",\"844d853ffffffff\",\"845d10bffffffff\",\"840c749ffffffff\",\"844cc47ffffffff\",\"840cd31ffffffff\",\"8449a99ffffffff\",\"844590dffffffff\",\"84482c5ffffffff\",\"8449b27ffffffff\",\"8412b05ffffffff\",\"840cc03ffffffff\",\"840c5edffffffff\",\"840c5cdffffffff\",\"8422ec5ffffffff\",\"84484b3ffffffff\",\"840f443ffffffff\",\"840d639ffffffff\",\"8422f01ffffffff\",\"8426961ffffffff\",\"8429815ffffffff\",\"8413929ffffffff\",\"845d101ffffffff\",\"844834bffffffff\",\"8449829ffffffff\",\"840c1e7ffffffff\",\"8448713ffffffff\",\"8426827ffffffff\",\"8449843ffffffff\",\"84480ebffffffff\",\"840c59dffffffff\",\"8449b1bffffffff\",\"840ce97ffffffff\",\"840c293ffffffff\",\"844cedbffffffff\",\"8449b39ffffffff\",\"8422e11ffffffff\",\"840d8c1ffffffff\",\"840d72bffffffff\",\"84299b7ffffffff\",\"840d6e3ffffffff\",\"8412f69ffffffff\",\"840cecdffffffff\",\"840d585ffffffff\",\"841d219ffffffff\",\"845d169ffffffff\",\"8448315ffffffff\",\"845d1e5ffffffff\",\"8448415ffffffff\",\"8422997ffffffff\",\"8422891ffffffff\",\"842aa3bffffffff\",\"8448059ffffffff\",\"844d5b3ffffffff\",\"8445b33ffffffff\",\"844c8adffffffff\",\"8448d97ffffffff\",\"840c1e5ffffffff\",\"841d067ffffffff\",\"841d659ffffffff\",\"8429811ffffffff\",\"840c465ffffffff\",\"84229bbffffffff\",\"8422c63ffffffff\",\"841d2c9ffffffff\",\"844c9adffffffff\",\"844cc4dffffffff\",\"8422cc9ffffffff\",\"840c581ffffffff\",\"8428021ffffffff\",\"842b157ffffffff\",\"8448703ffffffff\",\"84228a9ffffffff\",\"8422f21ffffffff\",\"844d449ffffffff\",\"8448221ffffffff\",\"8429123ffffffff\",\"844d5bbffffffff\",\"84485c5ffffffff\",\"844d4adffffffff\",\"8436b01ffffffff\",\"8445a31ffffffff\",\"840c22bffffffff\",\"842ba57ffffffff\",\"841294bffffffff\",\"840ccabffffffff\",\"842ab11ffffffff\",\"8449b31ffffffff\",\"84298a9ffffffff\",\"840cea9ffffffff\",\"8445a15ffffffff\",\"840c369ffffffff\",\"840d591ffffffff\",\"840c33bffffffff\",\"8444709ffffffff\",\"840cdb5ffffffff\",\"840c33dffffffff\",\"84228b1ffffffff\",\"84482e1ffffffff\",\"845d135ffffffff\",\"840c747ffffffff\",\"8422c5bffffffff\",\"8422ee7ffffffff\",\"841d045ffffffff\",\"844cf31ffffffff\",\"840c6a1ffffffff\",\"844ce17ffffffff\",\"840c587ffffffff\",\"84485edffffffff\",\"845da5dffffffff\",\"840c709ffffffff\",\"8428e51ffffffff\",\"840cdc1ffffffff\",\"842912dffffffff\",\"840d5b7ffffffff\",\"8428c99ffffffff\",\"840cc21ffffffff\",\"84280adffffffff\",\"841d213ffffffff\",\"840d5c5ffffffff\",\"841d2cbffffffff\",\"841db39ffffffff\",\"84228d9ffffffff\",\"840f957ffffffff\",\"8422c03ffffffff\",\"844c8a1ffffffff\",\"840c2e7ffffffff\",\"8428e45ffffffff\",\"840c6c9ffffffff\",\"8445a17ffffffff\",\"842989dffffffff\",\"84229d9ffffffff\",\"842289dffffffff\",\"840ce87ffffffff\",\"844ce83ffffffff\",\"84129a5ffffffff\",\"84282abffffffff\",\"840c647ffffffff\",\"840d543ffffffff\",\"840fb65ffffffff\",\"8429899ffffffff\",\"8422995ffffffff\",\"846d349ffffffff\",\"840d8cdffffffff\",\"8429a2dffffffff\",\"8428b63ffffffff\",\"840ced5ffffffff\",\"8428c91ffffffff\",\"8429133ffffffff\",\"8428825ffffffff\",\"840c063ffffffff\",\"841312dffffffff\",\"844805dffffffff\",\"84228bbffffffff\",\"844cd49ffffffff\",\"840c6abffffffff\",\"8449919ffffffff\",\"8428501ffffffff\",\"8449b15ffffffff\",\"840f88dffffffff\",\"84485cdffffffff\",\"8428cbbffffffff\",\"844809dffffffff\",\"842ba8bffffffff\",\"840c0c3ffffffff\",\"840d685ffffffff\",\"840c755ffffffff\",\"8449b17ffffffff\",\"84228b9ffffffff\",\"840d4e5ffffffff\",\"8422f1bffffffff\",\"840c61bffffffff\",\"8448ca7ffffffff\",\"844cd05ffffffff\",\"845ee9dffffffff\",\"844ced7ffffffff\",\"8422d4dffffffff\",\"844830dffffffff\",\"840cdc9ffffffff\",\"846d267ffffffff\",\"844cd2dffffffff\",\"840c359ffffffff\",\"8422887ffffffff\",\"844850bffffffff\",\"840c141ffffffff\",\"840c461ffffffff\",\"840c4dbffffffff\",\"8444cabffffffff\",\"8448309ffffffff\",\"840d489ffffffff\",\"8467243ffffffff\",\"841db13ffffffff\",\"844d481ffffffff\",\"844d497ffffffff\",\"844c9c7ffffffff\",\"8467229ffffffff\",\"8426d85ffffffff\",\"840cc35ffffffff\",\"844cd0dffffffff\",\"844970dffffffff\",\"844d5dbffffffff\",\"8448297ffffffff\",\"8428f01ffffffff\",\"840c51dffffffff\",\"8422c21ffffffff\",\"8428019ffffffff\",\"840cc31ffffffff\",\"840d699ffffffff\",\"844cc01ffffffff\",\"8422c2bffffffff\",\"842814dffffffff\",\"840c5d5ffffffff\",\"840c2c3ffffffff\",\"84265d3ffffffff\",\"8449acbffffffff\",\"84269c9ffffffff\",\"84131a1ffffffff\",\"8449809ffffffff\",\"844cec9ffffffff\",\"842ab15ffffffff\",\"840cde1ffffffff\",\"8467329ffffffff\",\"8429a09ffffffff\",\"845d133ffffffff\",\"840c5b5ffffffff\",\"8422e1dffffffff\",\"844ced9ffffffff\",\"8429aedffffffff\",\"844cf3bffffffff\",\"84291a7ffffffff\",\"840cd91ffffffff\",\"8426599ffffffff\",\"842643bffffffff\",\"841d6c9ffffffff\",\"8428cabffffffff\",\"8422d43ffffffff\",\"842640dffffffff\",\"84480d9ffffffff\",\"841db05ffffffff\",\"84280a1ffffffff\",\"8428f47ffffffff\",\"8413931ffffffff\",\"8413925ffffffff\",\"8426935ffffffff\",\"840c559ffffffff\",\"8422eadffffffff\",\"84268cdffffffff\",\"8448597ffffffff\",\"8448017ffffffff\",\"8422897ffffffff\",\"8422d25ffffffff\",\"842890dffffffff\",\"8413107ffffffff\",\"8448095ffffffff\",\"840cd87ffffffff\",\"8426419ffffffff\",\"844d6b1ffffffff\",\"8428e41ffffffff\",\"844d4d5ffffffff\",\"840ccadffffffff\",\"841a943ffffffff\",\"840c247ffffffff\",\"8437223ffffffff\",\"842b32dffffffff\",\"84484b9ffffffff\",\"84291edffffffff\",\"840cc2bffffffff\",\"84289b5ffffffff\",\"840cc3bffffffff\",\"840c591ffffffff\",\"8449ac9ffffffff\",\"840cee1ffffffff\",\"845d107ffffffff\",\"8429a3dffffffff\",\"841395dffffffff\",\"840d54dffffffff\",\"841d355ffffffff\",\"8422525ffffffff\",\"840c095ffffffff\",\"840ceb3ffffffff\",\"844d4b1ffffffff\",\"8422ea3ffffffff\",\"8428d09ffffffff\",\"840d5adffffffff\",\"8448425ffffffff\",\"8449ad3ffffffff\",\"840c5ebffffffff\",\"8426415ffffffff\",\"844d591ffffffff\",\"842901bffffffff\",\"8449a27ffffffff\",\"840c6bbffffffff\",\"844cd53ffffffff\",\"840c2b3ffffffff\",\"840cdcdffffffff\",\"841d297ffffffff\",\"840c58bffffffff\",\"840d51bffffffff\",\"840c6d9ffffffff\",\"840c5e5ffffffff\",\"840cdddffffffff\",\"84480e9ffffffff\",\"844cf39ffffffff\",\"8449a37ffffffff\",\"84485ebffffffff\",\"842863bffffffff\",\"840ce81ffffffff\",\"840d5b3ffffffff\",\"84484a3ffffffff\",\"8413907ffffffff\",\"840c301ffffffff\",\"84298a3ffffffff\",\"845da59ffffffff\",\"845d143ffffffff\",\"8413a43ffffffff\",\"841393dffffffff\",\"844859bffffffff\",\"840c231ffffffff\",\"8427801ffffffff\",\"840ce0dffffffff\",\"8412341ffffffff\",\"845d12bffffffff\",\"8449ae7ffffffff\",\"844d4a5ffffffff\",\"840c71bffffffff\",\"840c753ffffffff\",\"84228bdffffffff\",\"840c43bffffffff\",\"8449aebffffffff\",\"8422537ffffffff\",\"840cc91ffffffff\",\"8413acbffffffff\",\"841d289ffffffff\",\"840c433ffffffff\",\"84491a5ffffffff\",\"844c89bffffffff\",\"842a6d9ffffffff\",\"84228abffffffff\",\"840c715ffffffff\",\"84282a5ffffffff\",\"844cf3dffffffff\",\"84121e3ffffffff\"],\"marker\":{\"opacity\":0.5},\"name\":\"\",\"subplot\":\"mapbox\",\"z\":[95,82,54,47,40,40,37,33,31,30,28,27,26,22,22,22,22,21,20,20,20,19,18,18,18,17,17,16,16,16,15,15,15,15,15,15,14,14,14,14,14,13,13,13,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],\"type\":\"choroplethmapbox\"}], {\"template\":{\"data\":{\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"mapbox\":{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"center\":{\"lat\":36.1699,\"lon\":-115.1398},\"zoom\":5,\"style\":\"carto-positron\"},\"coloraxis\":{\"colorbar\":{\"title\":{\"text\":\"Number of earthquakes\"}},\"colorscale\":[[0.0,\"rgb(150,0,90)\"],[0.125,\"rgb(0,0,200)\"],[0.25,\"rgb(0,25,255)\"],[0.375,\"rgb(0,152,255)\"],[0.5,\"rgb(44,255,150)\"],[0.625,\"rgb(151,255,0)\"],[0.75,\"rgb(255,234,0)\"],[0.875,\"rgb(255,111,0)\"],[1.0,\"rgb(255,0,0)\"]]},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":0,\"r\":0,\"l\":0,\"b\":0}}, {\"responsive\": true} ).then(function(){\n", " \n", "var gd = document.getElementById('45c7a48e-7a37-4aa6-9618-8e5c6c1e2e7d');\n", "var x = new MutationObserver(function (mutations, observer) {{\n", " var display = window.getComputedStyle(gd).display;\n", " if (!display || display === 'none') {{\n", " console.log([gd, 'removed!']);\n", " Plotly.purge(gd);\n", " observer.disconnect();\n", " }}\n", "}});\n", "\n", "// Listen for the removal of the full notebook cells\n", "var notebookContainer = gd.closest('#notebook-container');\n", "if (notebookContainer) {{\n", " x.observe(notebookContainer, {childList: true});\n", "}}\n", "\n", "// Listen for the clearing of the current output cell\n", "var outputEl = gd.closest('.output');\n", "if (outputEl) {{\n", " x.observe(outputEl, {childList: true});\n", "}}\n", "\n", " }) }; }); </script> </div>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig = px.choropleth_mapbox(data_frame=earthquakes_df, \n", " geojson=h3_geojson, \n", " locations='h3_cell', \n", " color='quake_count',\n", " color_continuous_scale='Rainbow',\n", " mapbox_style='carto-positron',\n", " zoom=5, \n", " center = {'lat': 36.1699, 'lon': -115.1398},\n", " opacity=0.5,\n", " labels={'h3_cell': 'H3 Cell', 'quake_count':'Number of earthquakes'}\n", " )\n", "fig.update_layout(margin={'r':0, 't':0, 'l':0, 'b':0})\n", "fig.show()" ] }, { "cell_type": "code", "execution_count": null, "id": "7c1329fb", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "conda_python3", "language": "python", "name": "conda_python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.13" } }, "nbformat": 4, "nbformat_minor": 5 }